@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: light;
    font-display: swap
}

@font-face {
    font-family: 'Itim';
    src: url('../fonts/Itim-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Amatic';
    src: url('../fonts/AmaticSC-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap
}

@font-face {
    font-family: 'Schoolbell';
    src: url('../fonts/Schoolbell-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    --general-font-size: 18px;
    --page-max-width: 1200px;
    --page-bg-color: white;
    --first-font-family: 'Roboto';
    --second-font-family: 'Itim';
    --third-font-family: 'Amatic';
    --fourth-font-family: 'Schoolbell';
    --title-font-family: var(--second-font-family);
    --nav-font-family: var(--second-font-family);
    --general-font-color: #111111;
    --nav-text-color: var(--general-font-color);
    --nav-hamburguer-color: var(--general-font-color);
    --nav-phone-bg-color: #d3e1c2;
    --boxes-bg-color: #F7F0E5;
    --footer-bg-color: black;
    --button-bg-color: #FFDCD3;
    --button-text-color: #B2775D;
    --button-border-color: #B2775D;
    --link-text-color: black;
    --ink-handwhite-color: #0505cb;
    --cookie-bg-color: #ff7d92;
    --cookie-button-bg-color: #6ce7f2;
    --cookie-button-decline-bg-color: #909090;
    --cookie-button-text-color: white;

    --admin-body-bg-color: rgb(205, 255, 236);
}

/* Colores pastel y estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--first-font-family);
    font-size: var(--general-font-size);
}

body {
    background-color: var(--page-bg-color);
    color: var(--general-font-color);
    padding-top: 52px;
    line-height: 1.3;
}

body.modal {
    overflow-y: hidden;
}

@media(min-width: 769px) {
    body {
        padding-top: 98px;
    }
}

h1,
h2 {
    font-family: var(--second-font-family);
    margin-bottom: 30px;
    line-height: 1.1;
}

h1 {
    font-size: 2.8em;
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-family: var(--third-font-family);
    font-size: 1.5em;
    margin-bottom: 10px;
}

h4 {
    font-family: var(--second-font-family);
    font-size: 1.5em;
    line-height: 1.1;
    margin-bottom: 10px;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.flex {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.container {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

section {
    margin-top: 80px;
    position: relative;
}

.rrss {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rrss img {
    width: 80px;
    height: 80px;
}

.button {
    text-decoration: none;
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    font-size: 1em;
    border: 1px dashed var(--button-border-color);
    padding: 15px 25px;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

@media(min-width: 769px) {
    .button {
        width: auto;
    }
}

/* Header */
.header {
    margin-top: 30px;
}

.header .header-txt h1 {
    text-align: center;
}

.header .header-txt h3 {
    text-align: center;
}

.header .header-txt p {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.header .header-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-diff {
    position: relative;
    height: 450px;
}

.header-diff>img {
    width: 100%;
    height: 450px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.5;
}

.header-diff>.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.header-diff .header-txt {
    text-align: center;
}

@media(min-width: 769px) {
    .flex {
        row-gap: 0;
        flex-direction: row;
    }

    .header {
        margin-top: 0;
    }

    .header .header-txt h1 {
        text-align: left;
    }

    .header .header-txt h3 {
        text-align: left;
    }

    .header .header-txt p {
        text-align: left;
    }

    .header .header-txt {
        width: 40%;
        padding-right: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header .header-img {
        width: 60%;
        padding-left: 15px;
        max-height: 550px;
    }
}

.gracias-header,
.error-header,
.error404-header {
    height: calc(100vh - 170px);
}

/* Nav bar */
.navbar {
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: black;
}

.navbar .logo {
    width: 160px;
}

@media (min-width: 769px) {
    .navbar .logo {
        width: 200px;
    }
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 11;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--nav-hamburguer-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Cross Icon Styling */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Menu Styling */
.menu-bg {
    position: absolute;
    background-image: url(../images/menu-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    max-width: 350px;
    width: 100%;
    height: 350px;
    z-index: -1;
    bottom: 0;
}

.menu {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: 100%;
    background-color: var(--nav-phone-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    align-items: center;
    z-index: 9;
    min-height: 640px;
    transition: all 0.5s ease;
}

.menu.active {
    left: 0;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    text-decoration: none;
    color: var(--nav-text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    font-family: var(--nav-font-family);
    font-weight: bold;
}

.menu li a:hover {
    color: #00bcd4;
}

@media (min-width: 769px) {
    .menu-bg {
        display: none;
    }

    .menu {
        position: static;
        display: flex;
        flex-direction: row;
        height: auto;
        background: none;
        justify-content: flex-end;
        gap: 20px;
        background-image: none;
        background-color: white;
        padding: 0;
        min-height: auto;
    }

    .hamburger {
        display: none;
    }

    .menu li {
        margin: 20px 0;
    }

    .menu li a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Boxes */
#boxes {
    background-color: var(--boxes-bg-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

#boxes h2,
#boxes h3,
#boxes h4,
#boxes .boxes-content .box {
    text-align: center;
}

#boxes h2 {
    margin-bottom: 60px;
}

#boxes .boxes-content {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
    align-items: center;
}

#boxes .boxes-content .box {
    max-width: 270px;
}

#boxes .boxes-content img {
    max-width: 200px;
    margin-bottom: 10px;
}

#boxes .boxes-content p {
    margin-bottom: 25px;
}

#boxes .boxes-content .button {
    border: none;
    font-family: 'Amatic';
    font-size: 1.3em;
    color: black;
    transition: 500ms;
}

#boxes .boxes-content .button:hover {
    color: #B2775D;
}

@media (min-width: 769px) {
    #boxes .boxes-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        row-gap: 30px;
        column-gap: 15px;
    }
}

@media (min-width: 1149px) {
    #boxes .boxes-content {}
}

/* Text Img */
#text-img {
    position: relative;
    margin-top: 0;
    padding-top: 110px;
    padding-bottom: 110px;
}

#text-img .text-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../images/paisaje.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.1;
}

