@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
#manage-users .btn.btn-link.active {
    color: #25356c;
}

/***********************
    GENERAL STYLING
************************/

html, body {
    width: 100%;
    height: 100%;
    min-height: 100%;
    /*DO NOT CHANGE THIS: overflow should be set to scroll or left at default for the scroll events to fire in angular*/
    /*overflow: auto;*/
}
body {
    font-family: 'Ubuntu','Helvetica Neue';
    display: flex;
    /*min-height: 100vh;*/
    flex-direction:column;
}

a {
    cursor: pointer;
    color: #0077b7;
}
a:focus, a:active, a:hover, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus, button:focus {
    outline: none;
    text-decoration: none;
}

#calendar-table tr.out-row .highlighted:hover {
    cursor: pointer;
}

ul li {
    list-style-type: none;
}

.link-color {
    color: #0077b7;
}


.homepage-overflow {
    overflow: initial;
}

.arrow.down{
    border: solid #0077b7;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/***********************
   CUSTOM FORM ELEMENTS
************************/

input[type="text"] {
    border-radius: 0;
    height: 40px;
    font-weight: 300;
}
input[disabled] {
    background-color: #f0f0f0;
    color: #787878;
}
input[type=checkbox].css-checkbox {
    position:absolute;
    z-index:-1000;
    left:-1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height:1px;
    width:1px;
    margin:-1px;
    padding:0;
    border:0;
}

input[type=checkbox].css-checkbox + label.css-label {
    padding-left:38px;
    height:25px;
    display:inline-block;
    line-height:24px;
    background-repeat:no-repeat;
    background-position: 0 0;
    font-size:14px;
    vertical-align:middle;
    cursor:pointer;
    font-weight: 300;
}

input[type=checkbox].css-checkbox:checked + label.css-label {
    background-position: 0 -25px;
}
label.css-label {
    background-image:url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/custom_checkbox_v2.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=radio].css-radio {
    position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].css-radio + label.radio-label {
    padding-left:27px;
    height:22px;
    display:inline-block;
    line-height:22px;
    background-repeat:no-repeat;
    background-position: 0 0;
    font-size:22px;
    vertical-align:middle;
    cursor:pointer;
    font-weight: 400;
}

input[type=radio].css-radio:checked + label.radio-label {
    background-position: 0 -22px;
}
label.radio-label {
    background-image:url(https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/customRadioNew.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.label-float {
    position: relative;
    margin-bottom:15px;
}
.label-float input, .label-float .select-btn {
    border:1px solid #d4d4d5;
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 30px;
    height: 30px\9\0 !important;
    border-radius: 0 !important;
    color: #000000;
    font-weight: 300;
    display: block;
    padding: 27px 15px 3px;
    padding: 27px 15px 3px\9\0 !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.label-float textarea {
    border:1px solid #d4d4d5;
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    height: 40px;
    height: 40px\9\0 !important;
    border-radius: 0 !important;
    color: #333333;
    font-weight: 300;
    display: block;
    padding: 27px 15px 3px;
    padding: 27px 15px 3px\9\0 !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.label-float label {
    color:#666666;
    font-size:16px;
    font-weight:300;
    position:absolute;
    margin: 0;
    pointer-events:none;
    left:15px;
    top:20px;
    transition:0.2s ease all;
}

.label-float input:focus ~ label, .label-float label.non-empty, .label-float textarea:focus ~ label  {
    top:5px;
    font-size:12px;
}
/***********************
    CUSTOM STYLING
************************/
.error-label {
    color: #c95655 !important;
    font-weight: 400 !important;
}
.error-label img {
    width: 28px;
    height: 28px;
    margin-top: -2px;
    margin-right: 3px;
    vertical-align: middle;
}
.error-label.gen-practice-error {
    margin-bottom: -30px;
    text-align: right;
    margin-right: 340px;
    margin-top: 30px;
    font-size: 12px;
}
.error-label.gen-practice-error img {
    width: 33px;
    height: 33px;
}
.validationError {
    border-color:#c13b3c !important;
}

.validationErrorDelta {
    border: 1px solid #c13b3c !important;
}

.validationErrorText {
    color:#c13b3c !important;
    margin: 15px 0;
}

.validationErrorTextSpecialties {
    color:#c13b3c !important;
    margin: -5px 20px;
}

.validationErrorTextGuid {
    color:#c13b3c !important;
    margin: 15px 0;
    padding-left: 25px;
}

.imageValidationErrorText {
    color:#c13b3c !important;
}

.noProviders {
    width: 72px;
    height: 22px;
    font-family: Ubuntu;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.83;
    color: #333333;
}

.noDataText {
    color:#c13b3c !important;
}
/*these classes are added by angular when a pattern is not matched on an input field*/
.ng-dirty .ng-invalid-pattern{
    border-color:#c13b3c !important;
    color:#c13b3c !important;
}
.error-wrapper {
    margin-bottom:20px;
}
.error-wrapper .cell.img-cell {
    width: 5%;
}
.error-wrapper img {
    width: 25px;
    height: 25px;
}
.error-wrapper p.validationErrorText {
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;

}
.body-wrapper {
    margin: 0 auto;
    width: 100%;
    flex:1 0 0;
}
_:-ms-lang(x), .body-wrapper {
    flex:1 0 auto\9;
}
_:-ms-fullscreen, :root .body-wrapper {
    flex:1 0 auto;
}
.main-container {
    width: 100%;
    min-width: 1400px;
    height: 100%;
}
.main-wrapper {
    display: table;
}
.left-margin-zero {
    margin-left: 0;
}
.left-padding-zero {
    padding-left: 0 !important;
}
.right-padding-zero {
    padding-right: 0;
}
.bottom-margin-zero {
    margin-bottom: 0 !important;
}
.flush-padding {
    padding: 0;
}
.flush-margin {
    margin: 0 !important;
}
.v-middle {
    vertical-align: middle;
}
.top-twenty {
    padding-top: 20px;
}
.top-thirty {
    padding-top: 30px;
}
.top-fifty {
    padding-top: 50px;
}
.bottom-thirty {
    padding-bottom: 30px;
}
.bottom-ninety {
    padding-bottom: 90px;
}
.bottom-twenty {
    padding-bottom:20px;
}
.bottom-ten {
    padding-bottom:10px;
}

.grey-text {
    color: #999;
}
.table-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}
.table-wrapper .cell {
    display: table-cell;
    vertical-align: top;
}
.flex-wrapper {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
}
.flex-wrapper .flex-item {
    align-items: stretch;
}
.dropdown-menu {
    border-radius: 0;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    max-height: 19em;
    overflow: auto;
}
.dropdown-menu li a {
    font-size: 14px;
    font-weight: 300;
    padding: 8px 20px;
}
.dropdown-menu li a:hover {
    cursor: pointer !important;
}
.light {
    font-weight: 300 !important;
}
.med {
    font-weight: 400 !important;
}
.heavy {
    font-weight: 500;
}
.sixteen {
    font-size: 16px;
}
.inline {
    display: inline-block;
}
.default-color {
    color: #25356c;
}
.positive {
    color: #02a600;
}
.negative {
    color: #ff4a2b;
}
.neutral {
    color: #7e7f7f;
}
/***********************
    BUTTONS STYLING
************************/
.invisible-button{
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    border-spacing: 0;
    margin: 0;
    padding: 0;
    color: #0077b7;
    font-weight: 300;
    text-align : left;
}
.new-provider-img-container .invisible-button {
    text-align : center;
}
.btn-primary {
    background: #0077b7;
    border: none;
}
#move-practice-user .btn[disabled],
#move-practice-user .btn-primary[disabled]:hover {
    background-color: #bdbdbd;
    opacity: 1;
}
.pill {
    border-radius: 14px;
    padding: 4px 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.med-pill {
    text-transform: uppercase;
    border-radius: 24px;
    padding: 12px 30px;
    font-size: 14px;
}
.lg-pill {
    text-transform: uppercase;
    border-radius: 24px;
    padding: 8px 30px;
    font-size: 16px;
    margin-top: 6px;
}
.btn-default, .btn-gray {
    color: #a2a2a2;
    background: #ffffff;
    border: 1px solid #cccccc;
}
.first-btn {
    margin-right: 15px;
}
.btn:hover, .btn:focus, .btn:active {
    color: #25356c;
    box-shadow: none;
}
.btn-primary.disabled {
    background: #a4a4a4;
    border-color: #a4a4a4;
}
.btn-primary:hover, .btn-primary:active {
    color: #ffffff;
}
.btn-link:focus, .btn-link:active, .btn-link:hover {
    text-decoration: none;
}

.btn-white {
    color: #0077b7;
    background: #ffffff;
    border: 1px solid #0077b7;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}
.btn-white.link-btn {
    border: #25356c;
}
.btn-white.link-btn:hover {
    background-color: #fff;
    color: #25356c;
}
.btn-white-med-pill {
    text-transform: uppercase;
    border-radius: 20px;
    padding: 5px 24px 6px;
    font-size: 14px;
    color: #0077b7;
    background: #ffffff;
    border: 1px solid #0077b7;
    font-weight: 500;
}
.btn-white:hover, .btn-gray:hover, .btn-gray:active, .btn-blue-white-pill:hover, .btn-blue-white-pill:active, .btnSelected {
    color: #ffffff;
    background: #0077b7;
    border-color: #0077b7;
}
.btn-clear {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-clear:hover, .btn-clear:focus {
    background: #ffffff;
    color: #25356c;
}
.btn-blue-white-pill {
    border-radius: 24px;
    text-transform: uppercase;
    color: #0077b7;
    padding: 6px 30px;
    font-weight: 500;
}
.btn-direction {
    color: #0077b7;
    font-size: 16px;
    background: transparent;
    text-transform: uppercase;
}
.btn-direction span {
    vertical-align: text-top;
}
.btn-link {
    color: #0077b7;
}
.plus {
    font-size: 18px;
    font-weight: 300;
    line-height: 0;
}

.select-contain {
    position: relative;
}

.select-btn {
    border-radius: 0;
    border-color: #d4d4d5;
    padding: 10px 12px;
    width: 100%;
    font-weight: 300;
    text-align: left;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2015/arrow-down.png") no-repeat scroll 99% center / 35px auto #ffffff;
}

.select-btn-time {
    border-radius: 0;
    border-color: #d4d4d5;
    padding: 10px 12px;
    width: 100%;
    font-weight: 300;
    text-align: left;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2015/arrow-down.png") no-repeat scroll 99% center / 15px auto #ffffff;
}
.select-btn-time .caret {
    display: none;
}
.select-btn:hover {
    background-color: #ffffff;
    border-color: #d4d4d5;
}
.select-btn:active, .select-btn:focus {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    border-color: #d4d4d5;
    background-color: #ffffff;
}
.select-btn .caret {
    display: none;
}

.select-btn-time.time-select{
    display: inline-block;
    width: 70px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
/*.select-btn-time.time-select + .dropdown-menu {*/
/*left: 0 !important;*/
/*}*/
.select-btn-time.time-select + .dropdown-menu {
    width: 50px !important;
}
.select-btn.inline-select {
    display: inline-block;
    width: 220px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#carrier{
    width: 150px !important;
}

#carrier + .dropdown-menu{
    width: auto !important;
}

.inline-select.select-btn + .dropdown-menu {
    width: 220px;
}

.two-btn-set .btn:first-of-type {
    margin-right: 25px;
}

.switch {
    position: relative;
    height: 32px;
    width: 118px;
    background: #ddd;
    border: 1px solid #d4d4d5;
    border-radius: 16px;

}

.switch-label {
    position: relative;
    z-index: 2;
    float: left;
    font-weight: 500;
    width: 58px;
    line-height: 28px;
    font-size: 14px;
    color: #626262;
    text-align: center;
    cursor: pointer;
}

.switch-label-off {
    padding-left: 2px;
}

.switch-input {
    display: none;
}

.switch-input:checked + .switch-label {
    color: #ffffff;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
}

.switch-input:checked + .switch-label-on ~ .switch-selection {
    /* Note: left: 50% doesn't transition in WebKit */
    left: 54px;
}

.switch-selection {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 62px;
    height: 30px;
    border-radius: 16px;
    background: #0077b7;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}
.tips-toggle img {
    width: 22px;
    height: 22px;
}
.tips-toggle img:last-child{display:none}
.tips-toggle:hover img:first-child{display:none}
.tips-toggle:hover img:last-child{display:inline-block}

/***********************
    POPOVER STYLING
************************/

#create-account .password-requirements {
    margin-bottom: 20px;
    color:#c13b3c;
}

#create-account .password-requirements #pswd-req-header {
    font-size: 17px;
    width: 426px;
    margin: 0 auto;
    text-align: left;
}

#create-account #error-message {
    width: 602px;
    margin-left: 16px;
    font-size: 14px;
}

#create-account #create-account-form #create-login{
    font-weight: 400;
}

#create-account #create-account-form #terms-and-conditions{
    margin-top: 12px;
}

.popover-office-hours-error {
    padding: 10px;
    width: 90%;
    border: 1px solid lightgrey;
    position: absolute;
    top: 125%;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    z-index: 2;
}

.popover-office-hours-error-content{
    position: relative;
    left: 0%;
    text-align: center;
}

.popover-password-hint {
    border: 1px solid lightgrey;
    position: absolute;
    top: 58px;
    right: 90px;
    width: 400px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    z-index: 2;
}

.popover-password-hint .arrow {
    position: absolute;
    top: -10px;
    left: 90%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid lightgrey;
}

.popover-password-hint-create {
    border: 1px solid lightgrey;
    position: absolute;
    top: 320px;
    right: 90px;
    width: 400px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    z-index: 2;
}

.popover-password-hint-create .arrow {
    position: absolute;
    top: -10px;
    left: 90%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid lightgrey;
}


.popover-office-hours-error .open-arrow {
    position: absolute;
    top: -10px;
    left: 6%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid lightgrey;
}

.popover-office-hours-error .close-arrow {
    position: absolute;
    top: -10px;
    left: 67%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid lightgrey;
}


.popover {
    padding: 10px 15px;
    max-width: 700px;
    border-radius: 0;
}

.status-line .popover.bottom-right .arrow {
    left: 96%;
}
.provider-popover {
    left: -95px !important;
}
.location-popover .arrow {
    left: 95% !important;
}
.provider-popover.popover.bottom-left .arrow {
    left: 27%;
}
.license-popover.popover > .arrow {
    left: 92%;
}

.popover h4 {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.popover h4 span {
    font-weight: 500;
}
.popover p {
    text-transform: none;
}
.popover .notes {
    font-weight: 300;
}
.popover .footer {
    font-size: 12px;
    font-weight: 500;
}
.popover .dl-horizontal dt {
    font-weight: 400;
    margin-bottom: 15px;
}
.popover .dl-horizontal h4 {
    margin-bottom: 3px;
    margin-top: 3px;
}
.popover .plain-list li {
    padding: 5px 0;
}
.popover > .arrow:after {
    border-width: 11px;
}
.popover.bottom-right .arrow::after, .popover.bottom-left .arrow::after {
    margin-left: -11px;
}
.tips-toggle + .popover {
    width: 400px;
}
/*===============================
      DATEPICKER STYLING
================================*/

.uib-datepicker {
    padding: 15px 20px;
}
.uib-datepicker .uib-daypicker {
    border: 1px solid #e5e5e5;
    outline: none;
}
.uib-datepicker .uib-daypicker .btn {
    border: none;
}
.uib-daypicker .uib-title {
    color: #25356c;
    font-weight: lighter;
    font-size: 14px;
    opacity: 1;
    text-transform: uppercase;
}
.uib-daypicker .uib-title strong {
    font-weight: 300;
    font-size: 16px;
}
.uib-daypicker tr + tr th {
    background: #dddddd;
    color: #25356c;
    font-size: 14px;
    font-weight: 400;
}
.uib-datepicker thead th .btn:not(.uib-title) {
    padding-bottom:8px;
}
.uib-datepicker tbody td {
    border: 1px solid #e5e5e5;
}
.uib-datepicker tbody td.secondary, .uib-datepicker tbody td.secondary button {
    background: #f2f2f2;
}
.uib-datepicker tbody td .btn {
    color: #0077b7;
    font-size:13px;
}
.uib-datepicker tbody td .btn.active {
    color: #ffffff;
}
.uib-datepicker tbody td .btn.disabled, .uib-datepicker tbody td .btn[disabled] {
    opacity: 1;
    color: #aaaaaa;
}
.uib-datepicker .uib-left > i:before {
    content: none;
}
.uib-datepicker .uib-left > i {
    border-color: transparent #2b8bc7 transparent transparent;
    border-style: solid;
    border-width: 4px 8px 4px 0;
    height: 0;
    width: 0;
    content: none;
}
.uib-datepicker .uib-right > i:before {
    content: none;
}
.uib-datepicker .uib-right > i {
    border-color: transparent transparent transparent #2b8bc7;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    height: 0;
    width: 0;
}
.uib-datepicker-popup .uib-button-bar {
    display: none;
}


/*===============================
       ANGULAR DATEPICKER STYLING
================================*/
.datepicker.dropdown-menu {
    max-width:none !important;
    max-height:none !important;
    width: 300px;
    height: 300px;
    overflow: visible;
    padding: 15px;

}
.scheduler-form .datepicker {
    left: 340px !important;
}
.scheduler-form .datepicker.dropdown-menu:after {
    content: '';
    height: 28px;
    width: 13px;
    position: absolute;
    top: 7px;
    left: -12px;
    z-index: 99999 !important;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/datePicker-triangle.png");
    background-repeat: no-repeat;
}
.datepicker table {
    border: 1px solid #e5e5e5;
}
.datepicker table thead th button.pull-left i:before, .datepicker table thead th button.pull-right i:before {
    content: none;
}
.datepicker table thead th button.pull-left i {
    border-color: transparent #2b8bc7 transparent transparent;
    border-style: solid;
    border-width: 4px 8px 4px 0;
    content: none;
    height: 0;
    width: 0;
}
.datepicker table thead th button.pull-right i {
    border-color: transparent transparent transparent #2b8bc7;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    height: 0;
    width: 0;
}
.datepicker thead button {
    padding:0px 10px 5px;
}
.datepicker thead .btn-block {
    background: #ffffff;
    padding-bottom:0px;
    font-size: 16px;

}
.datepicker thead .btn-block strong {
    text-transform: uppercase !important;
    font-weight: 300;
    color: #25356c;
}
.datepicker thead .dow {
    background: #dddddd;
    color: #25356c;
    font-size: 12px;
    font-weight: 400;

}
.datepicker tbody td {
    border: 1px solid #e5e5e5;
}
.datepicker tbody td button {
    font-size: 13px;
    color: #0077b7;
}
.datepicker tbody td button[disabled] {
    color: #aaaaaa;
}
/***********************
    HEADER STYLING
************************/

.nav-tabs > li > a {
    border-radius: 0;
    color: #cccccc;
    padding: 15px 20px;
}

header.navbar {
    background: #25356c;
    height: 80px;
    border-radius: 0;
    min-width: 1400px;
    margin-bottom: 0;
    z-index: 1050;
}
header.navbar.reschedule-header {
    min-width: inherit;
}
header .container-fluid {
    padding: 0 30px;
}
header .navbar-brand {
    margin-top: 10px;
}
header .navbar-brand img {
    display: inline-block;
    width: 215px;
}

header p {
    display: inline-block;
    color: #25356c;
    margin-bottom: 0;
    margin-right: 20px;
}
.header-right {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(98%);
    -moz-transform: translateY(98%);
    -ms-transform: translateY(98%);
    -o-transform: translateY(98%);
    transform: translateY(98%);
}
_:-ms-fullscreen, :root .header-right {
    transform: translateY(-25%);
}
_:-ms-fullscreen, :root #contact-us.header-right {
    transform: translateY(-45%);
}

.header-right form {
    display: inline-block;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #ffffff;
}
.header-right span {
    color: #ffffff;
    font-size: 24px;
    vertical-align: middle;
}
.header-right a.menu {
    margin-top: 1px;
    display: block;
}
header .header-text {
    margin-right: 25px;
}
.header-right .dropdown-menu {
    left: auto !important;
    top: 40px !important;
    background: #ffffff;

    border-color: #d4d4d5;
}
.header-right .dropdown-menu:after, .header-right .dropdown-menu:before {
    bottom: 100%;
    left: 96%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.header-right .dropdown-menu:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 5px;
    margin-left: -5px;
}
.header-right .dropdown-menu:before {
    border-color: rgba(212, 212, 213, 0);
    border-bottom-color: #d4d4d5;
    border-width: 6px;
    margin-left: -6px;
}

.header-right .dropdown-menu > li > a {
    padding: 8px 54px;
    text-transform: uppercase;
}
#homepage header.navbar-fixed-top.scrolled {
    border-bottom: 1px solid #d4d4d5;
}
header .logged-out {
    background: #ffffff;
}
header .logged-out .container-fluid {
    padding: 20px 40px;
}
header .logged-out img {
    margin-right: 30px;
    vertical-align: middle;
    width: 130px;
}
header .logged-out p {
    font-size: 14px;
    text-transform: capitalize;
    color: #25356c;
    font-weight: 300;
}
.new-header-nav {
    margin-bottom:0;
    margin-top: 10px;
}-
.new-header-nav li a {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
}
.new-header-nav > li:first-of-type {
    margin-right: 10px;
}
header.generic {
    height: 90px;
    padding: 20px 40px;
    border-bottom: 1px solid #d4d4d5;
}
header.generic img {
    width: 130px;
    height: auto;
}
header.generic p {
    margin-right: 0;
    line-height:45px;
}
#questions-header{
    color: grey !important;
}

#homepage-banner .btn.lg-pill.video-btn,
.mobile-view .btn.lg-pill.video-btn {
    background-color: #0077b7;
}

#homepage-banner .btn.lg-pill.video-btn,
.mobile-view .btn.lg-pill.video-btn,
#homepage-banner .btn.lg-pill.video-btn:hover,
.mobile-view .btn.lg-pill.video-btn:hover {
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/btn-play-white-103x105.png");
    background-repeat: no-repeat;
    background-position: 5px 5px;
    background-size: 14%;
    padding-left: 51px;
}

#homepage-banner .btn.lg-pill.video-btn:hover,
.mobile-view .btn.lg-pill.video-btn:hover {
    color: #ffffff;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/btn-play-white-103x105.png");
    border-color: #25356c;
}

#homepage .video-overlay {
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/btn-play-125x125.png") no-repeat;
    width: 125px;
    height: 125px;
    display: block;
    position: absolute;
    right: 234px;
    top: 143px;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

#homepage .video-open-container {
    position: relative;
}

.video-modal .wistia-video {
    margin: 0 auto;
}

.video-modal .modal-header {
    padding: 25px 15px;
}

.video-modal p {
    margin-bottom: 0;
    font-size: 15px;
    padding-left: 20px;
}

.video-modal .close {
    color: #0077b7;
    font-size: 14px;
    font-weight: 300;
    opacity: 100;
    padding-top: 7px;
}

.video-modal .close b {
    top: 2px;
}

/***********************
    FOOTER STYLING
************************/

#footer {
    border-top: 1px solid #d4d4d5;
    background: #fff;
    width: 100%;
    z-index: 0;
    flex-shrink:0;
    padding: 15px 0;
}
#footer p.credit {
    font-size: 12px;
    font-weight: 300;
    color: #868686;
    margin: 5px 0;
    line-height: 20px;
}

/***********************
    LOG IN STYLING
************************/
.login-nav-header {
    border-bottom:1px solid #d4d4d5;
    height: 92px;
}
.login-nav-header h6 {
    font-weight: 300;
    font-size: 16px;
    line-height:30px;
    color: #000000;
}
.login-nav-header h6 a {
    margin-left: 5px;
}
.account-confirmation-alert {
    text-align: center;
    border-bottom: 1px solid #d4d4d5;
    height: 69px;
}
.account-confirmation-alert h4 {
    color: rgba(190,50,0,1);
    font-size: 14px;
    font-weight: 300;
    padding-top: 0px;
    text-align: left;
    line-height: 22px;
    margin: 0 0 20px;
}
.account-confirmation-alert div.alert-box {
    margin-right: 10px;
}
.account-confirmation-alert img {
    width: 38px;
    height: 38px;
    margin-bottom: 0px;
    margin-top: -6px;
}
#login-container {
    min-width: 1400px;
}
#login-left .login-error {
    border-bottom: 1px solid #d4d4d5;
    color: #02a600;
    margin-top: -10px;
    padding-bottom:20px;

}
#login-left .login-error img {
    height: 20px;
    width: 20px;
    vertical-align: text-bottom;
    margin-right: 8px;
}
#login-left .btn-wrapper {
    margin: 20px 0 40px;
}
#login-left .password-link {
    font-weight: 300;
    line-height: 44px;
}
#login-left p.last {
    font-size:13px;
}
#login-right {
    background: #ffffff;
    background-size: cover;
    background-position: top right;
    height: 100%;
    padding: 0 60px 40px;
    position: relative;
}

#login-right .top h2 {
     color: #333333;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin-bottom:50px;
}
.login-right-content {
    /*width: 760px;*/
    margin: 180px auto;
}
#login-right .login-right-content ul {
    background: url(https://d3ppyoxr8wczcq.cloudfront.net/images/oct2017/portal-login-bg.svg) no-repeat center center;
    background-position: center 74px;
    padding-bottom:50px;
}
#login-right .login-right-content ul li {
    vertical-align: top;
    margin: 0 8px;
}

#login-right .login-right-content ul li img {
    height: 64px;
    width: auto;
}
#login-right .login-right-content ul li.arrow {
    position: relative;
}
#login-right .login-right-content ul li.arrow img {
    width: 52px;
    height: 15px;
    position: absolute;
}
#login-right .login-right-content ul li.arrow.first img {
    top: 15px;
    left: -25px;
}
#login-right .login-right-content ul li.arrow.last img {
     top: 33px;
    left: -25px;
}
#login-right .login-right-content ul li p {
    font-weight: 300;
    margin-top: 30px;
    line-height: 25px;
    font-size: 13px;
    color: #333333;
}
.login-right-content .bottom {
    text-align: center;
}
.login-right-content h6 {
    color: #333333;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    display: inline-block;

}
.login-right-content h6 + img {
    height: 26px;
    width: auto;
    margin: 0 15px;
}


/***********************
    TOP SEARCH STYLING
************************/

.portal-nav .search-form {
    margin-right: 32px;
    position: relative;
}

.portal-nav .search-form button {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 6px;
    right: 13px;
    background: none;
    border: 0;
}

.portal-nav .search-form button img {
    width: 100%;
}

.portal-nav .nav-menu {
    position: relative;
    margin-top: 28px;
}

.portal-nav .nav-menu a {
    font-size: 14px;
    font-weight: 300;
    color: #b4d4e6;
    padding: 0 10px;
}

.portal-nav .nav-menu a:hover {
    color: #fff;
}
.portal-nav .nav-menu .dropdown-menu {
    margin: 0;
    padding: 0;
    width: 215px;
    position: absolute;
    border-radius: 3px;
    top: 35px !important;
    right: 0 !important;
    left: -42px !important;
    overflow: inherit;
}
.portal-nav .nav-menu .dropdown-menu:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: -20px;
    right: 18px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.portal-nav .nav-menu .dropdown-menu .divider {
    margin: 0;
}
.portal-nav .nav-menu .dropdown-menu a {
    color: #0077b7;
    padding: 18px 0 18px 30px;
}
.portal-nav .nav-menu a.openDropdown {
    color: #fff;
}
.portal-nav .nav-menu .dropdown-menu a:hover {
    background-color: #e6e6e6;
}
.portal-nav .nav-menu a:nth-child(2) {
    border-right: solid #fff 1px;
    border-left: solid #fff 1px;
    padding: 0 10px;
}

.search-form {
    margin-top: 21px;
}

.search-form input {
    outline: none;
}
.search-form input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}
.search-form input::-webkit-search-decoration,
.search-form input::-webkit-search-cancel-button {
    display: none;
}

.search-form input[type=search] {
    background: #25356c;
    border: solid 1px #ffffff;
    padding: 7px 10px 7px 20px;
    width: 158px;
    color: #ffffff;
    width: 270px;
    font-weight: 300;

    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.search-form input:-moz-placeholder {
    color: #b4d4e6;
    font-weight: 300;
}
.search-form input::-webkit-input-placeholder {
    color: #b4d4e6;
    font-weight: 300;
}

.search-form input:focus::-webkit-input-placeholder {
    color: #fff;
}

.top-search {
    border-bottom: 1px solid #d4d4d5;
    padding: 35px 30px 20px;
}
.top-search ul.list-inline {
    display: inline-block;
}
.top-search ul.list-inline li {
    vertical-align: middle;
}
.dashboard-links li {
    margin-right: 25px;
}

span.dashboard-check {
    margin-left: 1em;
}
.top-search ul li a {
    text-transform: uppercase;
    color: #25356c;
    font-size: 16px;
    font-weight: 300;
}
#top-search ul.dashboard-links li a:active, #top-search ul.dashboard-links li a:focus, #top-search ul.dashboard-links li .isSelected  {
    font-weight: 400;
    border-bottom: 3px solid #258bc9;
    padding-bottom: 5px;
}
.top-search .home-nav img {
    width: 38px;
}
.top-search ul li .vertical-divider {
    display: block;
    width: 1px;
    height: 30px;
    background: #d4d4d5;
    margin: 0 5px;
}
.top-search ul li h5 {
    font-weight: 300;
    font-size: 18px;
}
#top-search #search-form {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -moz-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    -o-transform: translateY(-25%);
    transform: translateY(-25%);
}
#search-form label {
    text-transform: uppercase;
    color: #d4d7e0;
    font-weight: 400;
    line-height: 35px;
    margin-right: 15px;
}

.input-group-addon {
    border-radius: 0;
    background: #ffffff;
}
#search-form .input-group-addon {
    border-right: none;
}
#search-form input[type="text"] {
    width: 240px;
    height: 27px;
    padding: 4px 12px;
}
#search-form .input-group-addon:last-of-type {
    border-right: 1px solid #cccccc;
}
#search-form .input-group-addon:last-of-type:hover {
    background: #f8f8f8;
}
#search-form .input-group-addon a {
    color: #cccccc;
}
#search-form .input-group-addon a:active, #search-form .input-group-addon a:focus {
    font-weight: 500;
    color: #258bc9;
}
#search-form .input-group-addon:last-of-type {
    padding: 0 5px;
}
.input-group-addon:last-of-type button {
    background: transparent;
    border: none;
    padding: 0;
}
.input-group-addon img {
    width: 25px;
    height: 25px;
}
#top-search .home-nav img {
    width: 40px;
}

/***********************
    PAGINATION STYLING
************************/

.pagination-container {
    padding: 10px 0 0;
}

/***********************
    DASHBOARD STYLING
************************/

.img-container {
    padding: 10px;
    border: 1px solid #d4d4d5;
    margin-right: 20px;
    display: inline-block;
}
.img-container img {
    width: 70px;
    height: 70px;
}
.search-list > li {
    border-bottom: 1px solid #d4d4d5;
    padding: 25px 0 25px 7%;
}
#practice-list > li {
    padding-left: 45px;
}

.search-list h3 {
    font-size: 24px;
    margin-top: 0;
    color: #258bc9;
    font-weight: 400;
    margin-bottom: 15px;
}

.provider-info-right .info-list > li:first-of-type {
    width: 15%;
}
.provider-info-right .info-list > li:nth-child(2) {
    width: 14%;
}
.provider-info-right .info-list > li:nth-child(3) {
    width: 19%;
}
.practice-info-right .info-list > li {
    vertical-align: top;
    padding: 0 30px;
}
.practice-info-right .info-list > li:first-of-type {

}
.practice-info-right .info-list > li:nth-child(2) {
    width: 28%;
}

/*************************
DASHBOARD SIDEBAR STYLING
**************************/

#filter-slider {
    height: 100%;
    display: none;
    background: #fafafa;

}
#filter-slider .sidebar {
    position: absolute;
    right: 0;
    top: 80px;
    height: auto !important;
    bottom: 60px;
}
#filter-slider .filter-closed {
    padding: 35px 0 0;
}

#filter-slider .filter-open:before, #filter-slider .filter-closed:before,
#provider-main:before, #practice-select:before,
#link-practice:before, #practice-dashboard:before, #account-setting-main:before, #confirm-practice-container:before, #request-access-container:before, #contact-page:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.sidebar {
    background: #fff;
    height: 100%;
}

#filter-slider button {
    background: #ffffff;
    line-height: 16px;
    vertical-align: text-top;
    border-radius: 50%;
    border: 1px solid #d4d4d5;
    padding: 14px;
    font-family: helvetica, arial, sans-serif;
    font-weight: 500;
    color: #25356c;
    font-size: 28px;
}
#filter-slider h6 {
    text-transform: uppercase;
    color: #25356c;
    font-weight: 400;
}
#filter-slider .filter-open .filter-open-top {
    padding: 27px 30px 22px;
    border-bottom: 1px solid #d4d4d5;
}
#filter-slider .filter-open h3 {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
    margin: 0;
    text-transform: uppercase;
    margin-right: 15px;
    color: #25356c;
}
#filter-slider .filter-open button {
    vertical-align: middle;
    line-height: 9px;
    padding: 14px;
}
#filter-slider .filter-section {
    padding: 20px 30px;
    border-bottom: 1px solid #d4d4d5;
}
#filter-slider .filter-section:last-of-type {
    border-bottom: none;
}
.filter-section h4 {
    font-weight: 300;
    margin-bottom: 20px;
    color: #25356c;
    text-transform: uppercase;
}
#filter-slider .filter-section ul li {
    margin-bottom: 10px;
}
#filter-slider .filter-section ul li label {
    font-size: 14px;
    font-weight: 300;
    color: #616161;
    padding-left: 40px;
}
.filter-section ul li input[type="checkbox"] {
    margin-right: 10px;
}
#filter-slider .filter-open.ng-hide-remove {
    animation: 0.5s slideInRight ease;
    -webkit-animation: 0.5s slideInRight ease;
    -moz-animation: 0.5s slideInRight ease;
}

/***********************
    DELTA SPLASH PAGE
************************/

#callback-modal.video-modal .modal-dialog {
    width: 865px;
}

#homepage.delta-homepage {
    min-width: 1400px;
}

#delta-header {
    background-color: #43b02a;
    height: 90px;
}

.modal-open .modal.delta-modal {
    font-family: "Gotham A", "Gotham B";
}

#homepage.delta-homepage {
    padding-top: 0;
    font-family: "Gotham A", "Gotham B";
}

#homepage-banner.delta-homepage-banner p {
    color: #333333;
}

#homepage-banner.delta-homepage-banner .new-wrapper.container-fluid {
    padding-top: 0;
}

#homepage-banner.delta-homepage-banner img {
    margin-top: 33px;
}

#homepage.delta-homepage h1 {
    font-size: 30px;
    font-weight: 300;
    max-width: 461px;
    margin-top: 44px;
    line-height: 1.47;
    margin-bottom: 5px;
    color: #333333;
}

#practice-map .practice-found-inactive {
    background-color: white;
    color: #d4d4d5;
    border: 1px solid #d4d4d5;
}

/*.delta-devices {*/
/*margin-left: -20px;*/
/*}*/

#homepage-banner .delta-devices {
    position: absolute;
    bottom: -30px;
    left: 480px;
    height: 439px;
    width: 377px;
}

#homepage-banner .delta-getstartedForm input {
    border-style: solid;
    border-color: #8e8e8e;
    border-width: 0.5px;
    margin-bottom: 0;
    font-weight: 400;
    color: #333333;
    padding: 0 25px;
    font-size: 14px;
    height: 52px;
}
#homepage-banner .delta-getstartedForm input::-webkit-input-placeholder,
#homepage-banner .delta-getstartedForm input::-moz-placeholder,
#homepage-banner .delta-getstartedForm input:-moz-placeholder,
#homepage-banner .delta-getstartedForm input:-ms-input-placeholder
{
    color: #969696;
}

#homepage-banner .delta-getstartedForm input:invalid {
    box-shadow: none;
}

#homepage-banner .delta-getstartedForm input.ng-invalid.ng-touched {
    border-color: #c13b3c;
}

#homepage-banner.delta-homepage-banner {
    background-color: #ffffff;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/delta-splash-3600x1202.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 601px;
    min-width: 1400px;
    background-position: top right;
    position: relative;
}

#homepage-banner .delta-devices-wrapper {
    padding-top: 126px;
}

#homepage-banner .delta-form-wrapper {
    height: 601px;
    margin-left: 100px;
}

#homepage-banner .delta-form-wrapper p {
    font-size: 14px;
    font-weight: 400;
    padding: 20px 0 14px 0;
    margin: 0;
}

#homepage-banner .delta-validation.validationErrorText {
    color: #c13b3c !important;
    font-size: 13px;
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/del-error-yield-42x38.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 3%;
    padding-left: 29px;
    margin: 10px 0 15px 0;
}

#homepage-banner .delta-getstartedForm label {
    color: #333333;
    font-weight: 300;
    margin-bottom: 15px;
    margin-top: 5px;
    width: 100%;
}

#delta-header .delta-logo {
    margin-left: 40px;
    margin-top: 30px;
}

#delta-header .delta-logo img {
    width: 379px;
    height: 37px;
}

#delta-header .delta-login {
    margin-top: 30px;
}

#delta-header .delta-login .btn.lg-pill {
    background: none;
    margin-top: 0;
    font-size: 10px;
    margin-left: 18px;
    padding: 8px 15px;
    color: #fff;
    border-color: #ffffff;
    margin-top: 1px;
}

#delta-header .delta-login .btn.lg-pill:hover {
    color: #43b02a;
    background: #ffffff;
}

#homepage-banner.delta-homepage-banner .btn.lg-pill {
    border-color: #5cb440;
    background-color: #5cb440;
    color: #ffffff;
    display: block;
    padding: 11px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin: 18px 0 26px 0;
}

#homepage-banner .delta-divider {
    margin-bottom: 15px;
}

#homepage-banner .delta-divider p,
#homepage-banner .delta-divider span {
    float: left;
}

#homepage-banner .delta-divider p {

    color: #333333;
    font-size: 14px;
    font-weight: 300;
    width: 40px;
    height: 20px;
    padding: 0;
    margin-top: -12px;
}

#homepage-banner .delta-divider span {
    border-top: solid 1px #cccccc;
    height: 1px;
    display: block;
    width: 180px;
}

#homepage-banner .delta-details {
    clear: both;
    border-top: solid 1px #cccccc;
}

#homepage-banner .delta-details,
#homepage-banner .delta-getstartedForm input {
    width: 400px;
}

#homepage-banner .delta-details p {
    margin-top: 0;
    font-size: 14px;
    padding-bottom: 20px;
    padding-top: 32px;
}

#homepage-banner .delta-details p.delta-learnMore {
    border-bottom: solid #aeaeae 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#homepage-banner .delta-form-wrapper p.del-callInfo {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 21px;
}

#homepage-banner .delta-form-wrapper p.del-callInfo b {
    font-weight: 500;
}

#homepage-banner .delta-form-wrapper .access-code-toggle img {
    margin-top: 0;
    margin-left: 5px;
}

#homepage-banner .delta-details a {
    color: #43b02a;
    font-weight: 700;
}

#delta-header .delta-contact {
    color: #fff;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 6px;
}

