.offcanvas-bottom {
    height: auto !important;
}

/* Start customer styles ///////////////////////////////////////////////////////////// */
.payment-method {
    text-align: center;
    background-color: goldenrod;
    width: 200px;
    height: 30px;
    margin: -15px auto;
    padding-top: 4px;
    border-radius: 20px;
}
.paymentGatewayOffcanvas {
    border-top: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: rgb(27,51,81);
    background: -moz-linear-gradient(180deg, rgba(27,51,81,1) 0%, rgba(32,60,96,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(27,51,81,1) 0%, rgba(32,60,96,1) 100%);
    background: linear-gradient(180deg, rgba(27,51,81,1) 0%, rgba(32,60,96,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b3351",endColorstr="#203c60",GradientType=1);
    color: #FFF;
}
.offcanvas-bg {
    background: rgb(27,51,81);
    background: linear-gradient(180deg, rgba(27,51,81,1) 0%, rgba(47,88,140,1) 100%);
}
.payWayMsg {
    position: absolute;
    width: 90%;
    top: 0;
    left: 5%;
}
.payWayMsg .alert-danger {
    border-radius: 0;
}
/* End customer */


.loader-line {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

.loader-line:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 30%;
    background-color: #3b74b9;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
}

.loader-line:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 30%;
    background-color: #3b74b9;
    -webkit-animation: lineAnim2 1.4s linear infinite;
    -moz-animation: lineAnim2 1.4s linear infinite;
    animation: lineAnim2 1.4s linear infinite;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}

@keyframes lineAnim2 {
    0% {
        left: -50%;
    }
    50% {
        left: 30%;
        width: 90%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}