#text-img .container {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

#text-img .container .ti-text,
#text-img .container .ti-img {
    text-align: center;
}

#text-img .container .ti-img img {
    max-width: 300px;
}

#text-img p {
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    #text-img .container {
        flex-direction: row;
        row-gap: 0;
    }

    #text-img .container .ti-text {
        text-align: left;
        width: 40%;
    }

    #text-img .container .ti-img {
        width: 60%;
    }
}

/* Gallery */
.gallery-section {
    position: relative;
}

.overlayer-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url(../images/fiesta-patron.png);
    background-repeat: repeat;
    background-size: 200px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.polaroid {
    position: relative;
    background: #fff;
    padding: 20px;
    border: 2px solid #000;
    box-shadow: 5px 5px 0 #ccc;
    border-radius: 5px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    transform-origin: top center;
    cursor: pointer;
}

.polaroid::before {
    content: url(../images/chincheta.png);
    position: absolute;
    left: 50%;
    top: -38px;
}

.polaroid.moving {
    animation: swing 1.5s infinite ease-in-out;
    box-shadow: 6px 6px 0 #bbb;
}

.polaroid img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
    box-shadow: inset 2px 2px 0 #ddd, inset -2px -2px 0 #eee;
    border-radius: 3px;
    cursor: pointer;
}

.polaroid>p {
    margin-top: 10px;
    font-size: 1em;
    font-family: var(--fourth-font-family);
    color: var(--ink-handwhite-color);
}

@keyframes swing {
    0% {
        transform: rotate(var(--start-rotation));
    }

    50% {
        transform: rotate(calc(var(--start-rotation) + var(--swing-amplitude)));
    }

    100% {
        transform: rotate(var(--start-rotation));
    }
}

.polaroid.returning {
    animation: none;
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 10px;
}

/* Formulario */
.form-text {
    margin-bottom: 50px;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-text a {
    text-decoration: none;
    font-family: var(--third-font-family);
    color: var(--link-text-color);
    font-size: 1em;
}

#contact-form form .apellidos {
    display: none;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form {
    margin-bottom: 60px;
}

textarea {
    resize: none;
}

form label {
    font-family: var(--second-font-family);
    font-size: 1.2em;
}

form label span {
    font-size: 0.7em;
    color: red;
}

@media (min-width: 769px) {
    #contact-form .container {
        display: flex;
        flex-direction: row-reverse;
    }

    #contact-form .form-text {
        width: 60%;
        padding-left: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #contact-form form {
        width: 40%;
    }
}

#modal-email-error {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#modal-email-error.active {
    display: flex;
}

.modal-email-error-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
}

.modal-email-error-container .button-close {
    right: -25px;
    top: -25px;
}

.modal-email-error-container ul {
    list-style: none;
    margin-left: 15px;
}

.modal-email-error-container ul li {
    margin-top: 8px;
}

/* checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espaciado entre el checkbox y la etiqueta */
    position: relative;
    margin-bottom: 35px;
}