#homepage-banner.delta-homepage-banner .btn.lg-pill.video-btn {
    background-color: transparent;
    color: #43b02a;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/del-video-play-ic-32x32.png");
    font-size: 10px;
    font-weight: 500;
    padding: 6px 17px 6px 30px;
    margin: 29px 0 0 25px;
}

#homepage-banner.delta-homepage-banner .btn.lg-pill:hover {
    border-color: #2B6D16;
    background-color: #2B6D16;
    color: #5cb440;
}

.delta-secondary-content h2 {
    font-size: 24px;
    font-weight: 300;
    margin-top: 78px;
    margin-bottom: 50px;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/email/gray-line-550x27.png");
    background-repeat: repeat-x;
    margin: 78px 72px 50px 72px;
}

#homepage-banner .delta-form-wrapper .popover {
    font-family: "Gotham A", "Gotham B", Helvetica Neue, Helvetica, Arial;
    max-width: 407px;
}

#homepage-banner .delta-form-wrapper .popover p {
    font-size: 12px;
    padding: 10px 0 10px;
}

#homepage-banner .delta-form-wrapper .popover h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 0.67;
    text-transform: inherit;
}

.delta-secondary-content h2 > span {
    background-color: #fff;
    padding: 0 30px;
}

.delta-secondary-content p {
    line-height: 1.67;
    font-size: 18px;
    width: 480px;
    font-weight: 300;
    padding-left: 40px;
}

.delta-secondary-content img {
    margin-top: 6px;
}

.d-secondary-content-row {
    width: 1280px;
    margin: 0 auto;
}

.delta-secondary-content {
    margin-bottom: 110px;
}

.delta-secondary-content .del-left-col,
.delta-secondary-content .del-right-col {
    float: left;
    width: 540px;
    margin: 0 50px;
}

.delta-modal-error {
    margin-left: -14px;
}

.delta-modal-error .del-or {
    font-size: 16px;
    font-weight: 400;
}

.delta-modal-error h2 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: "Gotham A", "Gotham B", Helvetica;
}

.delta-modal-error p {
    padding: 0 0 10px 0;
    font-size: 15px;
    font-weight: 400;
    width: 639px;
    line-height: 2;
}

/********************************
    CIGNA SPLASH PAGE STYLING
*********************************/

#homepage.cigna-homepage {
    padding-top: 0;
    padding-bottom: 100px;
    font-family: Arial;
}

#homepage.cigna-homepage .btn-primary {
    background: #188ccc;
    margin-right: 15px;
}
#cigna-header {
    padding: 23px 0;
    border-bottom: 1px solid #cccccc;
}
#cigna-header .cigna-logo {
    margin-left: 40px;
}
#cigna-header img:first-of-type {
    width: 134px;
    height: auto;
    border-right: 1px solid #188ccc;
    padding-right: 20px;
    margin-right: 20px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
#cigna-header img:last-of-type {
    width: 100px;
    height: auto;
    vertical-align: bottom;
}

#cigna-header .cigna-content {
    margin: 0 12px 0 0;
    line-height: 40px;
}
#cigna-header .btn-primary {
    font-size: 10px;
    padding: 5px 18px;
    margin-top: 8px;
}
#homepage-banner.cigna-homepage-banner {
    background-color: #ffffff;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/delta-splash-3600x1202.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 601px;
    min-width: 1400px;
    background-position: top right;
    position: relative;
    border-bottom: 1px solid #cccccc;
}
#homepage-banner.cigna-homepage-banner h1 {
    color: #333333;
    font-size: 28px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 2vw;
    margin-bottom: 10px;
}
#homepage-banner.cigna-homepage-banner h1 sup {
    font-size: 8px;
    vertical-align: super;
    margin-left: 3px;
}
#homepage-banner.cigna-homepage-banner p {
    color: #333333;
}
#homepage-banner.cigna-homepage-banner .btn.first-btn {
    display: block;
    padding: 10px 30px;
    margin: 20px 0 30px;
}
#homepage-banner.cigna-homepage-banner .delta-getstartedForm input {
    border-color: #8d8d8d;
}
#homepage-banner.cigna-homepage-banner .call-text {
    font-size: 20px;
    padding-top: 5px;
}
.cigna-secondary-content h3 {
    width: 100%;
    border-bottom: 1px solid #cccccc;
    line-height: 0.1em;
    margin: 60px 0;
    font-size: 22px;
}
.cigna-secondary-content {
    margin-top: 40px;
    padding: 0 40px;
}
.cigna-secondary-content h3 span {
    background: #ffffff;
    padding: 0 20px;
}
.cigna-secondary-content .flex-wrapper {
    justify-content: space-around
}
.cigna-secondary-content .flex-wrapper img {
    width: 40px;
    margin-right: 20px;
    margin-bottom:-5px;
    vertical-align: super;
}
.cigna-secondary-content .flex-wrapper p {
    font-size: 18px;
    color: #666666;
    line-height: 28px;
}








    /***********************
        SHARED STYLING
    ************************/

.main-info {
    padding: 30px 35px;
}
.main-info h2, .info-section-header #practice-title{
    font-size: 22px;
    font-weight: 300;
    margin-left: 0;
    margin-top:15px;
}
.info-section-header {
    margin: 5px 0 30px 0;
}
.addon-text {
    font-weight: 300;
    margin: -16px 0 20px 10px;
    font-size: 13px;
    line-height: 19px;
    font-style: italic;
}
.status-line ul li {
    font-weight: 300;
    vertical-align: middle;
}
.status-line ul li a {
    font-weight: 500;
}
.status-line ul li img {
    width: 35px;
}

.dash-practice-section {
    margin: 10px 0px 25px 10px;
    padding: 25px 0;
}
.dash-practice-section address {
    font-size: 16px;
}
.dash-practice-section .dash-practice-links {
    margin-top: 20px;
}
.dash-provider-section {
    border: 1px solid #d4d4d5;
    padding: 20px 25px;
    margin: 10px 5px 25px 45px;
    position: relative;
    height: 545px;
}

.dash-practice-section .dash-practice-links .dash-practice-progress {
    margin-top: 20px;
}
.dash-provider-section .dash-provider-links {
    margin-top: 20px;
}

.dash-practice-section .dash-brighter-sched {
    border: 1px solid #d4d4d5;
    margin-top: 40px;
    padding: 30px 25px 20px;
    margin-right: 0;
}

.dash-practice-section .dash-brighter-sched p {
    font-size: 16px;
}

.dash-practice-section .dash-brighter-sched img {
    height: 40px;
}

.dash-practice-section .dash-brighter-sched span {
    font-size: 18px;
    padding: 0 8px;
    font-weight: 300;
}

.dash-practice-section .dash-brighter-sched p {
    font-size: 15px;
    color: #a8a8a8;
    margin-top: 10px;
    font-weight: 300;
}

.dash-practice-section .dash-brighter-sched .row {
    text-align: center;
}

.dash-practice-section .dash-brighter-sched button {
    margin-left: 20px;
    vertical-align: super;
    text-transform: uppercase;
}

#dash-practice-map .map-container {
    padding: 10px;
    height: 318px;
    border: 1px solid #d4d4d5;
}
#dash-practice-map .map-container .angular-google-map-container {
    height: 300px;
}
#dash-practice-map .map-container img {
    width: 100%;
}


.info-section {
    border: 1px solid #d4d4d5;
    padding: 15px 25px;
    margin-bottom: 15px;
    position: relative;
}
.info-section .edit-link {
    font-size: 13px;
    font-weight: 300;
}
.deleteConfirmation .btn {
    font-size: 14px;
    font-weight: 300;
    border-radius: 0;
    text-transform: uppercase;
}
.deleteConfirmation .delete-button button {
    color: #258bc9;
    padding: 0;
    line-height:14px;
    background: none;
    border: none;
}
.info-section.office-hours-section .edit-link {
    margin-right: 15px;
    margin-top: 15px;
}

.info-section ul.list-inline {
    display: inline-block;
}
.info-section.provider-general ul.list-inline  {
    vertical-align: top;
    display: block;
}
.photo-item {
    padding-left: 0;
    margin-top: -10px;
    margin-left: -4px;
}


.photo-item img {
    margin-right: 2px;
    width: 16px;
    vertical-align: text-bottom;

}
.photo-item a {
    font-size: 10px;
    text-align: center;
}
.info-section ul.list-inline.block-list {
    display: block;
    margin-bottom: 35px;
}
.info-section-header + .btn-white, .info-section-header + .add-span {
    margin-left: 20px;
    margin-top: 2px;
    margin-bottom: 20px;
    font-weight: 400;
    vertical-align: sub;
}

a.expand-toggle span {
    font-size: 18px;
}

.info-section h5 {
    font-weight: 300;
    font-size: 16px;
}
.info-list > li {
    border-right: 1px solid #d4d4d5;
    padding: 0 18px;
}
.info-list > li:last-of-type {
    border-right: none;
}
.info-list.single-list-breaker > li {
    margin-bottom: 30px;
}
.info-list label {
    font-size: 12px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}
.info-list label + p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 300;
    display: inline-block;
}
.info-list label + p + img {
    width: 30px;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: middle;
}
.info-list label + p + button {
    font-weight: 300;
    border: none;
    margin-top: -4px;
    padding: 0;
    margin-left: 5px;
    color: #0077b7;
    background-color: transparent;
}
.info-list label + p + button > img {
    width: 100%;
}
.info-list > a {
    font-size: 16px;
}
.left-label {
    border: 1px solid #D4D4D4;
    border-right: 0;
    padding: 0 15px !important;
    height:48px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: 400;
}

.left-label #role-selection-error{
    line-height: 20px;
    text-transform: none;
    color : #ff0000;
}


.app-settings .left-label span.light {
    font-size: 12px;
}
.right-input {
    height: 48px;
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
}
.right-input > input, .right-input > .select-btn, .right-input > span, .right-input > div.radio-group {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 1px solid #d4d4d5;
    padding-left: 15px;
    display: block;
}
.right-input > .select-btn + .dropdown-menu, li > .select-btn + .dropdown-menu  {
    width: 100%;
}
.right-input > div.radio-group, .right-input > span {
    line-height: 48px;
}
.right-input input:focus {
    border-color: #66afe9;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.radio-group input.css-radio[type="radio"] + label.radio-label {
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    padding-left: 30px;
    margin-right: 15px;
}

.language-list li {
    width: 49%;
    margin-bottom: 15px;
    margin-right: 2%;
    display: inline-block;
}

.single-col-list-wrapper .single-col-list:nth-child(even) {
    margin-right: 0;
}

.single-col-list {
    width: 49%;
    margin-right: 2%;
    float: left;
}

.single-col-list .language-list li {
    width: 100%;
}

.language-list li:nth-child(even) {
    margin-right: 0;
}
.language-list li .deleteConfirmation {
    margin-top: 6px;
}
.empty-module {
    font-style: italic;
    margin-bottom: 0;
    padding: 9px 0;
    color: #333333;
    font-weight: 300;
}
.log-item {
    padding: 10px;
}
.log-item a {
    font-weight: 300;
}
.log-item:nth-child(odd) {
    background: #f8f8f8;
}
/***********************
    PROVIDER STYLING
************************/

#provider-main {
    /*display: table-cell;*/
    float: none;
    width: 100%;
}
.info-section .img-upload-container {
    border: 1px solid #258bc9;
    display: inline-block;
    padding: 0 10px 8px;
    margin-right: 20px;
    vertical-align: top;
}
.provider-general.info-section .img-upload-container {
    width: 180px;
    height: 180px;
}
.info-section .empty-img-container {
    display: inline-block;
}
.info-section .img-upload-container > img {
    margin: 0 auto;
    display: block;
}
.provider-general.info-section .empty-img-container .img-upload-container img {
    position: relative;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.provider-general.info-section .empty-img-container .img-upload-container .pill {
    display: block;
    margin: 45px auto 0;
    width: 80%;
}
.info-section .update-photo .img-upload-container > div {
    background: #000000;
    position: relative;
}
.info-section .update-photo .img-upload-container > div:hover img {
    opacity: 0.5;
}
.info-section .update-photo .img-upload-container img {
    width: 100%;
}

.info-section .update-photo {
    display: inline-block;
    text-align: center;
    margin-right: 24px;
}

.info-section .update-photo a.edit {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
}
.info-section .update-photo a.edit span {
    font-size: 18px;
}
.info-section .update-photo .delete-confirm h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}
.info-section .update-photo .delete-confirm .btn {
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 2px 20px;
    margin: 0 5px;
}
.delete-confirm .btn:hover {
    background: #686868;
}
.info-section .update-photo .img-upload-container {
    padding: 5px;
    margin-right: 0;
    margin-bottom: 5px;
}
.info-section .update-photo .img-upload-container .delete-confirm {
    position: absolute;
    top: 30%;
    width: 100%;
}
.update-photo .dropdown-menu li a {
    color: #0077b7;
}
.info-section ul.speciality.list-inline p {
    font-size: 14px;
}
.expand .info-list {
    padding-top: 40px;
}
.license-expand .info-list li {
    margin-bottom: 15px;
}
.license-expand hr {
    border-color: #d4d4d5;
    margin: 15px -25px 20px;
}



.license-expand .refresh-container {
    padding-bottom: 6px;
}

.license-expand .refresh-container button {
    margin-right: 15px;
}

.disciplinary-action > .action-list {
    border: solid #d4d4d5 1px;
    margin-bottom: 30px;
}

.action-list .list-inline {
    padding-left: 15px;
    margin-bottom: 15px !important;
}

.action-list .popover {
    box-shadow: none;
}

.popover > .arrow:after {
    border-width: 10px;
}

.action-list .popover.bottom {
    margin-top: 15px;
    margin-left: 88px;
    width: 300px;
}

.action-list .popover.bottom > .arrow {
    left: 15% !important;
}

.disciplinary-action .action-notes-container {
    border-top: solid #d4d4d5 1px;
    margin: 0 17px;
    padding: 20px 0 15px 15px;
}

.license-expand .refresh-container span {
    font-size: 12px;
    margin-right: 15px;
}
.license-expand .not-valid {
    padding: 0;
}
.license-expand .not-valid .btn-danger {
    font-weight: 400;
}
#manage-users .btn-resend {
    font-weight: 400; color: #ffffff; background-color: #0077b7;
}

#manage-users .btn-move-user {
    font-weight: 400; color: #ffffff; background-color: #31D72B;
}

#manage-users .manage-users-select-tabs p {
    line-height: 28px;
    margin: 0;
    font-weight: 300;
}
#manage-users .manage-users-select-tabs .btn-group {
    margin-top: 5px;
}
#manage-users .manage-users-select-tabs label,
#manage-users .manage-users-select-tabs .user-delete-button {
    border-right: 1px solid #0077b7;
    line-height: 14px;
    padding:0 12px;
    font-weight: 300;
}
#manage-users .manage-users-select-tabs label.active {
    font-weight: 400;
    color: #000000;
}
#manage-users .manage-users-select-tabs label.btn-all,
#manage-users .manage-users-select-tabs .manage-item:last-of-type{
    border-right: none;
}



#manage-users .manage-users-select-tabs .manage-item.with-border {
    border-right: 1px solid #0077b7;
}

#move-practice-user .practice-user-details {
    border: 1px solid #ddd;
    display: table;
    height: 100%;
    width: 100%;
}

#move-practice-user #practice-lookup-section {
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

#move-practice-user #practice-lookup-section #search-icon {
    padding: 10.5px;
    width: 47px;
}

#move-practice-user .info-list {
    margin: 0;
    padding: 0;
}

#move-practice-user .info-list > li {
    padding: 0;
    border: none;
}

#move-practice-user .aside-left-col,
#move-practice-user .aside-right-col {
    padding: 22px;
    display: table-cell;
    height: 100%;
}

#practice-no-results-section {
    margin-left: 0;
}

#move-practice-user .aside-left-col {
    border-right: solid 1px #ddd;
    width: 280px;
}

#move-practice-user .aside-left-col .info-list li:first-child {
    border-bottom: solid 1px #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#move-practice-user .aside-right-col .aside-footer {
    padding: 0;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: left;
}

#move-practice-user .aside-left-col h5 {
    margin-bottom: 30px;
}

/*#move-practice-user .aside-right-col {*/
/*width: 468px;*/
/*}*/

#practice-result-section {
    display: table;
    width: 630px;
    margin: 10px 0 20px 0;
}

#practice-result-section ul {
    display: table-row;
}

#practice-result-section .info-list > li {
    display: table-cell;
    padding: 10px 20px;
}

#practice-result-section .info-list.with-border > li {
    border-bottom: solid #ddd 1px;
}

#practice-result-section .info-list.with-border > li.with-border {
    border-right: solid #ddd 1px;
}

#move-practice-user .aside-right-col h5 {
    margin-bottom: 20px;
}

#move-practice-user .aside-right-col p {
    font-weight: 300;
}

.info-section h3.state {
    display: inline-block;
    font-size: 50px;
    font-weight: 300;
    width: 90px;
    margin-right: 15px;
}
.info-section .degree-wrapper {
    display: inline-block;
    margin-right: 5%;
    vertical-align: middle;
}
.info-section .degree-wrapper h3 {
    font-size: 50px;
    font-weight: 300;
}
.location-section .info-list {
    width: 100%;
}
.location-section .info-list li {
    vertical-align: top;
}
.location-section .info-list li:first-of-type, .location-section .info-list li:nth-child(2) {
    width: 20%;
}

.location-section .info-list li:nth-child(3) {
    width: 30%;
    border-right: none;
}
.location-section .info-list li:last-of-type {
    border-left: 1px solid #d4d4d5;
}

/***********************
    PRACTICE STYLING
************************/

#practice-main {
    min-height: 816px;
    width:100%;
    float: none;
    /*display: table-cell;*/
}
#practice-top .map-container {
    padding: 10px;
    width: 272px;
    height: 272px;
    border: 1px solid #d4d4d5;
    margin-right: 30px;
}
#practice-top .map-container .angular-google-map-container {
    height: 250px;
}
#practice-top .map-container img {
    width: 100%;
}
.practice-top-right h3 {
    font-weight: 400;
    margin-bottom: 15px;
}
.practice-top-right address {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
}
.practice-top-right address img {
    width: 35px;
    vertical-align: bottom;
}
#practice-top .practice-top-right .info-list {
    display: block;
}
#practice-top .practice-top-right .info-list:first-of-type {
    margin-bottom: 35px;
}

.billing-info label {
    display: block;
    font-size: 12px;
    font-weight: 400;
}
.billing-info h4 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 30px;
}

.billing-info .deleteConfirmationSection, .educationSection .deleteConfirmationSection{
    margin-top: -2px;
    margin-left: 4px;
}

.info-section #board-status-popover-img {
    width: 35px;
}
#board-status-popover #board-status-header{
    font-weight: 900;
}

/****************************
    OFFICE HOURS STYLING
******************************/
.practice-office.aside {
    width: 69%;
    min-width: 880px;
}

.practice-office.aside .aside-dialog .aside-body {
    padding-right: 0;
}

.office-hours-section {
    padding: 0;
    border: none;
}
.office-hours-section .same-text {
    padding: 20px 0 20px 20px;
}
.info-section ul.days-list {
    width: 100%;
    border-spacing: 10px;
    display: table;
}
.list-inline .office-days {
    border: 1px solid #d4d4d5;
    padding: 0;
    display: table-cell;
    width: 13%;
    vertical-align: top;
    position: relative;
}

.office-days h5 {
    font-weight: 300;
    padding: 6px 0 12px;
}
.office-days .morning {
    border-top: 1px solid #d4d4d5;
    padding: 20px 0;
}
.office-days .closed {
    border-top: 1px solid #d4d4d5;
    height: 140px;
    width: 100%;
    background: #f7f7f7;
}
.office-days.closed-day h5 {
    color: #838383;
}
.office-days span {
    display: block;
    font-weight: 300;
}
.office-days img {
    width: 20px;
    margin: 8px 0;
}
.office-days h6 {
    font-size: 13px;
    font-weight: 400;
}
.office-days .closed h6 {
    padding-top: 30px;
    color: #898989;
    font-weight: 300;
    font-size: 14px;
}
.office-days .afternoon {
    border-top: 1px solid #d4d4d5;
    padding-bottom: 15px;
}
.op-count, .practice-contact-phone {
    display: inline-block;
}
.op-count label, .practice-contact-phone {
    font-size: 12px;
    font-weight: 400;
}
.op-count span[type=text] {
    display: inline-block;
    width: 80px;
    border-radius: 0;
    margin-left: 15px;
    text-align: center;
}
.practice-contact-phone span[type=text] {
    display: inline-block;
    width: 150px;
    border-radius: 0;
    margin-left: 15px;
    text-align: center;
}
/*******************************
    DOCTOR CODE TABLE STYLING
********************************/

#doctor-code-table td {
    vertical-align: middle;
    padding: 12px 10px 12px 25px;
}

/***********************
    ASIDE STYLING
************************/

.aside {
    width: 50%;
    min-width: 720px;
    z-index: 1050;
}
.aside.wide {
    min-width: 965px;
    width: 70%;
}
.aside.widest {
    width: 83%;
    /*min-width: 1200px;*/
}
.aside .aside-dialog .aside-header {
    background: #ffffff;
    border-bottom: none;
    color: #000000;
    padding: 30px 50px 0 100px;
}
.aside-title {
    font-weight: 300;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
}
.aside-subtitle {
    font-weight: 200;
    font-size: 18px;
    color: #aaa;
    font-style: italic;
}
.aside-title-with-sub {
    font-weight: 300;
    font-size: 20px;
    text-transform: uppercase;
}
.aside-body .aside-title, .aside-subtitle {
    margin-bottom: 35px;
    margin-top: 0;
}
#participating-prod-add .aside-title, .aside-body .status-disclaimer-header {
    margin-bottom:10px;
}
p.disclaimer {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 0;
}
.status-disclaimer-header + .disclaimer + .disclaimer {
    margin-bottom:25px;
}
#officeHoursAside .aside-body {
    padding: 20px;
}
.aside-body .aside-title.officehours-title {
    margin: 0 auto 30px;
}
.aside-body .header-note {
    margin-top: -18px;
    margin-bottom: 35px;
    font-size: 13px;
}
.aside-body .header-note #selectOne{
    margin-left: 5px;
}
.aside-body .header-note b {
    font-weight: 500;
    font-size: 15px;
}
.aside .aside-dialog .aside-header .close {
    color: #258bc9;
    font-weight: 300;
    padding: 0;
    font-size: 40px;
    font-family: helvetica;
}
.aside .aside-dialog .aside-body {
    padding: 15px 100px;
    text-align: left;
}
.aside-body .select-btn {
    margin-bottom: 20px;
}
.aside-body .select-btn + .dropdown-menu {
    width: 100%;
}
.aside .aside-dialog .aside-footer {
    border-top: none;
    padding: 15px 100px;
    margin: 0;
    margin-bottom: 70px;
}
.aside .aside-dialog .aside-email {
    font-weight: 300;
}
#global-connection-btns .btn-primary {
     width:52px;
    box-sizing: content-box;
}
.aside .aside-dialog .aside-footer > .btn, #education-aside .education-footer .btn  {
    border-radius: 24px;
    font-size: 14px;
    padding: 6px 28px;
    text-transform: uppercase;
}
.aside .aside-dialog .aside-footer > .btn + .btn, #education-aside .education-footer .cancel {
    margin-left: 25px;
}

#education-aside .education-row-section{
    margin-left : 0px;
}
#education-aside #education-footer-row{
    margin-top: 40px;
}
.speciality-list {
    border-width: 1px 1px 0 1px;
    border-color: #d4d4d5;
    border-style: solid;

}
.speciality-list li {
    padding: 19px 25px 14px;
    border-bottom: 1px solid #d4d4d5;
}
.speciality-list h6 {
    font-size: 14px;
    margin: 15px 0 8px;
}
.speciality-list h6 + p {
    font-size: 14px;
    color: #383838;
}
.aside #practiceHasUsersMessage {
    color: #c13b3c;
    font-weight:300;
}
.aside #practiceHasUsersMessage img {
    width: 30px;
    height: 30px;
}
.aside .notes-container {
    border: 1px solid #d4d4d5;
}
.notes-container label {
    display: block;
    padding: 8px;
    text-transform: capitalize;
    font-weight: 300;
}
.notes-container textarea {
    resize: none;
    border: none;
    width: 100%;
    padding: 10px 20px;
    font-weight: 400;
    border-top: 1px solid #d4d4d5;
}
.contact-person-note .btn.btn-white {
    margin-left: 25px;
}
.cert-assoc-aside input[type='text'] {
    margin-bottom: 20px;
}
.aside hr {
    border-color: #d4d4d5;
}

.aside h5 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.cert-assoc-aside hr {
    margin: 30px 0 60px;
}
.aside .delete-list {
    padding-left: 0;
    margin-top: 20px;
    border-top: 1px solid #d4d4d5;
}
.delete-list li {
    font-weight: 300;
    font-size: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #d4d4d5;
}

.delete-list .delete {
    border: 1px solid #cccccc;
    border-radius: 50%;
    padding: 3px;
    margin-right: 15px;
}
.delete-list .delete:hover, .delete-list .delete:focus {
    border-color: red;
}
.delete-list .delete span {
    color: #cccccc;
}
.delete-list .delete:hover span, .delete-list .delete:focus span {
    color: red;
}
.top-two-borders li {
    width: 48%;
    margin-right: 20px;
    border-top: 1px solid #d4d4d5;
}
.top-two-borders li:nth-child(even) {
    margin-right: 0;
}

.inline-checklist {
    margin-top: 15px;
}
.inline-checklist li {
    display: inline-block;
    width: 48%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-right: 20px;
    border-bottom: 1px solid #d4d4d5;
}
.inline-checklist li:nth-last-child(2),
.inline-checklist li:last-child {
    border-bottom: none;
}
.inline-checklist li:nth-child(even) {
    margin-right: 0;
}
.inline-checklist li input.css-checkbox[type="checkbox"] + label.css-label {
    margin-bottom: 0;
    font-weight: 300;
    text-transform: capitalize;
}

/*********************************
    ASIDE OFFICE HOURS STYLING
**********************************/
#editOfficeHoursAside {
    /*min-width: 1200px;*/
}

#editOfficeHoursAside .aside-body {
    padding-right: 20px;
}

#officehours-list {
    margin: 0 auto;
    width: 100%;
}
#officehours-list li.weekday {
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #d4d4d5;
}
#officehours-list li.weekday .day-wrap {
    display: table;
    width: 100%;
}
#officehours-list > li .day-wrap div {
    vertical-align: middle;
    display: table-cell;
    position: relative;
}

#officehours-list .day {
    height: 100%;
    width: 130px;
    text-align: center;
    border-right: 1px solid #d4d4d5;
}

#officehours-list .time-wrap .colon {
    font-size: 20px;
}
#officehours-list .time-wrap .ampm {
    display: inline-block;
    margin-left: 5px;
}
#officehours-list .time-wrap .ampm label {
    margin-bottom: 0;
}
#officehours-list input[type=text] {
    border-radius: 0;
    text-align: center;
    width: 105px;
}
#officehours-list label {
    text-align: center;
    text-transform: uppercase;
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}
#officehours-list input.form-control {
    text-align: center;
}
#officehours-list .day-wrap div.whole-day, #officehours-list .day-wrap div.lunch-hours {
    padding: 0 14px;
    border-right: 1px solid #d4d4d5;
    position: relative;
    display: inline-block;
    margin: 20px 0;
    min-width: 370px;
    text-align: center;
}

#officehours-list div.whole-day .list-inline, #officehours-list div.lunch-hours .list-inline {
    margin: 0 auto;
}
#officehours-list li.middle {
    margin: 0 5px;
}
#officehours-list .weekday .middle {
    vertical-align: bottom;
    padding: 0 20px;
}



#officehours-list .office-closed {
    width: 143px;
}

#officehours-list .office-closed label:not(.css-label).sublabel {
    color: #797979;
    font-size: 10px;
    margin-bottom: 0px;
    margin-top: -5;
    margin-top: 0px;
    text-transform: none;
    width: 130%;
}

#officehours-list .limited-availability {
    width: 143px;
}

#officehours-list .limited-availability label:not(.css-label).sublabel {
    color: #797979;
    font-size: 10px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-transform: none;
}
#officehours-list .time-wrap .select-btn {
    border: 1px solid #d4d4d5;
    margin-bottom: 0;
}
#officehours-list .time-wrap .select-btn + .ui-timepicker-wrapper {
    width: 100%;
    text-align: left;
}

#officehours-list .css-label {
    width: 25px;
    margin: 10px auto 0;
    padding: 0;
}
#officehours-btns {
    width: 874px;
    margin: 0 auto;

}

#office-footer {
    margin: 0 auto 30px;
    padding: 0;
}
#officehours-list .error-msgs {
    color: #c13b3c;
    font-size: 12px;
    margin: 5px 0;
}
.practice-office #officehours-list .error-msgs {
    margin: 0 10px 0 0;
}
.practice-office #officehours-list .error-msgs.open-error {
    margin-bottom: 10px;
}
.copy-wrap {
    border-top: 1px solid #d4d4d5;
    padding: 19px 20px 20px 0;
    clear: both;
}
.copy-wrap p {
    display: inline-block;
    padding-left: 15px;
    font-weight: 300;
}
/*********************************
    ASIDE LICENSE STYLING
**********************************/
.license-list-container {
    padding-top:40px;
    padding-bottom: 80px;
}

#license-list > thead > tr > th {
    padding-right: 25px;
    padding-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #d4d4d5;
}

#license-list > tbody > tr > td {
    font-size: 18px;
    padding-top:15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d4d4d5;
    font-weight: 100;
}
/*********************************
    ASIDE FEE SCHEDULE STYLING
**********************************/
.fee-schedule .btn-group label.btn-default {
    color: #0077b7;
    font-weight: 400;
    font-size: 13px;
    border-radius: 0;
}
.fee-schedule .btn-group label.active.btn-default {
    color: #25356c;
    font-weight: 500;
}
.fee-schedule p.no-result {
    font-size: 16px;
    text-transform: uppercase;
}
.fee-schedule-body .btn {
    border-radius: 0;
}
.fee-schedule-body .btn-primary {
    padding: 8px 22px;
}
.table > thead > tr > th {
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 10px 12px 25px;
    border-bottom: none;
}

.schedule-container {
    border: 1px solid #d4d4d5;
    border-bottom:none;
    margin-top: 25px;
}
.schedule-container .back-link {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #d4d4d5;
}
.schedule-container .schedule-name {
    padding: 24px 20px 20px;
    border-bottom: 1px solid #d4d4d5;
}
.schedule-container .schedule-name label {
    margin-bottom: 10px;
    font-weight: 300;
    text-transform: uppercase;
}
.schedule-container .schedule-name h5 {
    text-transform: capitalize;
    margin: 0;
    line-height: 22px;

}
.schedule-container .prod-list {
    padding: 35px 20px 20px;
}
.schedule-container .prod-list li {
    margin-bottom: 15px;
    font-weight: 300;
}
.schedule-sidebar {
    border-right: 1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5 !important;
}
.schedule-sidebar a {
    font-size: 14px;
}
.schedule-sidebar a:focus, .schedule-sidebar a:active {
    color: #000000;
}
#procedure-list {
    border: none;
    border-bottom: 1px solid #d4d4d5;
    margin-bottom: 0;
}
#procedure-list img {
    width: 40px;
}
#procedure-list th {
    border-right: none;
    font-size: 12px;
    border-left: none;
    padding: 12px 15px 12px;
}
#procedure-list .prod-name-header {
    width: 60%;
}
#procedure-list th:not(.prod-name-header) {
    text-align: center;
}
#procedure-list td {
    text-align: center;
    padding: 12px 15px;
    vertical-align: middle;
}
#procedure-list td p {
    margin-bottom: 0;
}
#procedure-list tr.active-category td {
    text-transform: uppercase;
    text-align: left;
    font-size: 16px;
    padding: 12px 15px 12px;
    border-left: none;
    border-right: none;
    background: #25356c;
    color: #fff;
}
#procedure-list tr.active td {
    text-transform: capitalize;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    padding: 12px 15px 12px;
    border-right: none;
}
#procedure-list tr > td:last-of-type {
    border-right: none;
}
#procedure-list .css-label {
    margin: 0 auto;
    display: block;
    padding: 0;
    width: 25px;
}
#procedure-list tr td#procedure {
    text-align: left;
}
#procedure-list tbody tr:last-of-type td {
    border-bottom: none;
}
#procedure-list input[type="text"] {
    width: 70px;
    padding: 6px 3px;
    text-align: center;
    border: 1px solid #d4d4d5;
}
#procedure-list span.glyphicon-ok-circle {
    color: #74d99b;
    font-size: 1.5em
}

#procedure-list span.glyphicon-remove-circle {
    color: #ff6b6e;
    font-size: 1.5em
}

#procedure-list tr.not-provided {
    color: #aaa;
}

.fee-schedule-body {
    text-align: left;
}
.fee-schedule-body .schedule-container {
    display: table;
}
.schedule-container .schedule-sidebar, .schedule-container .schedule-table {
    display: table-cell;
    float: none;
}
/*********************************************
    EDIT PARTICIPATING PROVIDERS STYLING
**********************************************/
#participating-prod-edit .img-upload  {
    text-align: center;
    padding: 15% 0;
}
#participating-prod-edit .img-upload img {
    display: block;
    width: 60px;
    margin: 0 auto 10px;
}
#participating-prod-edit .search-result-img {
    width: 100%;
}
#participating-prod-edit .age-input {
    width: 100px;
    display: inline-block;
}
#participating-prod-edit .age-divider {
    margin: 0 15px;
}
#participating-prod-edit .search-result-text {
    font-weight: 300;
    margin-bottom: 15px;
}


/*********************************************
    ADD PARTICIPATING PROVIDERS STYLING
**********************************************/

#participating-prod-add .nav-tabs li {
    float: right;
}
.results-container .img-container {
    padding: 0;
}
#participating-prod-add .tab-pane {
    padding: 30px 20px;
}
#participating-prod-add .tab-pane input {
    padding: 10px 12px;
    border: 1px solid #d4d4d5;
    vertical-align: middle;
    margin-right: 15px;
}
#participating-prod-add .tab-pane .state-btn {
    height: 26px;
    margin-right: 15px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 0;
}

#participating-prod-add .info-section .btn-white {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(80%);
    -moz-transform: translateY(80%);
    -ms-transform: translateY(80%);
    -o-transform: translateY(80%);
    transform: translateY(80%);
}
#participating-prod-add .info-section .name {
    font-size: 16px;
}
#participating-prod-add .results-container {
    border-top: 1px solid #d4d4d5;
    padding-top: 20px;
}
#participating-prod-add .results-container h5 {
    margin-bottom: 25px;
    margin-left: 20px;
    text-transform: none;
}
.participating-info.info-section .img-container,
.participating-info.info-section ul.list-inline,
.participating-info.info-section h2,
#participating-prod-edit .img-container{
    display: block;

}
.participating-info.info-section h2 {
    margin: 0 0 18px;
    display: inline-block;
}
.participating-info.info-section h2 + p {
    margin-bottom: 0;
    margin-left: 35px;
    color: #c13b3c;
    font-size: 12px;
    display: inline-block;
}
.participating-info.info-section h2 + p span {
    font-size: 16px;
    vertical-align: sub;
    margin-right: 3px;
}
.participating-info .info-list {
    margin-top: 10px;
}

/*************************************
    PROVIDER PHOTO UPLOAD STYLING
***************************************/
#aside-photo h4 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 300;
}
#aside-photo h4 + p {
    font-weight: 300;
    margin-bottom:30px;
}
.upload-container {
    display: table;
    width: 100%;
    border: 1px solid #d4d4d5;
}
.upload-container .upload-right {
    border-left: 1px solid #d4d4d5;
    padding: 30px;
}
.upload-container .upload-left, .upload-container .upload-right {
    display: table-cell;
    vertical-align: top;
}
.upload-container .upload-left {
    width: 75%;
}
#upload-top h4 {
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
}
#upload-top p {
    font-weight: 300;
    font-size: 16px;
}

#aside-photo .drop-box {
    border-radius: 0;
    border: 2px dashed #0077b7;
    padding-top: 35px;
    margin:  5px;
    text-align: center;
}
#aside-photo .drop-box h5, #aside-photo .drop-box h5 span {
    font-weight: 300;
    font-size: 22px;
    text-transform: none;
}
#aside-photo .drop-box h5 img {
    width: 50px;
    margin-right: 10px;
}
#aside-photo .drop-box h5 span {
    cursor: pointer;
    color: #0077b7;
    margin: 0 2px;
}
#aside-photo .drop-box p {
    color: #797979;
    font-size: 16px;
    font-weight: 300;
    padding-bottom:30px;
}
#aside-photo .aside-photo-content {
    position: relative;
}
#aside-photo .imageValidationErrorText {
    position: absolute;
    right: 0;
    top: 25px;
}
#upload-left .strike span {
    color: #d4d4d5;
}
#aside-photo .drop-box input {
    position: absolute;
    visibility: hidden;
}


#addLicenseActionForm #document-drop-box {
    padding: 10px;
    border: 2px dashed #0077b7;
    color: #797979;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}

#addLicenseActionForm #document-drop-box #browse-btn {
    font-weight: 300;
    font-size: 17px;
    text-transform: none;
    background: transparent;
    cursor: pointer;
    border: none;
    color: #0077b7;
}


#addLicenseActionForm  .document-status {
    border-top: 1px solid #d4d4d5;
    border-left: 1px solid #d4d4d5;
    border-bottom: 1px solid #d4d4d5;
    padding: 13px;
}

#addLicenseActionForm  .document-status > span {
    color: #258bc9;
}

#addLicenseActionForm  .document-status .remove-button-span {
    float: right;
}

#addLicenseActionForm  .document-status .remove-button-span .remove {
    color: #258bc9;
    font-weight: 300;
    padding: 0;
    font-size: 40px;
    background: none;
    border: none;
    font-family: helvetica;
    position: absolute;
    top: -8px;
    right: 12px;
}

#aside-photo .upload-right h2 {
    font-weight: 300;
    margin-bottom:20px;
    margin-top: 10px;
    font-size: 22px;
}
#aside-photo .upload-right h5 {
    font-weight: 300;
    margin-bottom:20px;
    margin-top: 30px;
    color: #505050;
    text-transform: none;
}
#aside-photo .upload-right img {
    width: 90%;
}
#aside-photo .upload-right .text-list {
    margin-top: 20px;
    font-weight: 300;
    padding-left: 0;
}
#aside-photo .upload-right .text-list li {
    margin-bottom: 15px;
    color: #505050;
}
#aside-photo hr {
    margin: 25px 0;
}
#aside-photo .uploaded-box {
    padding: 20px;
}
#aside-photo .uploaded-box .top {
    position: relative;
}
#aside-photo .uploaded-box .top a {
    position: absolute;
    right: 0;
    top: 6px;
}
#aside-photo .uploaded-box .top h2 {
    font-weight: 400;
    font-size: 18px;
    margin-top: 5px;
    max-width: 300px;
}
#aside-photo .uploaded-box .top p {
    font-weight: 300;
    margin-bottom:0;
}
#aside-photo .uploaded-box .photo-list > li {
    width: 30%;

}

