.wrapper1 {	
	max-width: 565px;
	max-height: 180px;
	background: #fff;
	padding: 15px 15px 20px 15px;
	border-radius: 15px;
	box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
	text-align: center;	
	display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    overflowX: scroll;
    z-index:10000000;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.wrapper1.hide {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

::selection {
	color: #fff;
	background: #FCBA7F;
}

.wrapper1 img {
	max-width: 90px;
}

.content header {
	font-size: 25px;
	font-weight: 600;
}

.content {
	margin-top: 10px;
}

.content p {
	color: #858585;
	margin: 5px 0 20px 0;
}

.content .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.buttons button {
	margin: 5px 5px 5px 5px;
	border: none;
	outline: none;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	border-radius: 5px;
	background: #271D12;
	cursor: pointer;
	transition: all 0.3s ease;
}

.buttons button:hover {
	transform: scale(0.97);
}

.buttons .item {
	margin: 0 10px;
}

.buttons a {
	color: #000000;
}