/**
 * Modals ($modals)
 */

/* 1. Ensure this sits above everything when visible */
.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.modal-wrapper {
    /*position: absolute;*/
    position: fixed;
    z-index: 9999;
    /*top: 6em;*/
    /*left: 50%;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32em;
    /*margin-left: -16em;*/
    background-color: #fff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.tickets .modal-wrapper {
    padding: 10px 40px;
}

.modal-transition {
    transition: all 0.3s 0.12s;
    transform: translate(-50%, -65%);
    opacity: 0;
}

.modal.is-visible .modal-transition {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.modal-header,
.modal-content {
    padding: 1em;
}

.modal-header {
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
    border-bottom: 1px solid #e8e8e8;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
}

.tickets .modal-close {
    background-image: url(/img/close-modal.png);
    background-size: cover;
    padding:0;
    margin:10px;
    width: 24px;
    height: 24px;
    cursor:pointer;
}

.modal-close:hover {
    color: #777;
}

.modal-heading {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-content > *:first-child {
    margin-top: 0;
}

.modal-content > *:last-child {
    margin-bottom: 0;
}

.modal .btn {
    /*padding: 10px 20px;*/
    margin-top: 20px;
}

.modal p.copy {
    font: 400 18px/1.4 'futura-pt';
}

@media screen and (max-width: 550px) {
    .modal-wrapper {
        max-width: 90%;
    }
}