#aside-photo .uploaded-box .photo-list .delete-confirm h5 {
    font-size: 14px;
    margin-bottom:10px;
}
#aside-photo .uploaded-box .photo-list .delete-confirm a {
    margin: 0 2px;
    font-size: 12px;
    padding: 2px 16px;
}
#aside-photo .uploads li {
    width: 150px;
    margin-bottom: 20px;
    margin-right: 15px;
    border: 1px solid #e6e6e6;
    padding: 24px;
    vertical-align: top;
    position: relative;
}

#aside-photo #upload-status {
    padding: 30px;

}
#upload-status h6 {
    font-weight: 300;
    font-size: 18px;
    margin-bottom:30px;
}
#aside-photo .uploads .thumbnail {
    border-radius: 0;
    margin-bottom: 0;
    border-color: #d4d4d5;
}
#aside-photo .uploads li img {
    width: 100%;
}
#aside-photo .uploads li .remove {
    position: absolute;
    color: #0077b7;
    right: -1px;
    top: -10px;
    font-size: 30px;
    font-weight: 300;
    border: none;
    background: transparent;
}

p.crop-text {
    margin-top: 10px;
    font-size: 12px;
}
.cropArea {
    padding: 0;
    position: relative;
}
.cropArea canvas {
    display: block;

}
#aside-photo-edit h6 {
    font-size: 18px;
    font-weight: 300;
    margin: 30px 0;
    text-decoration: none;
}
.photo-tag-container {
    height: 134px;
    margin-top: 30px;
}
#provider-tag .select-btn, .tag-edit-aside .select-btn {
    width: 70%;
    margin-right: 15px;
    margin-bottom: 0;
}

#aside-photo-edit #provider-tag h6 {
    margin-bottom: 20px;
    line-height: 26px;
}
#profile-img-select h6 {
    font-weight: 400;
    margin-top: 30px;
    font-size: 18px;
}
#profile-img-select .aside-instructions {
    margin-top: 15px;
    margin-left: 10px;
}
#profile-img-select .aside-instructions li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
}
#profile-img-select .aside-instructions li:before {
    content: '-';
    margin-right: 5px;
    margin-left: -10px;
}
#profile-img-select ul:not(.slides, .progress-nav) li {
    margin: 20px 0;
    font-weight: 300;
}
#profile-img-select .cropArea {
    background: transparent;

}

#profile-img-select .empty-photo-selection-box {
    border: 1px solid #d4d4d5;
    height: 263px;
    background-color: #ffffff;
    cursor:pointer;
}
#profile-img-select .empty-photo-selection-box .empty-update-box {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#profile-img-select .empty-photo-selection-box .empty-update-box img {
    width: 50px;
}
#profile-img-select .empty-photo-selection-box .empty-update-box img.profile {
    width: 70px;
}
#profile-img-select .empty-photo-selection-box .empty-update-box p {
    font-size: 18px;
    margin-top: 10px;
}
#profile-img-select .empty-photo-selection-box .empty-update-box img.profile + p {
    font-weight: 300;
    margin-top: 0;
}

.supportedFileText {
    font-size: 12px;
    font-weight: 300;
}

.cropArea .profile-bg {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cropArea .profile-bg p {
    font-weight: 300;
    margin: 5px 0;
    font-size: 14px;
}
.cropArea .profile-bg h5 {
    font-weight: 300;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}
#profile-img-select img-crop, #editGeneralInfoForm img-crop {
    position: absolute;
    top: 0;
    left: 0;
}
#profile-img-select .aside-footer .imageValidationErrorText {
    margin-right: 25px;
}
.profileCropArea .cropArea {
    background: #ffffff;
    border: 1px solid #d4d4d5;
    width: 100%;
    margin-bottom: 15px;
}
.profileCropArea .profile-bg {
    z-index: 1;
}
.profileCropArea .profile-bg .btn-primary {
    display: block;
    width: 120px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    margin: 20px auto 0;
    width: 40%;
    padding: 10px;
}
.profileCropArea .profile-bg input[type='file'] {
    opacity: 0;
    width: 100%;
    height:100%;
}
.profileCropArea .profile-bg span {
    font-size: 14px;
    display: block;
    margin-top: -22px;
    font-weight: 400;
}
.profileCropArea.cropArea canvas {
    z-index: 2;
    margin: 0 auto;
}
.profileImgBtnText {
    width: 500px;
}
.gallery-container {
    margin-top: 50px;
}
.carousel .flex-control-nav {
    visibility: hidden;
}
.gallery-container h4 {
    font-size: 20px;
    font-weight: 300;
    margin: 30px 0;
}
.carousel .slides li {
    margin-right: 18px;
    border: 1px solid #d4d4d5;
    cursor:pointer;
}
.carousel .flex-direction-nav li a {
    opacity: 1;
}
.carousel .flex-direction-nav a::before {
    color: #258bc9;
    font-size: 36px;
}
.carousel .flex-direction-nav li a.flex-prev:before {
    content: " ";
    display: block;
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/nov2014/right-arrow.svg') no-repeat;
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.carousel .flex-direction-nav li a.flex-prev {
    left: -50px !important;
}
.carousel .flex-direction-nav li a.flex-next:before {
    content: " ";
    display: block;
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/nov2014/right-arrow.svg') no-repeat;
    width: 40px;
    height: 40px;
}
.carousel .flex-direction-nav li a.flex-next {
    right: -50px !important;
}
.carousel .flexslider {
    margin-bottom: 0;
}

.indicators {
    height: 0;
    position: relative;
    top: -60px;
    background: none;
    text-align: center;
    font-size: 3em;
    color: #eee;
}

.default-indicator {
    cursor: pointer;
}

.indicators span.active {
    color: #bbb;
}

.panel-collapse.am-collapse {
    animation-duration: 0.3s;
    animation-fill-mode: backwards;
    animation-timing-function: ease;
    overflow: hidden;
}

/*************************************
    IMAGE PREVIEW MODAL STYLING
***************************************/

#img-preview .modal-header, #img-preview .modal-footer {
    border: none;
}
#img-preview .modal-content {
    border-radius: 0;
}
#img-preview .img-wrapper img {
    margin: 0 auto;
    display: block;
}
#img-preview .modal-dialog {
    width: auto !important;
}
#img-preview .modal-body {
    padding: 0 30px;
}

.angular-google-map-container { height: 400px; }

/*********************************
    PROVIDER TAG EDIT ASIDE STYLING
**********************************/

.tag-edit-aside .row {
    margin: 30px 0 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}
.tag-edit-aside .img-left img {
    width: 80%;
}
.tag-edit-aside .tag-right {
    margin-left: 30px;
}
.tag-edit-aside .tag-right p {
    margin: 15px 0 25px;
}
tags-input .host {
    outline: 0;
}
.tag-edit-aside tags-input, .tag-input-section tags-input{
    margin-top: 20px;
}
.tag-edit-aside tags-input .tags, .tag-input-section tags-input .tags {
    border: none;
    box-shadow: none;
    outline: 0;
}

.tag-edit-aside tags-input, .tag-input-section .clear-roles {
    text-transform: uppercase;
    font-size: 12px;
    margin-left: 13px;
}

.tag-edit-aside tags-input .input, .tag-input-section tags-input .input  {
    display: none;
}

tags-input .tags .tag-item {
    background: #ffffff;
    font-size: 12px;
    height: auto;
    margin: 0 7px 7px 0;
    padding: 2px 6px;
}
tags-input .tags .tag-item:last-of-type {
    margin-right: 0;
}
tags-input .tags .tag-item .remove-button {
    color: #686868;
    text-transform: uppercase;
    font-weight: 300;
    font-family: helvetica, arial, sans-serif;
    display: inline-block;
    margin-top: -4px;
}
tags-input .tags .tag-item .remove-button:hover {
    color: #0077b7;
}

/*************************************
    PHOTO GALLERY STYLING
***************************************/

.photo-list > li {
    width: 23%;
    vertical-align: top;
    position: relative;
    margin: 7px;
    height: 175px;
    border: 1px solid #d4d4d5;
    padding: 15px;
}
.photo-list > li:last-of-type {
    margin-right: 0;
}
#highlight-photos li section {
    height: 100%;
    width: 100%;
}
.photo-list li div, .img-bg {
    background: #000000;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    margin: 0 auto;
}
.photo-list > li img, .img-bg > img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
}
.photo-list li > div.img-bg:hover img, .img-bg:hover img {
    opacity: 0.5;
}

.photo-list li a.edit, .img-bg + a.edit {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
}
#search-results-image a.edit {
    right: 25px;
    top: 99px;
}
.photo-list li a.edit span {
    font-size: 18px;
}
.photo-list .delete-confirm {
    position: absolute;
    background: transparent;
    top: 30%;
    width: 100%;
}
#search-results-image .delete-confirm {
    position: absolute;
    top: 40%;
    width: 100%;
}
.photo-list .delete-confirm h5,#search-results-image .delete-confirm h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}
.photo-list .delete-confirm .btn, #search-results-image .delete-confirm .btn {
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 2px 26px;
    margin: 0 5px;

}

.photo-list .dropdown-menu li a, .img-bg + a.edit + .dropdown-menu li a  {
    color: #0077b7;
    text-transform: capitalize;
}

.photo-list li.ng-hide-remove {
    max-height: 0;
    height: 0;
    transition: max-height 0.5s linear;
    overflow: hidden;
}
.photo-list li.ng-hide-remove-active, .photo-list li.ng-hide-add {
    max-height: 500px;
    height: 100%;
}

.photo-list li.ng-hide-add-active {
    max-height: 0;
    height: 0;
    transition: all 0.3s linear;
}

.croppedImageRow {
    margin-top: 20px;
}
.croppedImageRow .originalImageDiv img {
    width: 80%;
}
.croppedImageRow img-crop {
    margin-bottom: 10px;
}
.croppedImageRow .crop-text {
    margin-left: 15px;
}

.croppedImageRow .doNotCrop{
    margin-top: 20px;
}
.croppedImageRow .doNotCrop .css-label {
    font-size: 12px !important;
    margin-bottom: 0;
}

/*************************************
    DOCTOR CODE SELECT STYLING
***************************************/
.doctor-code-container  {
    display: table;
    width: 100%;
}
.select-list-container {
    vertical-align: top;
    width: 45%;
}
.select-list-container h4 {
    font-weight: 300;
    font-size: 16px;
}
.select-list-container, .select-toggle-container {
    display: table-cell;
}
.list-box {
    border: 1px solid #d4d4d5;
    min-height: 260px;

}
.list-box ul {
    padding: 0 20px;
}
.list-box li {
    text-transform: uppercase;
    margin: 10px 0;
}
.list-box li a {
    display: block;
    color: #333333;
    padding: 5px 5px 5px 10px;
}
.list-box li a:hover, .list-box li a:focus {
    background: #0077b7;
    color: #ffffff;
}
.select-toggle-container {
    vertical-align: middle;
    width: 10%;
}
.select-toggle {
    border: 1px solid #d4d4d5;
    border-radius: 50%;
    display: table;
    margin: 10px auto;
}
.select-toggle span {
    font-size: 20px;
    display: table-cell;
    padding: 8px;
}

.amenities-list {
    border-top: 1px solid #d4d4d5;
    margin-top: 20px;
}
.amenities-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d4d4d5;
}
.amenities-list li:first-of-type {
    padding-top: 20px;
}
.amenities-list li input.css-checkbox[type="checkbox"] + label.css-label, .amenities-list li input.css-radio[type="radio"] + label.radio-label {
    font-weight: 300;
    font-size: 14px;
    margin: 0;
}

.operatory-title {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    margin-right: 15px;
}

.operatory-title + .select-btn {
    width: 80px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    padding: 10px 20px 10px 4px;
}
.operatory-title + .select-btn + .dropdown-menu {
    height: 300px;
    width: 40px !important;
    white-space: nowrap;
    overflow-y: scroll;
}

#operatory-count-footer {
    margin: 0 auto 30px;
}
/*************************************
    SESSION EXPIRE MODAL STYLING
***************************************/
#sessionExpireModal .modal-dialog {
    margin: 0 auto;
    width: 700px;
    position: absolute;
    top: 50%;
    left:30%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#sessionExpireModal .modal-content {
    border-radius: 0;
    border: 1px solid #55bfbf;
    padding: 20px 50px;
    -webkit-box-shadow: 7px 7px 1px #dddddd;
    -moz-box-shadow: 7px 7px 1px #dddddd;
    box-shadow: 7px 7px 1px #dddddd;
}
#sessionExpireModal .modal-body h4 {
    font-weight: 300;
    font-size: 22px;
}
#sessionExpireModal .modal-body p {
    font-size: 16px;
    font-weight: 300;
}
#sessionExpireModal .modal-body p:first-of-type {
    margin-bottom: 20px;
}
#sessionExpireModal .modal-header, #sessionExpireModal .modal-footer {
    border: none;
}
#sessionExpireModal .modal-footer {
    text-align: center;
    padding-bottom: 50px;
}
/*.modal-backdrop.am-fade {*/
    /*background: #ffffff;*/
    /*opacity: 0.5;*/
/*}*/

/*************************************
    EXTERNAL DASHBOARD STYLING
***************************************/
.practice-select-container {
    margin-top: 20px;
    clear: right;
}
.practice-select {
    padding-bottom: 0;
    overflow: hidden;
}
.practice-select.info-section:last-of-type {
    margin-bottom: 50px;
}
.practice-select .map-container img {
    width: 100%;
}
.practice-select .expand-toggle {
    position: relative;
    z-index: 1;
}
.practice-top-right h4 {
    font-weight: 400;
    font-size: 22px;
}
.practice-select .edit-link  {
    border-right: 1px solid #d4d4d5;
    padding-right: 8px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}
.practice-select .map-container {
    margin-right: 10px;
    margin-bottom: 20px;
}
.practice-select .map-container .angular-google-map-container {
    height: 260px;
}

#my-practices .map-container .loading-spinner{
    max-height: 46px;
    max-width: 42px;
    /* margin: 0 auto; */
    margin-left: 160px;
    margin-top: 109px;
}

.practice-select address {
    margin-bottom: 30px;
}
.practice-select .practice-top-right {
    padding-left: 40px;
    margin-top: -43px;
    padding-top: 65px;
    padding-bottom: 100px;
    margin-left: -1px;
    border-left: 1px solid #d4d4d5;
}
.practice-select .practice-top-right .btn {
    margin-bottom: 20px;
}
.practice-table-expand {
    margin-left: -17px;
    margin-right: -30px;
}
.practice-table-expand .left-panel {
    margin-right: -4px;
}
.practice-table-expand .table-container {
    border-left: 1px solid #d4d4d5;
}
.user-add {
    padding: 10px 40px;
}
.user-add h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}
.user-add .form-control {
    margin-right: 25px;
    border-radius: 0;
    height: 40px;
    font-weight: 300;
    vertical-align: middle;
    display: inline-block;
}
.user-add input[type="text"] {
    width: 200px;
}
.user-add input[type="email"] {
    width: 320px;
}
.practice-table-expand .table {
    border: none;
    border-top: 1px solid #ddd;
}
.practice-table-expand .table > thead > tr > th {
    font-weight: 500;
    border-right: none;
    font-size: 14px;
}
.practice-table-expand .table > thead > tr > th:first-of-type, .practice-table-expand .table > tbody > tr > td:first-of-type {
    border-left: none;
}
.practice-table-expand .table > tbody > tr > td {
    vertical-align: middle;
    padding: 20px 10px 20px 25px;
    font-weight: 300;
    border-right: none;
}
.practice-table-expand .table a {
    font-weight: 300;
    text-transform: uppercase;
}
.practice-table-expand .user-add {
    margin-bottom: 30px;
}
#phone-search-popover {
    width: 255px;
    height: 150px;
    top: 100px !important;
}

#phone-search-popover .arrow {
    top: 18% !important;
}

#phone-search-popover h5 {
    margin-top: 0;
}
#phone-search-popover input {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*************************************
    EXTERNAL SIGN UP FLOW STYLING
***************************************/
#signup-header {
    height: 100px;
}
#signup-header .container-fluid {
    height: 100%;
}
#signup-header .logo-container {
    font-weight: 300;
    font-size: 18px;
    color: #636363;
    margin-top: 24px;
    position: relative;
}
#provider-act-confirm #signup-header .logo-container {
    margin-top:0;
}
#signup-header .logo {
    height: 58px;

}
#signup-header .progress-nav {
    margin: 45px 0 0;

}
.progress-nav .circle {
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    background: #e6e6e6;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
}
.progress-nav .current .circle {
    border: 1px solid #d4d4d5;
    background: #ffffff;
}
.progress-nav .complete .circle {
    background: #70cbc3 url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/white-checkmark.png") no-repeat scroll center center / 11px auto;
    border-color: #70cbc3;
}
.progress-nav li {
    margin-right: 20px;
}
.progress-nav li:last-of-type {
    margin-right: 0;
}
.progress-nav label {
    margin: 0 0 0 5px;
    text-transform: uppercase;
    color: #797979;
    font-weight: 300;
    font-size: 12px;
}
.progress-nav .current label {
    font-weight: 400;
    color: #25356c;
}
.progress-nav .complete label {
    font-weight: 500;
    color: #25356c;
}
#practice-map {
    position: relative;
}
#practice-map .map-container {
    height: 740px;
    position: relative;
    /*background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/signup-map-placeholder.png") no-repeat scroll 0 0 / 100% auto;*/
}
#practice-map .angular-google-map-container{
    height: 600px;
}
#signup-container {
    height: 100%;
    min-width: 1400px;
}
#signup-container .table-wrapper {
    height: 100%;
}
#find-practice {
    border-top: 1px solid #d4d4d5;

}
.practice-search {
    border-right:1px solid #d4d4d5;
    width: 33%;
    padding: 30px 40px 100px;
}
.practice-search .logo {
    width:130px;
    height: 52px;
}
.practice-search hr {
    border-color: #d4d4d5;
    margin-bottom:30px;
}
.practice-search h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom:25px;
}
.practice-search .bottom h2 {
    margin-bottom:15px;
}
.practice-search .bottom p.last {
    margin-bottom:20px;
}
.practice-search input.css-checkbox[type="checkbox"] + label.css-label {
    margin: 10px 6px 10px 10px;
    color: #333333;
    font-size: 16px;
}
#practice-search h1 {
    font-weight: 400;
    font-size: 24px;
}
#practice-search .btn-primary {
    display: block;
    margin-top:20px;
}
#practice-search label {
    margin-bottom:15px;
    font-weight:300;
}

#practice-search .access-code-toggle {
    display: inline-block;
    margin-left: 5px;
}
#practice-search .access-code-toggle + .popover {
    width: 500px;
}
#practice-search input {
    width: 100%;
    font-weight: 300;
    display: block;
    height:50px;
    padding: 15px;
    margin-bottom:20px;
    border: 1px solid #d4d4d5;
}
#verify-practice #verify-box {
    border: 1px solid #d4d4d5;
    padding: 20px 30px;
    margin-bottom: 30px;
}
#verify-practice #verify-box img {
    width:30px;
    height: auto;
    margin-bottom:20px;

}
#verify-practice #verify-box address {
    font-weight: 400;
    margin-bottom:15px;
    font-size: 13px;
}
#verify-practice #verify-box p {
    font-size: 13px;
    font-weight: 300;
}
#verify-practice button.btn-primary {
    margin-right: 20px;
}
#verify-practice hr {
    margin-top: 30px;
}
.practice-search p {
    font-weight:300;
    line-height: 24px;
}


.practice-search .phone-block {
    color: #666666;
    margin: 20px 0;
}
.practice-search .phone-block p {
    margin-bottom:0;
}
.practice-search .phone-block h5 {
    font-size: 20px;
    font-weight: 300;
    margin-top: 5px;
}
.practice-search button {
    border-radius: 28px;
    padding: 12px 32px;
    font-weight: 400;

}
.practice-search .phone-block + button {
    margin: 25px 0 0 50px;
}
.practice-search #no-match p.last {
    margin-bottom:30px;
}
.progress-panel {
    height: 100%;
    position: relative;
    z-index:-2;
}
#verify-right {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/feb2017/verify-bg-wide.jpg') no-repeat;
    background-size: cover;
}
#enter-pin-right {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/feb2017/enter-pin-bg-NEW.jpg') no-repeat;
    background-size:cover;
}
#carriers-right {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/feb2017/enter-email-bg.jpg') no-repeat;
    background-size:cover;
}
.progress-panel .panel-content {
    margin-top: 20%;
}
.progress-panel h3 {
    color: #ffffff;
    font-weight: 300;
    font-size: 22px;
    margin: 0 0 50px;
}
.pin-steps-top {
    margin-bottom: 0;
}
.pin-steps, .pin-steps-top {
    width: 100%;
    text-align: center;
}
.pin-steps li, .pin-steps-top li {
    width: 33%;
    vertical-align: bottom;
    position: relative;
    text-align: center;
}
.pin-steps li:before {

    border: 1px solid #d3f4ff;
    display: block;
}
.pin-steps li:after {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    background-color: #d3f4ff;
    top: 11px;
    left: -50%;
    z-index: -1;
}
.pin-steps li:first-child:after {
    content: none;
}
.pin-steps img {
    width: 22px;
    height: 22px;
}
.pin-steps-top img {
    margin-bottom: 10px;
}
.pin-steps-top h6 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
}

.pin-steps-top li.current h6 {
    font-size: 14px;
    margin-bottom:15px;
    color: #beedff;
}

#enter-pin #pin-input input {
    border: 1px solid #d4d4d5;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
}
#enter-pin .btn-primary {
    margin: 15px 0 20px;
}
#enter-pin h4 {
    font-weight: 400;
}
#enter-pin-right .pin-steps-top li:last-of-type img {
    height: 100px;
    width: auto;
}
#enter-email .verified-title {
    font-weight: 300;
    margin-top: -10px;
    font-size: 16px;
}
#enter-email .verified-title img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
#enter-email h2 {
    font-size: 26px;
}
#enter-email .label-float {
    margin: 20px 0;
}
#carriers-right.progress-panel h3, #create-acct-right.progress-panel h3 {
    font-size: 20px;
    margin-bottom:40px;
}
#carriers-right.progress-panel img {
    display: block;
    margin:0 auto;
    height: 44px;
    width: auto;
}
#create-account .terms-box {
    margin: 25px 0 30px;
}
#create-account .btn.select-btn {
    margin-bottom: 15px;
}
#create-account .terms-box .pull-right .text-right{
    display: inline-block;
}
#create-account p {
    font-size: 12px;
    padding-left: 3px;
    margin: 0 auto;
    text-align: center;
}

#create-account  .brand-logos #cigna {
    width : 80px;
    margin-right: 20px;
}

#create-account  .brand-logos #aetna {
    width: 60px;
    margin-right: 20px;
}

#create-account  .brand-logos #delta {
    width : 123px;
}

#create-account .brand-logos {
    margin-top: 20px;
    text-align: center;
}
#create-account .terms-box p {
    text-align: left;
    width: auto;
}
#create-account h2 + p {
    margin: -12px 0 20px;
}
#create-account form h4 {
    font-weight: 400;
    margin: 22px 0 16px;
}
#create-account form p.small {
    margin: -12px 0 18px 10px;
}
#create-account form p.terms {
    margin-top: 20px;
}

#provider-act-confirm header {
    border-bottom:1px solid #d4d4d5;
    height: 92px;
    padding: 20px 40px;
}
#provider-act-confirm header img {
    width: 130px;
    height: auto;
    vertical-align: middle;
}
#provider-act-confirm header p {
    color: #4a4a4a;
    margin:0;
    line-height:50px;
}

#provider-act-confirm #practice-address {
    font-weight: 500;
    margin-bottom: 30px;
}
#provider-act-confirm #create-account {
    background: #f7f7f7;
    padding: 70px 0;
}
#provider-act-confirm #create-account h2 {
    color: #25356c;
    margin-top: 0;
    font-size: 28px;
    line-height: 36px;
}
#provider-act-confirm #create-account form {
    margin: 30px auto 0;
}
#provider-act-confirm #create-account form input {
    margin-bottom: 15px;
    border-radius: 0;
    height: 44px;
    font-weight: 300;
}
#provider-act-confirm #create-account form label {
    color: #4a4a4a;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 16px;
    margin-top: -8px;
    padding-left: 14px;
    display: block;
}
#provider-act-confirm #create-account .terms-box {
    margin: 25px 0 30px;
}
#provider-act-confirm #create-account .btn.select-btn {
    margin-bottom: 15px;
}
#provider-act-confirm #create-account .terms-box .left-padding-zero{

}
#provider-act-confirm #create-account .terms-box .pull-right .text-right{
    display: inline-block;
}
#provider-act-confirm .marketing-footer {
    width: 472px;
    margin-left: 35px;
}
#provider-act-confirm #create-account p {
    font-size: 12px;
    width: auto;
    margin: 0 auto;
    text-align: center;
}
#provider-act-confirm #create-account .terms-box p {
    text-align: left;
    width: auto;
    padding-left: 0;
}
#provider-act-confirm #create-account .strike {
    margin: 15px auto;
    width: 300px;
}

/*************************************
    PRACTICE SELECT STYLING
***************************************/
#practice-select {
    min-height: 850px;
    width:100%;
    float: none;
}
#practice-search-sidebar .back-btn {
    font-size: 18px;
    display: block;
    margin-bottom: 30px;
    font-weight: 300;
}
#practice-search-sidebar label, #practice-search-sidebar h3 {
    font-weight: 300;
}
#practice-search-sidebar label {
    margin-bottom: 15px;
    color: #333;
}
#practice-search-sidebar input.form-control {
    border-right: none;
    height: auto;
    width: 100%;
}
#practice-search-sidebar .map-container {
    margin-top: 40px;
    height: 395px;
}
#practice-search-sidebar .map-container img {
    width: 100%;
    height: 100%;
}
#practice-select .info-section {
    padding: 30px 25px;
}
#practice-select .info-section button {
    font-weight: 300;
    margin-top: 5px;
}

/*************************************
    PRACTICE LINK STYLING
***************************************/
#link-practice {
    min-height: 850px;
    width:100%;
    float: none;
}
#link-practice h3 {
    color: #25356c;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 0;
}
#link-practice p {
    color: #777777;
    font-size: 18px;
    font-weight: 400;
}
#link-practice .no-match h3, #link-practice .multiple-practice h3   {
    margin-bottom: 20px;
}

.link-options label {
    display: block;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 20px;
}
.link-options li {
    vertical-align: top;
}
.link-options input.form-control {
    margin-top: -4px;
}
.link-options .or {
    vertical-align: bottom;
}
.link-options .or span {
    font-weight: 400;
    font-size: 18px;
    margin: 0 18px;
    line-height: 60px;
}
.link-options p {
    font-size: 12px;
    margin-left: 15px;
    line-height: 20px;
    margin-top: -5px;
}
.link-options p b {
    font-weight: 500;
}
.pre-link h5 {
    font-weight: 400;
    margin-bottom: 20px;
}
.post-link {
    padding-bottom: 20px;
}
.post-link h5 span {
    color: #71cdc2;
    font-weight: 400;
}
.post-link h5 a {
    font-weight: 500;
}
#link-practice .info-section img {
    margin-left: 5px;
    width: 30px;
}
.post-link h5 {
    margin: 30px 0 25px;
}
#request-practice .info-section h4 + p {
    font-size: 14px;
    margin-bottom: 30px;
    font-weight:300;
}

#AddPracticeHeaderSection {
    padding: 20px;
    border-bottom: solid 1px #ddd;
}
#AddPracticeHeaderSection > h3 {
    font-weight: 300;
}
#AddPracticeMessageSection {
    padding: 20px;
    border-bottom: solid 1px #ddd;

}
#AddPracticeMessageSection > p {
    margin: 0px;
    font-weight: 300;
}
#PracticePhoneLookupSection {
    padding: 20px;
    border-bottom: solid 1px #ddd;
}
#isThisYourPracticeSection {
    padding:35px 20px;
}

#isThisYourPracticeSection .check {
    width: 35px;
    height: auto;
    margin-right: 20px;
}
#isThisYourPracticeSection .yesNo {

}
#isThisYourPracticeSection .yesNo > p {
    padding-right: 20px;
    margin: 0px;
    line-height:26px;
    display: inline-block;
}

#PracticePhoneLookupSection .phoneLookup > label {
    padding-right: 15px;
    margin: 0px;
    font-weight: 400;
}
#PracticePhoneLookupSection .phoneLookup .btn {
    margin-left: 15px;
}
#PracticePhoneLookupSection .phoneLookup > a {
    margin-left: 15px;
}
#PracticePhoneLookupSection .check {
    width: 35px;
    height: auto;
    margin-right: 15px;
}
#PracticePhoneLookupSection .phoneLookup .phoneInput {
    width: 60px;
    text-align: center;
    border-radius: 0;

}
#PracticePhoneLookupSection .phoneLookup .phoneInput:last-of-type {
    width: 70px;
    margin-right: 15px;
}
#PracticePhoneLookupSection .phoneLookup .phoneInput + span {
    padding: 0 8px;
}
#PracticePhoneLookupSection .popout-link {
    font-weight: 300;
    margin-left: 15px;
}
#matches-container .matches{
    padding: 20px;
}
#matches-container .no-match h3 {
    color: #c95655;
    font-size: 18px;
    font-weight: 400;
}
#matches-container .matches p {
    font-weight: 300;
}
#matches-container .multiple-matches h3 {
    font-size: 18px;
    font-weight: 400;
    color: #25356c;
}

#signup-container #no-match #phone-number {
    font-weight: 400;
}
#request-practice .request-access-section {
    display: flex;
    padding: 25px 0 20px 20px;
}
#request-practice .request-access-section .check {
    width: 35px;
    height: auto;
    margin-right: 18px;
}

#request-practice .info-section {
    border: 1px solid #2e97c9;
    padding: 15px 25px;
    margin-bottom: 15px;
    position: relative;
    margin-top: 25px;
    margin-top: 15px;
    margin-bottom: 30px;
}
#request-practice .info-section .request-box {
    margin-top: 15px;
    margin-bottom: 30px;
}
#request-practice .info-section h4, #confirm-practice .info-section h4 {
    font-weight: 400;
    line-height: 24px;
    margin-bottom:15px;
    font-size: 18px;
}
.confirmPracticeSection .info-table {
    display: table;
    border: 1px solid #dddddd;
    width: 100%;
    padding-left: 0;
}
.confirmPracticeSection .info-table li {
    display: table-cell;
    vertical-align: top;
    padding: 15px 25px;
}

.confirmPracticeSection #confirm-practice {
    padding: 0px;
}
#confirm-practice .confirm-access-section {
    display: flex;
    padding: 25px 0 20px 20px;
}
#confirm-practice .confirm-access-section .check {
    width: 35px;
    height: auto;
    margin-right: 20px;
}
#confirm-practice .confirm-access-section p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}
#confirm-practice .info-section {
    border: 1px solid #2e97c9;
    padding: 15px 25px;
    position: relative;
    margin: 15px 0 30px;
}
#confirm-practice .info-section .request-box {
    margin-top: 15px;
    margin-bottom: 30px;
}
#confirm-practice .call-box {
    margin: 40px 0 20px;
    text-align: center;
}
#confirm-practice .call-box .arrow-container {
    display: inline-block;
    padding: 0 15px;
}
#confirm-practice .call-box form h3 {
    color: #a4a4a4;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
}
#confirm-practice .call-box form input[type='text'] {
    width: 120px;
    margin: 0 15px;
}
/*************************************
    PRACTICE DASHBOARD STYLING
***************************************/
#practice-dashboard-sidebar hr {
    margin: 30px 0;
}
#practice-dashboard-sidebar ul li {
    margin: 20px 0;
}
#practice-dashboard-sidebar ul li a {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
}
#practice-dashboard-sidebar ul li a:hover, #practice-dashboard-sidebar ul li a:focus, #practice-dashboard-sidebar ul li a:active {
    font-weight: 500;
}
#practice-dashboard {
    float: none;
    min-height: 1560px;
    position: relative;
    width: 100%;
    padding-bottom: 60px;
}
#practice-dashboard .main-info {
    padding: 0;
}

#practice-dashboard .slide {

    padding-top: 55px;
    padding-left: 55px;
}
#practice-dashboard .dashboard-carousel #second-slide {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/practiceBG2.png') no-repeat top right;
}
/*#practice-dashboard .dashboard-carousel .dashboard-header {*/
/*margin-bottom: 40px;*/
/*}*/

#practice-dashboard ul .profile-element-header span {
    font-size: 17px;
    font-weight: 400;
}
#practice-dashboard ul .profile-element-header a {
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
}
#second-slide h1 {
    width: 50%;
}
#practice-dashboard .top {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/jan2017/portal-dashboard-header.jpg") no-repeat scroll right top / auto 100%;
    height: 450px;
}
#practice-dashboard .content {
    padding-top: 100px;
    padding-left: 50px;
    width: 620px;
}
#practice-dashboard .top h1 {
    font-weight: 300;
    color: #000000;
    font-size: 30px;
    margin-top: 0;
}

#practice-dashboard .top p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 25px;
    color: #333333;
}
#practice-dashboard .top p.last {
    margin-bottom:0;
    font-weight: 500;
}

#practice-dashboard .gray-banner {
    background: #f2f2f2;

}
#practice-dashboard .gray-banner h2 {
    font-size: 26px;
    margin: 35px 0 35px 55px;
    font-weight: 300;
    color: #25356c;
}
.review-container {
    margin: 0 55px;
}
.step-section h5 {
    border: 1px solid #0077b7;
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    padding: 15px 0 15px 50px;
    background-color: #0077b7;
    margin-top: 0;
}
.step-section h5 span {
    font-weight: 300;
}

.review-container .inline {
    vertical-align: middle;
}
.review-container .todo-list li {
    margin-bottom: 16px;
}
.review-container .todo-list li:last-of-type {
    margin-bottom: 0;
}
.review-container .todo-list li a, .review-container .todo-list li p {
    font-weight: 300;
}
.review-container .todo-list li p {
    margin-bottom: 0;
    font-size: 13px;
}

.review-container .dash-practice-links .todo-list .todo-link {
    margin-left: -39px;
}
.review-container .dash-practice-links .todo-list li p {
    margin-left: 10px;
}
.review-container .todo-list li span.plus {
    border: 1px solid #0077b7;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
    padding: 0 6px 1px;
}
.review-container .todo-list li .check {
    margin-right: 10px;
    width: 24px;
    vertical-align: top;
}
.review-container .img-container {
    padding: 27px 25px;
    width: 105px;
}
.review-container .img-container img {
    width: 40px;
}
.review-container .img-wrap .photo-count {
    font-weight: 300;
    margin: 7px 0 0;
    font-size: 13px;
}

.review-container .new-provider-img-container {
    width: 205px;
    height: 205px;
    text-align: center;
    margin: 80px auto;
}
.review-container .new-provider-img-container p {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 22px;
}
.new-provider-img-container .add-btn span{
    font-size: 2.4em;
    vertical-align: sub;
}
.dash-provider-section .dash-provider-outer-img-container {
    margin: 0 auto;
}
.review-container .new-provider-img-container img {
    width: 115px;
    margin-bottom: 10px;
}

.review-container .new-provider-img-container .add-btn{
    border: 1px solid #0077b7;
    border-radius: 50%;
    /*padding: 20px;*/
    padding: 10px;
}
.review-container .img-wrap .photo-count {
    font-weight: 300;
    margin: 7px 0 0;
    font-size: 13px;
}
.review-container h4 {
    margin-top: 0;
    font-size: 20px;
}

.review-container #address-marker {
    width: 40px;
    margin-left: -6px;
    margin-right: 7px;
}

#profile-complete-section {
    padding: 10px;
    margin-top: 10px;
}

#profile-complete-section p{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;

}
#profile-complete-section .progress {
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 16px;
    height: 30px;
}
.provider-review.review-container .dash-provider-section .img-container {
    padding: 0 0 0 15px;
}
.provider-review.review-container .img-container img {
    width: 56px;
    display: block;
    margin: 0 auto;
}
.provider-review.review-container .img-container {
    padding: 12px;
    height: 90px;
    width: 90px;
}
.provider-review.review-container .img-container img + span {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    margin-top: -3px;
}
.provider-review.review-container .img-container + .add-photo {
    display: block;
    font-size: 10px;
    padding: 2px 10px;
    margin-top: 5px;
    font-weight: 400;
}
.provider-review.review-container .img-container p {
    font-size: 10px;
}

/********************************************
    BRIGHTER SCHEDULE ACTIVATION STYLING
*********************************************/

#activation-form {
    height: 500px;
    padding-top: 35px;
    border-bottom: 1px solid #d4d4d5;
    padding-left: 80px;
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/jan2017/schedule-activation-bg.jpg") no-repeat scroll right bottom / auto 100%;
}
#activation-form #pmsForm .dropdown-menu.am-fade {
    width: 378px;
}
#activation-form #pmsForm #pms-select + .dropdown-menu.am-fade {
    height: 225px;
    overflow-y: scroll;
}
#activation-successful {
    padding-top: 102px;
    padding-left: 80px;
}
#activation-successful h3{
    font-size: 36px;
}
#activation-successful p{
    font-size: 15px;
}
#schedule-activation h1 {
    font-weight: 300;
    font-size: 30px;
}

#schedule-activation h1 img {
    height: 60px;
    width: auto;
    margin: 2px 0 0;
}

#schedule-activation #activation-form #button-box a{
    font-size:14px;
    font-weight:300;
    margin-left: 20px;
}

#schedule-activation #activation-form #button-box button {
    display: inline-block
}

