.ecv_wp_coder_tab_container {
	width: 950px;
	height: 650px;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 60px;
}
.ecv_wp_coder_tab_container .btn-group{
	display: flex;
	justify-content: center;
	gap: 10px;
}

.ecv_wp_coder_tab_container .ecv_btn_wp{
	background-color: #00449E;
	padding: 10px;
	color: white;
	font-weight: bold;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	transition: all .3s;
}
.ecv_btn_wp:hover:not(.selected){
	background-color: #003478;
}
.ecv_btn_wp.selected{
	border: 4px solid #FCBC3A;
}
.ecv_wp_coder_tab_container .tab-container {
	width: 100%;
	height: 650px;
	position: relative;
	margin-top: 20px;
	overflow-x: hidden;
}
.ecv_wp_coder_tab_container .tab-container iframe {
	width: 100%;
	height: 650px;
}
.ecv_wp_coder_tab_container .tab-element{
	height: 650px;
	padding: 10px;
	position: absolute;
	width: 100%;
	left: -1300px;
	opacity: 0;
	transition: all .3s;
}
.ecv_wp_coder_tab_container .tab-element.show{
	left: 0;
	opacity: 1;
}
@media (max-width:1000px) {
	.ecv_wp_coder_tab_container{
		width: 100%;
	}
}