

.emb-ad-wrapper {
	width: 60%;
	margin: 20px auto;
	background: red;
	background: inherit;
}

/* ads contents */
.emb-ad-con-wrap {
	width: 98%;
	margin: 10px auto;
	transition: all 0.36s cubic-bezier(0.685, 0.0473, 0.346, 1);
	background: green;
	background: inherit;
	list-style: none;
	z-index: 0;
	overflow-y: auto;
	padding: 10px;
	position: relative;
	scrollbar-color: #0A4C95 #C2D2E4;
    scrollbar-width : none;
}
.emb-ad-con-wrap::-webkit-scrollbar {
	width: none;
}
/* for mozilla scroll bar */
.emb-ad-con-wrap {
    scrollbar-color: #0A4C95 #C2D2E4;
    scrollbar-width : none;
}

.emb-ad-con-wrap li {
	width: 98%;
	background: blue;
	background: lightgray;
	background: #f9f9f9;
	box-shadow: 1px 0px 3px 0px #e0cdcd;
	border-radius: 4px;
	display: inline-table;
	margin: 1px;
	border: 2px solid silver;
	padding: 2px;
	height: 72px;
}
.emb-ad-con-wrap li:hover {
	border: 2px solid #039cff;
	opacity: 0.8;
	transition:0.2s ease-in;
}
.emb-ad-con-wrap li > div {
	margin: 2px;
	background: pink;
	float: left;
}
/* img wrap */
.emb-ad-con-wrap li > .emb-img-wrap {
	width: 20%;
	height: 70px;
	background: darkgray;
	border-radius: 4px;
	position: relative;
	top: 4px;
	left: 4px;
}
.emb-ad-con-wrap li .emb-img-wrap > a {
	width: 100%;
	display: inline-block;
	border-radius: 4px;
	background: inherit;
	height: 100%;
}
.emb-ad-con-wrap li .emb-img-wrap a > img {
	border-radius: 4px;
}
/* title wrap */
.emb-ad-con-wrap li > .emb-title-wrap  {
	width: 76%;
	height: 80px;
	background: yellow;
	background: inherit;
	float: right;
	overflow-y: auto;
	scrollbar-color: #0A4C95 #C2D2E4;
    scrollbar-width : none;
}
.emb-title-wrap a {
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: block;	
	color: #353238;
}
.emb-title-wrap h3 {
	position: relative;
	font-weight: 10px;
	font-family: tahoma;
	font-size: 15px;
	display: contents;
	float: left;
	top: -15px;
}
.emb-title-wrap label {
	font-family: arial black;
	font-size: 11px;
	text-transform: capitalize;
	color: #001d63;
}
.emb-title-wrap span {
	border: 2px solid silver;
	border-radius: 4px;
	font-size: 10px;
	padding: 4px;
	position: relative;
	left: 2px;
}

/* copy starts */

.emb-ad-con-wrap textarea {
	position: relative;
	top: 5px;
}
.emb-ad-con-wrap button {
	height: 35px;
	background: inherit;
	border-radius: 6px;
	border: 2px solid #000;
	position: relative;
	top: -7px;
}
.emb-ad-con-wrap button:hover {
	cursor: pointer;
	transition: 0.4s ease-in;
	border: 2px solid #039cff;
}


@media screen and (max-width: 630px) { 
	.emb-ad-wrapper {
		width: 99%;
	}
	.emb-ad-con-wrap {
		left: -10px;
	}
	.emb-ad-con-wrap li > .emb-img-wrap {
		width: 22%;
	}
	.emb-ad-con-wrap li > .emb-title-wrap  {
		width: 75%;
	}
	.emb-title-wrap a > h3 {
		font-size: 14px;
	}
	.emb-title-wrap label, span {
		font-size: 12px;
	}
}

@media screen and (max-width: 400px) { 
	.emb-ad-con-wrap li > .emb-img-wrap {
		width: 27%;
		height: 70px;
	}
	.emb-ad-con-wrap li > .emb-title-wrap  {
		width: 68%;
	}
}


@media screen and (max-width: 260px) { 
	.emb-ad-con-wrap li {
		height: 50px;
	}
	.emb-ad-con-wrap li > .emb-img-wrap {
		display: none;
	}
	.emb-ad-con-wrap li > .emb-title-wrap  {
		width: 99%;
	}
}