#activation-form form p {
    font-size: 16px;
    font-weight: 300;
    color:#333333;
    line-height: 28px;
    margin-bottom: 50px;
}
#activation-form form p b {
    font-size: 20px;

}
#activation-form form label, #activation-form form button {
    display: block;
}
#activation-form form label {
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 12px;
}
#activation-form form .select-btn {
    width: 380px;
    margin-bottom: 30px;
}
#activation-form form button[type='submit'] {
    font-size: 14px;
    padding: 8px 28px;
    font-weight: 300;
}
#whatIs {
    padding: 35px 40px 40px 120px;
    height: 420px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e2f0f6+100 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(226,240,246,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(226,240,246,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(226,240,246,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e2f0f6',GradientType=0 ); /* IE6-9 */

}
#whatIs img {
    margin-top: -118px;
    width: 360px;
    height: auto;
}
#whatIs .content {
    display: inline-block;
    margin-left: 90px;
    margin-top: 70px;
}
#whatIs h1 {
    font-size:34px;
}
#whatIs h1 img {
    height: 80px;
    margin: 4px 0 0;
}
#whatIs p {
    font-size: 18px;
    color: #333333;
    font-weight: 300;
    line-height: 34px;

}
#benefits {
    padding: 70px 80px;
    border-bottom: 1px solid #d4d4d5;
}
#benefits h3 {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #d4d4d5;
    line-height: 0.1em;
    margin: 10px 0 60px;
}
#benefits h3 span {
    background: #ffffff;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
}
#benefits ul {
    margin: 0;
    text-align: center;
    width: 100%;
}
#benefits ul li {
    width: 19%;
    vertical-align: top;
}
#benefits ul li img {
    display: block;
    height: 80px;
    width: auto;
    margin: 0 auto 30px;

}
#benefits ul li p {
    font-size: 14px;
    color: #333333;
    font-weight: 300;
}
#howWorks {
    padding: 55px 80px 120px;
}
#schedule-activation #howWorks h1 {
    font-size: 44px;
    color: #25356c;
}
#schedule-activation #howWorks h1 img {
    height: 86px;
    margin-top: 8px;
    width: auto;
}
#howWorks p {
    font-weight: 300;
    font-size: 18px;
    color: #696969;
    margin: 20px 0 40px;
}
#howWorks .img-holder {
    width: 985px;
    margin: 0 auto;
    position: relative;
}
#howWorks .img-holder p {
    font-size: 14px;
    width: 240px;
    position: absolute;
}
#howWorks #one {
    left: -8px;
    top: 160px;
}
#howWorks #two {
    right: -6px;
    top: 160px;
}
#howWorks #three {
    bottom: -50px;
    right: 9px;
    width: 210px;
}
#howWorks #four {
    bottom: -50px;
    left: 5px;
    width: 210px;
}
#howWorks #five {
    bottom: 80px;
    left: 342px;
    width: 340px;
}
/********************************************
    ASIDE BRIGHTER SCORE REVIEW STYLING
*********************************************/
#brighter-score h1 {
    font-weight: 300;
    font-size: 24px;
    margin-bottom:15px;
}
#brighter-score p.score-description {
    font-weight: 300;
    color: #707070;
    margin-bottom:50px;
}
#brighter-score p #update-time-notice {
    font-weight: 500;
}
.brighter-score {
    border: 1px solid #d4d4d5;
    color: #25356c;
    border-radius: 16px;
    padding: 16px 22px;
    margin-right: 30px;
}
.brighter-score h5 {
    font-size: 26px;
    margin-top: 0;
    text-align: center;
}
.brighter-score h5 span {
    font-size: 40px;
}
.brighter-score label {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
}
.score-info-right h3 {
    color: #575757;
    margin: 64px 0 15px;
}
.score-info-right #practice-address{
    font-size: 18px;
    color: #575757;
}
.score-info-right h3 span {
    color: #000000;
}
.score-info-right .score {
    color: #787878;
    margin: 0 8px 0 0;
    font-size: 18px;
    letter-spacing: 1px;
}
.score-info-right li {
    border-right: 1px solid #d4d4d5;
    padding: 0 20px;
}
.score-info-right li:first-of-type {
    padding-left: 0;
}
.score-info-right li:last-of-type {
    border: none;
}
.score-info-right .score .blue {
    color: #0077b7;
    font-size: 26px;
}

.score-info-right .inline p {
    color: #787878;
    margin: 0;
}
.score-info-right .inline p {
    font-size: 11px;
}
.trapezoid {
    overflow: hidden;
    margin: 0 3em;
    width: 10em;
    height: 8.66em;
    transform: rotate(-30deg) skewX(30deg);
}
#score-chart-container {
    position: relative;
}
.score-chart-container img {
    width: 100%;
    margin-top: 20px;
}
.color-chart {
    margin-bottom: 8px;
}
.color-chart, .number-line {
    display: table;
    width: 100%;
    margin-left: 0;
}
.color-chart li, .number-line li {
    display: table-cell;
}
.number-line li {
    text-align: center;
    color: #4a4a4a;
    font-size: 12px;
}
.score-chart-container .number-line li {
    text-align: left;
}
.score-chart-container .number-line li.ends {
    color: #ffffff;
}
.color-chart p {
    text-align: center;
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 300;
    padding: 8px 0;
    text-transform: uppercase;
}
.color-chart li:first-of-type {
    background: #cd4c4c;
    width: 31%;
}
.color-chart li:nth-child(2) {
    background: #eacc00;
    width: 20%;
}
.color-chart li:nth-child(3) {
    background: #7ec662;
    width: 15%;
}
.color-chart li:nth-child(4) {
    background: #6bd0f4;
    width: 15%;
}
.color-chart li:last-of-type {
    background: #0077b7;
}
.score-table-container h2 {
    font-size: 24px;
    color: #000000;
    font-weight: 300;
    margin-top: 40px;
}
.score-table-container p {
    color: #4f4f4f;
    font-size: 13px;
}
#brighter-score-table {
    margin-top: 30px;
    margin-bottom: 50px;
    border-collapse: collapse;
}
#brighter-score-table .grade {
    padding: 12px 0 12px 30px;
    margin: 0;
    font-size: 17px;
    width: 25%;
    font-weight: 300;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}
#brighter-score-table  tr {
    border-bottom: 1px solid #dddddd;
}

#brighter-score-table tr:first-of-type .grade, #fee-pricing-list #excellent, .procedure-table th:last-of-type, #price-line li:last-of-type {
    background: #0077b7;
}
#brighter-score-table tr:nth-child(2) .grade, #fee-pricing-list #vGood, .procedure-table th:nth-child(5), #price-line li:nth-child(4) {
    background: #6bd0f4;
}
#brighter-score-table tr:nth-child(3) .grade, #fee-pricing-list #good, .procedure-table th:nth-child(4), #price-line li:nth-child(3) {
    background: #7ec662;
}
#brighter-score-table tr:nth-child(4) .grade, #fee-pricing-list #bAverage, .procedure-table th:nth-child(3), #price-line li:nth-child(2) {
    background: #eacc00;
}
#brighter-score-table tr:last-of-type .grade, #fee-pricing-list #bad, .procedure-table th:nth-child(2), #price-line li:first-of-type {
    background: #cd4c4c;
}
#brighter-score-table td {
    vertical-align: middle;
}
#brighter-score-table td p {
    margin: 0;
    margin-left: 20px;
    color: #474747;
    font-size: 12px;
}
h3.score-detail-header {
    font-weight: 300;
    font-size: 24px;
    color: #25356c;
    margin-bottom: 25px;
}
.detail-section .header {
    background: #0077b7;
    padding: 22px 30px 17px;
}
.detail-section .header h4 {
    color: #ffffff;
    margin: 0;
    font-weight: 300;
    font-size: 22px;
}
.detail-section .header h4 span {
    font-weight: 400;
    margin-right: 25px;
}
.detail-section .body {
    border-left: 1px solid #d4d4d5;
    border-right: 1px solid #d4d4d5;
    padding: 20px;
}
.detail-section p {
    font-weight: 300;
    font-size: 16px;
    color: #555555;
    line-height: 24px;
}
.exp-list {
    padding-left: 40px;
}
.exp-list > li {
    width: 45%;
    font-weight: 300;
    margin: 8px 0;
}
.exp-list .add-link {
    padding-top: 12px;
}
.exp-list li img {
    width: 45px;
    margin-right: 10px;
}
.exp-list label, .satisfaction-list label {
    font-weight: 300;
}
.exp-list li a label {
    cursor: pointer;
}
.exp-list li ul.nested {
    padding-left: 0;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    width: 80%;
}
.exp-list li ul.nested li {
    margin-bottom: 5px;
}
#brighter-score .aside-body .plus {
    border-radius: 50%;
    border: 1px solid #0077b7;
    color: #0077b7;
    font-size: 24px;
    margin-right: 18px;
    padding: 2px 12px 6px;
    margin-left: 3px;
}
#brighter-score .aside-body .minus {
    border-radius: 50%;
    border: 1px solid #cd4c4c;
    color: #cd4c4c;
    font-size: 24px;
    margin-right: 16px;
    padding: 2px 12px 6px;
}
#brighter-score #satisfaction h4.text-center {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #d4d4d5;
    line-height: 0.1em;
    margin: 40px 0 15px;
    font-weight: 400;
    font-size: 16px;
}
#brighter-score #satisfaction h4.text-center span {
    background: #ffffff;
    padding: 0 10px;
}
#brighter-score .subline {
    font-size: 12px;
    margin-bottom:30px;
}
#satisfaction .review-list {
    display: table;
    padding-left: 0;
    margin-bottom: 60px;
}
#satisfaction .review-list > li {
    display: table-cell;
    padding: 0 51px;
    vertical-align: middle;
}
#satisfaction .review-list li#count-box {
    width: 137px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
#satisfaction .review-list #review-status {
    border-left: 1px solid #d4d4d5;
    padding: 0 30px;
}
#box-padding-left {
    float: left;
    background-color: #ffffff;
    height: 119px;
    display: inline;
    width: 27px;
}
#box-padding-right {
    float: right;
    background-color: #ffffff;
    height: 119px;
    display: inline;
    width: 27px;
}
#satisfaction .review-list #brighter-schedule {
    border-left: 1px solid #d4d4d5;
}
#satisfaction h5 {
    font-size: 14px;
    text-align: center;
    text-transform: capitalize;
}
#satisfaction .review-list .review-count, #satisfaction .percentage {
    font-size:44px;
    text-align: center;
    font-weight:300;
}
#satisfaction .percentage span {
    font-size: 26px;
    vertical-align: text-top;
    margin-left: -10px;
}
#satisfaction #reputation {
    padding: 0 37px 0 24px;
    vertical-align: top;
}
#no-reviews-explanation{
    border-left: 1px solid #d4d4d5;
    width: 430px;
}

#rep-chart, #rep-chart.great {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/jan2016/rep-chart-sprite-full.png") no-repeat scroll 0 0;
    height: 115px;
    width: 180px;
}
#rep-chart.empty {
    background-position: 1px 4px;
}
#rep-chart.great {
    background-position: 0 -115px;
}
#rep-chart.good {
    background-position: 0 -230px;
}
#rep-chart.average {
    background-position: 1px -345px;
}
#rep-chart.poor {
    background-position: 1px -456px;
}

#satisfaction #review-sites {
    border-left: 1px solid #d4d4d5;
    padding: 0 60px;
    vertical-align: top;
}
#satisfaction .site-list {
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    margin-top: 20px;
}
#satisfaction .site-list li {
    height: 40px;
}
#satisfaction .site-list #vitals {
    margin: -5px 0 8px;
}
#satisfaction .site-list #zocdoc {
    margin-bottom:3px;
}
#satisfaction .site-list .img-wrap {
    display: inline-block;
    width: 70px;
    vertical-align: middle;
}
#satisfaction .site-list .img-wrap img {
    margin: 0 auto;
    display: block;
}
#satisfaction .site-list img.small {
    width: 50px;
}
#satisfaction .site-list img.med {
    width: 60px;
}
#satisfaction .site-list img.lrg {
    width: 70px;
}
#satisfaction .site-list .img-wrap + span {
    vertical-align: middle;
    margin: 0 10px;
    width: 24px;
    display: inline-block;
    text-align: center;
}
#satisfaction .site-list .rating-list {
    display: inline-block;
    margin-left: 10px;
}
#satisfaction .site-list .rating-list li {
    padding: 0;
}
#satisfaction .site-list .rating-list li img {
    width: 16px;
}
#review-status{
    width:430px;
}
#review-status .review-vertical {
    display: inline-block;
    vertical-align: top;
    padding: 0 8px;
    width: 82px;
}
#review-status > .review-vertical:first-of-type {
    margin-left: 28px;
}
#review-status .review-vertical li {
    font-size: 10px;
    height: 34px;
}
#review-status .box {
    background-color: #7ec662;
    height: 120px;
    display: inline-block;
    width: 180px;
    border-left: 1px solid #d4d4d5;
    border-right: 1px solid #d4d4d5;
    border-bottom: 1px solid #d4d4d5;
}

#review-status .box #fill {
    background-color: #FFFFFF;
}
#satisfaction .review-list #no-reviews-explanation {
    border-left: 1px solid #d4d4d5;
}
#satisfaction .review-list #no-reviews-explanation h5 {
    text-transform: none;
    font-weight: 300;
    font-size: 12px;
    line-height: 22px;
}
#satisfaction .review-list h6 {
    font-size: 14px;
    font-weight: 500;
}
#satisfaction .review-list h6 + p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom:20px;
}
#satisfaction .call-text {
    font-weight: 400;
    margin-top: 30px;
    color: #000000;
    margin-bottom:60px;
}
#satisfaction .verified-count {
    border: 1px solid #d4d4d5;
    padding: 15px 60px;
    text-align: center;
    margin-bottom:20px;
    border-radius:4px;
}
#satisfaction .verified-count p {
    font-size: 14px;
    color: #000000;
    margin-right: 25px;
    font-weight: 400;
    margin-bottom:0;
}
#satisfaction #verified-list {
    margin-bottom:60px;
}
#satisfaction #verified-list li {
    padding: 10px 48px;
    vertical-align: top;
}
#satisfaction #verified-list > li:last-of-type {
    border-left: 1px solid #d4d4d5;
}
#satisfaction .verified-count img {
    width: 20px;
}

#satisfaction .verified-count div.inline span {
    color: #707070;
    font-weight: 300;
}
#satisfaction .verified-count div.inline span.count {
    margin: 0 3px;
    color: #0077b7;
    font-weight: 400;
}
#satisfaction .verified-count > div.inline:first-of-type {
    margin-right: 25px;
}
#satisfaction .verified-count + .verified-counter {
    font-weight: 300;
    font-size: 14px;
    color: #000000;
}
#satisfaction .verified-count + .verified-counter span {
    font-weight: 400;
}
#satisfaction .amenities-wrapper {
    display: table;
    width: 80%;
    margin: 0 auto 30px;
    border-spacing: 10px;
}
#satisfaction .amenities-wrapper h4 {
    font-weight: 400;
    font-size: 14px;
    padding: 20px;
    margin: 0;
    line-height: 28px;
    border-bottom:1px solid #d4d4d5;
}
#satisfaction .amenities-wrapper h4 a {
    margin-top: -5px;
}
#satisfaction .amenities-wrapper .list-box {
    padding: 10px 20px 20px;
    border: none;
    min-height: 0;
}
#satisfaction .amenities-wrapper .list-box ul {
    padding: 0 0 0 15px;
}
#satisfaction .amenities-wrapper ul li {
    list-style-type: disc;
    color: #555555;
    text-transform: capitalize;
    font-size: 12px;
}
#satisfaction .amenities-wrapper .amenities-main-section{
    display: table-cell;
    width: 40%;
    border: 1px solid #d4d4d5;
    vertical-align: top;
}

.satisfaction-list {
    padding-left: 60px;
}
.satisfaction-list li {
    margin: 22px 0;
}
.satisfaction-list li img {
    margin-right: 52px;
    width: 40px;
}
#brighter-score .satisfaction-list li span.plus, #brighter-score .satisfaction-list li span.minus {
    margin-right: 53px;
}

.satisfaction-list .yelp-rating {
    display: inline-block;
    margin-left: -23px;
    margin-right: 33px;
}

.satisfaction-list li img.confirm {
    width: 45px;
    margin-left: -3px;
}
#affordability.detail-section p {
    margin-bottom: 40px;
}
#affordability.detail-section .left-text {
    display: inline-block;
    vertical-align: middle;
    margin-right: 35px;
    padding-left: 20px;
    width: 50%;
}
#affordability.detail-section h5 {
    text-transform: none;
    line-height: 24px;
    font-size: 18px;
    margin: 0 0 25px 0;
    color: #25356c;
    font-weight: 300;

}
#affordability.detail-section h5 + a {
    font-weight: 300;
}
#affordability.detail-section .center {
    margin: 0 auto 30px;
    display: table;
    width: 90%;
}
#affordability.detail-section .graph-container {
    width: 378px;
    position: relative;
    display: inline-block;
}
#affordability.detail-section h6 {
    font-weight: 300;
    font-size: 16px;
}
#affordability .gray-box {
    background: #f2f2f2;
    padding: 20px 0;
    border-left: 1px solid #d4d4d5;
    border-right: 1px solid #d4d4d5;
}
#affordability .gray-box p {
    margin-bottom:0;
}
#price-line {
    margin-top: -24px;
    display: table;
    width: 100%;
    position: relative;
}
#price-line li {
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    width: 20%;
    vertical-align: middle;
    display: table-cell;
    padding: 7px;
}

#fee-pricing h6 {
    font-weight: 300;
    font-size: 16px;
    margin-left: 50px;
    margin-top: 20px;
}
#fee-pricing #fee-pricing-list {
    margin-left: 45px;
    margin-bottom: 30px;
}
#fee-pricing #fee-pricing-list li {
    width: 48%;
    margin-bottom: 15px;

}
#fee-pricing-list h5 {
    color: #ffffff;
    font-size: 16px;
    width: 132px;
    padding: 6px 12px;
    text-transform: capitalize;
    font-weight: 300;
    margin-right: 25px;
}
#fee-pricing-list label {
    font-weight: 300;
    font-size: 16px;
}
#fee-pricing .contract-fee {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
#fee-pricing .body {
    border-bottom: 1px solid #d4d4d5;
}
#brighter-score .cta {
    text-align: center;
    border: 1px solid #d4d4d5;
    padding: 15px 0;
    font-weight: 300;
    margin-top: 30px;
}
#brighter-score #brighter-score-footer {
    padding: 15px 100px;
    margin: 0 auto 70px;
    text-align: left;
    font-size: 13px;
}
.procedure-table-container {
    border-left: 1px solid #d4d4d5;
    border-right: 1px solid #d4d4d5;
}
.procedure-table {
    border: none;
    margin-bottom: 0;
}
.procedure-table th {
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    border: none !important;
    font-size: 12px;
    text-transform: uppercase;
    width: 12%;
}
.procedure-table td.procedures {
    font-weight: 300;

}
.procedure-table td {
    padding: 15px !important;
    border-right: none !important;
}
.procedure-table td span img {
    width: 24px;
}
#brighter-score .procedure-table-container .cta {
    margin-top: 0;
    border: none;
    border-bottom: 1px solid #d4d4d5;
    padding: 30px 15px;
}




/********************************************
    PROVIDER HOMEPAGE STYLING
*********************************************/
.new-wrapper {
    margin: 0 auto;
    width: 1400px;
}
.learn-link {
    font-weight: 300;
}
.learn-link img {
    margin-left:4px;
    vertical-align: text-top;
}

#top {
    border-bottom: 1px solid #d4d4d5;
}
#top .container-fluid {
    padding-left: 37px;
    padding-right: 48px;
}
#top .navbar-nav img {
    width: 28px;
    margin-top: -4px;
}
#top .navbar-nav li a {
    padding-top: 16px;
    padding-bottom: 10px;
}
#top .navbar-nav li {
    font-size: 12px;
}
#top .navbar-nav .current {
    padding: 18px 15px 16px;
    color: #25356c;
    font-weight: 500;
}
#top p {
    margin: 0;
    color: #25356c;
    font-size: 12px;
    line-height: 50px;
}
#homepage {
    min-width: 1300px;
    padding-top: 92px;
}
#login-header {
    padding: 1.7vw 3.6vw 1.3vw;
    height: 6.8vw;
    background: #ffffff;
    border-bottom: 1px solid #d4d4d5;
}
#login-header h2 {
    font-weight: 300;
    color: #636363;
    margin: 0;
    font-size: 1.3vw;
}
#login-header h2 img {
    width: 9.6vw;
    vertical-align: middle;
}
#login-header .btn {
    padding: .3vw 1.8vw;
    font-weight: 400;
    margin-top: .3vw;
}
#login-header .btn.btn-primary {
    padding: .3vw 2.1vw;
}
#homepage-banner {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/bg-smiling-new.jpg") no-repeat scroll center right;
    height: 577px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}
#homepage-banner .new-wrapper.container-fluid {
    padding-left: 43px;
    padding-top: 40px;
}
#homepage-banner h1 {
    margin-top: 3vw;
    color: #ffffff;
    line-height: 50px;
    font-weight: 300;
    font-size: 40px;
    margin-bottom:20px;
}
#homepage-banner p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom:15px;
}
#homepage-banner .btn.lg-pill, .mobile-view .btn.lg-pill {
    border: 1px solid #0077b7;
    font-size: 16px;
    font-weight:400;
    padding: 8px 34px;
    color: #ffffff;
    margin-bottom:20px;
    border-radius: 22px;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s ;
    -ms-transition: all 0.1s linear 0s ;
    -o-transition: all 0.1s linear 0s ;
    transition: all 0.1s linear 0s ;
    background:#0077b7;
}

#homepage-banner .btn.lg-pill:hover, .mobile-view .btn.lg-pill:hover {
    color: #ffffff;
    background: #25356c;
    border-color: #25356c;
}
#homepage-banner h3 {
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
}
#homepage-banner .btn-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    margin-left: 30px;
    background: transparent;
    font-weight: 400;
}
#homepage-banner .btn-white:hover, #homepage-banner .btn-white:focus {
    background: #0077b7;
    border-color: #0077b7;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s ;
    -ms-transition: all 0.1s linear 0s ;
    -o-transition: all 0.1s linear 0s ;
    transition: all 0.1s linear 0s ;
}

.brighter-carriers {
    width: 1017px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.brighter-carriers p {
    margin-top: 14px;
    font-weight: 300;
}

.brighter-carriers img {
    margin-left: 30px;
}

.brighter-carriers img.aetna-logo {
    margin-top: 12px;
}

.brighter-carriers img.delta-logo {
    margin-top: 7px;
}

#homepage-banner div.gradient {
    height: 1px;
    width: 800px;
    margin: 30px 0 40px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */

}
#homepage-banner p.last {
    font-size: 13px;
    margin: 0 0 20px;
}
#homepage-banner p.last + img {
    height: 30px;
}
#stand-out {
    position: relative;
    padding-top: 40px;
}
#stand-out h3 {
    color: #25356c;
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 300;
}
#marketing-box h4{
    font-weight: 300;
    font-size: 24px;
    color: #4d4d4d;
    margin-bottom: 48px;
}
#stand-out h4 {
    font-size: 18px;
    color: #4d4d4d;
    margin-bottom:80px;
    font-weight: 300;
}
#stand-out .profile-body {
    overflow: hidden;
}
#stand-out .highlight-left {
    width: 46.5%;
}
.highlight-box {
    border: 1px solid #d4d4d5;
    border-radius: .6vw;
    width: 530px;
    margin-right: 8%;
    float: right;
    margin-bottom: 30px;
    padding-bottom: .7vw;
}
#stand-out .highlight-box h4 {
    border-bottom: 1px solid #d4d4d5;
    margin-top: 0;
    font-size: 20px;
    margin-bottom:0;
    padding: 24px 0 20px;
}
.highlight-box ul {
    margin: 0;
    padding: 0 20px;
}
.highlight-box ul li {
    width: 49%;
    margin: 35px 0;
}
.highlight-box ul li img {
    width: 48px;
}
.highlight-box ul li img.chatbox {
    width: 58px;
}
.highlight-box ul li h6 {
    font-size: 16px;
    font-weight: 300;
    color: #434343;
    line-height: 24px;
    width: 110px;
    margin: 0 0 0 18px;
}
#stand-out .learn-link {
    padding: 50px 0 70px;
}
#create-account #marketing-box .marketing-box-highlight{
    background: #ffffff;
    width: 472px;
    margin: 102px 0 25px 35px;
}

.marketing-box-highlight{
    border: 1px solid #d4d4d5;
    border-radius: 8px;
    margin-bottom: 2.1vw;

}
#marketing-box .marketing-box-highlight h4 {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    padding: 22px 0 18px;
}
.marketing-box-highlight ul {
    margin: 0;
    padding: 14px 30px;
}
.marketing-box-highlight ul li {
    width: 100%;
    margin-left: 68px;
    margin-bottom: 25px;
    vertical-align: middle;
}
.marketing-box-highlight ul li img {
    width: 22px;
    margin-right: 20px;
    vertical-align: middle;
}

.marketing-box-highlight ul li img.camera-icon {
    width: 20px;
}

.marketing-box-highlight ul li img.lightbulb {
    width: auto;
    margin-left: 5px;
    margin-right: 22px;
}

.marketing-box-highlight ul li h6 {
    font-size: 16px;
    font-weight: 300;
    color: #434343;
    vertical-align: middle;
    line-height: 18px;
    width: 223px;
    margin: 0;
}


.highlight-btn-wrapper {
    width:470px;
    margin-right: 8%;
    float: right;
    text-align: center;
}
.highlight-btn-wrapper p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0;
    margin-right: 20px;
    vertical-align: middle;
}
.highlight-btn-wrapper .btn-primary {
    font-weight: 400;
    padding: .4vw 2.1vw;
    border-radius: 1.1vw;
}
#stand-out .img-right {
    width: 49%;
    vertical-align: top;
}
#stand-out .img-right img {
    width: 700px;
}
#stand-out .img-right.video-open-container {
    width: 700px;
}

#mid-banner {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/bg-patient-technology2.jpg") no-repeat scroll center center;
    height: 800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 92px;
    position: relative;

}
#mid-banner .container-fluid {
    position: relative;
    text-align: right;
    padding-top: 150px;
    padding-right: 43px;
    margin-bottom:130px;
}
#mid-banner h1 {
    font-size: 44px;
    color: #25356c;
    font-weight: 300;
    margin-bottom: 30px;
}
#mid-banner p {
    font-size: 24px;
    font-weight: 300;
    color: #424242;
    line-height: 46px;
    margin-bottom: 30px;
}
#testimonials {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 10.7vw;

}
#testimonials h4 {
    font-weight: 300;
    font-size: 28px;
    margin-bottom:80px;
    color: #25356c;

}

.testimonies {
    display: table;
    margin: 0 auto 2.1vw;
    padding-left: 0;
}
.testimonies li {
    display: table-cell;
    width: 26%;
}
#testimonials .testimonies h4 {
    color: #0077b7;
    font-size: 1.4vw;
    text-align: center;
    margin: 1.8vw 0 1.4vw;
}
.testimonies p {
    text-align: center;
    font-weight: 300;
    line-height: 1.9vw;
}
#testimonials p.inline {
    font-size: 20px;
    font-weight: 300;
    margin: 0 30px 0 0;
    vertical-align: sub;
}
#homepage-login {
    border-radius: .4vw;
    width: 27.5vw;
    top: 5vw !important;
}
#homepage-login h4 {
    font-size: 1.4vw;
    margin-top: 0;
    font-weight: 300;
    text-transform: capitalize;
    margin-bottom: 1.4vw;
}
#homepage-login input.form-control {
    border-radius: 0;
    height: 3vw;
    font-weight: 300;
    margin-bottom: .4vw;
}
#homepage-login .btn-wrapper {
    margin-top: 1.8vw;
}
#homepage-login #password-link {
    text-transform: uppercase;
    font-size: .9vw;
}
#homepage-login #loginButton {
    margin: -.4vw 0 0;
}

.progress-wrapper{
    position: relative;
    margin:20px auto;
    font-size: 40px;
}
.progress-circle-text{
    width: 120px;
    font-weight: 100;
    line-height: 1;
    margin-bottom: -100px;
    font-size: 11px;
}

.progress-circle-text .progress-text-label {
    text-transform: uppercase;
    text-align: center;
    color: #737373;
    line-height: 14px;
    text-align: center;
    font-weight: 400;
}

.progress-circle-text .progress-text-percentage {
    font-weight: 400;
    margin-bottom: 6px;
    font-size: 26px;
    text-align: center;
}
.review-main-info {
    width: 52%;
    margin-left: 20px;
}


.review-main-info h4 {
    font-size: 20px;
}
.review-main-info .score {
    font-weight: 300;
}
.score-popover-wrapper {
    position: absolute;
}
.score-popover + .popover {
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #a9c3d4;
}
.score-popover + .popover > .popover-content {
    text-transform: uppercase;
    text-align: center;
    color: #25356c;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}
.score-popover-wrapper .popover.top > .arrow:after {
    margin-left: -11px;
}

.access-code-toggle img {
    width: 18px;
    height: 18px;
}
.access-code-toggle img:last-child{display:none}
.access-code-toggle:hover img:first-child{display:none}
.access-code-toggle:hover img:last-child{display:inline-block}
/************************************
    FORGOT PASSWORD FLOW STYLING
*************************************/

.password-flow h3 {
    color: #25356c;
    font-size: 28px;
    margin-left: -40px;
    margin-bottom: 20px;
    font-weight: 400;
}
.password-flow .forgot-password {
    width: 410px;
    margin: 0 auto;
}
.password-flow .forgot-password p {
    font-size: 16px;
    display: inline-block;
}
.password-flow .forgot-password form {
    width: 405px;
}
.password-flow .forgot-password form input {
    margin: 5px 0 15px;
}
.password-flow .no-acct .btn {
    font-size: 14px;
    font-weight: 500;
}
.password-flow .change-password .first {
    position: relative;
}
.password-flow .change-password .first .password-help {
    position: absolute;
    width: 300px;
    top: 5px;
    right: -255px;
    font-size: 12px;
    font-weight: 300;
}
.password-flow .password-updated {
    width: 440px;
    margin: 30px auto;

}
.password-flow .password-updated h3 {
    margin-left: 0;
}
.password-flow .invalid-token {
    width: 576px;
    margin: 0 auto;
}
.password-flow .invalid-token h3 {
    margin-left: 0;
}

/************************************
    ACCOUNT SETTING STYLING
*************************************/

#account-setting-sidebar h2 {
    margin: 0 -30px;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 1px solid #d4d4d5;
    padding-bottom: 30px;
}
#account-setting-sidebar h2 span {
    vertical-align: text-top;
}
#account-setting-links h3 {
    color: #25356c;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
}
#account-setting-links a {
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
}

.sref-selected{
    color : darkblue;
}

#account-setting-main {
    float: none;
    min-height: 850px;
    width: 100%;
}
#account-setting-main h2 {
    display: block;
}
#account-setting-main .form-group {
    margin-bottom: 0;
}
#account-setting-main .btn-primary {
    padding: 6px 30px;
}
#account-setting-main .update-text {
    font-weight: 400;
    font-size: 16px;
    /*border-bottom: 1px solid #d4d4d5;*/
    margin-bottom: 40px;
    padding-bottom: 35px;
}

/************************************
    MANAGE USERS STYLING
*************************************/
#manage-users h2  {
    font-size: 24px;
    margin-bottom: 30px;
    width: 100%;
}

#manage-users .verification-pin {
    padding-right: 70px;
}

#manage-users .firstRow {
    margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
}
#manage-users .secondRow {
    margin-bottom: 20px
}
#manage-users .secondRow > h4 {
    font-weight: 100;
    padding-left: 20px;
}
#manage-users .tableHead {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    padding: 20px;
}
#manage-users .tableHead > span{
    font-weight: 500;
}
#manage-users .tableHead .user-delete-button  {
    padding-top: 1px;
    margin-top: -3px;
}

#manage-users .tableHead .user-delete-button .btn-danger {
    margin-top: 2px;
}

#manage-users .tableHead .user-delete-button .delete-button .delete-button-text  {
    font-weight: 100;
    font-size: 14px;
    color: #337ab7;
    background: transparent;
}
.tableHead .btn-link {
    font-weight: 100;
}
.manage-user-table > tbody  {
}
.manage-user-table > tbody > tr > td {
    font-weight: 300;
    padding: 20px 10px 20px 25px;
    vertical-align: middle;
    width: 10%;
}
.manage-user-table td a {
    font-weight: 300;
    text-transform: uppercase;
}
#add-practice-user .col-md-12 {
    border: 1px solid #ddd;
    padding: 45px;
}
#add-practice-user .col-md-12 .form-input {
    padding: 15px;
}

#add-practice-user .col-md-12 .aside-footer {
    padding:15px;
}

#add-practice-user .col-md-12 .form-input > input {
    height: 40px;
}
#add-practice-user .aside-footer .validationErrorText {
    margin-left: 30px;
    margin-top: 6px;
}

#add-practice-user .add-user-errorMsg img {
    width: 40px;
    display: inline;
}

#add-practice-user .add-user-errorMsg {
    color: #c13b3c;
}

.changePasswordContainer, .loginInfoContainer {
    width: 800px;
    margin-left: 40px;
}
.changePasswordContainer .form-group.second {
    position: relative;
}
.changePasswordContainer .password-help {
    position: absolute;
    right: 70px;
    width: 460px;
    font-size: 12px;
    font-weight: 500;
    top: 49px;
    line-height: 15px;
    z-index: 2;
    text-align: center;
    background-color: lightgrey;
    padding-top: 2px;
    padding-left: 2px;
    padding-right: 2px;
}
.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.strike > span {
    position: relative;
    display: inline-block;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: #d4d4d5;
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}
.multiple-alert .strike, .multiple-practice .strike {
    margin-bottom: 20px;
}
.multiple-alert .strike span, .multiple-practice .strike span {
    font-size: 18px;
}


.info-section ul #confirmPracticeBtn{
    margin-bottom: 22px;
}
.contact-box p {
    margin-bottom: 0;
}
.contact-box .strike {
    margin: 10px 0;
}
.contact-box p.heavy {
    margin-bottom: 5px;
    font-size: 16px;
}

.special-input[type=email]{
    font-weight: 300;
}

#confirm-practice-container {
    padding-bottom: 50px;
    float: none;
}
#confirm-practice-container .info-list li span img {
    width: 34px;
    margin-left: 8px;
}
#confirm-practice-container #confirm-practice  {
    background: #ffffff;
}
#request-access-container {
    min-height: 750px;
    width: 100%;
    float: none;
}
#request-access-container .checkmark {
    background: #85cac0;
    border-radius: 50%;
    width: 26px;
    padding: 7px 5px;
    margin-left: 8px;
}
#request-access-container h3 {
    font-size: 36px;
}

#request-access-container h4  {
    font-size: 20px;
    font-weight: 400;
    color: #777777;
    margin-top: 15px;
}

#request-access #login-message{
    margin-bottom: 25px;
}

/************************************
    BRIGHTER SCORE CARRIER STYLING
*************************************/

#brighter-score-carriers h3 {
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 26px;
}
#brighter-score-carriers p {
    font-weight: 300;
    line-height: 24px;
    margin: 0 0 25px;
}
#brighter-score-carriers label{
    font-weight: 300;
    font-size: 18px;
    margin: 0 15px 0 0;
    vertical-align: middle;
}
#brighter-score-carriers #evaluation-areas-list{
    margin-bottom: 45px;
}
#brighter-score-carriers #evaluation-areas-list li {
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 20px;
}
#brighter-score-carriers .select-btn {
    width: 300px;
    margin: 0 15px 0 0;
}
#brighter-score-carriers .select-btn + .dropdown-menu {
    width: 300px;
}

.status-slider {
    background: #dddddd;
    border-radius: 13px;
    width: 110px;
}
.status-slider a {
    text-transform: uppercase;
    color: #444444;
    text-align: center;
    width: 42%;
    border-radius: 13px;
    padding: 3px 0;
}
.status-slider a.active {
    color: #ffffff;
    background: #0077b7;
    width: 55%;
}

.status-slider a.active-off {
    color: #ffffff;
    background: #a9a9a9;
    width: 55%;
}

/************************************
    IMAGE UPLOAD PROGRESS STYLING
*************************************/
#upload-progress {
    margin-bottom: 60px;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #ccc;
}

/************************************
    ACCOUNT SETTING STYLING
*************************************/

#user-management {
    padding: 30px 30px 80px;
}
#user-management h1.aside-title {
    margin-top: 25px;
}
#user-management #create-user {
    margin-top: 20px;
}
.create-user.aside .aside-footer .validationErrorText {
    margin-left: 30px;
    margin-top:6px;
}
#user-management .info-section {
    margin-top: 20px;
    margin-bottom: 35px;
}
#user-search label {
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
}
#user-search .input-group input {
    border-right: none;
}
#user-search .input-group-addon {
    padding: 0;
}
#user-search .input-group-addon img {
    width: 38px;
}
#user-search .dropdown-menu {
    width: 93%;
}
#user-management h2 {
    font-weight: 300;
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: 20px;
}
#user-management .table > thead > tr > th {
    font-weight: 400;
}
#user-management .table tbody td {
    vertical-align: middle;
    padding: 14px;
    font-weight: 300;
    font-size: 12px;
}
#user-management .table > thead > tr > th:first-of-type,
#user-management .table > tbody > tr > td:first-of-type {
    width: 110px;
    border-left: none;
}
#user-management .table > thead > tr th:last-of-type,
#user-management .table > tbody > tr td:last-of-type {
    width: 120px;
    text-align: center;
}
#user-management .table, #user-management .table > thead > tr th:last-of-type,
#user-management .table tbody tr td:last-of-type {
    border-right: none;
    border-left: none;
}
#user-management .table tbody tr > td:first-of-type img {
    width: 24px;
}
#user-management  .table .popover-role img {
    width: 26px;
    vertical-align: bottom;
}
.aside form .checkbox-list {
    padding: 20px;
    border: 1px solid #d4d4d5;
}
.aside form .checkbox-list ul li {
    width: 49%;
    margin-bottom: 15px;
}
.aside form .checkbox-list ul li label {
    font-weight: 300;
}
.aside.edit-user .aside-title {
    margin-bottom: 40px;
}
.aside.edit-user .reset-btn {
    margin-top: -10px;
}
.height-fix {
    display: table;
    width: 100%;
}
.height-fix .left-label, .height-fix .right-input {
    height: inherit;
    display: table-cell;
    float: none;
}

.practice-popover.popover.bottom-right .arrow {
    left: 95%;
}
.practice-popover ul li {
    margin-bottom: 10px;
    text-align: right;
}
.practice-popover ul li a {
    margin-right: 5px;
}

#tag-images .thumbnail-wrap {
    float: left;
    width: 315px;
    border-right: 1px solid #ccc;
}

#tag-images img.tag-thumbnail {
    max-width: 300px;
    max-height: 180px;
    padding-right: 15px;
}

#tag-images .provider-tags {
    float: left;
    margin-left: 30px;
}

#tag-images p {
    font-size: 14px;
}

#tag-images .tag-header {
    float: left;
    text-transform: uppercase;
}

#tag-images p.no-selection {
    float: left;
    margin-left: 20px;
    color: #cd4c4c;
}

#tag-images .provider-list {
    border-bottom: 1px solid #ccc;
    margin: 50px 0 15px 0;
}

#tag-images .checkbox-container {
    float: left;
    margin-right: 30px;
}

#tag-images .provider-list li {
    margin-bottom: 15px;
}

.img-border {
    padding: 10px;
    border: 1px solid #d4d4d5;
    display: inline-block;
}
/************************************
    .EXTERNAL USER SIDEBAR STYLING
*************************************/

.external-user-sidebar h5 {
    font-size: 20px;
    font-weight: 300;
}
.external-user-sidebar #see-all {
    font-size: 16px;
    font-weight: 300;
}
.external-user-sidebar .select-btn {
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height: 60px;
}
.external-user-sidebar .select-btn > div {
    display: none;
}
.external-user-sidebar .select-btn + .dropdown-menu {
    /*width: 78%;*/
}
.external-user-sidebar .select-btn + .dropdown-menu li a {
    padding-left: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.external-user-sidebar .select-btn + .dropdown-menu li a span > div {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 10px;
    font-size: 10px;
}
.external-user-sidebar h4 {
    border-top: 1px solid #d4d4d5;
    margin: 0 24px;
    padding: 0;
}
.external-user-sidebar h4 a {
    display: block;
    padding: 24px 0 24px 10px;
}
.external-user-sidebar .selected a, #practice-sidebar .selected{
    color: #000000;
    background: #ffffff;
}


/************************************
    REQUEST CALLBACK MODAL STYLING
*************************************/
#callback-modal .modal-dialog {
    margin: 80px auto 0;
    width: 785px;
}
#callback-modal .modal-content {
    border-radius: 0;
    border-color: #d4d4d5;
}
#callback-modal .modal-body {
    padding: 0 70px 30px 70px;
}

