.detailForm {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 990;
}

.closeForm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 991;
}

.detailFormCont {
    display: block;
    position: relative;
    width: 550px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 25px;
    background: #fff;
    z-index: 992;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.closeDetailForm {
    position: absolute;
    line-height: 30px;
    font-size: 30px;
    right: 0;
    top: 0;
    z-index: 993;
    box-sizing: border-box;
    background: transparent;
    padding: 3px 7px 5px 7px;
    color: #000;
    cursor: pointer;
	opacity: .4;
}
.closeDetailForm:hover {
	opacity: .9;
}

.detailForm .formFieldB:nth-child(1), .detailForm .formFieldB:nth-child(2) {
	display: none;
}
.detailForm .formFieldB {
    margin-top: 0;
    margin-bottom: 15px;
}