/* RESET RULES 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
--lightgray: #efefef;
--blue: steelblue;
--white: #fff;
--black: rgba(0, 0, 0, 0.8);
--bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.gmodal {
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;
}

.gmodal.is-visible {
visibility: visible;
opacity: 1;
}

.gmodal-dialog {
position: relative;
max-width: 800px;
max-height: 80vh;
border-radius: 5px;
background: var(--white);
overflow: auto;
cursor: default;
}

.gmodal-dialog > * {
padding: 1rem;
}

.gmodal-header,
.gmodal-footer {
background: var(--lightgray);
}

.gmodal-header {
display: flex;
align-items: center;
justify-content: space-between;
}

.gmodal-header .close-modal {
font-size: 1.5rem;
}

.gmodal p + p {
margin-top: 1rem;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
position: absolute;
bottom: 1rem;
right: 1rem;
}

.page-footer span {
color: #e31b23;
}