#callback-modal.video-modal .modal-body {
    padding: 0 0 19px 0;
}

#callback-modal h4 {
    font-weight: 500;
    margin-bottom:25px;
    text-align: left;
    margin-left: -14px;
}

#callback-modal textarea {
    resize: none;
    border-radius: 0;
    height: 90px;
    padding: 12px;
    box-shadow: none;
    font-weight: 300;
    margin-bottom:20px;
}
#callback-modal input.form-control {
    height: 48px;
    box-shadow: none;
}
#callback-modal .form-control {
    border-color: #d4d4d5;
}
#callback-modal button {
    margin: 0 auto;
    display: block;
}
#callback-modal form .form-group {
    border: 1px solid #d4d4d5;
}
#callback-modal form .control-label {
    padding-left: 8px;
    height: 48px;
    line-height:33px;
    border-right: 1px solid #d4d4d5;
    padding-right:0;
    font-weight: 300;
    text-align: left;
    width: 35%;
    font-size: 12px;
    color: #707070;
    text-transform: uppercase;
}

#callback-modal form .form-control {
    border: none;
    padding-left:0;
    padding-right:0;
}
#callback-modal form .col-sm-8 {
    width: 65%;
}
#callback-modal #model-header {
    border-bottom: 0px solid #e5e5e5;
}
#request-received p {
    margin-bottom:25px;
    font-weight: 300;
    font-size: 16px;
}
#request-received button {
    margin-bottom:25px;
}
body.bg-overflow {
    overflow: hidden;
}

#main-navbar #contact-us, #ext-navbar #contact-us {
    margin-top: 8px;
    margin-right: 20px;
    border-right: 1px solid #ffffff;
    padding-right: 18px;
    color: white;
}

#main-navbar #contact-us a, #ext-navbar #contact-us a{
    color: #ffffff;
    font-weight: 300;
}

/************************************
    VERIFICATION FLOW STYLING
*************************************/
#verification-main {
    margin: 0 auto 150px auto;
}
#verification-main.verification-flow {
    max-width: 1100px;
}
#verification-flow-container {
    padding-right: 15px;
    padding-left: 15px;
}
#practice-info.verification-info {
    position: relative;
}
#practice-info.verification-info section.row.nested > div.verification-map {
    padding: 25px;
}
#verification-main .verification-header {
    padding: 20px 20px 10px 30px;
}
#verification-main .verification-header p {
    font-size: 14px;
    font-weight: 300;
}

.verification-header h6 {
    color: #000000;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 10px;
}
#verification-main .verification-header h3 {
    color: #333;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.62;
}
#verification-main #practice-info {
    padding: 0 20px;
}
#practice-info.verification-info .angular-google-map-container {
    margin-top: 0;
}

#practice-info.verification-info section,
#practice-info.verification-info section.row > div {
    padding: 30px;
}

#practice-info.verification-info section.confirm-heading-sect {
    padding: 15px 30px;
}

#practice-info.verification-info ul {
    padding-left: 10px;
}

#practice-info.verification-info section p,
#practice-info.verification-info address {
    font-size: 16px;
    font-weight: 400;
}

#practice-info.verification-info .edit-info {
    font-size: 12px;
}
#practice-info.verification-info #npi-tooltip {
    font-size: 12px;
    padding-left: 10px;
}
#practice-info.verification-info #npi-tooltip + .popover {
    width: 400px;
    margin-top: 18px;
}
#practice-info.verification-info #npi-tooltip + .popover p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}
#practice-info.verification-info #npi-tooltip + .popover p span, #practice-info.verification-info #npi-tooltip + .popover p a {
    font-weight: 400;
}
#practice-info.verification-info .add-info {
    font-size: 14px;
}

#practice-info.verification-info .border-left {
    border-left: solid #d4d4d5 1px;
}

#practice-info.verification-info .border-right {
    border-right: solid #d4d4d5 1px;
}

#practice-info.verification-info #map-failed{
    height: 327px;
    text-align: center;
    font-size: 20px;
    padding-top: 117px;
}
#practice-info.verification-info section .sub-label {
    font-size: 12px;
    font-weight: 300;
    display: block;
}
#practice-info.verification-info section.row > div:first-of-type {
    border-right: none;
}
#practice-info.verification-info .contact-person-note > button {
    margin-left: 15px;
    margin-top: 20px;
}
#practice-info.verification-info section.row.line-item > div {
    padding-top: 18px;
    padding-bottom: 13px;
    min-height: 57px;
}
#practice-info.verification-info section.row.line-item > div.border-right {
    border-right: solid #d4d4d5 1px;
}
#practice-info.verification-info section.row.line-item > div.validationError {
    border: solid #c13b3c 1px;
}
#practice-info.verification-info .select-btn {
    height: 48px;
}
#practice-info.verification-info .contact-person-note ul {
    margin: 0 0 0 10px;
    padding: 0;
}
#practice-info.verification-info .location-question,
#practice-info.verification-info .confirm-heading{
    font-weight: 400;
    font-size: 18px;
}

td.info-list-nested table.additional-info-table.multi-row td.ver-license-type {
    width: 290px;
}
td.info-list-nested table.additional-info-table.multi-row td.ver-license-remove {
    vertical-align: middle;
}
#practice-info.verification-info .location-question {
    margin-bottom: 20px;
    color: #000000;
}

#practice-info.verification-info .location-question.location-no {
    margin-bottom: 20px;
}
#practice-info.verification-info .location-check label {
    font-size: 18px;
    font-weight: 400;
    text-transform: inherit;
    color: #333;
}
#practice-info.verification-info .confirm-heading {
    font-size: 16px;
}
#practice-info.verification-info .location-no-select {
    width: 560px;
}
#practice-info.verification-info .contact-person-note ul {

}
#practice-info.verification-info .verify-btn-container {
    padding-top: 30px;
    padding-left: 20px;
}

#practice-info.verification-info .verify-btn-container p {
    font-size: 18px;
    font-weight: 300;
    padding-top: 12px;
    padding-right: 25px;
}

#practice-info.verification-info .verify-btn-container p.error-msg {
    font-size: 16px;
    color: #b2272e;
    margin-left: 20px;
    margin-top: 2px;
}

#practice-info.verification-info .verify-btn-container p.error-msg img {
    margin-right: 2px;
}

#practice-info.verification-info .ver-review-header {
    font-weight: 400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

#practice-info.verification-info .ver-review-headerSub {
    font-size: 14px;
    margin-top: 0;
    font-weight: 400;
    margin-bottom: 20px;
}
#practice-info.verification-info .ver-review-headerSub img {
    margin-right: 7px;
    margin-top: -3px;
}
#practice-info.verification-info .ver-prov-name {
    font-size: 14px;
    font-weight: 400;
}
#practice-info.verification-info .ver-info-meta {
    margin-left: 26px;
}
#practice-info.verification-info .ver-prov-name img {
    margin-right: 5px
}
#ver-license-type-td .dropdown-menu {
    width: 500px;
}

#verification-aside .aside-body {
    padding-bottom: 0;
}
#verification-aside .delete-list li {
    padding: 10px 0 20px 0;
}
#verification-aside .provider-spec-header {
    padding-left: 20px;
    margin: 15px 0 0 0;
}
#verification-aside .aside-body .table-bordered .speciality-list li {
    padding: 20px 0 0 0;
}
#verification-aside .delete-list {
    border-top: none;
}
#verification-aside .speciality-list li {
    border-bottom: none;
}
#verification-aside .aside-body .table-bordered .radio-group.radio-aside {
    margin-top: 35px;
}
#verification-aside .remove-link {
    vertical-align: middle;
}
#practice-info.verification-info .ver-prov-name a {
    font-size: 10px;
    padding-left: 8px;
    padding-bottom: 4px;
}

#practice-info.verification-info .verify-block.verify-prov-block {
    margin-bottom: 20px;
}
#practice-info.verification-info .ver-prov-npi,
#practice-info.verification-info .ver-prov-lis,
#practice-info.verification-info .ver-prov-info {
    font-size: 12px;
    font-weight: 300;
}
#practice-info.verification-info .ver-prov-lis {
    padding-left: 10px;
}
#practice-info.verification-info .ver-prov-npi {
    padding-right: 10px;
    border-right: solid #333 1px;
}
#practice-info.verification-info .verification-review {
    -webkit-box-shadow: 20px 15px 0px 0px rgba(245,245,245,1);
    -moz-box-shadow: 20px 15px 0px 0px rgba(245,245,245,1);
    box-shadow: 20px 15px 0px 0px rgba(245,245,245,1);
}
#verification-main #accesspoint-info {
    padding: 20px;
}
#practice-info .form-confirmation-section {
    color: #616161;;
    margin: 25px 0 100px;
}

#practice-info .form-confirmation-section p {
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 12px;
}

#practice-info.verification-info .angular-google-map-container {
    height: 360px;
}

#practice-info .form-confirmation-section .editButton {
    margin-right: 10px;
    padding: 7px 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: inherit;
}
#verification-main .btn-white.editButton {
    text-transform: inherit;
}
#practice-info .form-confirmation-section .confirmButton {
    margin-right: 10px;
    padding: 7px 24px;
    font-size: 14px;
    font-weight: 400;
}

#verification-main .verification-accesspoint-header {
    padding: 20px;
}
#verification-main .verification-accesspoint-header h3 {
    color: #337ab7;
    font-weight: 400;
}
#verification-main #accesspoint-info {
    padding: 0px;
}

#verification-main .verify-confirm-btn .confirmButton {
    border: solid #0077b7 1px;
    margin-left: 20px;
}
#practice-info.verification-info .location-check address {
    padding-left: 10px;
    font-size: 18px;
}
.verification-logo {
    position: absolute;
    top: -40px;
    right: 27px;
}
#practice-info.verification-info .location-check img {
    margin-left: 15px;
}

#accesspoint-info .main-info {
    padding:0 20px 60px;
}
#accesspoint-info .info-section {
    margin-bottom: 40px;
}
#accesspoint-info .info-section .practice-info-section .practice-info-header .btn  {
    margin-left: 15px;
}

#accesspoint-info div.practice-info-item {
    padding-top: 15px;
    padding-right:50px;
}
#accesspoint-info div.practice-info-item p {
    font-weight: 300;
}
#accesspoint-info div.practice-info-item b {
    font-weight:500;
}
.practice-info-section div.practice-info-header {
    padding-bottom: 15px;
}

.practice-info-section .practice-info-header a.practice-name {
    font-size: 18px;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #0077b7;
}
#provider-select .practice-info-section .practice-info-header a {
    font-size: 16px;
}
.practice-info-section {
    height: 100px;
    border-bottom: solid 1px #ddd;
}
#provider-select .info-section {
    margin-top: 30px;
}
#provider-select .info-section .img-container img {
    height: auto;
}
#contact-name-info {
    border-bottom: solid 1px #ddd;
}
.contact-person-info-form .contact-clearfix {
    list-style-type: none;
    margin-bottom: 20px;
}
.contact-person-info-form .contact-clearfix .contact-person-label {
    font-weight: 300;
    padding-left: 0px;
    margin-bottom: 10px;

}
#verification-note-info {
    border-bottom: solid 1px #ddd;
}
#verification-note-area ul {
    padding-left: 0px;
}
#verification-note-info .notes-container .note-text{
    border: solid 1px #ddd;
}
/************************************
    CONTACT US STYLING
*************************************/
#contact-page {
    min-height: 850px;
    float: none;
    width: 100%;
}
#contact-page h2 {
    display: block;
    font-size: 26px;
    font-weight: 300;
    margin-bottom:20px;
    color: #25356c;
}

#contact-page p {
    font-weight: 300;
    margin-bottom:20px;
}
#contact-page form {
    margin-top: 20px;
    margin-bottom:50px;
}
#contact-page form label {
    font-weight: 300;
}
#contact-page form input.short {
    width: 400px;
}
#contact-page form .select-btn {
    height: 40px;
}
#contact-page form .dropdown-menu {
    width: 600px;
}
#contact-page form .dropdown-menu ul li a {
    padding-left:12px;
}
#contact-page form .select-btn, #contact-page form textarea {
    width: 600px;
    display: block;
    border-radius: 0;
}
#contact-page form textarea {
    height: 120px;
    resize: none;
    font-weight: 300;
}
#contact-page form .btn-primary {
    padding: 6px 36px;
}
#contact-page h5 {
    font-weight: 400;
    font-size: 14px;
}
/************************************
    MAINTENANCE STYLING STYLING
*************************************/

#maintain {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#maintain img {
    width: 130px;
    margin-bottom:10px;
}
#maintain p {
    font-weight: 300;
    font-size: 14px;
}
#maintain p + p {
    margin-bottom:0;
}
/************************************
    PROVIDER RESCHEDULE STYLING
*************************************/

#provider-reschedule label.appointment-status{
    font-size: 11px;
}
#appointments-header-message {
    margin-top: 15px;
    margin-left: 60px;
    font-family: Ubuntu;
    font-size: 14px;
    font-weight: 300;
    line-height: 2.71;
    letter-spacing: -0.1px;
    color: #333333 ;
}
.appointments-header {
    border-bottom: 1px solid #d4d4d5;
}
#provider-reschedule {
    padding-bottom:130px;
}
#provider-reschedule header .navbar-brand img {
    width: 100px;
}
#provider-reschedule header p {
    color: #ffffff;
    font-weight: 300;
    line-height:74px;
    margin: 0;
}
#provider-reschedule .status-text {
    font-size: 18px;
    font-weight: 300;
    margin: 40px 0 30px;
}
#provider-reschedule .status-text span {
    font-weight: 500;
}
#reschedule-container {
    display: table;
    width: 100%;
}
#reschedule-body {
    border: 1px solid #d4d4d5;
    float: none;
    display: table-cell;
    vertical-align: top;
}
#reschedule-body section {
    border-bottom: 1px solid #d4d4d5;
    padding: 25px 8px;
}
#reschedule-body section.last {
    border-bottom:none;
}
#reschedule-body section.notes label {
    font-weight: 300;
    font-size: 10px;
    text-transform: uppercase;
}

#reschedule-body section.top {
    padding: 15px 0 10px;
}
#reschedule-body .top h3 {
    margin: 0;
    font-size: 18px;
    line-height:44px;
    font-weight: 400;
}
#reschedule-body .top h3.status-header {
    text-transform: uppercase;
    font-size: 14px;

}
#reschedule-body .top h3.status-header span {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    padding-left: 4px;
}
#reschedule-body .status-right {

}
#reschedule-body .status-right h6 {
    text-transform: uppercase;
    color: #646464;
    font-size: 10px;
    margin: 0 2px 0 0;
    display: inline-block;
}
#reschedule-body .status-right img {
    width: 180px;
    height: 43px;
    height: 43px\9\0;

}
#reschedule-body .info-list label {
    font-weight: 300;
}

#reschedule-body .info-list > li {
    vertical-align: top;
}

#reschedule-body .info-list label + p {
    margin-bottom: 10px;
}
#reschedule-body .info-list .proposed-times  {
    font-size: 16px;
    font-weight: 300;
}
#reschedule-sidebar {
    border:1px solid #d4d4d5;
    border-left: none;
    float: none;
    display: table-cell;
}
#reschedule-sidebar h3 {
    margin: 0 0  20px;
    font-size: 18px;
    padding: 27px 0 22px;
    font-weight: 400;
    border-bottom:1px solid #d4d4d5;
}
#reschedule-sidebar .img-holder {
    width: 64px;
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 15px 0;
}
#reschedule-sidebar .img-holder img {
    width: 100%;
}
#reschedule-sidebar label {
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
}
#reschedule-sidebar .provider-info {
    display: inline-block;
    max-width: 165px;
}
#reschedule-sidebar h5 {
    margin-top: 0;
    font-weight: 400;
}

.info-list-notice {
    padding: 20px 0 0 17px;
    margin: 0;
    font-weight:300;
}
ul.second-tier {
    margin: 25px 0 0;
    padding-bottom:8px;
}
.ul.second-tier.bold {
    font-weight:500;
}

#reschedule-body .second-tier.bold > li > label {
    font-weight: 500;
}

/* Mike inserts   */

.info-header-cell {
    width: 100px;
}

.info-list-header {
    margin: 0;
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    padding: 8px 0;
    min-width: 64px;
}
#reschedule-body .table-wrapper .table-right {
    border-left: 1px solid #d4d4d5;
}


#reschedule-body section.new-scheduler {
    border-bottom: none;
}

.new-schedulerHeading {
    color: #25346f;
    text-transform: capitalize/*Æ.pl;'
    */;
}
.error-box img {
    width: 30px;
    margin-top: -4px;
    margin-right: 4px;
}
.error-box p {
    color: #c13b3c;
    font-size: 12px;
    margin:0;
    font-weight: 300;
    width: 380px;
    display: inline-block;
}
.scheduler-form {
    padding: 10px 0;
}

.scheduler-formCal {
    width: 320px;
}

.scheduler-formTime {
    width: 110px;
    padding-right: 10px;
}

.scheduler-formTime > input {
    padding-left: 22px;
}

.scheduler-formSelector {
    width: 80px;
}

.scheduler-formLabel {
    padding: 0 17px;
}

.scheduler-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #d3d3d3;
}

.scheduler-form .input-group-btn {
    position: absolute;
    right: -1px;
    height: 45px;
    width: 45px;
    z-index: 100;
}

.scheduler-form .select-btn {
    width: 100%;
}

.scheduler-form input[type="text"],
.scheduler-form .input-group .form-control,
.scheduler-form .select-btn {
    height: 45px;
    border-radius: 5px;
}
#reschedule-body .scheduler-form .scheduler-formCal .datepicker.dropdown-menu {
    left: 0 !important;
    width: 320px;
}
#reschedule-body .scheduler-form .scheduler-formCal .datepicker.dropdown-menu:before,
#reschedule-body .scheduler-form .scheduler-formCal .datepicker.dropdown-menu:after {
    content: none;
    border: none;
}


.scheduler-form input[type="text"] {
    height: 45px;
    color: #000;
}

.scheduler-form .input-group-btn > .btn {
    height: 45px;
    width: 45px;
    background: none;
    border: none;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/nov2017/ic-calendar-widget.svg");
    background-repeat: no-repeat;
    background-position: 0 12px;
}

.scheduler-form ::-webkit-input-placeholder { color: #000; }
.scheduler-form :-moz-placeholder { color: #000; }
.scheduler-form ::-moz-placeholder { color: #000; }
.scheduler-form :-ms-input-placeholder { color: #000; }

.scheduler-form .uib-datepicker-popup {
    overflow: inherit;
    margin-left: 20px !important;
}

.scheduler-form .uib-datepicker-popup:after {
    content: '';
    height: 28px;
    width: 13px;
    position: absolute;
    top: 7px;
    left: -12px;
    z-index: 99999 !important;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/datePicker-triangle.png");
    background-repeat: no-repeat;
}


input.ng-invalid.ng-touched, .error {
    border-color: #c13b3c;
}
.scheduler-form .datepicker {
    display: block !important;
}

/***********************
  BTN WRAPPER STYLING
***********************/

#provider-reschedule .btn-wrapper {
    padding: 30px 0 20px;
}
#provider-reschedule .btn-wrapper p {
    font-size:14px;
    font-weight: 300;
}
#provider-reschedule .btn-wrapper p.first {
    font-weight: 400;
    padding-left: 20px;
}
#provider-reschedule .btn-wrapper p.last {
    margin-top:80px;
}

/************************************
    LOGGED OUT LEAD FORM STYLING
*************************************/

#schedule-request-header .logo {
    width: 130px;
    height: auto;
}
#schedule-request-header .btn-white-med-pill {
    font-size: 12px;
    margin-top:10px;
    font-weight: 400;
    padding: 8px 24px;
    background: transparent;
}
#schedule-request .form-banner {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/apr2017/schedule-request-banner.jpg") no-repeat scroll right 53% top / auto 100%;
    height: 635px;
    border-bottom:1px solid #d4d4d5;
    position: relative;
}
#schedule-request .new-wrapper {
    padding: 20px 40px 60px;
}
#schedule-request .form-banner h1 {
    font-weight: 400;
    font-size: 28px;
    margin-bottom:20px;
    color: #333333;
}
#schedule-request .form-banner h1 + p {
    color: #000000;
    font-weight: 300;
    margin-bottom:40px;
    font-size: 16px;
}
.form-left #pmsForm {
    background: #fbfbfb;
    box-shadow: 8px 8px 0 #f4f4f4;
    border: 1px solid #d4d4d5;
    padding: 15px 30px 20px;
    width: 380px;
}
.form-left #pmsForm h3 {
    color: #0077b7;
    font-weight: 400;
    font-size: 18px;
    margin: 10px 0 20px;
}
#pmsForm .label-float {
    margin-bottom:8px;
    position: relative;
}
.form-left #pmsForm .label-float input {
    padding: 18px 15px 2px;
    width: 286px\9;

}

.form-left #pmsForm .label-float label {
    font-size: 14px;
    top: 15px;
}
.form-left #pmsForm .label-float input:focus ~ label, .form-left #pmsForm .label-float label.non-empty {
    font-size: 12px;
    top: 4px;
}
.form-left #pmsForm .select-btn {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    width: 100%;
    width: 292px\9;
    width: -moz-available;
    width: -webkit-fill-available;
    box-sizing: content-box;
    margin-bottom: 10px;
}

.form-left #pmsForm .pill {
    border-radius: 24px;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
}
.form-left #pmsForm .select-btn + .dropdown-menu {
    width: 65%;
}
#pmsForm .best-point-of-contact{
    width: 399px;
}
#schedule-request #request-submitted {
    padding-top: 180px;
}
#schedule-request #request-submitted h1 {
    font-size: 30px;
    font-weight: 400;
    color: #333333;
}
#schedule-request #request-submitted p {
    font-size: 14px;
    font-weight: 300;
    color: #262626;
}
#schedule-request .form-left, #schedule-request .form-right {
    vertical-align: top;
}
#schedule-request .form-right {
    padding-left: 0;
}
.form-right h6 {
    color: #333333;
    font-size: 18px;
    margin-bottom:20px;
    margin-top:50px;
    font-weight: 400;
}
.form-right h6 img {
    width:200px;
}
.form-right ul {
    padding-left: 0;
    border-bottom:1px solid #cccccc;
    width: 400px;
    padding-bottom:15px;
    margin-bottom:30px;
}
.form-right ul li {
    color: #000000;
    margin-bottom:15px;
    font-weight: 300;
    font-size: 14px
}
.form-right ul li img {
    margin-right: 10px;
    height: auto;
}
.form-right ul #calendar-item img {
    width: 23px;
}
.form-right ul #device-item img {
    width: 17px;
    margin: 0 13px 0 3px;
}
.form-right ul #reminder-item img {
    width: 27px;
    margin: 0 8px 0 -3px;
}

.form-right p {
    font-weight: 300;
}
#featured-story {
    border-bottom:1px solid #d4d4d5;
}
#featured-story h2 {
    font-size: 28px;
    font-weight:400;
    margin:40px 0;
}
#featured-story #success-featured img {
    width: 160px;
    height: auto;
    padding-right: 35px;
}
#success-featured {
    margin-bottom:40px;
}
#success-featured .cell {
    vertical-align: middle;
}
#success-featured h5 {
    font-size: 22px;
    font-weight: 400;
}
#success-featured p {
    font-size: 16px;
    font-weight:300;
    line-height:30px;
}
#featured-panels {
    text-align: center;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom:30px;
}
#featured-panels .panels {
    display: inline-block\9;
}

#featured-panels .bottom {
    text-align: center;
    margin: 0 auto;
    height: 176px;
}
#featured-1 > img {
    width: 376px;
    height: auto;
}
#featured-1 .bottom,
#featured-3 .bottom {
    background-color: rgba(108, 208, 244, 0.2);
    padding: 26px 0;
    width: 376px;
}
#featured-2 .bottom {
    background-color: rgba(21, 140, 204, 0.2);
    padding: 40px 0;
    width: 530px;
}

#featured-panels .bottom img {
    height: 42px;
    width: auto;
    margin-bottom:5px;
}
#featured-panels .bottom h6 {
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom:5px;
    font-size: 14px;
    color: #333333;
}
#featured-panels #featured-2 .bottom h6 {
    font-size: 16px;
}
#featured-panels .bottom p {
    font-weight: 500;
    margin-bottom:0;
    font-size: 34px;
}
#featured-panels #featured-2 .bottom p {
    font-size: 40px;
}
#featured-panels .bottom p sup {
    font-size: 65%;
    padding:0 2px;
    top: -9.5px;
}
#featured-story p.note {
    text-align: center;
    font-weight: 300;
    font-size: 12px;
}
#whatIsBrighterSchedule #devices {
    width: 500px;
}
#schedule-request #whatIsBrighterSchedule h1 {
    font-weight: 400;
    font-size: 30px;
}
#schedule-request #whatIsBrighterSchedule h1 img {
    width:263px;
    height: 40px;
    margin-top: 5px;
    margin-left:10px;
}
#whatIsBrighterSchedule p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    margin-top: 15px;
}
#whatIsBrighterSchedule h2 {
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    margin: 50px 0 30px;
}
#whatIsBrighterSchedule table td {
    font-weight: 300;
    font-size: 16px;
    padding: 8px 35px 15px 0;
}
#whatIsBrighterSchedule table img {
    width: 23px;
    height: auto;
    margin-right: 15px;
}
#schedule-request #schedule-reviews {
    border-bottom:1px solid #d4d4d5;
}
#schedule-request #schedule-reviews h1 {
    font-size: 28px;
    font-weight: 400;
    color: #333333;
    margin-top:50px;
    margin-bottom:50px;
}
#schedule-reviews .reviewers {
    margin: 45px 0;
}
#schedule-reviews .reviewers img {
    width: 134px;
    margin-right:40px;
}
#schedule-reviews .reviewers h4 {
    color: #333333;
    font-weight: 400;
    font-size: 22px;
}
#schedule-reviews .reviewers p {
    font-weight: 300;
    font-size: 16px;
    line-height:30px;
    margin: 15px 0 0;
}
#whatIsBrighterSchedule {
    padding: 35px 0 0;
    border-bottom: 1px solid #d4d4d5;
}
#whatIsBrighterSchedule .new-wrapper {
    padding-bottom:0;
}
#schedule-footer {
    padding-top:15px;
}
#schedule-footer .asterisk {
    font-size: 12px;
    font-weight:300;
}
#schedule-footer a {
    font-weight: 300;
    font-size: 12px;
}
#schedule-footer a img {
    width: 21px;
    height: auto;
    margin-right: 5px;
    margin-top:-4px;
}

/************************************
    MOBILE HOMEPAGE STYLING
*************************************/
#homepage.mobile-view {
    min-width: 0;
    padding-top: 0;
    font: normal 62.5%/1 'Ubuntu', sans-serif;
    /* base font size is 10px, line-height is font-size */
}
header .navbar-logo {
    padding: 10px 0 8px;
    height: 55px;
    display: block;
}
header .navbar-logo img {
    display: block;
    margin: 0 auto;
    width: 88px;
}
.mobile-view #homepage-banner, .mobile-view #mid-banner {
    height: 440px;
    position:  relative;
    margin-bottom:20px;
    background-position: right top;
    background-size: auto 76%;


}
.mobile-view #homepage-banner .gradient, .mobile-view #mid-banner .gradient{
    position:absolute;
    z-index:2;
    width: auto;
    margin: 0;
    right:0;
    bottom:63px;
    left:0;
    height:170px;
    background: none;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(80%,rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
    background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
    background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);

}
.mobile-view #homepage-banner .gradient {
    height: 205px;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 45%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(45%,rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 45%);
    background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 45%);
    background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 45%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 45%);
}
.mobile-view .banner-content {
    position: relative;
    top: 60%;
    text-align: center;
    z-index:11;
}
.mobile-view #homepage-banner h1 {
    margin-top: 0;
    color: #25356c;
    font-size: 2rem;
    line-height: 30px;
    margin-bottom:15px;
    font-weight: 400;
}
.mobile-view #homepage-banner p {
    color: #646464;
    font-size: 1.2rem;
    margin: 0 40px 20px;
    line-height: 20px;
}
.mobile-view #carriers {
    border-top: 1px solid #d4d4d5;
    margin: 0 15px;
    border-bottom: 1px solid #d4d4d5;
    padding: 20px 0;
}
.mobile-view #carriers p {
    color: #646464;
    font-weight: 300;
    font-size: 1.2rem;
    line-height:20px;
    margin-bottom: 25px;

}
.mobile-view #carriers img {
    width: 274px;
    margin: 0 auto 20px;
    display: block;
}
.mobile-view #stand-out {
    padding-top: 0;
    margin: 0 15px;
}
.mobile-view #stand-out h3 {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom:15px;
}
.mobile-view #stand-out h4 {
    color: #646464;
    font-size: 1.4rem;
    line-height:24px;
    margin-bottom:40px;
}
.mobile-view #device-img {
    width: 100%;
    margin: 0 auto 30px;
    display: block;
}
.mobile-view .highlight-box {
    float: none;
    margin: 0 0 20px;
    border-radius: 14px;
    width:auto;
}
.mobile-view #stand-out .highlight-box h4 {
    color: #25356c;
    margin: 0;
    padding: 18px 0 12px;
}
.mobile-view .highlight-box ul {
    padding: 25px 5px;
    margin: 0;
}
.mobile-view .highlight-box ul li {
    margin: 15px 0;
    text-align: center;
}
.mobile-view .highlight-box ul li img {
    width: 30px;
}
.mobile-view .highlight-box ul li h6 {
    font-size: 1.2rem;
    line-height: 16px;
    vertical-align: middle;
    margin: 0 0 0 8px;
    width: 80px;
    text-align: left;
}
.mobile-view .highlight-btn-wrapper {
    float: none;
    margin: 0 0 30px;
    width: auto;
}
.mobile-view .highlight-btn-wrapper p {
    margin: 0 0 20px;
    color: #646464;
    display: block;
}

.mobile-view #mid-banner {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/apr2017/bg-technology-mobile.jpg") no-repeat scroll right center;
    background-position: top right;
    padding-top: 0;
    background-size: auto 86%;

}
.mobile-view #mid-banner .banner-content {
    top: 80%;
}
.mobile-view #mid-banner .gradient {
    bottom: 30px;
}
@media only screen
and (orientation: landscape) {
    .mobile-view #mid-banner {
        background-size: cover;
    }
    .mobile-view #mid-banner .gradient {
        bottom: 0;
    }
}
.mobile-view #mid-banner h1 {
    font-size: 24px;
    margin-bottom:10px;
}

.mobile-view #mid-banner p {
    color: #646464;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 22px;

}
.mobile-view #testimonials {
    margin: 90px 15px 50px;
    padding-top: 20px;
    border-top: 1px solid #d4d4d5;
}
.mobile-view #testimonials h4 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 30px;
}
.mobile-view .testimonies li {
    display: block;
    width: auto;
    margin-bottom: 50px;

}
.mobile-view .testimonies li img {
    width: 80%;
}
.mobile-view #testimonials .testimonies li h4 {
    margin: 15px 0 10px;
}
.mobile-view .testimonies li p {
    font-size: 1.4rem;
    line-height: 2rem;
    color: #646464;
    margin: 0 10px;
}
.contact-banner {
    height: 370px;
    margin-bottom: 110px;
    position:  relative;
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2016/bg-contact-new.jpg") no-repeat scroll center top / auto 73%;
}
#contact-us .banner-content {
    top: 78%;
}
.contact-banner h1 {
    margin: 0;
    color: #25356c;
    font-weight: 300;
    font-size: 22px;
}
.contact-banner img {
    width: 68%;
    margin-top: 5px;
}
#contact-form h3 {
    color: #25356c;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1.8rem;
}
#contact-form .form-group .col-xs-8 {
    padding-right: 0;
    border: 1px solid #d4d4d5;
    border-bottom:none;
}
#contact-form .form-group .col-xs-8.validationError {
    border-bottom: 1px solid #ff0000 !important;
}
#contact-form .form-group {

    margin: 0;
    height: 50px;
}
#contact-form .form-group:last-of-type {
    border-bottom: 1px solid #d4d4d5;
}
#contact-form .form-control {
    border-radius: 0;
    border: none;
    height: 47px;
    box-shadow: none;
    margin-top: 1px;
}
#contact-form label.control-label {
    font-weight: 300;
    padding-top:15px;
    border-top:1px solid #d4d4d5;
}
#contact-form textarea {
    resize: none;
    height: 48px;
    padding-top:13px;
    overflow: hidden;
}
#contact-form button {
    text-transform: capitalize;
    display: block;
    margin: 30px auto 30px;
    padding: 8px 60px;

}
h5.text-line {
    text-align: center;
    border-bottom: 1px solid #d4d4d5;
    line-height: 0.1em;
    margin: 30px 15px;
}

h5.text-line span {
    background:#fff;
    color: #646464;
    padding:0 10px;
    font-size: 1.2rem;
}
.contact-bottom {
    padding-bottom:100px;
}
.contact-bottom h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom:20px;
    margin-top: 30px;
}
.contact-bottom p {
    color: #646464;
    font-weight: 300;
    font-size: 1.2rem;
}
.mobile-view .contact-bottom .btn.lg-pill {
    background: transparent;
    color: #0077b7;
    margin: 20px 0;
}
.mobile-view .contact-bottom .btn.lg-pill:hover, .mobile-view .contact-bottom .btn.lg-pill:active, .mobile-view .contact-bottom .btn.lg-pill:focus {
    background: #0077b7;
    color: #ffffff;
}
.contact-bottom h6 {
    font-size: 1.4rem;
    font-weight: 400;
}

.contact-banner.submitted-view h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.contact-banner.submitted-view p {
    color: #646464;
    font-weight: 300;
    line-height: 28px;
    margin: 0 30px 20px;
}

#practice-holidays-add .select-all-toggle{
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
    text-transform: capitalize;
}


#manage-users h2 a{
    float: left;
}

#manage-users h2 span{
    float: right;

}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-right: 35px;
}

/************************************
    NEW YELP REVIEW STAR STYLING
*************************************/

.yelp-rating {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/yelp_star_map.png') no-repeat;
    height: 28px;
    width: 165px;
    vertical-align: middle;
}

.rating0 {
    background-position: 0 0;
}
.rating1 {
    background-position: 0 -36px;
}
.rating1-5 {
    background-position: 0 -72px;
}
.rating2 {
    background-position: 0 -108px;
}
.rating2-5 {
    background-position: 0 -144px;
}
.rating3 {
    background-position: 0 -180px;
}
.rating3-5 {
    background-position: 0 -216px;
}
.rating4 {
    background-position: 0 -252px;
}
.rating4-5 {
    background-position: 0 -288px;
}
.rating5 {
    background-position: 0 -324px;
}

.brighter-score-yelp {
    background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/yelp_star_map.png') no-repeat;
    height: 18px;
    width: 100px;
    vertical-align: middle;
}
.brighter-score-yelp.rating0 {
    background-position: 0 -360px;
}
.brighter-score-yelp.rating1 {
    background-position: 0 -384px;
}
.brighter-score-yelp.rating1-5 {
    background-position: 0 -408px;
}
.brighter-score-yelp.rating2 {
    background-position: 0 -432px;
}
.brighter-score-yelp.rating2-5 {
    background-position: 0 -456px;
}
.brighter-score-yelp.rating3 {
    background-position: 0 -480px;
}
.brighter-score-yelp.rating3-5 {
    background-position: 0 -504px;
}
.brighter-score-yelp.rating4 {
    background-position: 0 -528px;
}
.brighter-score-yelp.rating4-5 {
    background-position: 0 -552px;
}
.brighter-score-yelp.rating5 {
    background-position: 0 -576px;
}

/************************************
    BRIGHTER SCHEDULE CALENDAR STYLING
*************************************/
#calendar-table {
    margin: 25px 0 50px;
}
#calendar-table > tbody > tr > td {
    padding: 15px;
    width: 13%;
}
#calendar-table > tbody > tr > td:first-of-type {
    width: 8%;
}
#calendar-table #provider-list li {
    vertical-align: top;
    margin: 0 15px 15px 0;
}
#calendar-table #provider-list li:last-of-type {
    margin: 0;
}

#calendar-table .css-label {
    font-size: 14px;
    color: #969696;
    font-weight: 300;
    margin:0;
    text-transform: capitalize;
    display: block;
}
label.css-label-all {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/aug2016/all-checkbox.png);
}
label.css-label-1 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-1.png);
}
label.css-label-2 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-2.png);
}
label.css-label-3 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-3.png);
}
label.css-label-4 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-4.png);
}
label.css-label-5 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-5.png);
}
label.css-label-6 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-6.png);
}
label.css-label-7 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-7.png);
}
label.css-label-8 {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot-8.png);
}
label.css-label-disabled {
    background-image: url(https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/slot_disabled.png);
}
.slot-1 {
    background: #0077b7;
}
.slot-2 {
    background: #fba733;
}
.slot-3 {
    background: #70cbc2;
}
.slot-4 {
    background: #f2575b;
}
.slot-5 {
    background: #8cba19;
}
.slot-6 {
    background: #ffeb68;
}
.slot-7 {
    background: #914574;
}
.slot-8 {
    background: #6cd0f4;
}

#calendar-table input[type=checkbox].css-checkbox:checked + label.css-label {
    color: #0077b7;
}
#calendar-table #provider-list {
    margin: 12px 0 0;
}
#calendar-table #provider-list li .css-label-all {
    color: #000000;
}
#calendar-table #provider-list .css-label + a {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    padding-left: 38px;

}
#calendar-table h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 2px;
    text-transform: uppercase;
}
#calendar-table h3 + p {
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
}
#calendar-table td.weekend {
    color: #969696;
}
#calendar-table #op-count h3 {
    font-weight: 300;
    font-size: 14px;
}
#calendar-table #op-count .edit-link {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
}
#calendar-table #op-count .count {
    font-weight: 300;
    font-size: 18px;
    margin: 10px 0 0;
}
#calendar-nav .btn-group {
    margin: 0 50px 0 10px;
}
#calendar-nav .btn {
    font-weight: 300;
    border-radius: 18px;
    border-color: #c7c7c7;
    padding:  6px 20px;
}
#calendar-nav .btn-group .btn:first-of-type {
    border-radius: 18px 0 0 18px;
}
#calendar-nav .btn-group .btn:last-of-type {
    border-radius: 0 18px 18px 0;
}
#calendar-nav p {
    display: inline-block;
    margin-bottom:0;
}
#calendar-table .out-text {
    text-transform: uppercase;
    font-size: 11px;
    margin: 0;
}
#calendar-table tr.days-row td {
    border-bottom-color: #000;
}

#calendar-table tr.days-row .open-times, #calendar-table .open-time-accesspoint{
    color : #00ac04;
    font-weight: 400;
}

#calendar-table tr.out-row td {
    border-bottom-color: #000;
}

#calendar-table tr.out-row .highlighted{
    background: lightblue;
}

