/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 14 dic 2023, 16:34:18
    Author     : Gustavo
*/

/******* Title *******/

@font-face {
    font-family: "Locator Medium"; 
    src: url('https://www.guadaluperadio.com/public/fonts/LocatorFamily/Locator-Medium.otf');
}


.bold-text {
    font-weight: bold;
}

div.form-separator {
    width: calc(100% - 2em);
    margin: 0.5em 1em;
    border-top: 1px dashed #000;
}

div.form-logo {
    width: 100%;
    padding-bottom: 0.5em;
    text-align: center;
    border-bottom: 1px dashed #000;
}

div.form-logo img {
    width: 50%;
    height: auto;
}

div.form-subtitle {
    width: calc(100% - 1em);
    padding: 0.5em 0;
    margin: 0 0.5em;
    /* border-top: 1px dashed #000; */
}

div.form-description {
    width: calc(100% - 1em);
    padding: 0.5em 0;
    margin: 0 0.5em;
    text-align: center;
}

div.form-subtitle div {
    min-height: 30px;
    background-color: #e6e7e9;
    color: #335581;
    text-align: center;
    width: 100%;
    /*margin-bottom: 10px;*/
}

div.form-description div {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.8em; /* Mucho más grande */
    font-weight: bold;
    line-height: 1.2em;
    background-color: #fdf1cc; /* El color crema/amarillo del mock-up */
    color: #335581;
    text-align: center;
    width: 80%;
    padding: 10px 10px; /* Espacio interno para que respire el texto */
    margin: 0px auto 10px auto;
    border-radius: 5px; /* Suavizar bordes si lo deseas */
}


div.form-iframe-close {
    background-color: #fff;
    position: absolute;
    right: 1em;
    top: 0.5em;
    /* font-size: 1.5em; */
    font-family: 'Locator Medium';
    cursor: pointer;
    /* border: 1px solid #000; */
    line-height: 1;
    /* padding: 0.1em 0.2em; */
}

iframe.form-iframe  {
    width: 100%;
    height: 100%;
    border-width: 0px;
}

div.form-others {
    width: calc(100% - 1em);
    padding: 0 0.01em;
    text-align: center;
    font-size: 1em;
    margin-top: 6rem;
}

div.form-others a {
    color: #000;
    text-decoration: none;
}

div.form-title {
    background-color: #0e5381;
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    padding: 0.2em 1em;
    width: 30%;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #999999;
    /* margin: 0px auto 0.5em auto; */
    margin: 0px auto;
}

div.form-title div.form-type {
    font-size: 1.8em;
    line-height: 1em;
    font-weight: bold;
}

/******* Buttons *******/
        
div.buttons-container {
    font-size: 20px;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}

div.form-buttons {
    display: flex;
    justify-content: space-between;
    width: 90%;
    gap: 10px;
}

div.row-button {
    /*text-align: center;*/
    padding: 0;
    width: 48%;
    /*margin-bottom: 0.5em;*/
    border: none !important;
}

div.row-button:nth-child(even) {
    border-left: 1px solid #000;
}

div.row-button.last {
    width: 100%;
    border-top: 1px dashed #000;
    display: flex;
    flex-direction: column-reverse;
    padding: 0.5em 10%;
}

div.button-to-form {
    background-color: #0e5381;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 20px 10px;
    width: 100%;
    border-top: 1px solid #cccccc;
    border-bottom: 2px solid #999999;
    border-left: 1px solid #cccccc;
    border-right: 2px solid #999999;
    margin: 0.25em auto;
    /* box-shadow: 5px 5px 5px #ccc; */            
} 
/*
div.button-to-form {
    background-color: #0e5381;
    border-radius: 12px; 
    padding: 20px 10px; 
    width: 100%;
    border: none;
    transition: transform 0.2s;
}
*/
div.row-button.last div.button-to-form {
    width: 50%;
}

div.button-to-form div.form-type {
    font-size: 1.5em;
    line-height: 1em;
    font-weight: bold;
}

div.button-to-form div.form-name {
    font-size: 0.9em;
    line-height: 1em;

}

div.button-to-form:hover {
    border-bottom: 1px solid #cccccc;
    border-top: 2px solid #999999;
    border-right: 1px solid #cccccc;
    border-left: 2px solid #999999;
}

div.button-to-form a, div.button-to-form a:hover {
    color: #fff;
    text-decoration: none;
}


/******* Others Modal *******/

div#divOtherFormsDonation {
    font-size: 17px;
    color: #050606;
    line-height: 1.1;
    width: 32em;
    max-width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    display: none;
    z-index: 9 !important;
    padding: 2em 1em;
    text-align: center;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    box-shadow: 7px 7px 14px #555;
    opacity: 0.95;
}

div#divOtherFormsDonation div.close-others {
    position: absolute;
    left: 0.5em;
    top: 0.5em;
    /* font-size: 1.5em; */
    font-family: 'Locator Medium';
    cursor: pointer;
    /* border: 1px solid #000; */
    line-height: 1;
    padding: 0.1em 0.2em;
    color: #1A1A1A;
    display: flex;
    align-items: center;
}

div#divOtherFormsDonation div.close-others img {
    height: 1.5em;
}

div#divOtherFormsDonation div.close-others div {
    font-size: 0.7em;
    padding-left: 0.3em;
}

div#divOtherFormsDonation a, div#divOtherFormsDonation div.fake-link {
    color: #005482;
    text-decoration: underline;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#divOtherFormsDonation img {
    max-width: 4em;
}

/******* Responsive *******/

@media (max-width: 1000px) {
    div.form-title {
        width: 40%;
    }
}

@media (max-width: 800px) {
    div.form-title {
        width: 50%;
    }
}

@media (max-width: 600px) {
    div.form-title {
        width: 70%;
    }
} 