#cro-widget {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	max-width: 350px;
	border-radius: 10px 0px 0px 0px;
	box-shadow: 0px 0px 15px #333;
	transition: transform 0.6s;
	transform: translateY(0);
	
	z-index: 2147483640;
}

#cro-widget.show {
	display: block;
}

#cro-widget.hidden {
	transform: translateY(300%);
}

#cro-widget.left {
	left: 0;
	border-radius: 0px 10px 0px 0px;
}

#cro-widget.top {
	top: 0;
	bottom: auto;
}

#cro-widget .inner-section {
	display: flex;
	padding-bottom: 15px;
	flex-direction: column;
}

#cro-widget .img-cont {
	flex: 1 0 175px;
	width: 100%;
	margin-bottom: 15px;
	padding: 20px;
}

#cro-widget .slide-content {
	flex: 1 1 auto;
	position: relative;
	padding: 15px;
    text-align: center;

}

#cro-widget .slide-content .headline {
    font-family: "Gotham SSm A", "Gotham SSm B";
    font-size: 24px;
    line-height: 28px;
    margin: 15px auto 20px;
    color: #484849;
}

#cro-widget .slide-content .desc {
	font-family: "Gotham SSm A", "Gotham SSm B";
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    color: #484849;
    margin: 0 0 20px;
}
#cro-widget #close {
	position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 15px 5px 15px;

}
#cro-widget.left #close {
	right: auto;
}

#cro-widget .see-more {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 5px;
	font-size: 22px;
	color: white;
}

@media (max-width: 641px) {
	#cro-widget .img-cont {
		display: none;
	}
}