#calendar-table .dash-row td {
    border: none;
    padding: 10px;
    border: 1px dashed #ddd;
    border-right: 1px solid #ddd;
}
#calendar-table tr td.disabled {
    background: rgba(0, 0, 0, 0) repeating-linear-gradient(-45deg, #c7c7c7, #c7c7c7 1px, #ffffff 0px, #ffffff 6px) repeat scroll 0 0;
}
.greyed-start-time {
    color: #9b9b9b;
}
.greyed-start-time input[type=checkbox].css-checkbox:checked + label.css-label {
    background-image:url(https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/custom_checkbox_gray.png);
}
#calendar-table .dash-row .table-wrapper {
    border-collapse:separate;
    border-spacing: 5px;
}
#calendar-table p.time {
    font-size: 12px;
    width: 55px;
    display: block;
    margin: 0;
    line-height: 26px;
    text-align: right;
}
#calendar-table .slot-cell {
    width: 60%;
}
#calendar-table .slot {
    color: #ffffff;
    display: inline-block;
    font-weight: 300;
    height: 26px;
    line-height: 25px;
    text-align: center;
    width: 28px;
    margin-right: 5px;
    margin-bottom:3px;
}
#calendar-table .table-wrapper .slot-cell .slot:last-of-type {
    margin-right: 0;
}
#calendar-table #provider-checkboxes li {
    display: inline-block;
}

#top-settings label {
    font-weight: 400;
    margin: 0;
    vertical-align: middle;
    text-transform: uppercase;
}
#top-settings label span {
    font-weight: 300;
    text-transform: none;
}
#top-settings > .form-group:first-of-type {
    margin-right: 30px;
}
#top-settings > .form-group:first-of-type input.form-control {
    width: 200px;
    height: 43px;
    margin-left: 20px;
    border-radius: 0;
}
#top-settings p.inline {
    font-weight: 300;
    margin-left: 8px;
}
#top-settings > .form-group:last-of-type .select-btn   {
    width: 90px;
    height: 43px;
    margin-bottom:0;
    margin-left: 20px;
}
#top-settings > .form-group:last-of-type .select-btn + .dropdown-menu {
    width: 90px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#calendar-settings .go-back {
    font-size: 16px;
    margin-left: -50px;
}
#calendar-settings .aside-body {
    padding: 15px 50px;
}
#calendar-settings .day-settings {
    border-color: #cdcdcd;
    margin-top:35px;
    color: #505050;
}
.aside.edit-user .aside-footer {
    margin-top: 30px;
}

.table.day-settings > thead .pill {
    color: #505050;
}
.aside-body .table.day-settings > thead > tr > th {
    padding: 12px 10px;
    background: #efefef;
    border-color: #cdcdcd;
    text-align: center;
    font-weight:400;
    font-size: 16px;
    width: 12.5%;
}
.aside-body .table.day-settings > tbody > tr > td {
    border: 1px solid #cdcdcd;
    padding:10px 20px;
    height:110px;
    vertical-align: middle;
    text-align: center;
    position: relative;
}
.day-settings h4 {
    text-transform: uppercase;
    font-weight:400;
    font-size: 14px;
    margin: 0;
    text-align: left;
    width: 105px;
}
.fifty-center {
    position: relative;
    top:50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
table.day-settings td.disabled {
    background: rgba(0, 0, 0, 0) repeating-linear-gradient(-45deg, #c7c7c7, #c7c7c7 1px, #f8f8f8 0px, #f8f8f8 6px) repeat scroll 0 0;
}
table.day-settings .select-btn {
    margin-bottom:0;
}

table.day-settings input.css-checkbox[type="checkbox"] + label.css-label {
    padding-left: 30px;
}
.interval-table td {
    padding: 0 10px;
}
.interval-table .css-label {
    font-weight: 300;
    padding-left: 30px;
}
#schedule-setup img.logo {
    height:80px;
    width: auto;
    margin-bottom: 50px;
}
#schedule-setup .table-wrapper {
    border: 1px solid #dddddd;
    margin-bottom: 30px;
}
.aside-footer .validationErrorText {
    margin: 0px;
    margin-left: 10px;
}
#schedule-setup .table-wrapper .cell {
    padding: 15px;
}
#schedule-setup #start .cell {
    height: 155px;
}
#schedule-setup .table-wrapper .cell:first-of-type {
    border-right: 1px solid #dddddd;
    text-align: center;
    width: 155px;
}
#schedule-setup #start.table-wrapper .cell:nth-child(2) {
    padding-left: 50px;
}
#schedule-setup .table-wrapper p.status {
    text-transform: uppercase;
    color: #c13b3c;
    font-size: 12px;
    margin-bottom: 0;
}
#schedule-setup .table-wrapper h4 {
    font-weight: 300;
    font-size:  18px;
}
#schedule-setup .table-wrapper h4.inline {
    margin-right: 30px;
}
#schedule-setup #setup .cell:first-of-type {
    padding-top: 30px;
}
#schedule-setup .progress {
    background: #cfcfcf;
    border-radius: 8px;
    height: 6px;
    margin: 5px auto;
    width: 80px;
    box-shadow: none;
}
#schedule-setup .progress-bar {
    background: #70cbc2;
    box-shadow: none;
}
#schedule-setup #setup .cell:last-of-type {
    padding: 0;
}
#schedule-setup .set-schedule, #schedule-setup .edit-schedule {
    padding: 15px 15px 15px 50px;
}
#schedule-setup #setup h4 {
    margin: 15px 0 30px;
}
#schedule-setup #setup label {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 15px;
}
#schedule-setup .set-schedule ul.list-inline li:first-of-type {
    margin-right: 25px;
}
#schedule-setup .select-btn {
    display: block;
    width: 112px;
}
#schedule-setup #setup .btn-primary.med-pill {
    margin-bottom:30px;
    margin-top: 20px;
    display: block;
}
#schedule-setup .edit-schedule {
    border-bottom:1px solid #dddddd;
    height: 85px;
}
#schedule-setup .edit-schedule h5 {
    text-transform: none;
    font-weight:300;
    font-size: 14px;
}
#schedule-setup .edit-schedule h5 img {
    height: 14px;
    margin-right: 10px;
    width: auto;
}
#schedule-setup .edit-schedule h5 + .edit-link {
    font-weight: 300;
    margin-left: 30px;
}
#schedule-setup #intervals ul.list-inline li {
    margin-right: 10px;
}
#schedule-setup #intervals ul.list-inline li:first-of-type label {
    vertical-align: middle;
}
#schedule-setup #preferences .form-group:first-of-type {
    margin-right: 40px;
}
#schedule-setup #preferences .select-btn {
    display: inline-block;
    margin-left: 20px;
    margin-bottom:0;
}
#out-of-office .header {
    font-weight: 300;
    font-size:20px;
    text-transform: uppercase;
    margin-bottom:30px;
}

#out-of-office #providers-list{
    margin-top: 17px;
    margin-bottom: 34px;
}

#out-of-office #providers-list button {
    width: 100%;
    color: #999;
}

#out-of-office-form {
    width: 408px;
}

#alert-table {
    border: 1px solid #dddddd;
}

#alert-table .cell {
    padding:30px;
    width: 50%;
}
#alert-table .cell:first-of-type {
    border-right: 1px solid #dddddd;
}
#alert-table h3 {
    font-weight: 300;
    font-size: 18px;
    margin: 0 0 30px;
}
#alert-table .form-control {
    width: 160px;
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/ic-calendar-blk.png") no-repeat scroll 90% center / 24px auto;
}
#alert-table .middle-label {
    font-weight: 300;
    padding:0 15px;
    margin: 0;
    vertical-align: middle;
}
#alert-table #provider-list {
    width: 100%;
    margin-top:40px;
    margin-left: 10px;
}
#alert-table #provider-list li {
    width: 40%;
    margin-bottom:15px;
    float: left;
}
#alert-table #provider-list .css-label {
    font-weight: 300;
}
#alert-set th {
    padding-left: 12px;
    border-top: 1px solid #dddddd;
}
#alert-set td {
    padding:12px;
    font-size: 12px;
    font-weight: 300;
    border-bottom:1px solid #dddddd;
}
#calendar-settings .increments:after {
    content: ",";
    margin-right: 5px;
}
#calendar-settings .increments:last-of-type:after {
    content: none;
    margin-right: 0;
}
#calendar-settings .increments {
    display: inline-block;
    font-weight: 300;
}
#calendar-settings .increment-wrapper {
    width: 130px;
    margin: 0 auto;
}
#calendar-settings .increment-link {
    display: block;
    margin-top:15px;
}
#calendar-settings .day-settings input.ui-timepicker-input {
    padding: 5px 10px;
    font-weight: 300;
}
#increment-popover .popover-content {
    padding-left: 0;
    padding-right: 0;
}
#increment-popover p {
    font-weight:300;
    margin-bottom:0;
    font-size: 16px;
    margin-left:20px;
}
#increment-popover table {
    border-collapse: separate;
    border-spacing: 20px 15px;
}
#increment-popover .btn {
    padding: 0 20px 5px 0;
    font-weight: 300;
    font-size: 16px;
}
/************************************
    BRIGHTER SCHEDULE OP COUNT STYLING
*************************************/
#schedule-op-count .info-section {
    padding: 25px;
}
#schedule-op-count .select-btn {
    margin: 0;
    width: 200px;
}
#schedule-op-count .select-btn + .dropdown-menu {
    width: 200px;
}

/************************************
    PROVIDER SCHEDULE SELECT STYLING
*************************************/
#provider-schedule-select .aside-title {
    margin-bottom:15px;
}
#provider-schedule-select .aside-title + p {
    margin-bottom:40px;
}
.select-item.info-section {
    padding: 20px;
}
.select-item.info-section .not-participating img {
    width: 25px;
    margin-left: 8px;
}
.select-item.info-section .participation-status b {
    font-weight: 400;
}
.select-item.info-section .not-participating .popover {
    left: 340px !important;
}
.select-item.info-section .not-participating .popover p {
    border: none;
    margin: 0;
    padding: 0;
}
.select-item.info-section .not-participating .popover::before {
    content: url(https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/gr-border-triangle-img.svg);
    display: block;
    width: 24px;
    height: 17px;
    background-position: top;
    position: absolute;
    top: -15px;
    left: 30px;
}
.select-item.info-section .popover .participation-reason {
    font-size: 16px;
    font-weight: 500;
}
.not-participating .popover .participation-updated {
    font-weight: 400;
}
.select-item .img-container {
    padding: 0;
}
.select-item .img-container img {
    width: 90px;
    height: auto;
}
.select-item h4 {
    color: #25356c;
    line-height: 68px;
}
.select-item .med-pill {
    margin-top: 30px;
}
.select-item .provider-schedule-info h4{
    line-height: inherit;
    color: #000;
}

.select-item .provider-schedule-info p{
    font-size: 14px;
    font-weight: 300;
    border-top: solid #CCCCCC 1px;
    padding-top: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}
#provider-schedule-select .select-item .provider-schedule-info {
    width: 100%;
}
#provider-schedule-select .select-item .provider-schedule-content {
    margin-left: 112px;
}

#provider-schedule-select .provider-schedule-content .btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

/************************************
    BRIGHTER CALENDER INFO FORM
*************************************/

#editProviderCalenderInfoForm .infoFormHeader-wrapper {
    margin-bottom: 20px;
}

#editProviderCalenderInfoForm .infoFormHeader-wrapper .status-note {
    font-weight: 300;
}
#editProviderCalenderInfoForm .table.day-settings > thead .pill {
    color: #0077b7;
}
#editProviderCalenderInfoForm .table.day-settings > thead .pill:hover {
    color: #fff;
}
#editProviderCalenderInfoForm .infoFormHeader {
    border: solid #ccc 1px;
    padding: 20px;
    margin-bottom: 30px;
}

#editProviderCalenderInfoForm .infoFormHeader {
    margin-bottom: 20px;
}

#editProviderCalenderInfoForm .infoFormHeader-title {
    margin-bottom: 3px;
}

#editProviderCalenderInfoForm  .select-btn {
    height: 43px;
}

#editProviderCalenderInfoForm .infoFormHeader textarea {
    width: 100%;
    border-color: #ccc;
    padding: 10px;
    color: #333;
}
#editProviderCalenderInfoForm textarea::-webkit-input-placeholder {
    color:    #999;
}
#editProviderCalenderInfoForm textarea:-moz-placeholder {
    color:    #999;
}
#editProviderCalenderInfoForm .aside-footer {
    padding-left: 50px;
}
#editProviderCalenderInfoForm .checkbox-note {
    font-weight: 300;
    padding-left: 36px;
    font-size: 13px;
}
/************************************
    BRIGHTER REVIEWS PAGE
*************************************/
#brighter-reviews {
    padding: 0 30px 60px;
}
#brighter-reviews .header-logo {
    border-bottom: 1px solid #d4d4d5;
    margin: 0 -30px;
    padding: 30px 30px 25px;
}
#brighter-reviews .header-logo img {
    width: 247px;
    height: 42px;
}
#learn-more-box {
    border: 1px solid #0077b7;
    text-align: inherit;
    height: 160px;
    padding: 11px 40px 20px 20px;
    margin-top:30px;
    display: flex;
    justify-content:center;
}
#learn-more-box #img-container {
    width: 230px;
    height: 147px;
    overflow: hidden;
}
#learn-more-box img {
    margin-left: 50px;
    height: 200px;
}

#learn-more-box #banner-text {
    margin-left: 85px;
    margin-top: 20px;
}

#learn-more-box p {
    color: #4a4a4a;
    font-weight: 300;
    font-size: 16px;
}
#learn-more-box p span {
    font-weight: 400;
    color: #0077b7;
    margin-right: 5px;
}
#learn-more-box button {
    margin-left: 45px;
    margin-top: 45px;
    border-radius: 70px;
    padding: 11px 45px 9px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
}
#brighter-reviews #summary-table {
    margin: 50px auto;
    /*width: 1035px;*/
}
#brighter-reviews #summary-table .cell {
    vertical-align: middle;
    padding: 20px 0 20px 40px;

}
#brighter-reviews #summary-table .cell:first-of-type {
    border-right: 1px solid #d4d4d5;
    padding: 0 20px 20px 15px;
}
#brighter-reviews #review-summary h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom:40px;
}
#brighter-reviews #review-summary h2 a {
    font-size: 12px;
    font-weight: 300;
    margin-left: 12px;
}
#brighter-reviews #review-summary h2 a img {
    width: 18px;
    height:18px;
    margin-right: 3px;
    vertical-align: bottom;
}
#review-selection label {
    font-size: 14px;
    color: #333333;
    margin-right: 15px;
    font-weight: 400;
}
#review-selection .select-btn, #review-selection .select-btn + .dropdown-menu {
    width: 365px;
}
#brighter-reviews .progress-wrapper {
    margin: 40px 0 -15px;
    margin-left:60px;
}
#brighter-reviews .progress-circle-text {
    width: 100%;
    margin-bottom: -125px;
}
#brighter-reviews .progress-circle-text .progress-text-percentage {
    color: #333333;
    font-size: 30px;
    font-weight: 500;
    margin-top:24px;
}
#brighter-reviews .progress-circle-text .progress-text-label {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
}
#brighter-reviews .summary-wrapper {
    margin: 0 auto;
}
#brighter-reviews .summary-wrapper div.inline {
    vertical-align: middle;
}
#brighter-reviews .summary-wrapper .single-provider {
    display: inline-block;
}
#brighter-reviews .summary-wrapper .single-provider p{
    margin-bottom:0;
    font-weight:300;
}
#brighter-reviews .summary-table {
    width: 324px;
    margin: 0 auto;
}
#brighter-reviews .summary-table th {
    text-transform: capitalize;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
}
#brighter-reviews .summary-table td {
    font-weight: 300;
}
#brighter-reviews .summary-table tr > td:first-of-type {
    border-right: 1px solid #d4d4d5;
    padding-left: 25px;
}
#brighter-reviews #review-list {
    border-top: 1px solid #d4d4d5;
}
#review-list #count-line {
    padding: 30px 15px 45px;
}
#review-list #count-line p,
.review-total-display,
#review-list #count-line p h4 {
    font-weight: 300;
    color: #000000;
    font-size: 14px;
    margin: 0;
}
.review-total-display {
    padding-top: 20px;
}
#brighter-reviews #summary-table #rec-summary  {
    padding-left: 60px;
}
#rec-summary #rec-rate p {
    margin: 0;
}

#rec-summary  #rec-rate .percentage {
    font-size: 48px;
    font-weight: 600;
}
#rec-summary .inline {
    vertical-align: top;
}
#rec-summary #rec-summ {
    margin-left:80px;
}
#rec-summary #rec-summ ul {
    text-align: left;
    padding-left: 10px;
}
#rec-summ ul li {
    font-size: 12px;
    margin: 20px 0;
}
#rec-summ ul li img {
    width: 23px;
    height: 20px;
    margin-right: 5px;
}


#brighter-reviews .review-item .recommend-status, .review-policy-aside .recommend-status, .review-policy-aside .review-date {
    color: #000000;
    font-size:11px;
}
#brighter-reviews .review-item .recommend-status img, .review-policy-aside .recommend-status img {
    width: 23px;
    height: 20px;
    vertical-align: bottom;
    margin-right: 4px;
}
#brighter-reviews .review-item .recommend-status img.thumbsdown, .review-policy-aside .recommend-status img.thumbsdown {
    vertical-align: top;
}
#brighter-reviews .review-item .recommend-status span, .review-policy-aside .recommend-status span, .review-policy-aside .review-date span {
    font-weight:300;
}
#brighter-reviews .review-item .flag-status {
    color: #535353;
    font-size: 11px;
    font-weight: 300;
}
#brighter-reviews .review-item .flag-status img {
    width: 14px;
    height: 16px;
    margin-right: 4px;
}
.review-item {
    border: 1px solid #d4d4d5;
    margin-bottom:20px;
    position: relative;
}
.review-item .item-left {
    border-right: 1px solid #d4d4d5;
    padding: 20px 30px;
    width: 215px;
}
.review-item .item-left h4 {
     color: #4a4a4a;
    font-size: 10px;
    font-weight: 400;
    margin: 20px 0 4px;
    text-transform: uppercase;
}
.review-item .item-left p.date {
    font-size: 18px;
    color: #000000;
}
.review-item .item-left h5 {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    margin: 20px 0 4px;
}
.review-item .item-left address {
     font-size: 12px;
    font-weight: 300;
    color: #333333;
}
.review-item .item-left .reply-date {
    position: absolute;
    bottom: 20px;
}
.review-item .item-right {
    padding:30px;
}
.review-item .comment, .review-policy-aside .comment {
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #d4d4d5;
    margin-top:15px;
}
.review-item .comment:after, .review-item .comment:before, .review-policy-aside .comment:after, .review-policy-aside .comment:before {
    bottom: 100%;
    left: 40px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.review-item .comment:after, .review-policy-aside .comment:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 8px;
    margin-left: -8px;
}
.review-item .comment:before, .review-policy-aside .comment:before {
    border-color: rgba(212, 212, 213, 0);
    border-bottom-color: #d4d4d5;
    border-width: 9px;
    margin-left: -9px;
}
.review-item .comment p, .review-policy-aside .comment p {
    font-size: 12px;
    font-weight:300;
    color: #333333;
    line-height: 24px;
    margin-bottom:0;
}
.review-item .comment p.no-comment {
    color: #666666;
}
.review-item .respond-row {
    border-top: 1px solid #d4d4d5;
    margin: 12px 0 -8px;
    padding-top: 10px;
}
.review-item .respond-row ul li {
    font-weight: 300;
    font-size: 11px;
}
.review-item .respond-row .btn-white {
    font-size: 10px;
    padding: 4px 12px;
}
.review-item .responded-box {
    margin-left: 60px;
    margin-top: 25px;
}
.review-item .responded-box h4 {
    font-size: 11px;
    color: #000000;
    font-weight: 400;
}
.review-item .responded-box h4 span {
    font-weight: 300;
}
.review-item .responded-box .comment {
    background: #fbfbfb;
}
.review-item .responded-box .comment::after {
    border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #fbfbfb;
}
#review-policy-button-wrap {
    margin-top: 15px;
}
#review-policy-response-name{
    width: 430px;
    padding: 15px;
    font-weight: 300;
    font-size: 12px;
    color: #333333;
}
#brighter-reviews .pagination > li {
    display: inline-block;
    margin: 0 5px;
}
#brighter-reviews .pagination > li a {
    font-weight:300;
    font-size: 14px;
    color: #0077b7;
}
#brighter-reviews .pagination > li.active a {
    color: #ffffff;
    background: #0077b7;
}
#brighter-reviews .pagination > li:first-child > a,
#brighter-reviews .pagination > li:last-child > a {
    color: #ffffff;
    border-radius: 0;
}
#brighter-reviews .pagination > li:first-child > a:after {
    content: 'prev';
    color: #0077b7;
    text-transform: uppercase;
    margin-left: -5px;
}

#brighter-reviews .pagination > li:last-child > a:after {
    content: 'next';
    color: #0077b7;
    text-transform: uppercase;
    margin-left: -5px;
}

/*   BRIGHTER REVIEW MODAL */

#review-modal .modal-dialog {
    width: 745px;
    top: 20%;
}
#review-modal .modal-content {
    border-radius: 0;
}
#review-modal .modal-header {
    border-bottom: none;
    padding: 20px 30px;
}
#review-modal .modal-header .close {
    opacity: 1;
}
#review-modal .modal-body {
    padding: 0 70px 40px;
}
#review-modal h2 {
    font-size: 24px;
    font-weight:  400;
    color: #000000;
    margin: 5px 0 20px;
}
#review-modal h2 img {
    width: 38px;
    height:auto;
    margin-top: -10px;
    margin-right: 20px;
}
#review-modal p {
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    line-height: 22px;
    margin-bottom:20px;
}

/* REVIEW POLICY ASIDE  */
.aside .aside-dialog .review-policy-aside {
    padding-bottom:60px;
}
.review-policy-aside .top {
    border: 1px solid #d4d4d5;
    padding: 20px;
}
.review-policy-aside .top p {
    font-weight: 300;
    line-height: 24px;
    margin: 0 0 25px;
}
.review-policy-aside .top h4 {
    color: #000000;
    font-weight: 400;
    margin-top: 20px;
    font-size: 14px;
}
.review-policy-aside .top ul {
    padding-left: 25px;
}
.review-policy-aside .top ul li {
    color: #333333;
    font-weight: 300;
    padding-left: 10px;
    margin: 8px 0;
    list-style-type: disc;
}
.review-policy-aside .middle {
    background: #fbfbfb;
    padding: 20px;
    border-left: 1px solid #d4d4d5;
    border-right: 1px solid #d4d4d5;
}
.review-policy-aside .middle h5 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    margin-right: 5px;
    color: #000000;
    margin-top: 20px;
    margin-bottom:0;
}
.review-policy-aside .middle address {
    display: inline-block;
    font-weight: 300;
    font-size: 11px;
    margin-bottom:0;
}
.review-policy-aside .bottom {
    padding: 20px 20px 30px;
    border: 1px solid #d4d4d5;
}
.review-policy-aside .bottom h3 {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    margin:5px 0 20px;
}
.review-policy-aside .bottom textarea {
    resize: none;
    border: 1px solid #d4d4d5;
    height:158px;
    width:100%;
    margin-bottom:20px;
    padding: 15px;
    font-weight: 300;
    font-size:12px;
    line-height:22px;
    color: #333333;
}
.review-policy-aside .bottom .pill {
    border-radius: 30px;
    font-size: 14px;
    font-weight: 300;
    padding: 6px 34px;
}
#respond-policy.review-policy-aside .top p {
    margin-bottom:0;
}
#respond-policy .bottom h3 {
    font-weight: 300;
    margin-bottom:12px;
}
#respond-policy .bottom h5 {
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
    color: #000000;
    margin-bottom:15px;
}
#respond-policy .bottom input[type=text] {
    border: 1px solid #d4d4d5;
    width: 100%;
    color: #333333;
    padding: 5px 10px;
    margin-bottom: 30px;
}
#respond-policy .bottom .tips-box {
    margin: 0 auto;
    width: 320px;
}
#respond-policy .bottom ul {
    padding-left: 12px;
}
#respond-policy .bottom ul li {
    list-style-type: disc;
    color: #4a4a4a;
    font-size: 11px;
    margin: 10px 0;
    font-weight: 300;
}
/************************************
    BRIGHTER ONBOARDING PHOTO STEP
*************************************/

#onboarding-photo-upload {
    margin: 30px 0 0 0;
    padding:50px 60px 40px;
    border: 1px solid #e6e6e6;
}

.no-photos-info {
    border-left: solid #e6e6e6 1px;
}

.onboarding-photo-heading h1 {
    font-size: 24px;
    color: #25356c;
    font-weight: 400;
}

.onboarding-photo-heading p {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
}

.no-photos-info .no-photos-header {
    width: 294px;
    margin: -30px auto 0;
}

.no-photos-header h2 {
    font-size: 18px;
}

.no-photos-header p {
    font-size: 14px;
    line-height: 1.9;
    width: 294px;
    font-weight: 300;
    margin-bottom:20px;
}

.no-photos-header p span.bold {
    font-weight: 400;
}

.no-photos-tips {
    position: relative;
    width: 488px;
    height: 330px;
    margin: 0 auto;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/photo-tips-edited.png") no-repeat;
    margin-bottom: 75px;
}

.no-photos-tips h4 {
    color: #25356c;
    font-weight: 400;
    font-size: 20px;
    position: absolute;
    right: 110px;
    top: 30px;
}
.no-photos-tips ul {
    padding-left: 0;
    position: absolute;
    right: 20px;
    top: 68px;
}
.no-photos-tips ul li {
    font-weight: 300;
    margin: 5px 0;
}
.no-photos-content {
    position: absolute;
    top: 32px;
    right: 20px;
}

.no-photos-tips h3 {
    font-size: 19px;
    font-weight: normal;
    line-height: 1.4;
    color: #158dcc;
}

.no-photos-tip-list {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: #000000;
    padding: 0;
    margin: 0;
}

.missing-photos-count {
    width: 200px;
    margin: 0 auto;
    height: 18px;
    font-size: 16px;
    color: #9b9b9b;
    text-align: center;
}

.skip-for-now {
    font-size: 14px;
    color: #158dcc;
    margin-bottom: 50px;
    margin-top: 25px;
    margin-left: 45px;
}

/************************************
    BRIGHTER SCHEDULE INFO STYLING
*************************************/


#schedule-info-container #header {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2017/brighter-schedule-bg-new.jpg") no-repeat scroll right -183px top / auto 100%;
    padding:20px 50px 40px;
    border-bottom: 1px solid #d4d4d5;
    height: 613px;
    width: 100%;
}
#schedule-info-container h1 {
    font-size: 42px;
    color: #000000;
    font-weight: 400;
}
#schedule-info-container h2 {
    font-size: 22px;
    font-weight: 300;
    color: #262626;
    margin-bottom: 20px;
}
#schedule-info-container #clients {
    margin-top: 30px;
    margin-left: 20px;
}
#schedule-info-container #clients li {
    margin: 0 6px;
}
#schedule-info-container #clients img {
    height: 42px;
}
#schedule-info-container #clients li:nth-child(2) img {
    height:20px;
}

#schedule-info-container #left-content .logo {
    height: 46px;
    width: auto;
    margin-bottom:15px;
}
#schedule-info-container h4 {
    color: #333333;
    font-weight:400;
    font-size: 18px;
}
#schedule-info-container #header p {
    color: #333333;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    margin: 20px 0 15px;
}
#schedule-info-container #header label {
    display: block;
    font-size: 15px;
    color: #000000;
    padding: 10px 0 10px;
    font-weight: 400;
}
#schedule-info-container #header .select-btn {
    width: 400px;
    height: 48px;
    display: block;
    margin-bottom:15px;
}
#schedule-info-container #header .select-btn + .dropdown-menu {
    width: 400px;
}
#schedule-info-container #bottom {
    padding: 60px 50px 80px;
    justify-content:center;
}
#schedule-info-container #bottom ul {
    color: #333333;
    padding-left: 0;
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    vertical-align: top;
}
#schedule-info-container #bottom ul + ul {
    margin-left: 25px;
}
#schedule-info-container #bottom p {
    border-top: 1px solid #d4d4d5;
    color: #333333;
    font-size: 13px;
    font-weight:300;
    padding-top:25px;
    line-height:27px;
}
#schedule-info-container div span {
    color: #333333;
    font-size: 13px;
}
#schedule-info-container #bottom ul li {
    margin: 26px 0;
}
#schedule-info-container #bottom ul li img {
    width: 22px;
    height: auto;
    margin-right: 15px;
}
#schedule-info-container #devices {
    width: 320px;
    margin-left: 50px;
}
#schedule-info-container #button-box {
    margin-top:20px;
}
#schedule-info-container .btn-primary, .onboard-body .btn-primary {
    padding: 10px 26px;
    margin-right: 30px;
    height: 39px;
    line-height: 18px;
}
#schedule-info-container #header .contact-name::-ms-clear{
    display: none;
}
#act-successful {
    padding: 50px 0;
}
#act-successful h3 {
    color: #25356c;
    font-weight: 400;
    font-size: 30px;
}
#act-successful h3 img {
    margin-left: 10px;
    margin-top: 3px;
    vertical-align: top;
}
#act-successful p {
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    margin: 20px 0 30px;
}

/********************************************
    ONBOARD PROFILE PHOTO UPLOAD STYLING
********************************************/
#profile-img-select.photo-collection-aside .empty-photo-selection-box, #profile-img-select.photo-collection-aside .cropArea {
    margin-top: 20px;
    width: 460px;
    height: 390px;
}
.photo-collection-aside.aside.wide {
    min-width: 1120px;
}
.photo-collection-aside .profileCropArea .profile-bg {
    top: auto;
    transform: none;
    width: 460px;
}
.photo-collection-aside .change-link {
    color: #0077b7;
    margin-top: 10px;
}
.photo-collection-aside .change-link input[type="file"]  {
    cursor: pointer;
}
#preview-right {
    width: 420px;
}
#preview-right h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
#preview-right .preview-box {
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/provider_portal/jagged-edge.png");
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 30px 30px 69px 30px;
    margin-left: 30px;
}
#preview-right .img-container {
    border: none;
    width: 100px;
    height: 100px;
    text-align: center;
    padding: 0;
}
#preview-right .img-container img {
    width: 100%;
}
#preview-right .name-right {
    height: 96px;
}
#preview-right .preview-box h4 {
    display: inline-block;
    color: #25356c;
    line-height:24px;
}
.preview-box .block {
    background: #e4e4e4;
    height: 55px;
}
.preview-box .block.bar {
    height: 15px;
    margin-bottom:5px;
}

#profile-img-select #processing-gif img {
    margin-left: 236px;
    margin-top: 46px;
}

#profile-img-select .aside-dialog .aside-footer {
    margin-top: 30px;
}
#profile-img-select .preview-box #default-image-box {
    border: 1px solid #e4e4e4;
}

/********************************************
    ASSOCIATED PRACTICES TABLE STYLING
********************************************/

#associated-practices-table > thead > tr > th,
#associated-practices-table > tbody > tr > td {
    padding-left: 20px;
}

#associated-practices-table > thead > tr > th {
    padding-top: 10px;
    background: #f5f5f5;
    vertical-align: top;
    font-size: 15px;
    border-top: solid #ddd 1px;
}

#associated-practices-table > thead > tr > th.associated-practice-name-header,
#associated-practices-table > tbody > tr > td.associated-practice-name {
    border-right: solid #ddd 1px;
}

#associated-practices-table > thead > tr > th.associated-practice-name-header {
    border-left: solid #ddd 1px;
}

#associated-practices-table > thead > tr > th.associated-practice-id-header {
    border-right: solid #ddd 1px;
}

#associated-practices-table > tbody > tr > td {
    padding-top: 10px;
    padding-bottom: 10px;
}

/********************************************
    PROVIDER CODES TABLE STYLING
********************************************/

#code-table > thead > tr > th {
    padding-left: 20px;
    padding-top: 20px;
    background: #f5f5f5;
    vertical-align: top;
}
#code-table > thead > tr > th a {
    display: block;
}
#code-table > tbody > tr > td {
    padding-left: 10px;
    padding-right:10px;
    color: #525252;
    position: relative;
    font-weight: 300;
}
#code-table .radio-group input.css-radio[type="radio"] + label.radio-label {
    color: #525252;
    text-transform: capitalize;
    font-weight: 300;
}
#code-table #set-all-popover {
    color: #9f9f9f;
    font-size: 10px;
    display: block;
    padding: 0;
}
#code-table td .dropdown-menu {
    width: 95%;
}

/* SET BOOKING POPOVER  */

#set-booking-popover h4 {
    text-transform: none;
    margin-top:0;
}
#set-booking-popover .radio-group {
    display: inline-block;
    vertical-align: bottom;
    margin-right:10px;
}

/************************************
    LOGIN PIN AUTHORIZATION MODAL STYLING
*************************************/
#pin-auth-modal .modal-dialog {
    width: 900px;
}
#pin-auth-modal .modal-content {
    border-radius: 0;
}
#pin-auth-modal .modal-body {
    padding: 0;
}
#pin-auth-modal .logo {
    height: 52px;
    width:130px;
}
#pin-auth-modal .modal-header .close {
    margin-top:-9px;
}
#pin-auth-modal .table-wrapper > .cell {
    padding: 20px 40px 50px;
    vertical-align: middle;
}
#pin-auth-modal .table-wrapper > .cell:first-of-type {
    border-right: 1px solid #d4d4d5;
}
#pin-auth-modal .modal-subtitle {
    font-size: 14px;
    margin-bottom:3px;
    font-weight: 400;
    color: #25356c;
}
#pin-auth-modal .modal-title {
    font-size: 20px;
    margin-bottom:35px;
}
#pin-auth-modal p {
    color: #000000;
    font-weight: 300;
    margin-bottom:15px;
}
#pin-auth-modal p span {
    font-weight: 400;
}
#pin-auth-modal .code-text {
    font-size: 12px;
    color: #686868;
    font-weight: 300;
    margin-bottom:30px;
}
#pin-auth-modal .code-text a {
    font-weight: 400;
}
#pin-auth-modal .right-content img {
    width: 50px;
    height: auto;
}
#pin-auth-modal .right-content h4 {
    font-weight: 400;
    color: #686868;
    font-size: 16px;
    margin: 30px 0 2px;
}
#pin-auth-modal .right-content p {
    font-weight: 300;
    color: #686868;
    font-size: 12px;
}
#pin-auth-modal .btn-primary {
    padding: 12px 50px;
}

/************************************
    NEW ONBOARD FLOW STYLING 6/19/2017
*************************************/
#onboard-header p {
    color: #ffffff;
    font-weight: 300;
    line-height: 78px;
    text-transform: uppercase;
}
#onboard-main {
    display: table-cell;
}
#welcome-page {
    padding: 40px 60px;
}
#welcome-page .flex-wrapper {
    justify-content:center;
}
#welcome-page .flex-wrapper .flex-item {
    align-self: center;
}
#welcome-page .flex-wrapper .flex-item:first-of-type {
    padding-right: 5%;
}
#welcome-page h2 {
    color: #333333;
    font-weight: 400;
    font-size: 24px;
    margin-bottom:30px;
}
#welcome-page p {
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}
#welcome-page ul {
    margin: 30px 0;
    padding-left: 25px;
}
#welcome-page ul li {
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    margin: 10px 0;
    list-style-type: disc;
}
#welcome-page .btn {
    margin-top: 15px;
}
#welcome-page .cell {
    vertical-align: middle;
}
#onboard-sidebar {
    padding: 60px 45px;
}
#onboard-nav {
    padding-left: 0;
}
#onboard-nav li {
    font-size: 14px;
    color: #cccccc;
    font-weight: 300;
    margin-bottom:20px;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/open-circle-gray.svg");
    background-position: 0 5px;
    background-repeat: no-repeat;
    padding-left: 25px;
}

#onboard-nav .submenu {
    margin-top: 20px;
    padding-left: 0;
}
#onboard-nav .complete {
    color: #6cd0f4;
    font-weight: 400;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/blue-check-sm.svg");
}
#onboard-nav .active {
    color: #000000;
    font-weight: 400;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/open-circle.svg");
}
#onboard-nav #provider-submenu > li.active {
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/july2017/solid-circle.svg");
}
#onboard-nav .submenu li.active {
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/right-arrow-sm.svg");
}
.onboard-body {
    padding:  50px;
}
.onboard-body-error {
    margin-left: 10px;
    border-top: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
    padding: 15px 0;
    margin-bottom: 15px;
    font-size: 14px;
    margin-right: 30px;
}
.onboard-body-error img{
    padding-right: 5px;
}
.onboard-body h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 20px;
}
.onboard-body h2 + p {
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 30px;
}

/************************************
    ONBOARD OFFICE HOURS STYLING
*************************************/

#add-office-hrs {
    width: 100%;
    border-bottom: 1px solid #d4d4d5;
    margin-bottom:30px;
}
#add-office-hrs tr {
    border-top: 1px solid #d4d4d5;
}

#add-office-hrs h5 {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

#add-office-hrs tr > td:first-of-type {
    border-right:1px solid #d4d4d5;
    padding: 20px 10px 20px 0;
    width: 70px;
}
#add-office-hrs tr > td:nth-child(2) {
    padding: 20px 20px 0 20px;
}

#add-office-hrs h6 {
    font-size: 14px;
    color: #000000;
    vertical-align: bottom;
    font-weight: 400;
    padding-top: 10px;
    margin: 0 25px 0 0;
}

#add-office-hrs .open-options-wrapper {
    clear: both;
}

#add-office-hrs .open-content,
#add-office-hrs .open-option {
    float: left;
}

#add-office-hrs .open-option{
    /*margin-left: -40px;*/
    width: 200px;
    position: relative;
}

#office-footer .validationErrorText {
    margin-top: 0;
    margin-left: 22px;
}
#office-footer .validationErrorText .hours-error-img {
    width: 45px;
    height: 45px;
    margin: -5px 3px 0 0;
}

#add-office-hrs .select-btn {
    width: 100px;
    line-height: 0;
    height:32px;
    padding: 8px;
    margin-right: 14px;
    background: url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2015/arrow-down.png") no-repeat scroll 99% center / 30px auto #ffffff;
}
#add-office-hrs .timeslots label {
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px 0 0;
    height: 35px;
    vertical-align: middle;
}
#add-office-hrs .css-label {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 19px 0;

}
#add-office-hrs .css-label span {
    font-size: 12px;
    font-weight: 300;
    color: #333333;
}

#add-office-hrs .btn.selectable{
    -webkit-user-select: auto;
}
#add-office-hrs .timeslots {
    padding-right: 23px;
    margin-right: 32px;
    height: 32px;
    border-right: 1px solid #d4d4d5;
}
#onboard-office-hrs #add-office-hrs .table-wrapper {
    margin-left: 20px;
}
#onboard-office-hrs #add-office-hrs .open-content,
#onboard-office-hrs #add-office-hrs .open-option  {
    padding-top: 23px;

}
#onboard-office-hrs #add-office-hrs .timeslots label {
    height: auto;
}
#onboard-office-hrs #add-office-hrs .css-label {
    margin: 0;
}
#onboard-office-hrs #add-office-hrs h6 {
    vertical-align: sub;
}

/************************************
    ONBOARD TECH & AMENITIES STYLING
*************************************/
#tech-amenities h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 40px;
}
#tech-amenities h4 span {
    font-size: 14px;
    font-weight: 300;
    margin-left: 10px;
    text-transform: none;

}
#tech-amenities section {
    border-bottom: 1px solid #d4d4d5;
    padding-left: 10px;
}
#tech-amenities section:last-of-type {
    margin-bottom: 30px;
}
#tech-amenities .list-inline {
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
}
#tech-amenities .list-inline li {
    width: 25%;
    margin-bottom:35px;
}
#tech-amenities .radio-label {
    font-size:14px;
    font-weight: 300;
    padding-left: 38px;
}