/* Ocultar el checkbox original */
.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-container label {
    padding-left: 30px;
    font-size: 0.9em;
    font-family: var(--first-font-family);
}

.checkbox-container label a {
    font-size: 0.9em;
    font-family: var(--first-font-family);
    color: var(--link-text-color);
}

/* Crear un nuevo estilo para el checkbox */
.checkbox-container label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 5px;
    background-color: #ccc;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

/* Estilo cuando el checkbox está marcado */
.checkbox-container input[type="checkbox"]:checked+label::before {
    background-color: #7bbc7d;
    border-color: #7bbc7d;
    content: "✔";
    color: white;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

/* Personal box */
.pb-title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.personal-box-rrss{
    display: flex;
    margin-bottom: 30px;
}

#personal-box .personal-box {
    margin-bottom: 100px;
}

#personal-box .personal-box .phone,
#personal-box .personal-box .email,
#personal-box .personal-box .instagram,
#personal-box .personal-box .facebook {
    text-decoration: none;
    color: var(--link-text-color);
    font-family: var(--second-font-family);
    font-size: 1.2em;
    font-weight: bold;
    display: block;
}

#personal-box .personal-box .pb-contact {
    text-align: center;
    margin-top: 30px;
}

#personal-box .personal-box .pb-img {
    margin-bottom: 30px;
    position: relative;
    box-shadow: 5px 5px 0 #ccc;
}

#personal-box .personal-box .pb-img .button-personal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--third-font-family);
    color: black;
    font-size: 1.3em;
    transition: 500ms;
}

#personal-box .personal-box .pb-img .button-personal:hover {
    color: #B2775D;
}

#personal-box .personal-box .pb-img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

#personal-box .personal-box .pb-img::before {
    content: url(../images/chincheta.png);
    position: absolute;
    left: 50%;
    top: -28px;
}

#personal-box .personal-box .phone {
    margin-bottom: 30px;
}

#personal-box .personal-box .phone::before,
#personal-box .personal-box .email::before,
#personal-box .personal-box .instagram::before,
#personal-box .personal-box .facebook::before {
    display: block;
}

#personal-box .personal-box .phone::before {
    content: url(../images/phone-icon.png);
}

#personal-box .personal-box .email::before {
    content: url(../images/envelope-icon.png);
}

#personal-box .personal-box .instagram::before {
    content: "";
    background-image: url(../images/instagram-icon.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
}

#personal-box .personal-box .facebook::before {
    content: "";
    background-image: url(../images/facebook-icon.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 769px) {
    #personal-box .personal-box {
        display: flex;
        margin-bottom: 60px;
    }

    #personal-box .personal-box .pb-img {
        margin-bottom: 0;
        width: 35%;
    }

    #personal-box .personal-box .pb-img img {
        height: 100%;
    }

    #personal-box .personal-box .pb-txt {
        padding-left: 60px;
        width: 65%;
    }

    #personal-box .personal-box .pb-contact {
        display: flex;
        justify-content: space-between;
    }
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
}

footer .container {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .container p {
    font-family: var(--second-font-family);
    font-size: 1.4em;
    line-height: 1;
    color: white;
}

footer .container a {
    color: white;
    font-size: 0.75em;
    text-decoration: none;
}

footer .container .links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@media (min-width: 769px) {
    footer .container .links {
        flex-direction: row;
    }
}

/*Admin*/
body.login-edit {
    background-color: var(--admin-body-bg-color);
    height: 100vh;
}

body.login-edit {
    padding: 0;
}

body.login-edit section {
    margin-top: 0;
}

body.login-edit main {
    height: calc(100% - 88px);
    display: flex;
    justify-content: center;
    align-items: center;
}

body.login-edit form {
    max-width: 500px;
}

body.login-edit footer {
    padding: 30px;
}

body.login-edit footer p {
    color: white;
    font-size: 1.2em;
    font-family: var(--second-font-family);
    text-align: center;
}

@media (min-width: 769px) {
    body.login-edit {
        padding: 0;
    }
}

.message.fail {
    color: red;
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
}

.position-relative {
    position: relative;
}

.text-align-center {
    text-align: center;
}

/* Politica de privacidad/cookies/legal */
#politica-privacidad .container p,
#politica-cookies .container p,
#aviso-legal .container p {
    margin-bottom: 30px;
}

#politica-privacidad .container h4,
#politica-cookies .container h4,
#aviso-legal .container h4 {
    margin-bottom: 20px;
}

