.tab_wrapper {
    position: relative;
	min-height: 300px;	
}
.tab_header {
    border-bottom: 1px dotted #465568;
    padding: 10px 15px;
	width: 30%;
	text-align: center;
    cursor: pointer;
	transition: 0.3s;
	z-index:10;
}
.tab_header.active_tab {
    border-top: 1px solid #465568;
    border-bottom: 1px solid #465568;
}
.tab_header.active_tab::after {
	position: absolute;
	left: 30%;
	width: 0;
	height: 0;
	margin-top: -12px;
	content: "";
	border-left: 24px solid #58595b;
	border-top: 24px solid transparent;
	border-bottom: 24px solid transparent;
	z-index: 10;
}
.tab_header:hover {
	background-color: #87959d;
	color: #FFF;
}
.tab_content {
	position: absolute;
	top: 0;
	left: 30%;
	width: 70%;
	min-height: 300px;
    padding: 10px 30px;
    border-left: 1px solid #465568;
	z-index: 1;
}
.active_tab {
    background-color: #58595b;
    color: #FFF;
}
.collapse_header {
    background: #465568;
    padding: 10px;
    color: #FFF;
    cursor: pointer;
}
.collapse_header.collapse_active:after {
    content: "-";
}
.collapse_header:after {
    content: "+";
    position: absolute;
    right: 5px;
}
.hide {
	display: none;
}

@media only screen and (max-width : 1200px) {
	.tab_header {
		width: 37%;
	}
	.tab_header.active_tab::after {
		left: 37%;
	}
	.tab_content {
		left: 37%;
		width: 65%;
	    border: 1px solid #465568;			
	}
}
@media only screen and (max-width : 992px) {
	.tab_header {
		width: 100%;
	}
	.tab_header.active_tab::after {
		left: 0;
	}
	.tab_content {
		position: relative;
		left: 0;
		width: 100%;
		min-height: auto;	
	}
	.tab_header.active_tab::after {
		border: none;
	}
}
@media only screen and (max-width : 768px) {
}
@media only screen and (max-width : 480px) {
	
}