/************************************
    ONBOARD PRACTICE VERIFY STYLING
*************************************/

#onboard-practice-verify .verification-logo {
    right: 20px;
    top: -49px;
}
#onboard-practice-verify #practice-info section label {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}
#onboard-practice-verify #practice-info section p, #onboard-practice-verify #practice-info section address {
    font-size: 20px;
}
#onboard-practice-verify #practice-info section .sub-label {
    font-size: 14px;
    color: #000000;
    font-weight: 300;
}
#onboard-practice-verify .btn-primary {
    font-size: 14px;
}
#onboard-practice-verify .link-btn {
    font-size: 16px;
    text-transform: capitalize;
}
/************************************
    ONBOARD PROVIDER VERIFY STYLING
*************************************/

.onboard-body #practice-info.verification-info .border-right {
    padding-right: 15px;
}
.onboard-body #practice-info.verification-info .location-check img {
    margin-left: 30px;
}
.onboard-body #practice-info section label {
    font-size: 14px;
    color: #000000;
}
/********************************************
    ONBOARD USER INFO STYLING
********************************************/

#onboard-user-info #practice-info {
    margin-top: 20px;
}
.onboard-body #practice-info.verification-info address {
    line-height: 22px;
}
#onboard-user-info form {
    margin-right: 30px;
}
#onboard-user-info .confirmButton {
    margin-top: 15px;
}

/********************************************
    ONBOARD PHOTO UPDATE STYLING
********************************************/

#onboard-photo-enhance {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/onboard-male-bg-combined.jpg") no-repeat scroll right 3px / auto 100%;
    height: 713px;
    position: relative;
    border-bottom:1px solid #d4d4d5;
}
#onboard-photo-enhance.female {
    background: rgba(0, 0, 0, 0) url("https://d3ppyoxr8wczcq.cloudfront.net/images/june2017/onboard-female-bg-combined.jpg") no-repeat scroll right 3px / auto 100%;
}
#add-photo-box {
    width: 316px;
    height: 344px;
    margin-bottom:50px;
    margin-right: 80px;
    border: 1px solid #d4d4d5;
    -webkit-box-shadow:  15px 15px 0 #f5f5f5;
    -moz-box-shadow:  15px 15px 0 #f5f5f5;
    box-shadow:  15px 15px 0 #f5f5f5;
}
#add-photo-box h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 50px;
}
#add-photo-box #img-preview {
    height: 133px;
    width: 137px;
    border:1px solid #d4d4d5;
    margin: 0 auto;
}

#add-photo-box #existing-img-preview {
    height: 133px;
    width: 137px;
    border:1px solid #d4d4d5;
    margin: 0 auto;
}
#add-photo-box #img-preview .default-img {
    position: relative;
    height: 52px;
    width: 52px;
    top:50%;
    transform: translateY(-50%);
}
#add-photo-box #existing-img-preview .existing-img {
    position: relative;
    height: 90px;
    width: 90px;
    top: 48%;
    transform: translateY(-50%);
}
#add-photo-box.add-photo-success h3 {
    margin-top: 30px;
}

#add-photo-box .onboard-img-successMsg {
    margin: 11px 0 0 0;
    padding-left: 21px;
    font-size: 14px;
    color: #00ac04;
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/green-check-ic.svg");
    background-repeat: no-repeat;
    background-position: 91px;

}

#profile-img-select.onboarding-flow .img-container {
    width: 70px;
}

#add-photo-box.add-photo-success #img-preview .default-img {
    position: relative;
    height: 100%;
    width: 100%;
    top:50%;
    transform: translateY(-50%);
}
#add-photo-box .btn-white {
    height: 39px;
    padding: 10px 26px;
    line-height:16px;
    border-radius: 26px;
    margin-top: 19px;
}
#tips-right h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}
#tips-right ul {
    margin-bottom: 60px;
}
#tips-right ul li {
    font-weight: 300;
    line-height: 30px;
}
#tips-right p {
    font-weight: 300;
    line-height: 27px;
}
/********************************************
    ONBOARD EDUCATION HISTORY STYLING
********************************************/

#onboard-education section {
    border-top: 1px solid #d4d4d5;
    padding: 10px 20px 20px;
}
#onboard-education section:last-of-type {
    border-bottom: 1px solid #d4d4d5;
    margin-bottom: 25px;
}
#onboard-education section h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    margin-right: 20px;
    margin-bottom: 25px;
}
#onboard-education .incomplete {
    color: #b2272e;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}
#onboard-education .add-btn {
    font-size: 10px;
    height: 21px;
    padding: 2px 0;
    width: 52px;
    vertical-align: text-bottom;
}
#onboard-education section p {
    font-size: 14px;
    font-weight: 300;
}
#onboard-education section ul {
    padding-left: 5px;
}
#onboard-education section ul li p {
    display: inline-block;
}
#onboard-education section ul li {
    list-style: inside none disc;
}
#onboard-education .action-list {
    margin-left: 30px;
    vertical-align: text-bottom;
}

#onboard-education .action-list a {
    text-transform: uppercase;
    /*font-size: 10px;*/
}

#onboard-education .action-list a:first-of-type,
#onboard-education .deleteConfirmationSection .btn {
    font-size: 10px;
}

#onboard-education .action-list a:hover:first-of-type {
    color: #0077b7;
}

#onboard-education .action-list a:first-of-type {
    border-right: 1px solid #000000;
    height: 18px;
    padding-top: 3px;
    padding-right: 6px;
    display: block;
    float: left;
}

#onboard-education .deleteConfirmation .delete-button button {
    padding-left: 6px;
}

#onboard-education .deleteConfirmationSection {
    /*padding-left: 3px;*/
}

#onboard-education .deleteConfirmationSection .btn {
    font-size: 10px;
    padding: 10px 8px 0 0;
    display: block;
    float: left;
    margin: 0;
    line-height: 3px;
    height: auto;
    font-weight: 400;
}

#onboard-education .deleteConfirmationWrapper .edit-link {
    font-size: 14px;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #000000;
    line-height: 14px;

}

#onboard-education .deleteConfirmationSection .btn.btn-link {
    border-right: 1px solid #000000;
    padding: 0 6px 0 0;
}

#onboard-education .deleteConfirmationSection .btn {
    border: none;
    height: 18px;
    color: #0077b7;
    font-weight: 300;
    border-radius: 0;
    padding: 0 0 0 6px;
    vertical-align: top;
    text-transform: uppercase;
}


#onboard-education .deleteConfirmationSection .btn-danger:active:hover,
#onboard-education .deleteConfirmationSection .btn-primary:active:hover {
    background: none;
    color: #0077b7;
}

#onboard-main #existing-img-preview .existing-img {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top:3px
}


    /************************************
        ADD PROVIDER STYLING
    *************************************/
#addProviderForm .table-box label {
    margin-bottom:15px;
}
#addProviderForm .css-label, #addProviderForm .radio-label {
    text-transform: none;
    font-weight:300;
}
#addProviderForm td.info-list-nested table.additional-info-table.multi-row td {
    width: 33%;
    vertical-align: middle;
}
#addProviderForm #specialty-list {
    margin: 30px 0 60px 15px;
}
#addProviderForm #specialty-list li{
    width: 25%;
    margin-bottom:20px;
}
#editGeneralInfoForm .npi-label {
    text-transform: none;
}
#editGeneralInfoForm #specialty-list {
    margin: 20px 0 20px 15px;
}
#editGeneralInfoForm #specialty-list li {
     width: 50%;
    margin-bottom: 15px;
}
#editGeneralInfoForm #specialty-list li label.css-label {
    text-transform: capitalize;
}
/************************************
    ASIDE PRIMARY NOTIFICATION STYLING
*************************************/

.aside #editPrimaryInfoForm .validationErrorText, .aside #newApptNotificationForm .validationErrorText {
    margin-left: 30px;
    margin-top: 6px;
}

/************************************
    ACTIVATION FLOW TABLET STYLING
*************************************/

/* Portrait and Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 2) {
    #login-container, #signup-container {
        min-width: 0;
    }
    #find-practice.table-wrapper form input {
        border-radius: 0;
    }
}
/* Portrait and Landscape */
@media only screen
and (min-device-width: 1025px)
 {
    #footer {
        min-width: 1400px;
    }
}

/* Portrait */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 2) {

    .table-wrapper .practice-search, .table-wrapper .progress-panel, .table-wrapper #login-right {
        display: table-row;
    }
    .practice-search .top-wrap {
        width: 70%;
        padding: 50px 0 40px 60px;
    }
    #login-right {
        background-size: 100% auto;
        background-position: 0 -206px;
        height: 340px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    .login-right-content {
        margin-top: 0;
    }
    #login-right .top {
        display: none;
    }
    #login-right h6 {
        display: block;
        font-size: 20px;
    }
    .login-right-content img {
        margin: 20px 15px;
        display: inline-block;
        height: 40px;
    }
    .login-right-content img + img {
        height: 30px;
    }
    .table-wrapper #sign-up-find-practice-map .angular-google-map-container {
        height: 500px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    #verify-right, #enter-pin-right, #carriers-right {
        height: 500px;
        background-size: 100% auto;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    #verify-right .panel-content, #enter-pin-right .panel-content  {
        top: 90px;
        z-index:11;
    }
    #carriers-right .panel-content {
        top: 160px;
        z-index:11;
    }
    #create-account-form {
        width: 100%;
    }
    #create-account .terms-box p {
        font-size: 1.4rem;
    }
    #create-account #marketing-box {
        margin-top: 3rem;
    }
    #create-account #marketing-box .marketing-box-highlight {
        margin: 0 auto 2rem;
    }
    #create-account .marketing-footer {
        margin: 0 auto;
        width: 100%;
    }
}

/* Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2) {

    #login-left .btn {
        margin: 10px 0 0;
        float: none !important;
        display: block;
    }
    #login-left .password-link {
        float: none !important;
        margin-left: 10px;
        margin-bottom:-20px;
        margin-top: 10px;
        display: block;
    }
    #login-right {
        background-position: top;
    }
    #login-right .login-right-content {
        width: auto;
    }
    #login-right .login-right-content ul li:nth-child(2) {
        margin: 0;
    }
    #login-right .login-right-content ul li img {
        height: 50px;
        width: auto;
    }
    #login-right .login-right-content ul li p {
        font-size: 10px;
        line-height: 21px;
        margin-top: 20px;
    }
    #login-right .login-right-content h6 {
        display: block;
        text-align: center;
    }
    #login-right .login-right-content h6 + img {
        margin: 10px 15px;
    }
    #practice-search h1 {
        font-size: 20px;
    }
    #practice-search #access-code-label {
        line-height: 22px;
    }
    #verify-practice button {
        font-size: 10px;
        padding: 10px 20px;
    }
    #verify-practice button.btn-primary {
        margin-right: 10px;
    }
    .practice-search .phone-block + button {
        margin: 0 0 15px;
    }
    #enter-pin #pin-input {
        display: table;
    }
    #enter-pin #pin-input li {
        display: table-cell;
    }
    #enter-pin #pin-input li input {
        width: 100%;
        height: auto;
    }
    #enter-pin h4 {
        line-height:26px;
    }
    #enter-pin button.btn-white {
        margin-left: 0;
    }
    #enter-pin-right {
        background-position: top right;
    }
    #create-acct-right {
        background-position: -800px 0;
    }
    #carriers-right.progress-panel h3 {
        font-size: 20px;
        width: 44%;
        margin: 0 auto 30px;
        line-height: 28px;
    }
    #create-account #marketing-box .marketing-box-highlight,  #create-account .marketing-footer {
        width: 100%;
        margin-left: 0;
    }
    #marketing-box .marketing-box-highlight h4 {
        font-size: 1.8rem;
    }
    .marketing-box-highlight ul li {
        margin: 26px 0;
    }
    .marketing-box-highlight ul {
        padding: 14px;
    }

}

/* CREATE ACCOUNT TABLET */
@media only screen
and (min-device-width: 768px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1) {
    #provider-act-confirm #create-account > .container {
        width: 96%;
    }
    #provider-act-confirm #create-account h2 {
        font-size: 22px;
        line-height: 30px;
    }
    #provider-act-confirm #create-account #marketing-box .marketing-box-highlight {
        margin-top:90px;
    }
    #provider-act-confirm #marketing-box .marketing-box-highlight, #provider-act-confirm .marketing-footer {
        margin-left: 0;
        width: 100%;
    }
    .marketing-box-highlight ul li {
        margin: 0 0 25px 68px;
    }
}

@media only screen
and (min-device-width: 768px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 1) {
    #provider-act-confirm #create-account > .container {
        width: 96%;
    }
    #provider-act-confirm #create-account h2 {
        font-size: 22px;
        line-height: 30px;
    }
    #provider-act-confirm #create-account #marketing-box .marketing-box-highlight {
        margin-top:90px;
    }
    #provider-act-confirm #marketing-box .marketing-box-highlight, #provider-act-confirm .marketing-footer {
        margin-left: 0;
        width: 100%;
    }
    .marketing-box-highlight ul li {
        margin: 0 0 25px 68px;
    }
}


@media (min-width: 768px) {
    .video-modal .modal-dialog {
        width: 865px;
    }
}


@media (max-width: 1440px) {
    #practice-dashboard .top .content {
        width: 562px;
    }
    #practice-dashboard .top h1{
        font-size: 28px;
    }
}
@media (max-width: 1600px) {
    #homepage-banner.delta-homepage-banner, #homepage-banner.cigna-homepage-banner {
        background-position: top right -200px;
    }
}
@media (max-width: 1800px) {

    #onboard-photo-enhance, #onboard-photo-enhance.female {
        background-position: 200px center;
    }
}
/* Fix for  "Jump" animation bug and the "Modal Flicker"*/

.am-fade.ng-enter {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}


.am-fade.ng-leave {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

/* SAFARI ONLY  */

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
    @media {_:-webkit-full-screen, .body-wrapper {
        flex:1 0 auto;
    }
    }
}
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
    @media {_:-webkit-full-screen, #login-container {
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left:0;
        right:0;
    }
    }
}
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
    @media {_:-webkit-full-screen, #signup-container {
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left:0;
        right:0;
    }
    }
}

/* IE9 AND ABOVE  */

@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
    #login-left .label-float input {
        width: 94%;
    }
}
/* IE10 AND ABOVE  */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-left #pmsForm .label-float input {
        width: 286px;
    }
    .form-left #pmsForm .select-btn {
        width: 292px;
    }
}

/************************************
    MANAGE APPOINTMENTS STYLING
*************************************/
#manage-appt .info-section-header {
    margin: 0;
    padding: 30px 0 25px 60px;
}
#manage-appt .info-section-header img {
    width: 300px;
}
#manage-appt .nav-tabs {
    border-top: 1px solid #d4d4d5;
    border-bottom: 1px solid #d4d4d5;
}
#manage-appt .nav-tabs > li > a {
    border-left: 1px solid #d4d4d5;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    color: #0077b7;
    padding: 18px 30px;
}
#manage-appt .nav-tabs > li > a:hover, #manage-appt .nav-tabs > li > a:focus {
    background: #ffffff;
    outline: none;
    border-color: #ffffff;
    border-left: 1px solid #d4d4d5;
}
#manage-appt .nav-tabs > li:first-of-type > a {
    border-left: none;
    padding-left: 58px;
}
#manage-appt #no-appts-section{
    margin: 0;

    border-top: 1px solid #d4d4d5;
}
#manage-appt #no-appts-section .box {
    margin: 100px auto 0;
    padding: 30px 0 25px 60px;
    display: table;

}
#manage-appt #no-appts-section img {
    width: 120px;
    height: auto;
    margin-right: 20px;
    margin-top: -15px;
}
#manage-appt #no-appts-section p:first-of-type {
    font-size: 24px;
    font-weight: 300;
    color: #333333;
}
#manage-appt #no-appts-section p + p {
     font-size: 14px;
    font-weight: 300;
    color: #333333;
    margin-left: 30px;
}
#manage-appt #no-appts-section p + p span {
    font-weight: 400;
}

#manage-appt .nav-tabs .selected {
    background: #ffffff;
    box-shadow: none;
}
#manage-appt .nav-tabs .selected a, #manage-appt .nav-tabs .selected-past a {
    font-weight: 400;
    color: #000000;
}

#manage-appt .nav-tabs .selected-past {
    background: #ffffff;
    box-shadow: none;
    border-left: 1px solid #d4d4d5;
}
#manage-appt .nav-tabs > li:nth-child(3) > a {
    border-right: 1px solid #d4d4d5;
}
#manage-appt .nav-tabs > li:last-of-type > a {
    border-left: none;
}
#manage-appt .nav-tabs > li .popover:after, #manage-appt .nav-tabs > li .popover:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
#manage-appt .nav-tabs > li .popover:after {
    border-color: rgba(247, 252, 255, 0);
    border-top-color: #f7fcff;
    border-width: 5px;
    margin-left: -5px;
}
#manage-appt .nav-tabs > li .popover:before {
    border-color: rgba(0, 119, 183, 0);
    border-top-color: #0077b7;
    border-width: 6px;
    margin-left: -6px;
}
#manage-appt .nav-tabs > li .popover .arrow {
    display: none;

}
#manage-appt .nav-tabs > li > span {
    display: block;
    width: inherit;
}
#manage-appt .nav-tabs > li .popover  {
     background: #f7fcff;
    border:1px solid #0077b7;
    box-shadow: none;
    color: #333333;
    border-radius: 0;
    font-size: 12px;
    min-width: 100px;
    max-width: none;
    width: -moz-max-content;
    width: max-content;
    padding: 15px 20px;
    top: -52px !important;
}

.appt-item {
    padding: 30px;
    border-bottom: 1px solid #d4d4d5;
}
.appt-item > .cell:first-of-type {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.appt-item #appt-action {
    padding: 15px 0 15px 40px;
}
.appt-item .date-box {
     height: 110px;
    width: 84px;
    text-align: center;
}
.appt-item .date-box p.month {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    background: #0077b7;
    line-height: 29px;
    margin: 0;
}
.appt-item .date-box div {
    border: 1px solid #d4d4d5;
}
.appt-item .date-box p.date {
    font-size: 36px;
    margin: 0;
    font-weight: 500;
}
.appt-item .status-cell {
    padding: 0;
    border-left: 1px solid #d4d4d5;
    width: 440px;
    box-sizing: content-box;
}
.appt-item .error-msg .calendar {
     width: 43px;
    height: auto;
    margin-right: 5px;
}
.appt-item .error-msg .calendar.hazard {
    width: 50px;
}
.appt-item .error-msg p {
     font-size: 14px;
    font-weight: 300;
    color: #333333;
}
.appt-item .error-msg p:first-of-type {
    margin-bottom: 20px;
}
.appt-item .error-msg .btn-primary {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    background: #158ccc;
    border-radius: 18px;
    padding: 8px 22px 8px 12px;
    margin-left: 15px;
    margin-top: -10px;
    line-height: 16px;
}
.appt-item .error-msg .btn-primary img {
    margin-right: 3px;
}
.appt-item .patient-info {
    margin-top:-6px;
    flex-basis: 80%;
}
.appt-item .patient-info li {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}
.appt-item .patient-info span {
    font-size: 12px;
    font-weight: 300;
    margin-right: 5px;
    text-transform: uppercase;
}
.appt-item .status-info {
    padding-left: 0;
    width: 100%;
    /*border-bottom: 1px solid #d4d4d5;*/
}
.appt-item .provider-instruction {
    padding-bottom: 12px;
    border-bottom: 1px solid #d4d4d5;
}
.appt-item .status-info li {
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
}
.appt-item .status-info li span {
    text-transform: uppercase;
    font-weight: 300;
    margin-right: 5px;
}
.appt-item .status-info li span + span {
    margin-right: 0;
    text-transform: capitalize;
    font-weight: 400;
}
.appt-item .status-info li .green {
     color: #008916;

}
.appt-item .status-info li .green img {
     height: 18px;
    width: 18px;
    margin-left: 5px;
    vertical-align: text-bottom;
}
.appt-item .status-info li .red {
    color: #c13b3c;
}
.appt-item .status-cell p.note {
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
}
.appt-item .status-cell .status-info + p.note {
    border-top: 1px solid #d4d4d5;
    padding-top: 10px;
}
.appt-item .status-cell p.default {
    font-size: 12px;
}
.appt-item .status-cell .btn-wrapper {
    border-top: 1px solid #d4d4d5;
    padding-top: 20px;
}
.status-cell .btn-wrapper .btn, .status-cell .btn-white {
    font-size: 13px;
    border-radius: 20px;
    padding: 7px 25px;
    font-weight: 400;
    margin-right: 5px;
}
.status-cell .btn-wrapper .btn-link {
    padding-right: 0;
}
.status-cell .btn-wrapper .btn-link:first-of-type {
    padding-left: 0;
}

.status-cell .btn[disabled] {
    background: #0077b7;
    opacity: .65;
}

.appt-item section.reschedule {
    flex-basis: 100%;
    position: relative;
    margin-top: 50px;
}
.appt-item section.reschedule h4 {
    font-size: 16px;
    color: #000000;
}
.appt-item section.reschedule h4 + p {
    font-weight: 300;
}
.appt-item section.reschedule .scheduler-form {
    display: table;
}
.appt-item section.reschedule .scheduler-form .form-group {
    display: table-cell;
}
.appt-item section.reschedule .datepicker.dropdown-menu {
    left: 0 !important;
    width: 320px;
}
.appt-item section.reschedule .datepicker.dropdown-menu:before, .appt-item section.reschedule .datepicker.dropdown-menu:after {
    content: none;
    border: none;
}
.appt-item .scheduler-form input.form-control, .appt-item .scheduler-form .select-btn {
    font-size: 16px;
    border-radius: 0;
    height: 52px;
    padding-left: 20px;
}
.appt-item .scheduler-form .select-btn {
    background-size: 30px auto;
    background-position: 90% center;
}
.appt-item .scheduler-formLabel {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
}
.appt-item .scheduler-form input.form-control::placeholder {
    color: #666666;
}

.appt-item .scheduler-formTime {
    width: 129px;
}
.appt-item .scheduler-formSelector {
    width: 124px;
}
.appt-item .reschedule-arrow {
    position: absolute;
    left: 30px;
    top: -40px;
}
.appt-item .proposed-times p.times-label {
    text-transform: uppercase;
    font-weight: 300;
}
.appt-item .proposed-times ul.times-list, .appt-item .proposed-times ul.times {
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 10px;
}
.appt-item .proposed-times ul.times-list li, .appt-item .proposed-times ul.times li {
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
    list-style-position: inside;
    list-style-type: disc
}
.appt-item .proposed-times .btn-wrapper {
    border-top: none;
}

#provider-specialty-aside label{
    text-transform: uppercase;
    font-weight: 300;
}

#provider-specialty-aside .aside-footer {
    padding-left: 15px;
}


/* Sidebar Component
-------------------------------------------------- */

/* Base styles
------------------------- */

.sidebar-container {
    /* Table Related Styles */
    display: table-cell;
    vertical-align:top;
    background-color: #fff;
    /* Other Styles */
    height: 100%;
    border-right: solid #d4d4d5 1px;
    position: relative;
    width: 330px;
    min-width: 330px;
}

.sidebar {
    margin-top: 25px;
}

.sidebar.sidebar-no-top { /* Special Case - No Margin on top */
    margin-top: 0;
}

.sidebar a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 100;
}

.sidebar a:hover,
.sidebar a.active {
    color: #25356c;
}

/* Secondary Sidebar
------------------------- */

/* First Sidebar Needs This */

.hasSecondarySidebar {
    background: #fff;
    height: 100%;
    position: absolute;
    margin-top: 0;
    padding-top: 25px;
    width: 100%;
    z-index: 1050;
}

/* Secondary Sidebar Options */

.sidebar.secondary-sidebar:focus {
    outline: none;
}

.sidebar.secondary-sidebar {
    width: 330px;
    height: 100%;
    position: absolute;
    border-left: solid #d4d4d5 1px;
    left: 329px;
    right: auto;
    top: 0;
    bottom: 0;
    z-index: 1049;
    overflow: auto;
    margin-top: 0;
    padding-top: 25px;
}

.close-secondary-sidebar {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Sidebar Sections
------------------------- */

.sidebar .sidebar-section {
    margin: 0 40px 20px;
}

.sidebar .sidebar-section.welcome-section {
    margin-bottom: 18px;
}

/* Sidebar Header
------------------------- */

.sidebar .sidebar-header {
    height: 36px;
    padding-top: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 100;
}

.sidebar .sidebar-header > .sidebar-header-text {
    border-bottom: 1px solid #d4d4d5 ;
    line-height: 10px;
    margin: 0;
}

.sidebar .sidebar-header > .sidebar-header-text span  {
    background: #ffffff;
    padding-right: 10px;
    font-size: 13px;
    font-weight: 400;
}

/* Practice Info
------------------------- */

.select-practice > .practice-name {
    color: black;
    padding: 8px 0 0 0;
    font-size: 15px;
    text-transform: uppercase;
}

.select-practice > .practice-option {
    font-size: 11px;
    float: right;
    padding-top: 12px;
}

/* Secondary Sidebar - Limit Width */

.has-secondary-sidebar .select-practice > .practice-name {
    max-width: 200px;
}

/* Nav List and Nav Items
------------------------- */

.sidebar .sidebar-nav-list {
    padding: 0;
    margin: 0;
}

.sidebar .sidebar-nav-list > .sidebar-nav-item {
    margin-bottom: 10px;
}

/* Sidebar Icon and Links
------------------------- */

.sidebar .sidebar-nav-list > .sidebar-nav-item a {
    display: table;
}

.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-icon,
.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-text {
    display: table-cell;
}

.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-icon {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-text {
    padding-top: 5px;
    padding-left: 12px;
}
.sidebar #review-nav-item {
    position: relative;
}

.sidebar #new-appointment-item {
    position: relative;
}
.sidebar #new-appointment-item.active {
    font-weight: 400;
}
.sidebar #new-appointment-item span:nth-child(3) {
    margin-left: 5px;
}

.sidebar #new-review {
    font-size: 10px;
    vertical-align: text-top;
    color: #d0021b;
    font-weight: 400;
    margin-left: 5px;
    position: absolute;
    right: -30px;
    top: 7px;
}

.sidebar #new-appointment {
    font-size: 10px;
    vertical-align: text-top;
    color: #d0021b;
    font-weight: 400;
    margin-left: 5px;
    position: absolute;
    right: -30px;
    top: 7px;
}

/* Nested Nav Items
------------------------- */

.sidebar .sidebar-nav-list.sidebar-nav-item-nested {
    margin: 10px 0 0 40px;
}

/* Rewriting Glyphicon for Collapse */

.nav-item-text.nav-collapse.nav-item-menu-up:after,
.nav-item-text.nav-collapse.nav-item-menu-down:after {
    padding-left: 6px;
    position: relative;
    top: 2px;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Glyphicons Halflings';
}

.nav-item-text.nav-collapse.nav-item-menu-up:after {
    content: "\e260";
}

.nav-item-text.nav-collapse.nav-item-menu-down:after {
    content: "\e259";
}

/* Address List
------------------------- */

.sidebar .sidebar-nav-list > .sidebar-nav-item .provider-address {
    padding-left: 40px;
    padding-top: 2px;
    font-size: 13px;
    font-weight: 100;
    line-height: 1.6;
}

/* Return Section
------------------------- */

.sidebar-return {
    border-bottom: solid #d4d4d4 1px;
}

.sidebar-return > .sidebar-return-link {
    font-size: 16px;
    font-weight: 300;
    display: block;
    padding: 30px 0;
    text-align: center;
}

.sidebar-return > .sidebar-return-link.return-link-left {
    text-align: left;
    font-size: 18px;
    padding-left: 20px;
}

/* Settings List (Acct Mgmt)
------------------------------- */

.sidebar-settings-list {
    margin-left: 40px;
    margin-top: 40px;
}

.sidebar-settings-list > .settings-list-header {
    color: #25356c;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 28px;
}

.settings-list-item {
    margin-bottom: 15px;
}

.settings-list-item > .settings-list-link {
    font-weight: 400;

}

/* Nav Icon Images
------------------------- */

/* Dashboard */

.nav-item-icon.nav-icon-dashboard { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-home-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-dashboard,
.sidebar-nav-item a.active .nav-icon-dashboard { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-home-on.svg'); }

/* Practice */

.nav-item-icon.nav-icon-practice { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-practice-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-practice,
.sidebar-nav-item a.active .nav-icon-practice {  background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-practice-on.svg'); }

/* Provider */

.nav-item-icon.nav-icon-provider { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-provider-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-provider,
.sidebar-nav-item a.active .nav-icon-provider { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-provider-on.svg'); }

/* Reviews */

.nav-item-icon.nav-icon-review {
    background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/dec2016/ic-b-recommend.svg');
    background-size: 25px auto;
    background-position: 3px 3px;
}
.sidebar-nav-item a:hover .nav-icon-review,
.sidebar-nav-item a.active .nav-icon-review { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/dec2016/ic-b-recommend-on.svg'); }
/* Settings */

.nav-item-icon.nav-icon-settings { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-settings-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-settings,
.sidebar-nav-item a.active .nav-icon-settings { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-settings-on.svg'); }

/* Appointments */

.nav-item-icon.nav-icon-appointments {
    background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/nov2017/ic-calendar-off.svg');
    background-position: 5px 4px;
}

.sidebar-nav-item a:hover .nav-icon-appointments,
.sidebar-nav-item a.active .nav-icon-appointments { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/nov2017/ic-calendar-on.svg'); }

/* Billing */

.nav-item-icon.nav-icon-billing { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-billing-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-billing,
.sidebar-nav-item a.active .nav-icon-billing { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-billing-on.svg'); }


/* Manage User */

.nav-item-icon.nav-icon-manage-user {  background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-manage-user-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-manage-user,
.sidebar-nav-item a.active .nav-icon-manage-user { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-manage-user-on.svg'); }

/* Verification */

.nav-item-icon.nav-icon-verification { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-verify-usr-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-verification,
.sidebar-nav-item a.active .nav-icon-verification { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-verify-usr-on.svg'); }

/* Link Practice */

.nav-item-icon.nav-icon-link-practice { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-link-practice-off.svg'); }

.sidebar-nav-item a:hover .nav-icon-link-practice,
.sidebar-nav-item a.active .nav-icon-link-practice { background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/images/july2016/ic-link-practice-on.svg'); }


/* IE 11 Only Icon Fix
------------------------------- */

@media all and (-ms-high-contrast:none) {

    /*.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-icon {*/
        /*width: 32px;*/
        /*height: 32px;*/
        /*display: block;*/
        /*float:left;*/
    /*}*/

    /*.sidebar .sidebar-nav-list > .sidebar-nav-item .nav-item-text {*/
        /*display: block;*/
        /*float: left;*/
        /*width: 215px;*/
    /*}*/


    /* Dashboard */

    .nav-item-icon.nav-icon-dashboard {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-home-on-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-dashboard,
    .sidebar-nav-item a.active .nav-icon-dashboard {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-home-on-32x32.png');
        background-position: 0 -32px;
    }

    /* Practice */

    .nav-item-icon.nav-icon-practice {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-practice-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-practice,
    .sidebar-nav-item a.active .nav-icon-practice {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-practice-32x32.png');
        background-position: 0 -32px;
    }

    /* Provider */

    .nav-item-icon.nav-icon-provider {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-provider-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-provider,
    .sidebar-nav-item a.active .nav-icon-provider {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-provider-32x32.png');
        background-position: 0 -32px;
    }

    /* Settings */

    .nav-item-icon.nav-icon-settings {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-settings-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-settings,
    .sidebar-nav-item a.active .nav-icon-settings {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-settings-32x32.png');
        background-position: 0 -32px;
    }

    /* Billing */

    .nav-item-icon.nav-icon-billing {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-billing-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-billing,
    .sidebar-nav-item a.active .nav-icon-billing {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-billing-32x32.png');
        background-position: 0 -32px;
    }

    /* Manage User */

    .nav-item-icon.nav-icon-manage-user {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-manage-user-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-manage-user,
    .sidebar-nav-item a.active .nav-icon-manage-user {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-manage-user-32x32.png');
        background-position: 0 -32px;
    }

    /* Verification */

    .nav-item-icon.nav-icon-verification {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-verify-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-verification,
    .sidebar-nav-item a.active .nav-icon-verification {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-verify-32x32.png');
        background-position: 0 -32px;
    }

    /* Link Practice */

    .nav-item-icon.nav-icon-link-practice {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-link-practice-32x32.png');
        background-position: 0 0;
    }

    .sidebar-nav-item a:hover .nav-icon-link-practice,
    .sidebar-nav-item a.active .nav-icon-link-practice {
        background-image: url('https://d3ppyoxr8wczcq.cloudfront.net/assets/icons/ic-link-practice-32x32.png');
        background-position: 0 -32px;
    }

}

/* IE Sidebar Fix (Ext Nav)
------------------------------- */

#external-left-nav {
    min-height: 100vh;
}


/* Verification icon styling
------------------------------- */

.sidebar .validationErrorText > img {
    width: 30px;
    height: 30px;
}



/*********************** BRIGHTER STAR RATING STYLING ***********************/

.star-wrapper {background: url('https://d3ppyoxr8wczcq.cloudfront.net/images/jan2016/brighter-stars-sprite.png') no-repeat;
    width: 107px;
    height: 26px;
    display:inline-block;
}
.bstar0 {background-position: 0 -300px}
.bstar1 {background-position: 0 -240px}
.bstar1_1 {background-position: 0 -240px}
.bstar1_2 {background-position: 0 -240px}
.bstar1_3 {background-position: 0 -240px}
.bstar1_4 {background-position: 0 -240px}
.bstar1_5 {background-position: 0 -210px}
.bstar1_6 {background-position: 0 -210px}
.bstar1_7 {background-position: 0 -210px}
.bstar1_8 {background-position: 0 -210px}
.bstar1_9 {background-position: 0 -210px}
.bstar2 {background-position: 0 -180px}
.bstar2_1 {background-position: 0 -180px}
.bstar2_2 {background-position: 0 -180px}
.bstar2_3 {background-position: 0 -180px}
.bstar2_4 {background-position: 0 -180px}
.bstar2_5 {background-position: 0 -150px}
.bstar2_6 {background-position: 0 -150px}
.bstar2_7 {background-position: 0 -150px}
.bstar2_8 {background-position: 0 -150px}
.bstar2_9 {background-position: 0 -150px}
.bstar3 {background-position: 0 -120px}
.bstar3_1 {background-position: 0 -120px}
.bstar3_2 {background-position: 0 -120px}
.bstar3_3 {background-position: 0 -120px}
.bstar3_4 {background-position: 0 -120px}
.bstar3_5 {background-position: 0 -90px}
.bstar3_6 {background-position: 0 -90px}
.bstar3_7 {background-position: 0 -90px}
.bstar3_8 {background-position: 0 -90px}
.bstar3_9 {background-position: 0 -90px}
.bstar4 {background-position: 0 -60px}
.bstar4_1 {background-position: 0 -60px}
.bstar4_2 {background-position: 0 -60px}
.bstar4_3 {background-position: 0 -60px}
.bstar4_4 {background-position: 0 -60px}
.bstar4_5 {background-position: 0 -30px}
.bstar4_6 {background-position: 0 -30px}
.bstar4_7 {background-position: 0 -30px}
.bstar4_8 {background-position: 0 -30px}
.bstar4_9 {background-position: 0 -30px}
.bstar5 {background-position: 0 0px}

/*#perf-procedures .nav-tabs > li > a:hover,*/
/*#fee-schedules-tab .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus,*/
/*#perf-procedures .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {*/
    /*min-height: 166px;*/
/*}*/



#practice-profile-tabs {
    padding: 15px 30px;
    margin: 0 -35px 0;
    border-top: 1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5;
}

#practice-profile-tabs > p {
    margin-bottom: 0;
    font-weight: 300;
}

#practice-profile-tabs > li {
    margin-right: 20px;
}

#practice-profile-tabs > li > a{
    color: #158ccc;
    text-decoration: none;
    font-weight:300;
    text-transform: uppercase;
}

#practice-profile-tabs > li > a:hover, #practice-profile-tabs .selected a {
    color: #000000;
}

#provider-select-tabs {
    padding: 12px 30px;
    margin: 0 -35px 0;
    border-top: 1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5;
}
#provider-select-tabs p {
    line-height: 28px;
    margin: 0;
    font-weight: 300;
}
#provider-select-tabs .btn-group {
    margin-top: 5px;
}
#provider-select-tabs label {
    border-right: 1px solid #158ccc;
    line-height: 14px;
    padding:0 12px;
    font-weight: 300;
}
#provider-select-tabs label.active {
    font-weight: 400;
    color: #000000;
}
#provider-select-tabs label:last-of-type {
    border-right: none;
}

/*****************************
    PRACTICE INFO STYLING
*****************************/

.general-header {
    font-size: 22px;
    margin: 40px 0 35px;
    line-height: 28px;
    color: #25356c;
}
.general-header + .error-label {
   margin-top: 40px;
}
.edit-pill {
    font-weight: 400;
    font-size: 11px;
    font-weight: 400;
    margin-left: 15px;
    padding: 3px 14px;
}
.general-header .edit-pill {
    margin-left: 0;
}
#practice-info .form {
    border: 1px solid #d4d4d5;
}
#practice-info section {
    padding: 20px;
    border-bottom:1px solid #d4d4d5;
}
#practice-info section:last-of-type {
    border-bottom:none;
}
#practice-info section.row {
    padding: 0;
}


#practice-info section.row > div:first-of-type {
    border-right: 1px solid #d4d4d5;
}
#practice-info section.row > div {
    padding: 15px;
}

#practice-info.verification-info section.row.nested > div {
    padding: 0;
}



#practice-info section label {
    font-weight:300;
    font-size: 12px;
    margin-bottom: 6px;
    color: #616161;
    text-transform: uppercase;

}

#practice-info section .sub-label {
    font-weight:300;
    font-size: 11px;
    margin-bottom: 15px;
    color: #616161;
}
#practice-info section p, #practice-info address {
    font-size: 16px;
    font-weight:300;
    margin-bottom:5px;
}

#practice-info .angular-google-map-container {
    height: 383px;
    margin-top: 102px;
}

.section-header {
     margin: 20px 0;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
}
.section-header a {
    font-weight: 400;
    font-size:11px;
    padding: 3px 14px;
    margin-left:15px;
    margin-top: -2px;
}
.section-header #appt-data-btn {
    font-size: 11px;
    padding: 3px 20px;
    margin-top:-2px;
    margin-left: 10px;
}
.section-header + p {
    font-weight: 300;
}
.section-header + .error-label {
    margin-top: 40px;
}
.info-section .deleteConfirmation {
    margin-top: 6px;
}
#practice-photos, #provider-photos {
    display: table;
    margin-bottom:-30px;
}
#practice-photos .section-header + p {
    margin-bottom:20px;
}
#practice-photos .photo-list > li {
    height: 140px;
    width: 210px;
    padding: 5px;
}
.practice-photo-left, #provider-photos .profile-info {
    float: none;
    display: table-cell;
}
#provider-photos div.no-photo-wrapper a {
    width: 100%;
}
.photo-tips-right {
    border-left:1px solid #d4d4d5;
    padding-right: 10px;
    vertical-align: top;
    display: table-cell;
    float: none;
}
.photo-tips-right .inner {
    padding: 40px 0 20px 15px;
}
.photo-tips-right h2 {
    width: 100%;
    border-bottom:1px solid #d4d4d5;
    line-height: 0.1em;
    margin-bottom:50px;
}
.photo-tips-right h2 span {
    background: #ffffff;
    padding: 0 10px 0 0;
    font-size:18px;
}
.photo-tips-right h5 {
    font-weight: 400;
    font-size: 16px;
}
.photo-tips-right img {
    width: 100%;
    margin: 15px 0 20px;
}
.photo-tips-right .text-list {
    padding-left: 10px;
}
.photo-tips-right .text-list li {
    font-weight: 300;
    margin-bottom:20px;
    list-style-type: none;
}