#politica-privacidad .container ul,
#politica-cookies .container ul,
#aviso-legal .container ul {
    margin-bottom: 30px;
    margin-left: 30px;
    list-style-type: circle;
}

#politica-privacidad .container ul li,
#politica-cookies .container ul li,
#aviso-legal .container ul li {
    margin-bottom: 10px;
}

/*Cookies Banner*/
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 25px;
    text-align: center;
    z-index: 1000;
    display: none;
}

#cookie-banner .bg-cookie-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cookie-bg-color);
    z-index: -1;
}

#cookie-banner img {
    position: absolute;
    top: -47px;
    right: 20px;
    z-index: -2;
}

#cookie-banner .buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#cookie-banner .buttons #accept-cookies {
    background-color: var(--cookie-button-bg-color);
}

#cookie-banner .buttons #reject-cookies {
    background-color: var(--cookie-button-decline-bg-color);
}

#cookie-banner .buttons .button-cookie {
    color: var(--cookie-button-text-color);
    padding: 10px 25px;
    border: none;
    cursor: pointer;
}

#cookie-banner a {
    color: white;
}

@media (min-width: 769px) {
    #cookie-banner {
        text-align: left;
    }

    #cookie-banner .buttons {
        flex-direction: row;
    }
}

/*Album*/
.album-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cover-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    border-radius: 6px;
}

.cover-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    gap: 10px;
}

.book {
    position: relative;
    width: 202px;
    /* Ancho de la portada */
    height: 300px;
    /* Alto de la portada */
    margin: 20px;
    cursor: pointer;
}

.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    /*border: 2px solid #333;*/
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-align: center;
    padding: 15px;
    transition: 500ms;
    display: flex;
    flex-direction: column;
    background-image: url(../images/album-patron.png);
    background-repeat: repeat;
}

.book:hover .cover {
    width: 180px;
}

.cover img {
    display: block;
    max-width: 100%;
    height: 110px;
    object-fit: cover;
    width: 100%;
    border-radius: 4px;
}

.cover .date {
    font-size: 0.8em;
    font-family: var(--fourth-font-family);
    color: var(--ink-handwhite-color);
    padding: 10px;
    background-color: rgb(255, 247, 211);
    border-radius: 6px;
}

.cover .title {
    font-size: 0.9em;
    color: var(--ink-handwhite-color);
    margin-bottom: 5px;
    font-family: var(--fourth-font-family);
    padding: 10px;
    border-radius: 6px;
    background-color: rgb(255, 247, 211);
    font-weight: normal;
}

.cover .author {
    font-size: 14px;
    font-style: italic;
    color: #555;
}

.pages {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 300px;
    z-index: 5;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #fff, #f0f0f0);
    border: 1px solid #ddd;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}

.page:nth-child(1) {
    top: 10px;
    left: 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 202px;
}

.page:nth-child(2) {
    top: 8px;
    left: 8px;
}

.page:nth-child(3) {
    top: 6px;
    left: 6px;
}

.page:nth-child(4) {
    top: 4px;
    left: 4px;
}

.page:nth-child(5) {
    top: 2px;
    left: 2px;
}

@media (min-width: 769px) {
    .book {
        width: 302px;
        /* Ancho de la portada */
        height: 400px;
        /* Alto de la portada */
    }

    .cover {
        padding: 35px;
    }

    .cover .title {
        font-size: 1.1em;
    }

    .cover-image .date {
        font-size: 1em;
    }

    .book:hover .cover {
        width: 280px;
    }

    .cover img {
        height: 150px;
    }

    .pages {
        width: 300px;
        height: 400px;
    }

    .page:nth-child(1) {
        width: 302px;
    }
}

/*Mapa*/
#mapa {
    position: relative;
}

#mapa iframe {
    margin-bottom: -8px;
}

#mapa .mapa-izq {
    display: none;
}

#mapa .mapa-der {
    display: none;
}

@media (min-width: 769px) {
    #mapa .mapa-contenedor {
        margin-left: 138px;
        margin-right: 138px;
    }

    #mapa .mapa-izq {
        display: block;
        position: absolute;
        top: -46px;
        left: 0;
        background-image: url(../images/mapa-izq.png);
        background-repeat: no-repeat;
        width: 172px;
        height: 550px;
    }
    
    #mapa .mapa-der {
        display: block;
        position: absolute;
        top: -46px;
        right: 0;
        background-image: url(../images/mapa-der.png);
        background-repeat: no-repeat;
        width: 189px;
        height: 550px;
    }
}