html {
    overflow-x: hidden;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

.ng-pageslide {
    background: #ededed;
    border-left: 2px solid #ccc;
}

body.ng-pageslide-body-open::before {
    content: '.';
    display: block;
    position: absolute;
    top: 0;
    background-color: rgb(0,0,0);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 1s;
    opacity: 0.5;
    pointer-events: all;
}

body.ng-pageslide-body-closed::before {
    transition: opacity 1s;
    content: '.';
    display: block;
    position: absolute;
    top: 0;
    background-color: rgb(0,0,0);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

#container1, #container2 {
    width: 100%;
    height: 20rem;
    border: 1px solid lightGrey;
}

.drop {
    padding: 15px;
    border: 2px #000 dashed;
    border-radius: 5px;
    line-height: 34px;
    margin-bottom: 10px;
}

    .drop.drag-over {
        background: #57889c;
        color: #fff;
    }

.progress {
    position: relative;
}

    .progress span {
        position: absolute;
        display: block;
        width: 100%;
        color: black;
    }

.dataTables_length {
    float: right;
}

/**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
.multiDemo ul[dnd-list],
.multiDemo ul[dnd-list] > li {
    position: relative;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop into it once it's empty
 */
.multiDemo ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

    /**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
    .multiDemo ul[dnd-list] .dndPlaceholder {
        display: block;
        background-color: #ddd;
        min-height: 42px;
    }

    /**
 * The dnd-lists's child elements currently MUST have
 * position: relative. Otherwise we can not determine
 * whether the mouse pointer is in the upper or lower
 * half of the element we are dragging over. In other
 * browsers we can use event.offsetY for this.
 */
    .multiDemo ul[dnd-list] li {
        background-color: #fff;
        border: 1px solid #ddd;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        display: block;
        padding: 5px 5px;
        margin-bottom: -1px;
    }

        /**
 * Show selected elements in green
 */
        .multiDemo ul[dnd-list] li.selected {
            background-color: #dff0d8;
            color: #3c763d;
        }



/**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
.multiDemo ul,
.multiDemo ul > li {
    position: relative;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop into it once it's empty
 */
.multiDemo ul {
    min-height: 42px;
    padding-left: 0px;
}

    /**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
    .multiDemo ul .dndPlaceholder {
        display: block;
        background-color: #ddd;
        min-height: 42px;
    }

    /**
 * The dnd-lists's child elements currently MUST have
 * position: relative. Otherwise we can not determine
 * whether the mouse pointer is in the upper or lower
 * half of the element we are dragging over. In other
 * browsers we can use event.offsetY for this.
 */
    .multiDemo ul li {
        background-color: #fff;
        border: 1px solid #ddd;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        display: block;
        padding: 10px 15px;
        margin-bottom: -1px;
    }

        /**
 * Show selected elements in green
 */
        .multiDemo ul li.selected {
            background-color: #dff0d8;
            color: #3c763d;
        }

/* Overlay style */
.overlay2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background:rgba(0, 83, 135, 0.9);*/
    background: rgba(0, 0, 0, 0.9);
    z-index: 1051;
}

    /* Overlay closing cross */
    .overlay2 .overlay-close {
        width: 80px;
        height: 80px;
        position: absolute;
        right: 20px;
        top: 20px;
        overflow: hidden;
        border: none;
        background: url(../img/cross.png) no-repeat center center;
        text-indent: 200%;
        color: transparent;
        outline: none;
        z-index: 1051;
    }

    /* Menu style */
    .overlay2 nav {
        text-align: center;
        position: relative;
        top: 50%;
        height: 60%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .overlay2 ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        height: 100%;
        position: relative;
    }

        .overlay2 ul li {
            display: block;
            height: 20%;
            height: calc(100% / 5);
            min-height: 54px;
        }

            .overlay2 ul li a {
                font-size: 54px;
                font-weight: 300;
                display: block;
                color: #fff;
                -webkit-transition: color 0.2s;
                transition: color 0.2s;
            }

                .overlay2 ul li a:hover,
                .overlay2 ul li a:focus {
                    color: #f0f0f0;
                }