.text-list-dash li:before {
    content: '-';
    padding-right: 3px;
    margin-left: -10px;
}
#practice-photos .photo-list .name {
    text-align: center;
    color: #158ccc;
    font-weight: 300;
    margin: 15px 0 0;
}
.photo-list li > div.no-photo-wrapper {
    background: #f9f9f9;
}


.photo-list li > div.no-photo-wrapper a {
    text-align: center;
    position: relative;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    width: 198px;
    height: 128px;
    padding-top: 85px;
}

.photo-list li > div.no-photo-wrapper a img {
    position: absolute;
    right: 0;
    left: 0;
    top: 51px;
    bottom: 0;
    width: 80px;
    height: 80px;
}


.photo-list li > div.no-photo-wrapper:hover img {
    opacity:1;
}
#practice-photos #highlight-photos > li {
    margin-bottom:40px;
}

#provider-experience .photo-list li > div.no-photo-wrapper a {
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

#provider-experience .photo-list li > div.no-photo-wrapper a img {
    top: 63px;
}

#provider-certification {
    font-size: 16px;
    padding: 15px 30px;
    margin: 0 -35px 0;
    border-top: 1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5;
}

#provider-certification-aside .certification-box {
    padding: 45px;
}

#provider-certification-aside .btn.cert-add{
    border-radius: 24px;
    font-size: 14px;
    padding: 6px 28px;
    text-transform: uppercase;
}
/*****************************
    FEE SCHEDULES TAB STYLING
*****************************/

.set-width-tabs .tab-wrapper {
    width: 900px;
    display: flex;
    overflow-x: scroll;
}
.set-width-tabs .tab-wrapper .nav-tabs {
    display: flex;
}
.set-width-tabs .provider-image {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}
.tab-wrapper li:not(.active) img  {
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    filter: grayscale(100%);
}
/*****************************
    scrolling tabs css
*****************************/
#fee-schedules-tab .nav-tabs > li > a {
    min-height: 166px;
}
#fee-schedules-tab .provider-name, #perf-procedures .provider-name {
    margin-top: 10px;
    color: #158ccc;
    font-weight: 300;
    text-align: center;
    font-size: 12px;
}


.scrtabs-tab-container * {
    box-sizing: border-box;
}

.scrtabs-tab-container {
    height: 42px;
}

.scrtabs-tab-container .tab-content {
    clear: left;
}

.scrtabs-tab-wrapper-container.force-height {
    height: 42px;
}

.scrtabs-tabs-fixed-container {
    float: left;
    height: 192px;
    overflow: hidden;
    width: 100%;
}

.scrtabs-tabs-movable-container {
    position: relative;
}

.scrtabs-tabs-movable-container .tab-content {
    display: none;
}

.scrtabs-tab-scroll-arrow {
    border: 1px solid #dddddd;
    margin-top: 61px;
    color: #428bca;
    cursor: pointer;
    float: left;
    width: 20px;
}

.scrtabs-tab-scroll-arrow:hover {
    background-color: #eeeeee;
}

.scrtabs-tabs-fixed-container ul.nav-tabs > li {
    white-space: nowrap;
}

.scrtabs-tab-content-outside-movable-container {
    clear: left;
}

.scrtabs-tab-content-outside-movable-container .nav-tabs {
    display: none;
}

/***********************************
    FEE SCHEDULES CONTENT STYLING
************************************/

#fee-schedule .section-header {
    margin-left: 10px;
}
#fee-schedule table {
    border-top:1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5;
}
#fee-schedule table th {
    padding: 14px 12px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
}
#fee-schedule table td {
    font-weight:300;
    padding: 14px 12px;
    vertical-align: middle;
}
#fee-schedule table .pill {
    font-weight: 300;
}
#fee-schedule table .plan-name {
    text-transform: uppercase;
}

#fee-schedule .btn-group label {
    border-right:1px solid #158ccc;
    font-weight: 300;
    line-height:12px;
    padding: 0 12px;
}
#fee-schedule .btn-group label:last-of-type {
    border-right: none;
}
#fee-schedule .btn-group label.active {
    color: #000000;
    font-weight: 400;
}
#fee-schedule .no-result {
    border-bottom: 1px solid #d4d4d5;
    border-top: 1px solid #d4d4d5;
    font-size: 14px;
    font-weight: 300;
    padding: 20px 0 20px 11px;
}
/***********************************
        OFFICE HOURS STYLING
***********************************/

.full-bordered-header {
    border-top:1px solid #d4d4d5;
    border-bottom:1px solid #d4d4d5;
}
#office-hours .full-bordered-header {
    padding: 25px 0 25px 35px;
    margin-left: -35px;
    margin-top:35px;
}
.office-days label {
    color: #25356c;
    font-weight: 400;
    margin-bottom:0;
}
.office-days .bottom-label {
    margin-top: 20px;
}
.office-days .limited-label {
    margin-top: 20px;
    color: rgb(208, 68, 55);
}
.new-hours-edit .select-btn-time.time-select {
    width: 150px;
    display: block;
    background: #ffffff url("https://d3ppyoxr8wczcq.cloudfront.net/images/mar2015/arrow-down.png") no-repeat scroll 93% center / 30px auto;
}

/***********************************
       NEW ON OFF SWITCH STYLING
***********************************/

.onoffswitch {
    position: relative;
    width: 76px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
}

.onoffswitch-header {
    margin-right: 20px;
    font-size: 16px;
    padding-top: 3px;
    font-weight: 100;
}

.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 22px;
}
.onoffswitch-inner, .yesNoswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after, .yesNoswitch-inner:before, .yesNoswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 28px;
    padding: 0;
    line-height: 28px;
    font-size: 15px;
    color: white;
    font-weight: 500;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 20px;
    background-color: #158ccc;
    color: #FFFFFF;
}
.yesNoswitch-inner:before {
    content: "YES";
    padding-left: 20px;
    background-color: #158ccc;
    color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 15px;
    background-color: #158ccc; color: #ffffff;
    text-align: right;
}

.yesNoswitch-inner:after {
    content: "NO";
    padding-right: 15px;
    background-color: #158ccc; color: #ffffff;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
    width: 18px;
    height: 18px;
    margin: 5px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 48px;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .onoffswitch-checkbox:checked + .onoffswitch-label .yesNoswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .onoffswitch-checkbox:checked + .onoffswitch-label .yesNoswitch-inner {
    right: 0px;
}


/***********************************
       ONLINE REVIEWS STYLING
***********************************/

.table-box .deleteConfirmation .btn {
    font-size: 14px;
    font-weight: 100;
}

#online-reviews .table-box .action-list li .deleteConfirmation {
    margin-top: 4px;
}

#online-reviews .table-box .action-list li .deleteConfirmation .btn.btn-link,
#online-reviews .table-box .action-list li .deleteConfirmation .btn.btn-primary {
    margin-top: -4px;
}

#online-reviews .tab-wrapper {
    margin-left: -35px;
}
#online-reviews .nav-tabs > li:first-of-type {
    margin-left: 35px;
}
#online-reviews .nav-tabs li a {
    padding: 15px 30px;
}
#online-reviews .nav-tabs img {
    width: 90px;
    position: relative;
}

.tab-review-logo {
    display: block;
    height: 50px;
}

.tab-review-logo:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.rating-star-list {
    margin-left: 20px;
    margin-bottom: 0;
}

.rating-star-list .rating-star {
    width: 30px;
    padding: 0 2px;
}

.rating-star-list .rating-star img {
    width: 100%;
}

.review-table td.photo-cell {
    vertical-align: middle;
}

.review-table .review-table-header {
    height: 50px;
}

.review-table .review-table-header h4 {
    margin-top: 5px;
}

.table-bordered .deleteConfirmation .btn-danger {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
}

h4.review-rating-header {
    padding-top: 6px;
}

.review-rating.yelp-rating, .star-list.rating-list {
    margin-left: 20px;
}
.star-list.rating-list > li {
    width: 30px;
}
.star-list.rating-list > li > img {
    width: 100%;
}
.review-aside-header {
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 25px;
}

.review-aside-header > .review-profile-type {
    font-weight: 400;
}

.review-aside-content {
    border: solid #d4d4d4 1px;
    padding: 30px 30px 100px 30px;
}

.review-aside-content .radio-options {
    padding-top: 10px;
    padding-left: 0px;
}
.review-aside-btn {
    border-radius: 24px;
    font-size: 16px;
    padding: 8px 30px;
    text-transform: uppercase;
    margin: 10px 20px 0 0;
}

.aside-half-input-r {
    padding-right: 0;
}

.aside-half-input-l {
    padding-left: 0;
}

.review-label {
    margin-top: 10px;
    margin-left: 0;
    font-weight: 100;
    font-size: 15px;
    padding-left: 0;
    margin-bottom: 12px;
}

#online-reviews .nav-tabs{
    display: flex;
}
#online-reviews .nav-tabs li {
    display: flex;
    flex: 1;
}

#online-reviews .nav-tabs li  a {
    flex: 1;
    text-align: center;
}

.custom-provider-profile-form {
    padding:30px 30px 40px 30px;
    border:1px solid #d4d4d5;
}


.custom-provider-profile-form > .btn {
    border-radius: 24px;
    font-size: 16px;
    padding: 8px 30px;
    text-transform: uppercase;
}

.custom-provider-profile-form > ul > li{
    padding-top:10px;
    padding-bottom:10px;
}

.custom-provider-profile-form > ul > li .radio-group {
    border:none;
    padding-left:0;
}

.custom-provider-profile-form .radio-group input.css-radio[type="radio"] + label.radio-label{
    font-size:15px;
    text-transform: none;
    font-weight: 100;
}

.score-section li {
    padding-left: 0;
}
.custom-provider-profile-form ul li .notes-container label{
    font-size: 1.2em;
    font-weight: 100;
}

/***********************************
       TABLE BOX STYLING
***********************************/

.table-box >tbody > tr >  td {
    padding: 20px;
}

.table-box >tbody > tr >  td.edit-delete-row {
    padding: 15px 20px;
}

td.edit-delete-row .deleteConfirmationSection .btn:hover {
    color: #23527c;
}

td.edit-delete-row .deleteConfirmationSection .btn-primary {
    background: #158ccc;
    color: #fff;
    border-radius: 5px;
}

td.edit-delete-row .deleteConfirmationSection .btn-primary:hover {
    background: #23527c;
    color: #fff;
}

.info-section .deleteConfirmation .btn {
    border-radius: 5px;
}

.photo-cell {
    width: 160px;
    height: 160px;
}
.photo-cell a {
    display: block;
    font-weight: 400;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.photo-cell img {
    display: block;
    margin: 0 auto 10px;
}
.table-box h4 {
    display: inline-block;
    margin: 0;
}
.table-box label {
    display: block;
    font-weight:300;
    font-size: 12px;
    color: #434343;
    text-transform: uppercase;
}
.table-box a, .table-box p {
    font-size: 14px;
    font-weight: 300;

}
.table-box p {
    margin-bottom:0;;
}
.table-box p img {
    width: 30px;
}
.table-box .top-header {
    font-size:16px;
    font-weight: 400;
}
.table-box .top-header span {
    font-weight: 300;
    font-size: 14px;
}
.table-box h4 a {
    font-size: 18px;
    font-weight: 400;
}
.table-box .action-list li {
    padding: 0 8px;
    line-height: 14px;
    height: 25px;
    vertical-align: middle;
    text-transform: uppercase;
}

.table-box .action-list li a {
    display: block;
    padding-top: 5px;
}

.table-box .action-list li:not(:last-of-type) {
    border-right: 1px solid #000;
}
.table-box .action-list li .btn-danger {
    background: transparent;
    font-weight:300;
    margin-top: 5px;
    padding:0;
    color: #158ccc;
    border:none;
}
.table-box .exclude {
    background: #f7f7f7;
    vertical-align: middle;
}
.table-box .exclude p {
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}
.table-box .star-wrapper {
    margin-top: -5px;
    margin-left: 20px;
    vertical-align: middle;
}


/***********************************
       BILLING INFORMATION STYLING
***********************************/

#billing-info .info-section-header {
    border-bottom:1px solid #d4d4d5;
    margin-left: -35px;
    padding-left: 35px;
    padding-bottom:40px;
}
#billing-info .action-list li a {
    font-size: 12px;
}
#billing-info .action-list li .delete-btn-group button {
    margin-top: -2px;
}
#billing-info .top-header span {
    padding-right: 5px;
}

/***********************************
       PROVIDER PHOTO STYLING
***********************************/

#provider-photo .photo-cell {
    border: 1px solid #d4d4d5;
    margin-bottom:20px;
}

/***********************************
       PROVIDER LICENSE STYLING
***********************************/

#provider-license .table-box {
    margin-bottom:30px;
}

/**********************************************
       EXISTING PHOTO UPLOAD ASIDE STYLING
************************************************/
.existing-photo-aside {
    /*min-width: 1195px;*/
}
.existing-photo-aside .aside-dialog .aside-body  {
 padding: 15px 30px;
}
.existing-photo-aside .photo-list li a.edit {
    top: 25px;
    right: 25px;
}


/**********************************************
       PROVIDER ACTIVATION ACCESS CODE STYLING
************************************************/
#provider-activation .med-pill {
    padding: 6px 26px;
}
#provider-activation .activation-content {
    padding-top: 70px;
}
#provider-activation .banner {
    background: #ffffff url("https://d3ppyoxr8wczcq.cloudfront.net/images/sept2016/bg-provider-pin.png") no-repeat scroll center top / auto 100%;
    position: relative;
    min-width: 1000px;
    min-height: 600px;
    color: #4a4a4a;
    border-bottom: 1px solid #d4d4d5;
}
#provider-activation .banner > .new-wrapper {
    /*padding-left: 10%;*/
}
#provider-activation .activation-container {
    max-width: 1200px;
    min-width: 1000px;
}
#provider-activation #logo-header img {
    width: 150px;
    margin-right: 40px;
}
#provider-activation h1 {
    font-weight: 400;
    font-size: 22px;
    margin-top:40px;
}
#provider-activation h3 {
    font-weight: 300;
    font-size: 16px;
    margin-top: 15px;
}
#provider-activation form {
    margin-top: 30px;
    margin-bottom:40px;
    width: 310px;
}
#provider-activation form label {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    display: block;
    margin-bottom:10px;

}
#provider-activation #phone-number-group {
    margin: 20px 0 25px;
}
#provider-activation #phone-number-group input {
    height: 40px;
    padding: 6px 12px;
    border: 1px solid #cccccc;
}
#provider-activation form input[type="tel"] {
    width: 80px;
    text-align: center;
}
#provider-activation form input[type="tel"]:last-of-type {
    width: 92px;
}
#provider-activation #phone-number-group span {
   padding: 0 9px;
}
#provider-activation p.notes {
    color: #000000;
    font-size: 12px;
}
#provider-activation #carriers {
    padding: 40px 15px;
    position: relative;
}
#provider-activation #carriers p {
    font-size: 11px;
    font-weight: 300;
    color: #747474;
    margin-bottom:20px;
}
/*#provider-activation #carriers img {*/
   /*height: 31px;*/
    /*width: auto;*/
/*}*/
#provider-activation #carriers #devices {
    width: 500px;
    height: auto;
}
#provider-activation .verify-devices-wrapper {
    height: 585px;
    position: relative;
}
#provider-activation img.verify-devices {
    position: absolute;
    left: -147px;
    bottom: -135px;
    width: 130%;
    max-width: 570px;
}
#provider-activation img#cigna {
    width: 125px;
    height: auto;
    margin-right: 25px;
}
#provider-activation img#aetna {
    width: 82px;
    height: auto;
}

#provider-activation img#delta {
    width: 194px;
    margin-left: 20px;
    height: auto;
}
#provider-activation .error-msg {
    color: #c13b3c;
    font-weight: 300;
    font-size: 12px;
    margin: -10px 0 15px;
}
.prov-activation-wrapper {
    height: 100%;
    min-width: 1400px;
}
.prov-activation-img {
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/photos/img-prov-activation-bg_1800.jpg");
    background-repeat: no-repeat;
    background-size: 900px;
    background-position: center right;
    height: 100%;
}
.prov-activation-img.contact-thanks {
    background-image: url("https://d3ppyoxr8wczcq.cloudfront.net/assets/photos/img-cs-rep_2880x1800.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top right;
    height: 100%;
}
#provider-activation .contact-thanks-header {
    font-weight: 300;
    line-height: 55px;
    font-size: 34px;
    margin-bottom: 30px;
}
#provider-activation .contact-thanks-subHeading {
    color: #333333;
    font-weight: 300;
    font-size: 24px;
}
#provider-activation.prov-activation-wrapper form label {
    color: #333333;
    text-transform: inherit;
    font-size: 16px;
    font-weight: 300;
}
#provider-activation.prov-activation-wrapper input {
    color: #333333;
    font-weight: 400;
    font-size: 16px;
}
.activation-label-req {
    color: #C13B3C;
}
#provider-activation.prov-activation-wrapper .label-float input:focus ~ label,
#provider-activation.prov-activation-wrapper .label-float label.non-empty,
#provider-activation.prov-activation-wrapper .label-float textarea:focus ~ label {
    font-size: 12px;
}
.prov-activation-wrapper .activation-logo {
    padding-bottom: 25px;
    border-bottom: solid #ccc 1px;
}
.prov-activation-wrapper .activation-logo img {
    width: 126px;
}
.prov-activation-body {
    width: 440px;
    margin-top: 50px;
}
#provider-activation .prov-activation-form {
    width: 100%;
    margin-top: 10px;
}
#provider-activation .prov-activation-form-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    margin-top: 20px;
}

#provider-activation .prov-activation-header {
    color: #26356C;
    font-size: 40px;
    font-weight: 300;
    line-height: 56px;
}
#provider-activation .prov-activation-text {
   font-size: 16px;
   font-weight: 300;
   line-height: 28px;
   margin-bottom: 30px;
}
#provider-activation .activation-req {
    color: #C13B3C;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    margin: 0;
}

#provider-activation.prov-activation-wrapper .btn {
    width: 230px;
    font-size: 18px;
    border-radius: 30px;
    margin-top: 20px;
    padding: 15px 0;
}
#confirm-content {
    color: #4a4a4a;
    padding:50px 0 100px;
    width: 400px;
    margin: 0 auto;
    font-weight: 300;
}
#confirm-content h2 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom:20px;
}
#confirm-content #code {
    border-bottom: 1px solid #d4d4d5;
    border-top: 1px solid #d4d4d5;
    margin: 20px 0 30px;
    padding: 10px 0;
}
#confirm-content address {
    margin-bottom:8px;
}
#confirm-content address span {
   padding: 0 5px;
}
#confirm-content button {
    font-weight: 300;
    padding:12px 36px;
    margin: 20px 0 40px;
}

/**********************************************
      NEW GENERAL PRACTICE INFO STYLING  5/5/2017
************************************************/
#gen-practice-info {
    display: flex;
    display: -ms-flexbox;
    margin: 40px 5px;
}
#gen-practice-info .info-item {
    border: 1px solid #d4d4d5;
    flex-grow: 1;
    -ms-flex-grow: 1;
    /*min-width: 724px;*/
}
#gen-practice-info section  {
    border-bottom: 1px solid #d4d4d5;
    padding: 30px;
}
#gen-practice-info section:last-of-type {
    border-bottom: none;
}
#gen-practice-info section label {
    font-weight: 300;
    font-size: 12px;
    color: #000000;
    text-transform: uppercase;
}
#gen-practice-info section .edit {
    text-transform: capitalize;
    font-size: 12px;
}
#gen-practice-info section p, #gen-practice-info section address {
    font-size: 16px;
    color: #333333;
}
#gen-practice-info section p.note {
    font-size: 10px;
    font-weight: 300;
    color: #000000;
}
#gen-practice-info section table {
    width: 100%;
}
#gen-practice-info section table tr > td:first-of-type {
    border-right: 1px solid #d4d4d5;
    padding-left: 0;
    width: 180px;
}
#gen-practice-info section table td {
    padding: 10px 25px;
}
#gen-practice-info section table label {
    text-transform: capitalize;
    font-size: 14px;
    margin: 0;
}
#gen-practice-info section table p {
    margin: 0;
}
#gen-practice-info section table tr:not(:first-of-type) {
    border-top: 1px solid #d4d4d5;
}
#gen-practice-info .map-item {
    padding: 25px;
    border: 1px solid #d4d4d5;
    border-left: none;
}
#gen-practice-info .map-item .map-holder {
    width: 280px;
    height: 353px;
}
#gen-practice-info .angular-google-map-container {
    height: 353px;
}

#gen-practice-info .info-item #street2{
    margin-left: 6px;
}

/***************************************************************
      NEW GENERAL PRACTICE INFO ASIDE STYLING  5/8/2017
***************************************************************/

.section-box {
    padding: 35px;
    border: 1px solid #d4d4d5;
    margin-bottom: 20px;
}
.section-box label {
    color: #000000;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-box input[type=text] {
    font-size: 14px;
    color: #333333;
    height: auto;
    font-weight: 300;
    padding: 15px;
}
.aside-footer-new {
    padding-left: 0;
    margin: 30px 0;
}
.aside-footer-new .pill {
    font-size: 14px;
    font-weight: 400;
    width: 124px;
    height: 34px;
    border-radius: 30px;
}
.section-box .padding-cell {
    padding: 0 20px;
}
.practice-info-edit-aside .section-box .cell-select {
    width: 300px;
}
.practice-info-edit-aside .section-box .cell-input {
    width: 400px;
}
.aside-body .section-box .select-btn {
    height: 52px;
    margin-bottom:0;
}
.aside-footer-new .auto-width.pill {
    width: auto;
}
.section-box .delete-link {
    top: 41px;
    position: relative;
    font-weight:300;
}
#practiceInfo-phone .table-wrapper:not(:last-of-type) {
    margin-bottom:30px;
}
#practiceInfo-phone .phone-error {
    font-size: 12px;
    font-weight: 300;
    color: #c13b3c;
    margin: 10px 0 0;
}

#practiceInfo-email .phone-error {
    font-size: 12px;
    font-weight: 300;
    color: #c13b3c;
    margin: 10px 0 0;
}

#practiceInfo-email .form-control-email {
    padding: 10px 12px;
    margin: 0;
    border-radius: 0;
    height: 52px;
}
#practiceInfo-fax .table-wrapper:not(:last-of-type) {
    margin-bottom:30px;
}
#practiceInfo-fax .phone-error {
    font-size: 12px;
    font-weight: 300;
    color: #c13b3c;
    margin: 10px 0 0;
}

#pratice-Info-site .phone-error {
    font-size: 12px;
    font-weight: 300;
    color: #c13b3c;
    margin: 10px 0 0;
}


/* Info Grid + Nested Info Grid Component
-------------------------------------------------- */

/* Info Grid In Aside */

.aside.wide .table.table-bordered.table-box {
    min-width: 790px;
}

.aside-caption {
    display: block;
    font-size: 16px;
    text-transform: initial;
    padding-top: 15px;
}

.table-bordered.table-speciality-list {
    border-bottom: none;
}

.aside-body .table-bordered .delete-list li:last-child {
    padding-bottom: 20px;
}

.aside-body .table-bordered > thead > tr > td,
.aside-body .table-bordered > tbody > tr > td,
.aside-body .table-bordered > tfoot > tr > td {
    border: none;
}

.aside-body .table-bordered td.info-list-nested .info-list-header {
    font-size: 13px;
    font-weight: 500;
}

.aside-body .table-bordered input {
    width: 100%;
}

.aside-body .table-bordered .radio-group {
    margin: 17px 0;
}

.aside-body .table-bordered .radio-group input.css-radio[type="radio"] + label.radio-label {
    text-transform: initial;
}

.aside-body .table-bordered .speciality-list {
    border: 0;
    padding: 0;
    margin: 0 20px 20px 20px;
}

.aside-body .table-bordered .speciality-list li {
    padding: 19px 0 14px;
    width: 48%;
}

.aside-body .table-bordered .speciality-list li label {
    text-transform: initial;
}

.aside-body .table-bordered .speciality-list li:nth-child(odd) {
    float: left;
    margin-right: 1%;
}

.aside-body .table-bordered .speciality-list li:nth-child(even) {
    float: right;
    margin-left: 1%;
}

.table-dropdown.table-dropdown-suffix .dropdown-menu {
    width: 85px;
}

.table-dropdown.table-dropdown-license-state .dropdown-menu {
    max-width: 17.5%;
}

.table-dropdown.table-dropdown-license-type .dropdown-menu {
    max-width: 300px;
}

/* COMPONENT: Info Grid + Nested Info Grid */
.table-box .info-list-nested {
    padding: 0;
}
.table-box .info-list-state {
    text-align: center;
}
.table-box .info-list-degree {
    text-align: center;
    vertical-align: middle;
}
.table-box .info-list-degree h3 {
    font-size: 32px;
    font-weight: 300;
    padding-top: 6px;
}
.details-expand {
    padding: 8px 0;
}
.table-box .details-expand a span {
    text-transform: uppercase;
    font-size: 12px;
}
.table-box .details-expand a span.glyphicon {
    vertical-align: top;
    margin-left:5px;
    margin-top: 2px;
    font-size: 14px;
}

td.info-list-nested table.additional-info-table {
    padding-bottom: 20px;
    border-bottom: none;
}

td.info-list-nested table.additional-info-table tr > td {
    padding: 20px;
}

td.info-list-nested table.additional-info-table tr.first-element td,
.table-box > tbody > tr.first-element > td {
    padding-bottom: 0;
}

td.info-list-nested table.additional-info-table tr.last-element td,
.table-box > tbody > tr.last-element >  td {
    padding-top: 0;
}

td.info-list-nested table.additional-info-table td.above-button {
    padding-bottom: 0;
}

td.info-list-nested table.additional-info-table.multi-row td {
    padding-bottom: 0;
}

td.info-list-nested table.additional-info-table:nth-child(odd) th {
    border-top: solid #ddd 1px;
}

td.info-list-nested table.additional-info-table:nth-child(1) th {
    border-top: none;
}

td.info-list-nested table.additional-info-table.multi-row tr:last-of-type td {
    padding-bottom: 20px;
}

td.info-list-nested table > tbody > tr > td > table > tbody > tr > td {
    padding: 25px 30px 25px 30px;
}

td.info-list-nested table > tbody > tr > td > table > tbody > tr > td.nested-subheader {
    padding: 15px 30px 15px 30px;
}

td.info-list-state h3 {
    font-size: 42px;
    font-weight: 300;
}

.table-box > tbody > tr > td.info-list-nested .nested-header-btn {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
    margin-left: 15px;
}

.nested-header-btn.nested-header-divide {
    border-right: solid #ddd 1px;
}

.table-box > tbody > tr > td.info-list-nested .btn {
    margin-right: 15px;
    font-size: 11px;
    font-weight: 400;
}

td.info-list-nested table {
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
}

.confirm-yes-no-license,
.delete-button-license {
    margin-top: -4px;
}

td.info-list-nested table.second-nest {
    border: solid #ccc 1px;
    margin-bottom: 25px;
}

td.info-list-nested table th {
    background-color: #F2F2F2;
    padding-left: 20px;
}

td.info-list-nested.bordered table th,
td.info-list-nested.bordered table td {
    border-right: solid #ddd 1px;
}

td.info-list-nested table th,
td.info-list-nested table td {
    border-top: none;
    border-left: none;
}

td.info-list-nested table td.v-align {
    vertical-align: middle;
}

td.info-list-nested table td.disciplinary-action-nest {
    padding: 25px;
}

td.info-list-nested table td.button-row {
    padding-top: 10px;
    padding-bottom: 30px;
}

td.info-list-nested table .select-all-toggle {
    padding-right: 15px;
}


td.info-list-nested table th:last-child {
    border-right: none;
}

td.info-list-nested table th.shaded-header {
    border-bottom: solid #ddd 1px;
}

td.info-list-nested table td:last-child {
    border-right: none;
}

td.info-list-nested .info-list-header {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
}

td.info-list-nested .info-list-subheader {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    margin-right: 50px;
    margin-left: 20px;
    margin-top: 10px;
    max-width: 400px;
}

.info-list.photo-cell-wrapper,
.info-list td.photo-cell {
    width: 175px;
}

/* Photo Cell Component
-------------------------------------------------- */

#single-photo li.photo-test,
#group-photo .photo-list > li,
#cell-photo,
#cell-photo .photo-list > li {
    width: 160px;
    padding: 5px;
}

#cell-photo,
#single-photo li.photo-test,
#group-photo .photo-list > li,
#cell-photo .photo-list > li {
    height: 160px;
}
#group-photo .photo-list > li  {
    width: 210px;
    height: 140px;
}

#cell-photo ul {
    margin: 0;
    padding: 0;
}

#cell-photo .photo-list > li {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
}

.profile-info-section .table-bordered > tbody > tr > td {
    padding: 20px;
    vertical-align: middle;
}

/* COMPONENT: Shaded Box List */

.participating-location-list h3 {
    text-transform: capitalize;
    font-weight: 300;
    margin-bottom: 35px;
    margin-top: 35px;
    padding-left: 20px;
}
#location-list-tabs {
    margin-right:20px;
    margin-top: 15px;
}
#location-list-tabs li {
    font-weight: 300;
}

#location-list-tabs span {
    color: #158CCC;
}

.location-section div.practice-name-status {
    border-bottom: 1px solid #d4d4d5;
    padding-bottom: 15px;
}

.location-section .practice-name-status a.practice-name {
    font-size: 18px;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #158ccc;
}
#provider-select .location-section .practice-name-status a {
    font-size: 16px;
}
.location-section div.practice-info {
    padding-top: 15px;
}

.license-details td {
    vertical-align: top;
}

td.practice-info-item {
    padding-right:50px;
}
td.practice-info-item p {
    font-weight: 300;
}
td.practice-info-item b {
    font-weight:500;
}
.location-section {
    box-shadow: 5px 5px #d4d4d5;
}

.link-disabled {
    color: black;
    cursor: not-allowed;
    pointer-events: none;
    font-weight: 400;
}

.location-section .info-section-image {
    margin-left: 110px;
}

/* With Images */

.location-section .img-container {
    width: 86px;
    height: 86px;
    padding: 0;
}

.location-section .img-container-no-profile-pic {
    width: 86px;
    height: 106px;
    border: 1px solid #d4d4d5;
    margin-right: 20px;
    display: inline-block;
}

.location-section .img-container-no-profile-pic span {
    padding-left: 10px;
}

.location-section .img-container img {
    width: 100%;
}

/* COMPONENT: Map Header */

.map-canvas-container {
    margin: 0 -35px;
}

.angular-google-map-container { height: 285px; }

#sign-up-find-practice-map .angular-google-map-container { height: 840px; }

.practice-name-status ul {
    margin: 0;
}

.practice-name-status img {
    margin-top: -5px;
    margin-left: 15px;
}

.deleteConfirmationWrapper .edit-link {
    font-size: 14px;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #000000;
    line-height: 14px;

}

.deleteConfirmationSection .btn {
    background: none;
    border: none;
    color: #158ccc;
    font-size: 13px;
    font-weight: 300;
    border-radius: 0;
    padding: 0 5px;
    vertical-align: top;
    text-transform: uppercase;
}


.deleteConfirmationSection .btn-danger:active:hover,
.deleteConfirmationSection .btn-primary:active:hover {
    background: none;
    color: #158ccc;
}

.deleteConfirmationSection a.btn:hover {
    color: red;
}

/* List Table Component */

.table.list-table > thead > tr > th {
    font-weight: 500;
    padding-left: 5px;
    border-bottom: 1px solid #ddd;
}

.table.list-table > tbody > tr > td {
    font-weight: 400;
    padding-left: 5px;
    border-bottom: 1px solid #ddd;
    border-top: none;
    vertical-align: middle;
}

.table.list-table > tbody > tr > td .radio-group {
    margin-top: 4px;
}

.table.table-bordered > tbody > tr > td.image-container img {
    width: 42px;
}

.table.table-bordered > tbody > tr > td.image-container .image-container-text {
    margin-left: 15px;
}

table.list-table input[type=checkbox].css-checkbox + label.css-label {
    margin-bottom: 0;
}

.table > thead:first-child > tr.border-top-header:first-child > th {
    border-top: 1px solid #ddd;
}

.table.list-table .provider-checklist {
    margin-right: 10px;
    min-width: 190px;
}

.table.list-table > tbody > tr > td.edit-delete-row {
    padding: 0;
}

.confirm-delete-message {
    padding-right: 16px;
    margin-top: 2px;
    display: block;
    float: left;
}

#delete-pill.nested-header-btn-yn button {
    margin-right: 15px;
    font-size: 11px;
    font-weight: 400;
    border-radius: 14px;
    padding: 4px 24px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}

#delete-pill button.btn-verify,
#delete-pill button.btn-yes {
    color: #158ccc;
    border: 1px solid #158ccc;
}

#delete-pill button.btn-no {
    border: solid #a4a4a4 1px;
    color: #a4a4a4;
}

#delete-pill button.btn-no:hover {
    background: #a4a4a4;
    color: #ffffff;
}

#delete-pill button.btn-verify:hover,
#delete-pill button.btn-yes:hover {
    color: #ffffff;
    background: #158ccc;
    border-color: #158ccc;
}



/************************************
    CAROUSEL STYLING
*************************************/

.col-xs-6.carousel-panel {
    padding-right: 60px;
}

#carousel {
    position: relative;
}

#carousel .carousel-3d .slide-3d {
    border-radius: 0;
    border-color: #158dcc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#carousel .carousel-3d .slide-3d h2 {
    color: #212f61;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    padding: 0 0 20px 0;
    margin-top: 30px;
}

#carousel .carousel-3d .slide-3d .btn-container {
    width: 100%;
}

#carousel .carousel-3d .slide-3d .lg-pill{
    margin: 0 auto;
    display: block;
}

#carousel .arrow-right,
#carousel .arrow-left {
    background: #158ccc;
    top: 26px;
}

#carousel .carousel-3d .slide-3d .img-container {
    margin: 0 auto 25px auto;
    display: block;
    width: 170px;
    height: 170px;
    position: relative;
}

#carousel .carousel-3d .slide-3d img.photo-placeholder {
    display: block;
    margin: 23px auto 0 auto;
    width: 100px;
}

.arrow-top:before,
.arrow-right:before,
.arrow-bottom:before,
.arrow-left:before {
    border: none;
}

#carousel .arrow-left:before {
    content: '';
    position: absolute;
    top: 13px;
    right: 7px;
    border-right: 18px solid #158ccc;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

#carousel .arrow-left:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 14px;
    border-right: 17px solid #eeeeee;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
}

#carousel .arrow-right:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 6px;
    border-left: 18px solid #158ccc;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

#carousel .arrow-right:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 14px;
    border-left: 17px solid #eeeeee;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
}

.slide-list {
    padding: 20px 0;
}

.slide-list .btn {
    margin-top: 10px;
}

#carousel .carousel-3d .img-container img.animated-checkmark {
    position: absolute;
    width: 168px;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
}

#carousel .carousel-3d .slide-3d.base-class {
    opacity: 0.3 !important;
}

#carousel .carousel-3d .slide-3d.base-class.current {
    opacity: 1 !important;
}

#carousel .carousel-3d .slide-3d.base-class.ng-leave img.animated-checkmark {
    animation: 2.73s show-check;
}

#carousel .carousel-3d .slide-3d.base-class.ng-leave {
    animation: 3.33s vanish-slide;
}

@keyframes show-check {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes vanish-slide {
    0% {
        opacity: 1;
        top: 0;
    }
    40% {
        opacity: 1;
        top: 0;
    }
    60% {
        opacity: 0;
        top: -100px;
    }
    100% {
        opacity: 0;
        top: -100px;
    }
}


#carousel .carousel-3d-container {
    overflow: visible;
}

.checkmark__circle,
.checkmark,
.checkmark__check {
    /*display: none;*/
}

/* CHECK MARK ANIMATION */

.checkmark-wrapper {
    background: rgba(255,255,255,0.7);
    width: 168px;
    height: 168px;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 3px;
    display: none;
}

#carousel .carousel-3d .slide-3d.animated-slide .checkmark-wrapper {
    display: inherit;
}

#carousel .carousel-3d .slide-3d.animated-slide .checkmark__circle {
    /*.checkmark__circle {*/
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #85c996;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    display: inherit;
}

#carousel .carousel-3d-controls {
    left: -45px;
    width: 654px;
    top: 90px;
}

#carousel .carousel-3d .slide-3d.animated-slide .checkmark {
    /*.checkmark {*/
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #85c996;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #fff;
    /*animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;*/
    display: inherit;
}

#carousel .carousel-3d .slide-3d.animated-slide .checkmark__check {
    /*.checkmark__check {*/
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    display: inherit;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

#carousel .arrow-left,
#carousel .arrow-right {
    transition: visibility 0.1s, opacity 0.1s linear;
}

/*#carousel .arrow-left {*/
/*visibility: hidden;*/
/*opacity: 0;*/
/*}*/

#carousel .arrow-right {
    visibility: visible;
    opacity: 1;
}

#carousel .arrow-left.hide-me,
#carousel .arrow-right.hide-me {
    visibility: hidden;
    opacity: 0;
}

#carousel .arrow-left.show-me,
#carousel .arrow-right.show-me {
    visibility: visible;
    opacity: 1;
}

.fade-body {
    animation: 4s fade;
}

.animated-slide {
    animation: 3.33s vanish-slide;
}

.hide-slide {
    display: none;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.carousel-mask-layer-1,
.carousel-mask-layer-2 {
    opacity: 0;
    background: #fff;
    position: absolute;
    width: 650px;
    height: 363px;
    top: 0;
    left: -178px;
}

.carousel-mask-layer-1 {
    z-index: 999;
}

.carousel-mask-layer-1 {
    z-index: 1000;
}

.slide-3d.current {
    z-index: 1001 !important;
}

.del-buttons-slide{
    margin: 10px 0 0 0;
    padding: 0;
}

.del-buttons-slide button {
    margin-bottom: 10px;
}

/* Final Slide */

#upload-complete .slide-3d {
    width: 291px;
    height: 361px;
    margin: 20px auto;
}

#upload-complete .slide-3d p {
    text-align: center;
    margin: 0 auto;
    color: #212f61;
    line-height: 21px;
}

#upload-complete img.completed-check {
    margin: 20px auto;
    display: block;
}
