/*[Start] Customer Button*/
.card-body button.btn {
    width: 100%;
    outline: none;
}
.card-body .bg-input,
.base-btn .bg-input,
.btn-form.bg-input {
    padding: 0px;
}
.card-body .bg-input input,
.base-btn .bg-input input,
.btn-form.bg-input input {
    width: 100%;
    height: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: 0;
    outline: none;
    border-radius: inherit;
    color: inherit;
}

.base-btn .bg-input input,
.btn-form.bg-input input {
    padding: 1.4rem;
}

.base-btn button {
    display: block;
    padding: 1.4rem;
    background: url("../img/btn_bg.png") no-repeat center center;
    background-size: cover;
    text-align: center;
    border-radius: 60px;
    width: 100%;
    color: #fff;
    position: relative;
    outline: none;
    border: 0;
    -moz-box-shadow: 4px 4px 18px -7px rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 4px 4px 18px -7px rgba(0, 0, 0, 0.9);
    -ms-box-shadow: 4px 4px 18px -7px rgba(0, 0, 0, 0.9);
    box-shadow: 4px 4px 18px -7px rgba(0, 0, 0, 0.9);
}

.base-btn button:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: block;
    transform: rotate(-45deg);
    margin-top: -4px;
}

button.btn-form {
    outline: none;
    border: 0;
}

.pagenation button {
    width: 100%;
    outline: none;
    border: 0px;
}

.pagenation.btn-prev >:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    display: block;
    transform: rotate(135deg);
}
.pagenation button:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: block;
    transform: rotate(-45deg);
    margin-top: -4px;
}
/*[End] Customer Button*/