/* Effects */
.container {
    background: #fff;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

    .container.overlay-open {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

.overlay-contentscale {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
}

    .overlay-contentscale.open {
        visibility: visible;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }

.full-width {
    width: 100%;
    height: 32px;
}

@media screen and (max-height: 30.5em) {
    .overlay2 nav {
        height: 70%;
        font-size: 34px;
    }

    .overlay2 ul li {
        min-height: 34px;
    }
}

.hidescrollbar {
    overflow-y: hidden;
}

.bootstrapWizard li {
    width: 11%;
}

.filterDropdown {
    color: black !important;
    font-style: italic !important;
    font-weight: 500;
    display: block;
    opacity: .8;
    font-size: 15px;
}

.imageDropdown {
    height: 41px !important;
    left: 0;
    position: absolute;
    width: 35px !important;
}

.labelDropdown {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    margin-top: 2px;
    color: dimgrey !important;
}




.dropdown-menu > li > button {
    border: none;
    background-color: transparent;
    width: 100%;
}

    .dropdown-menu > li > button:hover {
        text-decoration: none;
        color: #fff;
        background-color: #3276b1;
    }

.layer > .header {
    margin-bottom: 12px;
    font-size: 1.25em;
    font-weight: 400;
    text-transform: uppercase;
}

.layer > .header-price {
    font-size: 1.75em;
}

.list-points {
    list-style: none;
}

.layer > strong {
    color: rgba(39, 65, 90, 1);
    font-weight: 600;
}

.plans {
    background: #e7f2f0;
}

.layer {
    clear: both;
    width: 100%;
    height: auto;
    display: block;
    color: rgba(39, 65, 90, 1);
    font-family: "Source Sans Pro", "helvetica", sans-serif;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    font-size: 16px;
    line-height: 1;
}

    .layer > section,
    .layer > article {
        clear: both;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

.third {
    width: 20%;
    margin: 0 30px 0 0;
    display: inline-block;
}

.plan-tier {
    background: white;
    vertical-align: baseline;
    border-radius: 3px;
    -moz-border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.lift {
    position: relative;
    -webkit-transition: all .075s ease-out;
    -moz-transition: all .075s ease-out;
    -o-transition: all .075s ease-out;
    transition: all .075s ease-out;
}

    .lift:hover {
        top: -3px;
        -webkit-box-shadow: 0 2px 6px rgba(39, 65, 90, .15);
        -moz-box-shadow: 0 2px 6px rgba(39, 65, 90, .15);
        box-shadow: 0 2px 6px rgba(39, 65, 90, .15);
    }

.plan-tier h4 {
    padding: 18px 0 15px;
    margin: 0 0 30px;
    background: #00a1ff;
    color: white;
}

.plan-tier {
    cursor: pointer;
    background-color: #fafafa;
}

    .plan-tier sup {
        position: relative;
        right: -9px;
        font-size: 20px;
        top: 0.5em;
    }

    .plan-tier ul {
        margin: 30px 0 0;
        border-top: 2px solid #e7f2f0;
    }

        .plan-tier ul li {
            font-size: 1.25em;
            padding: 18px 0;
            color: rgba(39, 65, 90, .9);
            border-bottom: 2px solid #e7f2f0;
            line-height: 1.5;
        }

sup {
    vertical-align: top;
}

.plan-tier .plan-price {
    font-size: 4em;
    font-weight: 300;
    letter-spacing: -3px;
}

.plan-tier sub {
    vertical-align: bottom;
    position: relative;
    bottom: .875em;
}

.plan-tier .early-adopter-price {
    color: #0091e5;
}

del {
    color: rgba(39, 65, 90, .5);
    font-size: 1em;
    line-height: 1.5em;
}

strike,
del {
    text-decoration: line-through;
}

.layer {
    padding-top: 96px;
    padding-bottom: 96px;
}

.plan-tier.callout h6 {
    width: 100%;
    padding: 15px 0 14px;
    background: #8dcf3f;
    color: rgba(39, 65, 90, .5);
    font-size: 1.25em;
}

.plan-tier.callout h4 {
    background-color: #78b336;
}

.st-sort-ascent {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAABVVVUT3Vn+AAAAAXRSTlMAQObYZgAAAB1JREFUCNdjwAkcgPgBAwPjBwYG5h8MDOx/GAgBAKRJBBCQbHkwAAAAAElFTkSuQmCC) no-repeat center right !important;
}

.st-sort-descent {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAQMAAABInqSPAAAABlBMVEUAAABVVVUT3Vn+AAAAAXRSTlMAQObYZgAAABxJREFUCNdjIATY/zAwMP9gYGD8AOQ8AGIHnEoBkNkEEEbbutQAAAAASUVORK5CYII=) no-repeat center right !important;
}

.sorting {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATAgMAAAAPPt5fAAAACVBMVEUAAADIyMjl5eVIBBP/AAAAAXRSTlMAQObYZgAAAClJREFUCNdjwAYEwGQKiGDsBJFsTA5AUoJhAqZaiDhEDVg9RC/MHEwAANsMA91AQfd/AAAAAElFTkSuQmCC) no-repeat center right;
    cursor: pointer;
}

.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.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;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}



.uib-button-bar {
    padding: 10px 9px 2px !important;
}

.uib-datepicker .uib-title {
    width: 100% !important;
}

.uib-day button, .uib-month button, .uib-year button {
    min-width: 100% !important;
}

.uib-left, .uib-right {
    width: 100% !important
}

.uib-position-measure {
    display: block !important;
    visibility: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.uib-position-scrollbar-measure {
    position: absolute !important;
    top: -9999px !important;
    width: 50px !important;
    height: 50px !important;
    overflow: scroll !important;
}

.uib-position-body-scrollbar-measure {
    overflow: scroll !important;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.panel{
    margin-bottom:0px!important;
}

.panel-title a{
    padding:inherit!important;
}