/*
Theme Name: Reservas
Theme URI: #
Author: You
Author URI: https://wordpress.org/
Description: Mi first theme for WordPress.
Version: 2.4
Requires at least: 4.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
Tags: mytheme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--black);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
}
.modal.is-visible {
    visibility: visible;
    opacity: 1;
}
.modal-dialog {
    position: relative;
    max-width: 800px;
    min-width: 70vw;
    max-height: 80vh;
    border-radius: 5px;
    background: var(--white);
    overflow: auto;
    cursor: default;
}
.modal-dialog>* {
    padding: 1rem;
}
.modal-header,
.modal-footer {
    background: transparent;
    border: none;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    padding-top: 1.5rem;
    color: var(--color--primary);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header .close-modal {
    font-size: 1.5rem;
}
.modal p+p {
    margin-top: 1rem;
}
