.side_cart {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99999;
    cursor: pointer;
    height: 60px;
    width: 60px;
    background-color: #cccccc;
	border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
	text-align: center;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: jump 1s ease-in alternate infinite;
    animation: jump 1s ease-in alternate infinite;
}
.side_cart img{
    width: 100%;
}
#side_cart_wrapper {
    height: 100vh;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
	background-color: #FFF;
    box-shadow: 3px 0 9px 0 #000;
    overflow: scroll;
    transition: 0.5s;
	z-index: 999;
}
#side_cart_wrapper .side_cart_title {
    padding: 15px 0px;
    background: rgba(1,39,58,0.97);
    font-size: 20px;
    color: #fff;
    padding-left: 20px;
}
.side_cart_count{
    position: absolute;
    top: -10px;
    left: -12px;
    height: 23px;
    width: 23px;
    line-height: 23px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
	background-color: #000000;
    color: #ffffff;
    font-size: 15px;
}
.side_cart_footer{
    padding: 10px;
}
.side_cart_footer .header_btn a{
	 width: 100%;
}
#side_cart_wrapper .closebtn {
	position: absolute;
    top: 12px;
    right: 25px;
    font-size: 25px;
    margin-left: 50px;
    color: #fff;
}