@charset "UTF-8";

.modally-wrap {
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
}
.modally-wrap .modally-underlay {
    position: fixed;
    background: rgba(0,0,0,0.7);
/*    cursor: pointer;*/
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.modally {
    margin: 0px auto;
    position: relative;
    z-index: 1;
    width: 470px;
    height: auto;
    border-radius: 12px;
}

.modally .modally-close-button {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 12px 20px;
    font-size: 32px;
    line-height: 23px;
    opacity: 1;
    cursor: pointer;
    transition: opacity 250ms ease-in-out;
    font-weight: 300;
}

.modally-table {
    display: table;
    width: 100%;
    min-height: 100%;
}

.modally-cell {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

@media screen and (min-width: 960px) {
    .modally .modally-close:hover {
        opacity: 0.5;
    }
}

@media screen and (max-width: 959px) {
    .modally {
        height: auto;
        max-width: none;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: calc(100% - 40px);
    }
}
