

	/* Style the tab */
	.qcld_pd_tab {
		overflow: hidden;
		border:none;
		background-color: #f9f9f9;
	}
	
	/* Style the buttons inside the tab */
	.qcld_pd_tab button {
		background-color: inherit;
		float: left;
		border: none;
		outline: none;
		cursor: pointer;
		padding: 12px 12px 12px 22px;
		transition: 0.3s;
		font-size: 15px;
		color:#666;
		position:relative;
		margin-right:20px;
		height:44px;
	}
	.qcld_pd_tab button.qcld_pd_active::before {
		width: 0; 
		height: 0; 
		border-bottom: 44px solid #efefef; 
		border-right: 20px solid transparent;
		position:absolute;
		content:"";
		top:0;
		right:-20px;
		z-index:99;
	}
	
	/* Change background color of buttons on hover */
	.qcld_pd_tab button:hover {
		color: #101010;
	}
	
	/* Create an active/current tablink class */
	.qcld_pd_tab button.qcld_pd_active {
		background-color: #efefef;
		color:#000;
	}
	
	/* Style the tab content */
	.qcld_pd_tabcontent {
		display: none;
		padding: 20px 12px;
		background:#fff;
		border: none;
		border-bottom:1px solid #ddd;
	}
	
	.qcld_pd_tab_main {
		padding-top:50px;
		width:100%;
		margin:0 auto;
	}



