/*** custom checkboxes ***/

.chkterms input[type=checkbox] {
    display: none;
}
/* to hide the checkbox itself */
.chkterms label {
    font-weight: normal !important;
}

.chkterms input[type=checkbox] + label:before {
    font-family: FontAwesome;
    display: inline-block;
    font-size: 16px;
}

.chkterms input[type=checkbox] + label:before {
    content: "\f096";
}
/* unchecked icon */
.chkterms input[type=checkbox] + label:before {
    letter-spacing: 10px;
}
/* space between checkbox and label */

.chkterms input[type=checkbox]:checked + label:before {
    content: "\f046";
}
/* checked icon */
.chkterms input[type=checkbox]:checked + label:before {
    letter-spacing: 10px;
}
/* allow space for check mark */

.ball-overlay-trans {
    position: fixed;
    left: 0;
    text-align: center;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0);
    padding-bottom: 100px;
    height: 100%;
}

.ball-overlay {
    position: fixed;
    left: 0;
    text-align: center;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.12);
    padding-bottom: 100px;
    display: none;
    height: 100%;
    padding-left: 250px;
}

.ball-overlay-inner {
    text-align: center;
    width: 100%!important;
    margin-top: 220px;
}

@media only screen and (max-width:991px) {
    .ball-overlay {
        padding-left: 0px;
    }

        .ball-overlay h3 {
            font-size: 15px;
        }

    .ball-overlay-inner {
        margin-top: 170px;
    }
}

.ball-pulse-price {
    text-align: center;
    width: 100px;
}

    .ball-pulse-price > div {
        margin: 0px;
        display: inline-block;
    }

    .ball-pulse-price > div {
        width: 10px;
        height: 10px;
        border-radius: 100%;
        -webkit-animation: ball-pulse .75s infinite cubic-bezier(.2, .68, .18, 1.08);
        animation: ball-pulse .75s infinite cubic-bezier(.2, .68, .18, 1.08);
    }

        .ball-pulse-price > div:nth-child(1) {
            -webkit-animation-delay: -.36s;
            animation-delay: -.36s;
        }

        .ball-pulse-price > div:nth-child(2) {
            -webkit-animation-delay: -.24s;
            animation-delay: -.24s;
        }

        .ball-pulse-price > div:nth-child(3) {
            -webkit-animation-delay: -.12s;
            animation-delay: -.12s;
        }

.ball-pulse {
    top: 35%;
    text-align: center;
    border-radius: 5px;
    padding: 2px 10px;
    display: -webkit-inline-box;
    position: relative;
}

    .ball-pulse > div {
        margin: 2px;
        display: inline-block;
    }

    .ball-pulse > div {
        width: 15px;
        height: 15px;
        border-radius: 100%;
        -webkit-animation: ball-pulse .75s infinite cubic-bezier(.2, .68, .18, 1.08);
        animation: ball-pulse .75s infinite cubic-bezier(.2, .68, .18, 1.08);
    }

        .ball-pulse > div:nth-child(1) {
            -webkit-animation-delay: -.36s;
            animation-delay: -.36s;
        }

        .ball-pulse > div:nth-child(2) {
            -webkit-animation-delay: -.24s;
            animation-delay: -.24s;
        }

        .ball-pulse > div:nth-child(3) {
            -webkit-animation-delay: -.12s;
            animation-delay: -.12s;
        }

@-webkit-keyframes ball-pulse {
    0%, 80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: .7;
    }
}

@keyframes ball-pulse {
    0%, 80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: .7;
    }
}