/*modal*/
.modal-content {
	display: none;
}

.dm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    z-index: 7000000;
}

.dm-overlay:target {
    display: block;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}

.dm-table {
    width: 100%;
    height: 100%;
    max-width: 900px;
    display: table;
    padding: 15px;
    margin: 0 auto;
}

.dm-cell {
    display: table-cell;
    vertical-align: middle;
}

.dm-modal {
	position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .dm-modal {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.modal-sub {
    border-top: 2px solid #f6e3b1;
    padding-top: 33px;
    margin-top: 33px;
}

.close {
	position: absolute;
    z-index: 900;
    right: 0;
    padding: 15px;
    background-color: rgba(0,126,214,0.15);
}

.close svg {
	height: 20px;
	fill: #000;
}

.close:hover {
	background-color: rgba(0,126,214,1);
}

.close:hover svg {
	fill: #fff;
}
/*modal end*/