.cookiepolicy {
	background: #0b1526;
	bottom: 0;
	font-family: "Poppins", sans-serif;
	left: 0;
	padding: 20px 50px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 999;
	color: #8291ad;
	font-size: 15px;
	line-height: 30px;
	border-top: 1px solid #d2d600;
	font-weight: 600;
}

@media only screen and (max-width: 1500px){
	.cookiepolicy{
		font-size: 13px;
    	line-height: 27px;
	}
}

.cookiepolicy .button {
	padding: 18px 62px 18px 37px;
    border: 2px solid #8291ad;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 1.5px;
    transition: 0.3s all ease;
	white-space: nowrap;
	margin-left: 30px;
	cursor: pointer;
}

@media only screen and (max-width: 1500px){
	.cookiepolicy .button {
		font-size: 13px;
		line-height: 13px;
		padding: 18px 62px 18px 37px;
	}
}

@media only screen and (max-width: 991px){
	.cookiepolicy .button{
		display: block;
		margin-top: 15px;
	}
}

.cookiepolicy .button:before {
	content: '';
    position: absolute;
    left: 100%;
    margin-left: -40px;
    top: 48%;
    width: 4px;
    height: 0;
    padding-bottom: 4px;
    background-color: #d2d600;

}

.cookiepolicy .button:after {
	content: '';
    position: absolute;
    left: 100%;
    margin-left: -40px;
    top: 48%;
    width: 50px;
    height: 0;
    padding-bottom: 4px;
    background-color: #8291ad;
    transition: 0.3s all ease;

}

.cookiepolicy .button:hover{
	border: 2px solid #d2d600;
}

.cookiepolicy .button:hover:after {
	margin-left: -25px;
}