.custom-control-label::before,
.custom-control-label::after {
    width: 1.5rem;
    height: 1.5rem;
    top: -0.15rem;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 9999999;
}

.loader-container {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.num_circle {
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    font-size: 11px;
    line-height: 32px;
    font-weight: 800;
    color: #fff;
}

.container-name {
    color: var(--lp-body-color);
    text-transform: uppercase;
    font-size: 10.5px;
}

.active .container-name {
    font-weight: bold;
}

.line {
    height: 45px;
    width: 1px;
}

@media only screen and (max-width: 992px) {
    .bg-img {
        background-image: none !important;
    }

    .line {
        height: 0px;
        width: 20px;
        margin-top: 11%;
    }
}

@media only screen and (max-width: 767px) {
    div.invoice-container .option a {
        width: 100% !important;
        text-align: center;
        margin-bottom: 10px;
    }

    .brand-logo,
    .liquid-logo {
        max-width: 150px;
    }
}

@media only screen and (max-width: 1000px) and (orientation: landscape) {
    .line {
        height: 0px;
        width: 30px;
        margin-top: 8%;
    }

    #patient-information,
    #payment-information {
        margin-bottom: 40px;
    }
}