#bannersCont
{
    position: absolute;
    top: 105px;
    right: 0px;
    z-index: 99999;
    padding: 0px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#bannersCont li
{
    list-style: none;
    width: fit-content;
    min-width: 200px;
    max-width: 450px;
    padding: 10px 30px 6px 10px;
    border-radius: 6px;
    position: relative;
    margin-bottom: 8px;
    height: auto;
    right: -600px;
    background-color: -[secondColor]-;
    overflow-x: hidden;
    overflow-y: hidden;
    box-shadow: 0px 0px 5px 2px #00000038;
}

.banTitle
{
	color: black;
	font-weight: 400;
	display: block;
	font-size: 20px;
	letter-spacing: -1px;
	line-height: 25px;
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid #e2e2e2;
}

.txtBanner
{
	font-size: 18px;
}

.bannerImg
{
	display: inline-block;
	margin-left: 5px;
}

.imgBanner
{
	width: 98%;
    height: 90px;
    margin: 0px 0px 0px -10px;
    display: inline-block;
    border-radius: 3px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.closeBanCont
{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 10px;
	color: black;
}

.closeBan
{
	position: absolute;
	right: 5px;
	top: 2px;
}

.img-banner .banTitle
{
	display:inline-block;
	vertical-align:middle;
	margin-left: 10px;
}

.btn-cont-banner {
    margin-top: 10px;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    margin-top: 10px;
    width: 350px;
}

.btn-cont-banner > * {
    width: 49%;
}

.affBanner
{
	-webkit-animation: affBan cubic-bezier(0.44, 0.14, 0.46, 1.3);
	-moz-animation: affBan ease;
	-o-animation: affBan ease;
	animation-duration: 1s;
	animation-name: affBan;
	animation-iteration-count: 1;
	right: 0px !important;
	display: block;
}

.hideBanner
{
	-webkit-animation: hideBan cubic-bezier(.68,-0.55,.27,1.55);
	-moz-animation: hideBan ease;
	-o-animation: hideBan ease;
	animation-duration: 1s;
	animation-name: hideBan;
	animation-iteration-count: 1;
	
}

.hidding
{
	right: 0px !important;
}

.btn-banner
{
	display: inline-block;
	text-align: center;
}

.darkBgColor .btn-banner {
    background-color: #ffffff47 !important;
}

.darkBgColor .btn-banner:hover {
	background-color: rgba(255, 255, 255, 0.17) !important;
}

@-webkit-keyframes affBan {
	0%   { right: -600px; }
	100% { right: 0px; }
}

@-webkit-keyframes hideBan {
	0%   { right: 0px;  max-height: 150px; padding: 15px; }
	70% { right: -600px; }
	100% {  max-height: 0px; padding: 0px;}
}

@-webkit-keyframes tempBan {
	0%   { right: -600px; height: 100px}
	10%   { right: 0px; }
	90% { right: 0px;}  
	100% {right: -600px; height: 0px;}
}


