@charset "UTF-8";
div.stickyAvalPay{
	position: fixed;
	right: 0;
    top: 40%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.stickyAvalPay>.sticky{
	box-shadow: -1px 0px 3px 1px rgba(102, 103, 103, 0.4);
	border-radius: 20px 0 0 20px;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    background: #f5f5f5;
    height: 92px;
}
.stickyflex{
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;	
}
.sticky>.open-button{
	
	width: 30px;
    border-right: 1px solid #babcbe;
}
.open-arrow{
	transition: all 0.5s ease-in-out;
}
.closed-arrow{
	transform: rotate(180deg)
}
.sticky>.content-stycky{
	padding: 10px 20px;
	width: 200px;
	transition: all 0.5s ease-in-out;
    box-sizing: border-box;
}
.sticky>.closed-content{
	margin-right: -200px;
}
.content-stycky .title{
	font-weight: 700;
    color: #009A48;
    margin: 0;
    font-size: 18px
}
.logo-container{
	background: #eaeae9;
	padding: 5px 25px;
	margin: 5px 0;
	border-radius: 15px;
	transition: all 0.5s ease-in-out;
}
.logo-avalPay{
	width: 110px;
}
.content-stycky a:hover .logo-container{
	-ms-transform: scale(1.02);
	-webkit-transform: scale(1.02);
	transform: scale(1.02); 
}

@media all and (max-width: 768px) {
	div.stickyAvalPay {
		top: 35%;
	}
	.stickyAvalPay>.sticky{
		height: 80px;
	}
	.sticky>.content-stycky{
		padding: 5px 10px;
    	width: 160px;
	}
	.sticky>.open-button{
		width: 20px;
	}
	.open-arrow{
		width: 8px;
	}
	.content-stycky .title{
		font-size: 16px;
	}
	.logo-avalPay {
	    width: 95px;
	}
	.logo-container{
		padding: 5px 15px;
	}
	.sticky>.closed-content {
	    margin-right: -160px;
	}
}

@media all and (max-width: 480px) {
	div.stickyAvalPay {
		top: 35%;
	}
	.stickyAvalPay>.sticky{
		height: 75px;
		 border-radius: 15px 0 0 15px;
	}
	.sticky>.content-stycky{
		padding: 5px 10px;
    	width: 135px;
	}
	.sticky>.open-button{
		width: 20px;
	}
	.open-arrow{
		width: 8px;
	}
	.content-stycky .title{
		font-size: 14px;
	}
	.logo-avalPay {
	    width: 90px;
	}
	.logo-container{
		padding: 5px 10px;
		border-radius: 8px;
	}
	.sticky>.closed-content {
	    margin-right: -135px;
	}
}