﻿#overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, .65);
}
.temp_modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    box-sizing: border-box;
    padding: 32px;
    border-radius: 8px;
    background-color: #fff;
}
.active {
    display: block !important;
}

.modal_box{
    overflow: hidden;
}

@media screen and (min-width: 751px) {
    .collection tr {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}