.button_unq{
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    background: linear-gradient( 120deg, #272727 0%, #272727 100%);
    box-shadow: 0px 2px 2px 2px #00000066;
	border: 2px solid #272727;
    color: #fff;
    font-size: 20px;
    border-radius: 3px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
	margin: 0 auto;
    display: block;
}

.check_box {
    width: 70px;
    height: 55px;
    border-radius: 0px;
    box-shadow: 0 0 12px -2px rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0;
}

.check_box svg{
    width: 60px;
    margin: -12px;
}

.check_box svg path{
    stroke-width: 3;
    stroke: #3ae13b;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
}

.fake_btn_container .active{
    background: #ff7e00;
    transition: 1s;
    border: 1px solid #ff7e00;
    padding: 0 64px 0px 15px;
}

.fake_btn_container p {
	margin-bottom: 0px !important;
    margin-left: 0px;
	color: #fff;
    font-size: 16px;
	text-align: center;
	text-transform: uppercase;
}

.fake_btn_container .active .check_box {
    right: 0;
    opacity: 1;
    transition: 1s;
}

.fake_btn_container .active p{
    margin-right: 0px;
    transition: 1s;
}

.fake_btn_container .active svg path{
    stroke-dashoffset: 0;
    transition: 1s;
    transition-delay: 1s;
}