/**
 * Custom CSS
 * Use this file to override styles if you feel uncomfortable editing
 * component stylesheets.
 ============================================================================ */

body {
    margin: 0 !important;
}

.icoCerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

.icoCerrar a {
    background: transparent;
    display: block;
    border-radius: 50px;
    width: 26px;
    height: 26px;
    position: relative;
    text-indent: -9999px;
    cursor: pointer;
}

.icoCerrar a:hover {
    background: transparent;
}

.icoCerrar a::before,
.icoCerrar a::after {
    background: #c2a471;
    border-radius: 50px;
    width: 16px;
    height: 2px;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
}

.icoCerrar a:hover::before,
.icoCerrar a:hover::after {
    background: #fff;
}

#modalIframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(27, 27, 27, .8);
}

.modalIframeContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    height: 650px;
    max-height: 90%;
    z-index: 999;
    transform: translate(-50%, -50%);
}

#modalIframe #modalContent {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 999;
    transform: translate(-50%, -50%);
    background-color: #000;
}

.modalIframe {
    width: 100%;
    height: 100%;
}

#popupIframe {
    height: 100%;
}

#popupIframeContent h1 {
    margin: 0;
    font-family: 'PT Serif', serif;
    color: #c2a471;
    font-weight: 400;
}

#popupIframe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    text-align: center;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#popupIframe::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4009804605435925) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
    content: "";
}

#popupIframeContent {
    order: 0;
    align-self: auto;
    flex-basis: 100%;
    padding: clamp(30px, 4vw, 80px);
    position: relative;
    z-index: 2;
    font-family: 'PT Serif', serif;
}

.popupIframeFormItem {
    margin: 1em;
}

#popupIframeContent p {
    font-size: 18px;
    margin-bottom: 10px !important;
    display: block;
    color: #c2a471 !important;
    font-family: 'PT Serif', serif;
}

#popupIframeCentro {
    height: 40px;
    border-radius: 0;
    border: 1px solid #c2a471;
    background: transparent;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    font-family: 'PT Serif', serif;
    color: #c2a471;
    font-size: 16px;
}

#popupIframeEmail {
    height: 40px;
    border-radius: 0;
    border: 1px solid #c2a471;
    background: transparent;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    font-family: 'PT Serif', serif;
}

#popupIframeEmail::placeholder {
    color: #c2a471;
    opacity: 1;
    font-size: 16px;
    font-family: 'PT Serif', serif;
}

#popupIframePrivacy {
    color: #c2a471;
    font-size: 14px;
}

#popupIframePrivacy a {
    color: #c2a471;
    text-decoration: none;
}

#popupIframePrivacy a:hover {
    color: #fff;
    text-decoration: underline;
}

#popupIframeActions {
    margin-top: 2em;
}

.popupIframeSubmit {
    padding: 10px;
    text-align: center;
    color: #fff;
    background: #c2a471;
    min-width: 100px;
    font-size: 18px;
    font-family: 'PT Serif', serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: all .2s;
}

.popupIframeSubmit:hover {
    background: #000;
}

/* ------------------------------ 780 ------------------------------ */

@media (min-width:10px) and (max-width:480px) {
    #popupIframe {
        align-content: stretch;
        align-items: stretch;
    }
}

/* ------------------------------ 480 ------------------------------ */

@media all and (max-width:480px) {}