@charset "UTF-8";
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
  height: 56px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: #888;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.page {
    padding: 20px;
    background-color: #e7eaeb;
    width: 100%;
}
.page-full {
    height: 100%;
    padding: 0;
}
.page-core {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 60px 10px;
    /*background-color: #3f4e62;*/
}
.page-tree {
    height: 100%;
    padding: 0;
}
.page-chat #inbox {
    margin: 20px -15px -15px;
}
.page-chat #inbox > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page-chat #inbox > li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.page-chat #inbox > li > a {
    display: block;
    position: relative;
    color: #616f77;
    padding: 15px;
}
.page-chat #inbox > li > a:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
}
.page-chat #inbox > li > a:hover .chat-actions {
    display: block;
}
.page-chat #inbox > li > a:focus {
    text-decoration: none;
}
.page-chat #inbox > li > a .media {
    position: relative;
    height: 45px;
}
.page-chat #inbox > li > a .media .media-body {
    width: 100%;
    display: inline-block;
    padding-right: 40px;
    position: absolute;
    top: 0;
}
.page-chat #inbox > li > a .message {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 85%;
}
.page-chat #inbox > li > a .chat-actions {
    font-size: 11px;
    display: none;
}
.page-chat #inbox > li > a .chat-actions > span {
    margin-left: 4px;
    cursor: pointer;
}
.page-chat #inbox > li > a .chat-actions > span.archive:hover {
    color: #ff4a43;
}
.page-chat #inbox > li > a .chat-actions > span.mark-unread:hover {
    color: #16a085;
}
.page-chat #inbox > li > a .chat-actions > span.mark-unread:hover i:before {
    content: "\f111";
}
.page-chat #inbox > li > a .chat-actions > span.mark-readed {
    color: #16a085;
}
.page-chat #inbox > li > a .chat-actions > span.mark-readed:hover {
    color: #616f77;
}
.page-chat #inbox > li > a .chat-actions > span.mark-readed:hover i:before {
    content: "\f10c";
}
.page-chat #inbox > li.active > a {
    background-color: white;
}
.page-chat ul.chats > li .media-body {
    padding: 10px;
}
.page-chat ul.chats > li.in .media-body {
    background-color: white;
    padding-left: 20px;
}
.page-chat ul.chats > li.out .media-body {
    background-color: rgba(255, 255, 255, 0.5);
    padding-right: 20px;
}
ul.chats {
    list-style: none;
}
ul.chats > li {
    margin: 20px auto;
    font-size: 12px;
}
ul.chats > li:last-child {
    margin-bottom: 0;
}
ul.chats > li .media {
    position: relative;
    z-index: 1;
}
ul.chats > li .name,
ul.chats > li .datetime {
    font-size: 14px;
    font-weight: 400;
}
ul.chats > li .datetime {
    color: #95a2a9;
    font-size: 12px;
}
ul.chats > li.conversation-divider {
    font-size: 10px;
    color: white;
    text-align: center;
}
ul.chats > li.conversation-divider span {
    display: inline-block;
    position: relative;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 4px 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
ul.chats > li.in .media-body {
    text-align: left;
    border-left: 3px solid #16a085;
    margin-left: 65px;
    padding-left: 5px;
}
ul.chats > li.in .name {
    color: #16a085;
}
ul.chats > li.in .media:after {
    content: "";
    height: 0;
    width: 0;
    border-bottom: 4px solid transparent;
    border-right: 4px solid #16a085;
    border-top: 4px solid transparent;
    position: absolute;
    top: 18px;
    left: 36px;
    z-index: 1;
}
ul.chats > li.out .media-body {
    border-right: 3px solid #e05d6f;
    margin-right: 65px;
    text-align: right;
    padding-right: 5px;
}
ul.chats > li.out .name {
    color: #e05d6f;
}
ul.chats > li.out .name,
ul.chats > li.out .datetime {
    text-align: right;
}
ul.chats > li.out .media:after {
    content: "";
    height: 0;
    width: 0;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #e05d6f;
    border-top: 4px solid transparent;
    position: absolute;
    top: 18px;
    right: 36px;
    z-index: 1;
}
.chat-form {
    padding: 10px;
    background-color: #dbe0e2;
    overflow: hidden;
    clear: both;
}
.page.page-mail #mail-nav #mail-folders > li > a,
.page.page-mail #mail-nav #mail-labels > li > a {
    color: #616f77;
}
.page.page-mail #mail-nav #mail-folders > li > a .badge,
.page.page-mail #mail-nav #mail-labels > li > a .badge {
    margin-top: 2px;
}
.page.page-mail #mail-nav #mail-folders > li > a:hover,
.page.page-mail #mail-nav #mail-labels > li > a:hover {
    background-color: white;
}
.page.page-mail #mail-nav #mail-folders > li.active > a,
.page.page-mail #mail-nav #mail-labels > li.active > a {
    color: white;
}
.page.page-mail #mail-nav #mail-folders > li.active > a:hover,
.page.page-mail #mail-nav #mail-labels > li.active > a:hover {
    background-color: #10acdd;
}
.page.page-mail #mails-list {
    margin-bottom: 0;
}
.page.page-mail #mails-list > li {
    border: 0;
    border-left: 3px solid;
    margin-bottom: 1px;
    padding: 20px;
}
.page.page-mail #mails-list > li .thumb > div {
    height: 40px;
    background-color: #616f77;
    color: white;
    text-transform: uppercase;
    font-size: 26px;
    font-family: "Dosis", "Arial", sans-serif;
    padding: 1px 0;
    text-align: center;
}
.page.page-mail #mails-list > li .media-heading > a {
    font-weight: 700;
}
.page.page-mail #mails-list > li .media-heading > a:hover {
    text-decoration: none;
}
.page.page-mail #mails-list > li .controls {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    text-align: center;
    margin-top: -2px;
}
.page.page-mail #mails-list > li .controls .favourite {
    font-size: 16px;
}
.page.page-mail #mails-list > li .controls .favourite:hover,
.page.page-mail #mails-list > li .controls .favourite:focus:hover {
    color: #798992;
}
.page.page-mail #mails-list > li .controls .favourite:focus {
    color: #ffc100;
}
.page.page-mail #mails-list > li .controls .mail-select {
    width: 20px;
}
.page-search-results .search-bar {
    margin: 10px 0;
}
.page-search-results .search-results {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}
.page-search-results .search-results > .search-result {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.page-search-results .search-results > .search-result:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.page-search-results .search-results > .search-result .cover {
    padding: 20px;
    background-color: white;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.page-search-results .search-results > .search-result .cover h4 {
    padding: 0;
    margin: 0 0 10px 0;
    font-weight: 700;
    font-family: "Dosis", "Arial", sans-serif;
}
.page-search-results .search-results > .search-result .cover h4 a {
    color: #3f484d;
}
.page-search-results .search-results > .search-result .cover h4 a:hover {
    text-decoration: none;
    color: #418bca;
}
.page-search-results .search-results > .search-result .cover > p {
    color: #95a2a9;
}
.page-search-results .search-results > .search-result .cover > a {
    font-size: 12px;
    color: #418bca;
}
.page-search-results .search-results > .search-result .cover > a:hover {
    color: #69a3d5;
}
.page-search-results .search-results > .search-result:hover .cover {
    background-color: #fafafa;
}
.page-search-results .search-results > .search-result .media img {
    width: 130px;
    max-height: 85px;
    margin-right: 10px;
}
.page-search-results .search-results > .search-result .media img.img-circle {
    width: 85px;
}
.page-search-results .search-results > .search-result .media > a > i {
    width: 130px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-right: 10px;
    line-height: 85px;
    text-align: center;
    color: #616f77;
    font-size: 3.5em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}
.page-search-results .search-results > .search-result .media > a:hover i {
    color: #418bca;
}
.page-search-results .search-results > .search-result .media .media-body small {
    font-size: 10px;
    color: #95a2a9;
}
.page-search-results .refine-results .slider {
    width: 100%;
}
.search-filters > a {
    padding: 5px 15px;
    border: 1px solid #616f77;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
    margin: 0 2px;
    color: #616f77;
    line-height: 36px;
}
.search-filters > a:hover {
    border: 1px solid #418bca;
    color: #418bca;
    text-decoration: none;
}
.search-filters > a.active {
    background-color: #418bca;
    border-color: transparent;
    color: white;
}
html.boxed-layout {
    height: 100%;
}
html.boxed-layout body {
    height: 100%;
    background-color: #cbd1d4;
}
html.boxed-layout #wrap {
    min-height: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    background-color: #e7eaeb;
}
html.boxed-layout #header {
    position: relative !important;
}
html.boxed-layout .appWrapper.header-static.aside-fixed #header .branding {
    left: auto;
    margin-left: -250px;
}
html.boxed-layout .appWrapper.header-static.aside-fixed.sidebar-sm #header .branding {
    margin-left: -80px;
}
html.boxed-layout .appWrapper.header-static.aside-fixed.sidebar-xs #header .branding {
    margin-left: -40px;
}
html.boxed-layout .appWrapper.header-fixed.aside-static #header {
    position: fixed !important;
    left: auto;
    right: auto;
    width: 100%;
}
@media only screen and (min-width: 768px) {
    html.boxed-layout #wrap {
        width: 750px;
    }
    html.boxed-layout .appWrapper.header-fixed.aside-static #header {
        width: 750px;
    }
}
@media only screen and (min-width: 992px) {
    html.boxed-layout #wrap {
        width: 970px;
    }
    html.boxed-layout .appWrapper.header-fixed.aside-static #header {
        width: 970px;
    }
}
@media only screen and (min-width: 1200px) {
    html.boxed-layout #wrap {
        width: 1170px;
    }
    html.boxed-layout .appWrapper.header-fixed.aside-static #header {
        width: 1170px;
    }
}
@media only screen and (min-width: 1100px) {
    .hz-menu #sidebar {
        width: 100%;
        bottom: auto !important;
    }
    .hz-menu #sidebar .slimScrollDiv {
        overflow: visible !important;
    }
    .hz-menu #sidebar accordion {
        height: auto !important;
        overflow: visible !important;
    }
    .hz-menu #sidebar accordion .panel-heading,
    .hz-menu #sidebar accordion .charts,
    .hz-menu #sidebar accordion .settings {
        display: none;
    }
    .hz-menu #sidebar accordion .panel-body {
        padding: 0 10px;
    }
    .hz-menu #sidebar accordion .panel-collapse.collapse {
        display: block !important;
    }
    .hz-menu #sidebar accordion .panel-group {
        height: auto;
    }
    .hz-menu #sidebar accordion .panel-group .panel,
    .hz-menu #sidebar accordion .panel-group .panel-collapse,
    .hz-menu #sidebar accordion .panel-group .panel-body {
        height: auto !important;
    }
    .hz-menu #header {
        -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    .hz-menu #header .sidebar-collapse {
        display: none;
    }
    .hz-menu #navigation > li {
        display: inline-block;
        float: left;
        overflow: visible !important;
    }
    .hz-menu #navigation > li > a {
        text-align: center;
        padding: 15px;
        font-weight: 300;
        font-size: 12px;
    }
    .hz-menu #navigation > li > a .badge {
        left: 5px;
    }
    .hz-menu #navigation > li > a .label {
        top: 5px;
        left: 5px;
        right: auto;
    }
    .hz-menu #navigation > li > a > i {
        display: block;
        margin: 0 auto 2px;
    }
    .hz-menu #navigation > li.dropdown > a > i:last-of-type {
        top: auto;
        bottom: 3px;
        left: 50%;
        margin-left: -10px;
    }
    .hz-menu #navigation > li.dropdown > a > i:last-of-type:before {
        content: "\f107";
    }
    .hz-menu #navigation > li.dropdown > ul {
        position: absolute;
        left: 0;
        top: 100%;
        width: auto;
        min-width: 220px;
        background-color: #3c3246;
    }
    .hz-menu #navigation > li.dropdown.open > ul {
        display: none !important;
    }
    .hz-menu #navigation > li.dropdown:hover > ul {
        display: block !important;
    }
    .hz-menu #navigation > li li.submenu > ul {
        position: absolute;
        left: 100%;
        top: 0;
        width: auto;
        min-width: 220px;
        background-color: #3c3246;
    }
    .hz-menu #navigation > li li.submenu.open > ul {
        display: none !important;
    }
    .hz-menu #navigation > li li.submenu:hover > ul {
        display: block !important;
    }
    .hz-menu #content {
        left: 0 !important;
        top: 110px !important;
    }
    .appWrapper.hz-menu.aside-static #controls {
        width: 100%;
    }
    .appWrapper.hz-menu.aside-static #controls #sidebar {
        min-height: 0;
    }
    .appWrapper.hz-menu.aside-static #content {
        padding-left: 0 !important;
        padding-top: 110px !important;
    }
    .appWrapper.hz-menu.aside-static.header-static #content {
        padding-top: 60px !important;
    }
    .appWrapper.hz-menu.header-static.aside-fixed #header {
        position: fixed;
        left: 0;
        right: 0;
    }
    .appWrapper.hz-menu.header-static.aside-fixed #content {
        padding-left: 0 !important;
        padding-top: 110px !important;
    }
}
.appWrapper.rtl {
    /*******************************************************************************
 *              bootstrap-rtl (Version 3.2.0-rc7)
 *      Author: Morteza Ansarinia <ansarinia@me.com> (http://github.com/morteza)
 *  Created on: September 11,2014
 *     Project: bootstrap-rtl
 *   Copyright: See the file "LICENSE.md" for the full license governing this code.
 *******************************************************************************/

    direction: rtl;
    unicode-bidi: embed;
}
.appWrapper.rtl .list-unstyled {
    padding-right: 0;
    padding-left: initial;
}
.appWrapper.rtl .list-inline {
    padding-right: 0;
    padding-left: initial;
    margin-right: -5px;
    margin-left: 0;
}
.appWrapper.rtl dd {
    margin-right: 0;
    margin-left: initial;
}
@media (min-width: 768px) {
    .appWrapper.rtl .dl-horizontal dt {
        float: right;
        clear: right;
        text-align: left;
    }
    .appWrapper.rtl .dl-horizontal dd {
        margin-right: 180px;
        margin-left: 0;
    }
}
.appWrapper.rtl blockquote {
    border-right: 5px solid #eee;
    border-left: 0;
}
.appWrapper.rtl .blockquote-reverse,
.appWrapper.rtl blockquote.pull-left {
    padding-left: 15px;
    padding-right: 0;
    border-left: 5px solid #eee;
    border-right: 0;
    text-align: left;
}
.appWrapper.rtl .col-xs-1,
.appWrapper.rtl .col-sm-1,
.appWrapper.rtl .col-md-1,
.appWrapper.rtl .col-lg-1,
.appWrapper.rtl .col-xs-2,
.appWrapper.rtl .col-sm-2,
.appWrapper.rtl .col-md-2,
.appWrapper.rtl .col-lg-2,
.appWrapper.rtl .col-xs-3,
.appWrapper.rtl .col-sm-3,
.appWrapper.rtl .col-md-3,
.appWrapper.rtl .col-lg-3,
.appWrapper.rtl .col-xs-4,
.appWrapper.rtl .col-sm-4,
.appWrapper.rtl .col-md-4,
.appWrapper.rtl .col-lg-4,
.appWrapper.rtl .col-xs-5,
.appWrapper.rtl .col-sm-5,
.appWrapper.rtl .col-md-5,
.appWrapper.rtl .col-lg-5,
.appWrapper.rtl .col-xs-6,
.appWrapper.rtl .col-sm-6,
.appWrapper.rtl .col-md-6,
.appWrapper.rtl .col-lg-6,
.appWrapper.rtl .col-xs-7,
.appWrapper.rtl .col-sm-7,
.appWrapper.rtl .col-md-7,
.appWrapper.rtl .col-lg-7,
.appWrapper.rtl .col-xs-8,
.appWrapper.rtl .col-sm-8,
.appWrapper.rtl .col-md-8,
.appWrapper.rtl .col-lg-8,
.appWrapper.rtl .col-xs-9,
.appWrapper.rtl .col-sm-9,
.appWrapper.rtl .col-md-9,
.appWrapper.rtl .col-lg-9,
.appWrapper.rtl .col-xs-10,
.appWrapper.rtl .col-sm-10,
.appWrapper.rtl .col-md-10,
.appWrapper.rtl .col-lg-10,
.appWrapper.rtl .col-xs-11,
.appWrapper.rtl .col-sm-11,
.appWrapper.rtl .col-md-11,
.appWrapper.rtl .col-lg-11,
.appWrapper.rtl .col-xs-12,
.appWrapper.rtl .col-sm-12,
.appWrapper.rtl .col-md-12,
.appWrapper.rtl .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.appWrapper.rtl .col-xs-1,
.appWrapper.rtl .col-xs-2,
.appWrapper.rtl .col-xs-3,
.appWrapper.rtl .col-xs-4,
.appWrapper.rtl .col-xs-5,
.appWrapper.rtl .col-xs-6,
.appWrapper.rtl .col-xs-7,
.appWrapper.rtl .col-xs-8,
.appWrapper.rtl .col-xs-9,
.appWrapper.rtl .col-xs-10,
.appWrapper.rtl .col-xs-11,
.appWrapper.rtl .col-xs-12 {
    float: right;
}
.appWrapper.rtl .col-xs-12 {
    width: 100%;
}
.appWrapper.rtl .col-xs-11 {
    width: 91.66666667%;
}
.appWrapper.rtl .col-xs-10 {
    width: 83.33333333%;
}
.appWrapper.rtl .col-xs-9 {
    width: 75%;
}
.appWrapper.rtl .col-xs-8 {
    width: 66.66666667%;
}
.appWrapper.rtl .col-xs-7 {
    width: 58.33333333%;
}
.appWrapper.rtl .col-xs-6 {
    width: 50%;
}
.appWrapper.rtl .col-xs-5 {
    width: 41.66666667%;
}
.appWrapper.rtl .col-xs-4 {
    width: 33.33333333%;
}
.appWrapper.rtl .col-xs-3 {
    width: 25%;
}
.appWrapper.rtl .col-xs-2 {
    width: 16.66666667%;
}
.appWrapper.rtl .col-xs-1 {
    width: 8.33333333%;
}
.appWrapper.rtl .col-xs-pull-12 {
    left: 100%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-11 {
    left: 91.66666667%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-10 {
    left: 83.33333333%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-9 {
    left: 75%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-8 {
    left: 66.66666667%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-7 {
    left: 58.33333333%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-6 {
    left: 50%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-5 {
    left: 41.66666667%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-4 {
    left: 33.33333333%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-3 {
    left: 25%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-2 {
    left: 16.66666667%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-1 {
    left: 8.33333333%;
    right: auto;
}
.appWrapper.rtl .col-xs-pull-0 {
    left: auto;
    right: auto;
}
.appWrapper.rtl .col-xs-push-12 {
    right: 100%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-11 {
    right: 91.66666667%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-10 {
    right: 83.33333333%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-9 {
    right: 75%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-8 {
    right: 66.66666667%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-7 {
    right: 58.33333333%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-6 {
    right: 50%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-5 {
    right: 41.66666667%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-4 {
    right: 33.33333333%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-3 {
    right: 25%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-2 {
    right: 16.66666667%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-1 {
    right: 8.33333333%;
    left: 0;
}
.appWrapper.rtl .col-xs-push-0 {
    right: auto;
    left: 0;
}
.appWrapper.rtl .col-xs-offset-12 {
    margin-right: 100%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-11 {
    margin-right: 91.66666667%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-10 {
    margin-right: 83.33333333%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-9 {
    margin-right: 75%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-8 {
    margin-right: 66.66666667%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-7 {
    margin-right: 58.33333333%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-6 {
    margin-right: 50%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-5 {
    margin-right: 41.66666667%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-4 {
    margin-right: 33.33333333%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-3 {
    margin-right: 25%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-2 {
    margin-right: 16.66666667%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-1 {
    margin-right: 8.33333333%;
    margin-left: 0;
}
.appWrapper.rtl .col-xs-offset-0 {
    margin-right: 0;
    margin-left: 0;
}
@media (min-width: 768px) {
    .appWrapper.rtl .col-sm-1,
    .appWrapper.rtl .col-sm-2,
    .appWrapper.rtl .col-sm-3,
    .appWrapper.rtl .col-sm-4,
    .appWrapper.rtl .col-sm-5,
    .appWrapper.rtl .col-sm-6,
    .appWrapper.rtl .col-sm-7,
    .appWrapper.rtl .col-sm-8,
    .appWrapper.rtl .col-sm-9,
    .appWrapper.rtl .col-sm-10,
    .appWrapper.rtl .col-sm-11,
    .appWrapper.rtl .col-sm-12 {
        float: right;
    }
    .appWrapper.rtl .col-sm-12 {
        width: 100%;
    }
    .appWrapper.rtl .col-sm-11 {
        width: 91.66666667%;
    }
    .appWrapper.rtl .col-sm-10 {
        width: 83.33333333%;
    }
    .appWrapper.rtl .col-sm-9 {
        width: 75%;
    }
    .appWrapper.rtl .col-sm-8 {
        width: 66.66666667%;
    }
    .appWrapper.rtl .col-sm-7 {
        width: 58.33333333%;
    }
    .appWrapper.rtl .col-sm-6 {
        width: 50%;
    }
    .appWrapper.rtl .col-sm-5 {
        width: 41.66666667%;
    }
    .appWrapper.rtl .col-sm-4 {
        width: 33.33333333%;
    }
    .appWrapper.rtl .col-sm-3 {
        width: 25%;
    }
    .appWrapper.rtl .col-sm-2 {
        width: 16.66666667%;
    }
    .appWrapper.rtl .col-sm-1 {
        width: 8.33333333%;
    }
    .appWrapper.rtl .col-sm-pull-12 {
        left: 100%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-11 {
        left: 91.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-10 {
        left: 83.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-9 {
        left: 75%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-8 {
        left: 66.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-7 {
        left: 58.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-6 {
        left: 50%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-5 {
        left: 41.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-4 {
        left: 33.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-3 {
        left: 25%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-2 {
        left: 16.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-1 {
        left: 8.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-sm-pull-0 {
        left: auto;
        right: auto;
    }
    .appWrapper.rtl .col-sm-push-12 {
        right: 100%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-11 {
        right: 91.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-10 {
        right: 83.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-9 {
        right: 75%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-8 {
        right: 66.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-7 {
        right: 58.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-6 {
        right: 50%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-5 {
        right: 41.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-4 {
        right: 33.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-3 {
        right: 25%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-2 {
        right: 16.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-1 {
        right: 8.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-sm-push-0 {
        right: auto;
        left: 0;
    }
    .appWrapper.rtl .col-sm-offset-12 {
        margin-right: 100%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-11 {
        margin-right: 91.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-10 {
        margin-right: 83.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-9 {
        margin-right: 75%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-8 {
        margin-right: 66.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-7 {
        margin-right: 58.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-6 {
        margin-right: 50%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-5 {
        margin-right: 41.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-4 {
        margin-right: 33.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-3 {
        margin-right: 25%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-2 {
        margin-right: 16.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-1 {
        margin-right: 8.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-sm-offset-0 {
        margin-right: 0;
        margin-left: 0;
    }
}
@media (min-width: 992px) {
    .appWrapper.rtl .col-md-1,
    .appWrapper.rtl .col-md-2,
    .appWrapper.rtl .col-md-3,
    .appWrapper.rtl .col-md-4,
    .appWrapper.rtl .col-md-5,
    .appWrapper.rtl .col-md-6,
    .appWrapper.rtl .col-md-7,
    .appWrapper.rtl .col-md-8,
    .appWrapper.rtl .col-md-9,
    .appWrapper.rtl .col-md-10,
    .appWrapper.rtl .col-md-11,
    .appWrapper.rtl .col-md-12 {
        float: right;
    }
    .appWrapper.rtl .col-md-12 {
        width: 100%;
    }
    .appWrapper.rtl .col-md-11 {
        width: 91.66666667%;
    }
    .appWrapper.rtl .col-md-10 {
        width: 83.33333333%;
    }
    .appWrapper.rtl .col-md-9 {
        width: 75%;
    }
    .appWrapper.rtl .col-md-8 {
        width: 66.66666667%;
    }
    .appWrapper.rtl .col-md-7 {
        width: 58.33333333%;
    }
    .appWrapper.rtl .col-md-6 {
        width: 50%;
    }
    .appWrapper.rtl .col-md-5 {
        width: 41.66666667%;
    }
    .appWrapper.rtl .col-md-4 {
        width: 33.33333333%;
    }
    .appWrapper.rtl .col-md-3 {
        width: 25%;
    }
    .appWrapper.rtl .col-md-2 {
        width: 16.66666667%;
    }
    .appWrapper.rtl .col-md-1 {
        width: 8.33333333%;
    }
    .appWrapper.rtl .col-md-pull-12 {
        left: 100%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-11 {
        left: 91.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-10 {
        left: 83.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-9 {
        left: 75%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-8 {
        left: 66.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-7 {
        left: 58.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-6 {
        left: 50%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-5 {
        left: 41.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-4 {
        left: 33.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-3 {
        left: 25%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-2 {
        left: 16.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-1 {
        left: 8.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-md-pull-0 {
        left: auto;
        right: auto;
    }
    .appWrapper.rtl .col-md-push-12 {
        right: 100%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-11 {
        right: 91.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-10 {
        right: 83.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-9 {
        right: 75%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-8 {
        right: 66.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-7 {
        right: 58.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-6 {
        right: 50%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-5 {
        right: 41.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-4 {
        right: 33.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-3 {
        right: 25%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-2 {
        right: 16.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-1 {
        right: 8.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-md-push-0 {
        right: auto;
        left: 0;
    }
    .appWrapper.rtl .col-md-offset-12 {
        margin-right: 100%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-11 {
        margin-right: 91.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-10 {
        margin-right: 83.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-9 {
        margin-right: 75%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-8 {
        margin-right: 66.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-7 {
        margin-right: 58.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-6 {
        margin-right: 50%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-5 {
        margin-right: 41.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-4 {
        margin-right: 33.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-3 {
        margin-right: 25%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-2 {
        margin-right: 16.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-1 {
        margin-right: 8.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-md-offset-0 {
        margin-right: 0;
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
    .appWrapper.rtl .col-lg-1,
    .appWrapper.rtl .col-lg-2,
    .appWrapper.rtl .col-lg-3,
    .appWrapper.rtl .col-lg-4,
    .appWrapper.rtl .col-lg-5,
    .appWrapper.rtl .col-lg-6,
    .appWrapper.rtl .col-lg-7,
    .appWrapper.rtl .col-lg-8,
    .appWrapper.rtl .col-lg-9,
    .appWrapper.rtl .col-lg-10,
    .appWrapper.rtl .col-lg-11,
    .appWrapper.rtl .col-lg-12 {
        float: right;
    }
    .appWrapper.rtl .col-lg-12 {
        width: 100%;
    }
    .appWrapper.rtl .col-lg-11 {
        width: 91.66666667%;
    }
    .appWrapper.rtl .col-lg-10 {
        width: 83.33333333%;
    }
    .appWrapper.rtl .col-lg-9 {
        width: 75%;
    }
    .appWrapper.rtl .col-lg-8 {
        width: 66.66666667%;
    }
    .appWrapper.rtl .col-lg-7 {
        width: 58.33333333%;
    }
    .appWrapper.rtl .col-lg-6 {
        width: 50%;
    }
    .appWrapper.rtl .col-lg-5 {
        width: 41.66666667%;
    }
    .appWrapper.rtl .col-lg-4 {
        width: 33.33333333%;
    }
    .appWrapper.rtl .col-lg-3 {
        width: 25%;
    }
    .appWrapper.rtl .col-lg-2 {
        width: 16.66666667%;
    }
    .appWrapper.rtl .col-lg-1 {
        width: 8.33333333%;
    }
    .appWrapper.rtl .col-lg-pull-12 {
        left: 100%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-11 {
        left: 91.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-10 {
        left: 83.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-9 {
        left: 75%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-8 {
        left: 66.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-7 {
        left: 58.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-6 {
        left: 50%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-5 {
        left: 41.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-4 {
        left: 33.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-3 {
        left: 25%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-2 {
        left: 16.66666667%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-1 {
        left: 8.33333333%;
        right: auto;
    }
    .appWrapper.rtl .col-lg-pull-0 {
        left: auto;
        right: auto;
    }
    .appWrapper.rtl .col-lg-push-12 {
        right: 100%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-11 {
        right: 91.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-10 {
        right: 83.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-9 {
        right: 75%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-8 {
        right: 66.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-7 {
        right: 58.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-6 {
        right: 50%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-5 {
        right: 41.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-4 {
        right: 33.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-3 {
        right: 25%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-2 {
        right: 16.66666667%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-1 {
        right: 8.33333333%;
        left: 0;
    }
    .appWrapper.rtl .col-lg-push-0 {
        right: auto;
        left: 0;
    }
    .appWrapper.rtl .col-lg-offset-12 {
        margin-right: 100%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-11 {
        margin-right: 91.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-10 {
        margin-right: 83.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-9 {
        margin-right: 75%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-8 {
        margin-right: 66.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-7 {
        margin-right: 58.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-6 {
        margin-right: 50%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-5 {
        margin-right: 41.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-4 {
        margin-right: 33.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-3 {
        margin-right: 25%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-2 {
        margin-right: 16.66666667%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-1 {
        margin-right: 8.33333333%;
        margin-left: 0;
    }
    .appWrapper.rtl .col-lg-offset-0 {
        margin-right: 0;
        margin-left: 0;
    }
}
.appWrapper.rtl th {
    text-align: right;
}
@media screen and (max-width: 767px) {
    .appWrapper.rtl .table-responsive > .table-bordered {
        border: 0;
    }
    .appWrapper.rtl .table-responsive > .table-bordered > thead > tr > th:first-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .appWrapper.rtl .table-responsive > .table-bordered > thead > tr > td:first-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-right: 0;
        border-left: initial;
    }
    .appWrapper.rtl .table-responsive > .table-bordered > thead > tr > th:last-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .appWrapper.rtl .table-responsive > .table-bordered > thead > tr > td:last-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .appWrapper.rtl .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-left: 0;
        border-right: initial;
    }
}
.appWrapper.rtl .radio label,
.appWrapper.rtl .checkbox label {
    padding-right: 20px;
    padding-left: initial;
}
.appWrapper.rtl .radio input[type=radio],
.appWrapper.rtl .radio-inline input[type=radio],
.appWrapper.rtl .checkbox input[type=checkbox],
.appWrapper.rtl .checkbox-inline input[type=checkbox] {
    margin-right: -20px;
    margin-left: auto;
}
.appWrapper.rtl .radio-inline,
.appWrapper.rtl .checkbox-inline {
    padding-right: 20px;
    padding-left: 0;
}
.appWrapper.rtl .radio-inline + .radio-inline,
.appWrapper.rtl .checkbox-inline + .checkbox-inline {
    margin-right: 10px;
    margin-left: 0;
}
.appWrapper.rtl .has-feedback .form-control {
    padding-left: 42.5px;
    padding-right: 12px;
}
.appWrapper.rtl .form-control-feedback {
    left: 0;
    right: auto;
}
@media (min-width: 768px) {
    .appWrapper.rtl .form-inline label {
        padding-right: 0;
        padding-left: initial;
    }
    .appWrapper.rtl .form-inline .radio input[type=radio],
    .appWrapper.rtl .form-inline .checkbox input[type=checkbox] {
        margin-right: 0;
        margin-left: auto;
    }
}
@media (min-width: 768px) {
    .appWrapper.rtl .form-horizontal .control-label {
        text-align: left;
    }
}
.appWrapper.rtl .form-horizontal .has-feedback .form-control-feedback {
    left: 15px;
    right: auto;
}
.appWrapper.rtl .caret {
    margin-right: 2px;
    margin-left: 0;
}
.appWrapper.rtl .dropdown-menu {
    right: 0;
    left: auto;
    float: left;
    text-align: right;
}
.appWrapper.rtl .dropdown-menu.pull-right {
    left: 0;
    right: auto;
    float: right;
}
.appWrapper.rtl .dropdown-menu-right {
    left: auto;
    right: 0;
}
.appWrapper.rtl .dropdown-menu-left {
    left: 0;
    right: auto;
}
@media (min-width: 768px) {
    .appWrapper.rtl .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }
    .appWrapper.rtl .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}
.appWrapper.rtl .btn-group > .btn,
.appWrapper.rtl .btn-group-vertical > .btn {
    float: right;
}
.appWrapper.rtl .btn-group .btn + .btn,
.appWrapper.rtl .btn-group .btn + .btn-group,
.appWrapper.rtl .btn-group .btn-group + .btn,
.appWrapper.rtl .btn-group .btn-group + .btn-group {
    margin-right: -1px;
    margin-left: 0;
}
.appWrapper.rtl .btn-toolbar {
    margin-right: -5px;
    margin-left: 0;
}
.appWrapper.rtl .btn-toolbar .btn-group,
.appWrapper.rtl .btn-toolbar .input-group {
    float: right;
}
.appWrapper.rtl .btn-toolbar > .btn,
.appWrapper.rtl .btn-toolbar > .btn-group,
.appWrapper.rtl .btn-toolbar > .input-group {
    margin-right: 5px;
    margin-left: 0;
}
.appWrapper.rtl .btn-group > .btn:first-child {
    margin-right: 0;
}
.appWrapper.rtl .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.appWrapper.rtl .btn-group > .btn:last-child:not(:first-child),
.appWrapper.rtl .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.appWrapper.rtl .btn-group > .btn-group {
    float: right;
}
.appWrapper.rtl .btn-group.btn-group-justified > .btn,
.appWrapper.rtl .btn-group.btn-group-justified > .btn-group {
    float: none;
}
.appWrapper.rtl .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
}
.appWrapper.rtl .btn-group > .btn-group:first-child > .btn:last-child,
.appWrapper.rtl .btn-group > .btn-group:first-child > .dropdown-toggle {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.appWrapper.rtl .btn-group > .btn-group:last-child > .btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.appWrapper.rtl .btn .caret {
    margin-right: 0;
}
.appWrapper.rtl .btn-group-vertical > .btn + .btn,
.appWrapper.rtl .btn-group-vertical > .btn + .btn-group,
.appWrapper.rtl .btn-group-vertical > .btn-group + .btn,
.appWrapper.rtl .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-right: 0;
}
.appWrapper.rtl .input-group .form-control {
    float: right;
}
.appWrapper.rtl .input-group .form-control:first-child,
.appWrapper.rtl .input-group-addon:first-child,
.appWrapper.rtl .input-group-btn:first-child > .btn,
.appWrapper.rtl .input-group-btn:first-child > .btn-group > .btn,
.appWrapper.rtl .input-group-btn:first-child > .dropdown-toggle,
.appWrapper.rtl .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.appWrapper.rtl .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.appWrapper.rtl .input-group-addon:first-child {
    border-right: 1px solid #ccc;
    border-left: 0;
}
.appWrapper.rtl .input-group .form-control:last-child,
.appWrapper.rtl .input-group-addon:last-child,
.appWrapper.rtl .input-group-btn:last-child > .btn,
.appWrapper.rtl .input-group-btn:last-child > .btn-group > .btn,
.appWrapper.rtl .input-group-btn:last-child > .dropdown-toggle,
.appWrapper.rtl .input-group-btn:first-child > .btn:not(:first-child),
.appWrapper.rtl .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.appWrapper.rtl .input-group-addon:last-child {
    border-left: 1px solid #ccc;
    border-right: 0;
}
.appWrapper.rtl .input-group-btn > .btn + .btn {
    margin-right: -1px;
    margin-left: auto;
}
.appWrapper.rtl .input-group-btn:first-child > .btn,
.appWrapper.rtl .input-group-btn:first-child > .btn-group {
    margin-left: -1px;
    margin-right: auto;
}
.appWrapper.rtl .input-group-btn:last-child > .btn,
.appWrapper.rtl .input-group-btn:last-child > .btn-group {
    margin-right: -1px;
    margin-left: auto;
}
.appWrapper.rtl .nav {
    padding-right: 0;
    padding-left: initial;
}
.appWrapper.rtl .nav-tabs > li {
    float: right;
}
.appWrapper.rtl .nav-tabs > li > a {
    margin-left: auto;
    margin-right: -2px;
    border-radius: 4px 4px 0 0;
}
.appWrapper.rtl .nav-pills > li {
    float: none;
}
.appWrapper.rtl .nav-pills > li > a {
    border-radius: 4px;
}
.appWrapper.rtl .nav-pills > li + li {
    margin-right: 2px;
    margin-left: auto;
}
.appWrapper.rtl .nav-stacked > li {
    float: none;
}
.appWrapper.rtl .nav-stacked > li + li {
    margin-right: 0;
    margin-left: auto;
}
.appWrapper.rtl .nav-justified > .dropdown .dropdown-menu {
    right: auto;
}
.appWrapper.rtl .nav-tabs-justified > li > a {
    margin-left: 0;
    margin-right: auto;
}
@media (min-width: 768px) {
    .appWrapper.rtl .nav-tabs-justified > li > a {
        border-radius: 4px 4px 0 0;
    }
}
@media (min-width: 768px) {
    .appWrapper.rtl .navbar-header {
        float: right;
    }
}
.appWrapper.rtl .navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
}
.appWrapper.rtl .navbar-brand {
    float: right;
}
@media (min-width: 768px) {
    .appWrapper.rtl .navbar > .container .navbar-brand,
    .appWrapper.rtl .navbar > .container-fluid .navbar-brand {
        margin-right: -15px;
        margin-left: auto;
    }
}
.appWrapper.rtl .navbar-toggle {
    float: left;
    margin-left: 15px;
    margin-right: auto;
}
@media (max-width: 767px) {
    .appWrapper.rtl .navbar-nav .open .dropdown-menu > li > a,
    .appWrapper.rtl .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 25px 5px 15px;
    }
}
@media (min-width: 768px) {
    .appWrapper.rtl .navbar-nav {
        float: right;
    }
    .appWrapper.rtl .navbar-nav > li {
        float: right;
    }
    .appWrapper.rtl .navbar-nav.navbar-right:last-child {
        margin-left: -15px;
        margin-right: auto;
    }
    .appWrapper.rtl .navbar-nav.navbar-right.flip {
        float: left !important;
    }
    .appWrapper.rtl .navbar-nav.navbar-right .dropdown-menu {
        left: 0;
        right: auto;
    }
}
@media (min-width: 768px) {
    .appWrapper.rtl .navbar-text {
        float: right;
    }
    .appWrapper.rtl .navbar-text.navbar-right:last-child {
        margin-left: 0;
        margin-right: auto;
    }
}
.appWrapper.rtl .pagination {
    padding-right: 0;
}
.appWrapper.rtl .pagination > li > a,
.appWrapper.rtl .pagination > li > span {
    float: right;
    margin-right: -1px;
    margin-left: 0;
}
.appWrapper.rtl .pagination > li:first-child > a,
.appWrapper.rtl .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.appWrapper.rtl .pagination > li:last-child > a,
.appWrapper.rtl .pagination > li:last-child > span {
    margin-right: -1px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.appWrapper.rtl .pager {
    padding-right: 0;
    padding-left: initial;
}
.appWrapper.rtl .pager .next > a,
.appWrapper.rtl .pager .next > span {
    float: left;
}
.appWrapper.rtl .pager .previous > a,
.appWrapper.rtl .pager .previous > span {
    float: right;
}
.appWrapper.rtl .nav-pills > li > a > .badge {
    margin-left: 0;
    margin-right: 3px;
}
.appWrapper.rtl .alert-dismissable,
.appWrapper.rtl .alert-dismissible {
    padding-left: 35px;
    padding-right: 15px;
}
.appWrapper.rtl .alert-dismissable .close,
.appWrapper.rtl .alert-dismissible .close {
    right: 0;
    left: 21px;
}
.appWrapper.rtl .progress-bar {
    float: right;
}
.appWrapper.rtl .media > .pull-left {
    margin-right: 10px;
}
.appWrapper.rtl .media > .pull-left.flip {
    margin-right: 0;
    margin-left: 10px;
}
.appWrapper.rtl .media > .pull-right {
    margin-left: 10px;
}
.appWrapper.rtl .media > .pull-right.flip {
    margin-left: 0;
    margin-right: 10px;
}
.appWrapper.rtl .media-list {
    padding-right: 0;
    padding-left: initial;
    list-style: none;
}
.appWrapper.rtl .list-group {
    padding-right: 0;
    padding-left: initial;
}
.appWrapper.rtl .list-group-item > .badge {
    float: left;
}
.appWrapper.rtl .list-group-item > .badge + .badge {
    margin-right: 5px;
    margin-left: auto;
}
.appWrapper.rtl .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.appWrapper.rtl .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.appWrapper.rtl .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.appWrapper.rtl .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 0;
}
.appWrapper.rtl .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.appWrapper.rtl .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.appWrapper.rtl .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.appWrapper.rtl .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.appWrapper.rtl .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 0;
}
.appWrapper.rtl .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.appWrapper.rtl .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.appWrapper.rtl .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.appWrapper.rtl .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
}
.appWrapper.rtl .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.appWrapper.rtl .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.appWrapper.rtl .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.appWrapper.rtl .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.appWrapper.rtl .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px;
    border-top-left-radius: 0;
}
.appWrapper.rtl .panel > .table-bordered > thead > tr > th:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.appWrapper.rtl .panel > .table-bordered > tbody > tr > th:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.appWrapper.rtl .panel > .table-bordered > tfoot > tr > th:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.appWrapper.rtl .panel > .table-bordered > thead > tr > td:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.appWrapper.rtl .panel > .table-bordered > tbody > tr > td:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.appWrapper.rtl .panel > .table-bordered > tfoot > tr > td:first-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-right: 0;
    border-left: none;
}
.appWrapper.rtl .panel > .table-bordered > thead > tr > th:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.appWrapper.rtl .panel > .table-bordered > tbody > tr > th:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.appWrapper.rtl .panel > .table-bordered > tfoot > tr > th:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.appWrapper.rtl .panel > .table-bordered > thead > tr > td:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.appWrapper.rtl .panel > .table-bordered > tbody > tr > td:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.appWrapper.rtl .panel > .table-bordered > tfoot > tr > td:last-child,
.appWrapper.rtl .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: none;
    border-left: 0;
}
.appWrapper.rtl .embed-responsive .embed-responsive-item,
.appWrapper.rtl .embed-responsive iframe,
.appWrapper.rtl .embed-responsive embed,
.appWrapper.rtl .embed-responsive object {
    right: 0;
    left: auto;
}
.appWrapper.rtl .close {
    float: left;
}
.appWrapper.rtl .modal-footer {
    text-align: left;
}
.appWrapper.rtl .modal-footer .btn + .btn {
    margin-left: auto;
    margin-right: 5px;
}
.appWrapper.rtl .modal-footer .btn-group .btn + .btn {
    margin-right: -1px;
    margin-left: auto;
}
.appWrapper.rtl .modal-footer .btn-block + .btn-block {
    margin-right: 0;
    margin-left: auto;
}
.appWrapper.rtl .popover {
    left: auto;
    text-align: right;
}
.appWrapper.rtl .popover.top > .arrow {
    right: 50%;
    left: auto;
    margin-right: -11px;
    margin-left: auto;
}
.appWrapper.rtl .popover.top > .arrow:after {
    margin-right: -10px;
    margin-left: auto;
}
.appWrapper.rtl .popover.bottom > .arrow {
    right: 50%;
    left: auto;
    margin-right: -11px;
    margin-left: auto;
}
.appWrapper.rtl .popover.bottom > .arrow:after {
    margin-right: -10px;
    margin-left: auto;
}
.appWrapper.rtl .carousel-control {
    right: 0;
    bottom: 0;
}
.appWrapper.rtl .carousel-control.left {
    right: auto;
    left: 0;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.appWrapper.rtl .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.appWrapper.rtl .carousel-control .icon-prev,
.appWrapper.rtl .carousel-control .glyphicon-chevron-left {
    left: 50%;
    right: auto;
    margin-right: -10px;
}
.appWrapper.rtl .carousel-control .icon-next,
.appWrapper.rtl .carousel-control .glyphicon-chevron-right {
    right: 50%;
    left: auto;
    margin-left: -10px;
}
.appWrapper.rtl .carousel-indicators {
    right: 50%;
    left: 0;
    margin-right: -30%;
    margin-left: 0;
    padding-left: 0;
}
@media screen and (min-width: 768px) {
    .appWrapper.rtl .carousel-control .glyphicon-chevron-left,
    .appWrapper.rtl .carousel-control .icon-prev {
        margin-left: 0;
        margin-right: -15px;
    }
    .appWrapper.rtl .carousel-control .glyphicon-chevron-right,
    .appWrapper.rtl .carousel-control .icon-next {
        margin-left: 0;
        margin-right: -15px;
    }
    .appWrapper.rtl .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }
}
.appWrapper.rtl .pull-right.flip {
    float: left !important;
}
.appWrapper.rtl .pull-left.flip {
    float: right !important;
}
.appWrapper.rtl #header .branding {
    float: right;
}
.appWrapper.rtl #header .branding a.brand {
    float: right;
}
.appWrapper.rtl #header .nav-left {
    float: right !important;
    padding: 0;
    padding-left: 20px;
}
.appWrapper.rtl #header .nav-left .divided-right {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.appWrapper.rtl #header .search:after {
    right: auto;
    left: 0;
}
.appWrapper.rtl #header .nav-right {
    float: left !important;
}
.appWrapper.rtl #header .nav-left > li.nav-profile > a span > i,
.appWrapper.rtl #header .nav-right > li.nav-profile > a span > i {
    margin-left: 0;
    margin-right: 5px;
}
.appWrapper.rtl .pageheader .page-bar .page-breadcrumb > li:first-child {
    margin-right: 0;
    margin-left: 8px;
}
.appWrapper.rtl .pageheader .page-bar .page-toolbar {
    float: left;
}
.appWrapper.rtl #sidebar accordion .panel-group .panel > .panel-heading .panel-title > a > i {
    right: auto;
    left: 0;
}
.appWrapper.rtl #sidebar .summary .media .pull-right {
    float: left !important;
}
.appWrapper.rtl #sidebar .settings .onoffswitch {
    right: auto;
    left: -10px;
}
.appWrapper.rtl .onoffswitch.labeled .onoffswitch-inner:after {
    padding-right: 0;
    padding-left: 7px;
}
.appWrapper.rtl .onoffswitch.labeled .onoffswitch-switch {
    right: auto;
    left: 21px;
}
.appWrapper.rtl .onoffswitch.small {
    left: -5px;
    right: auto;
}
.appWrapper.rtl .onoffswitch.small .onoffswitch-switch {
    left: 6px;
    right: auto;
}
.appWrapper.rtl .onoffswitch-inner {
    display: block;
    width: 200%;
    margin-right: -100%;
    margin-left: 0;
    -webkit-transition: margin 0.2s ease-in 0s;
    -moz-transition: margin 0.2s ease-in 0s;
    transition: margin 0.2s ease-in 0s;
}
.appWrapper.rtl .onoffswitch-switch {
    right: auto;
    left: 15px;
}
.appWrapper.rtl .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-right: 0;
}
.appWrapper.rtl .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    left: 0px;
    right: auto;
}
.appWrapper.rtl .onoffswitch-inner:before,
.appWrapper.rtl .onoffswitch-inner:after {
    float: right;
}
.appWrapper.rtl #navigation > li > a > i {
    margin-right: 0;
    margin-left: 10px;
}
.appWrapper.rtl #navigation > li > a > i:last-of-type {
    right: auto;
    left: 0;
}
.appWrapper.rtl #navigation > li > a .badge {
    left: auto;
    right: 25px;
}
.appWrapper.rtl #navigation > li > a .label {
    left: 10px;
    right: auto;
}
.appWrapper.rtl #navigation .dropdown > ul li > a {
    padding: 8px 30px 8px 0;
}
.appWrapper.rtl #navigation .dropdown > ul li > a > i {
    margin-right: 0;
    margin-left: 15px;
}
.appWrapper.rtl #navigation .dropdown > ul li > a > i:first-of-type:before {
    content: "\f0d9";
}
.appWrapper.rtl #navigation .dropdown > ul li > a > i:last-of-type {
    right: auto;
    left: 0;
}
.appWrapper.rtl #navigation .dropdown.submenu > ul {
    padding-left: 0;
    padding-right: 15px;
}
.appWrapper.rtl .form-control.underline-input {
    padding-left: 12px;
    padding-right: 0;
}
.appWrapper.rtl .dropdown-menu {
    right: 0;
    left: auto;
    float: right;
    text-align: right;
}
.appWrapper.rtl .dropdown-menu.with-arrow:before {
    left: auto;
    right: 12px;
}
.appWrapper.rtl .dropdown-menu.with-arrow:after {
    left: auto;
    right: 13px;
}
.appWrapper.rtl .dropdown-menu.pull-right.with-arrow:before {
    left: 11px;
    right: auto;
}
.appWrapper.rtl .dropdown-menu.pull-right.with-arrow:after {
    left: 12px;
    right: auto;
}
.appWrapper.rtl .dropdown-menu.panel .panel-footer > a > i {
    float: left !important;
}
.appWrapper.rtl .dropdown-menu.panel .panel-footer > a > i:before {
    content: "\f104";
}
.appWrapper.rtl .dropdown-menu > li > a > i {
    margin-right: 0;
    margin-left: 5px;
}
.appWrapper.rtl .dropdown-menu > li > a > .label,
.appWrapper.rtl .dropdown-menu > li > a > .badge {
    float: left !important;
}
.appWrapper.rtl .dropdown.settings .color-schemes {
    padding: 5px 10px;
    margin-right: 0;
}
.appWrapper.rtl.header-fixed.aside-fixed #content {
    right: 250px;
    left: 0;
}
.appWrapper.rtl #rightbar .tab-content .tab-pane ul > li .media .media-body {
    text-align: left;
}
.appWrapper.rtl #rightbar .tab-content .tab-pane ul.settings > li .form-group .control-label .onoffswitch {
    right: auto;
    left: -35px;
}
.appWrapper.rtl.rightbar-hidden #rightbar {
    left: -250px;
    right: auto;
}
.appWrapper.rtl.header-fixed.rightbar-show #rightbar,
.appWrapper.rtl.aside-fixed.rightbar-show #rightbar {
    left: 0;
    right: auto;
}
.appWrapper.rtl.header-fixed.rightbar-show #header,
.appWrapper.rtl.aside-fixed.rightbar-show #header {
    left: 250px;
    right: 0;
}
.appWrapper.rtl.header-fixed.rightbar-show #content,
.appWrapper.rtl.aside-fixed.rightbar-show #content {
    left: 250px;
}
.appWrapper.rtl .nav-tabs.nav-justified > li {
    float: none;
}
.appWrapper.rtl.sidebar-sm #sidebar #navigation > li.dropdown > ul,
.appWrapper.rtl.sidebar-xs #sidebar #navigation > li.dropdown > ul {
    left: auto;
    right: 100%;
}
.appWrapper.rtl.sidebar-sm #sidebar #navigation > li li.submenu > ul,
.appWrapper.rtl.sidebar-xs #sidebar #navigation > li li.submenu > ul {
    left: auto;
    right: 100%;
}
.appWrapper.rtl.sidebar-xs #sidebar #navigation > li > a .badge {
    left: auto;
    right: 5px;
}
.appWrapper.rtl.header-fixed.sidebar-sm #content {
    right: 80px;
    left: 0;
    padding-right: 0;
    padding-left: 0;
}
.appWrapper.rtl.header-fixed.sidebar-xs #content {
    right: 40px;
    left: 0;
    padding-right: 0;
    padding-left: 0;
}
.appWrapper.rtl.header-static #header {
    padding-right: 250px;
    padding-left: 0;
}
.appWrapper.rtl.header-static #header .branding {
    position: fixed;
    right: 0;
    left: auto;
}
.appWrapper.rtl.header-static #content {
    padding-right: 250px;
    padding-left: 0;
    padding-top: 0;
}
.appWrapper.rtl.header-static.sidebar-sm #header {
    padding-right: 80px;
    padding-left: 0;
}
.appWrapper.rtl.header-static.sidebar-sm #header .branding .brand {
    margin-left: 0;
    margin-right: 8px;
}
.appWrapper.rtl.header-static.sidebar-sm #content {
    padding-right: 80px;
    padding-left: 0;
}
.appWrapper.rtl.header-static.sidebar-xs #header {
    padding-right: 40px;
    padding-left: 0;
}
.appWrapper.rtl.header-static.sidebar-xs #content {
    padding-right: 40px;
    padding-left: 0;
}
.appWrapper.rtl.header-static.rightbar-show #rightbar {
    right: auto;
    left: 0;
}
.appWrapper.rtl.header-static.rightbar-show #header {
    padding-left: 250px;
}
.appWrapper.rtl.header-static.rightbar-show #content {
    padding-left: 250px;
}
.appWrapper.rtl.aside-static #wrap #controls {
    left: auto;
    right: 0;
}
.appWrapper.rtl.aside-static #sidebar {
    float: right;
}
.appWrapper.rtl.aside-static #content {
    padding-left: 0;
    padding-right: 250px;
}
.appWrapper.rtl.aside-static.sidebar-sm #content {
    padding-right: 80px;
    padding-left: 0;
}
.appWrapper.rtl.aside-static.sidebar-xs #content {
    padding-right: 40px;
    padding-left: 0;
}
.appWrapper.rtl.aside-static.header-static #header {
    padding-right: 0;
}
@media only screen and (max-width: 1200px) {
    .appWrapper.rtl.rightbar-show #rightbar {
        left: 0;
    }
    .appWrapper.rtl.rightbar-show #header {
        left: 0 !important;
        padding-left: 0 !important;
    }
    .appWrapper.rtl.rightbar-show #content {
        left: 0 !important;
        padding-left: 0 !important;
    }
}
@media only screen and (max-width: 992px) {
    .appWrapper.rtl.sidebar-sm #header .branding .brand,
    .appWrapper.rtl:not(.sidebar-sm):not(.sidebar-xs) #header .branding .brand {
        margin-right: 8px;
        margin-left: 0;
    }
    .appWrapper.rtl:not(.sidebar-sm):not(.sidebar-xs) #header .branding .brand {
        margin-right: -12px;
        margin-left: 0;
    }
    .appWrapper.rtl.header-fixed.aside-fixed:not(.sidebar-sm):not(.sidebar-xs) #content {
        left: 0;
        right: 80px;
    }
}
@media only screen and (max-width: 768px) {
    .appWrapper.rtl.sidebar-xs #header .branding {
        float: none;
        position: relative;
    }
    .appWrapper.rtl.sidebar-xs #header .branding > a {
        float: none;
        background-position: 8px -1px;
    }
    .appWrapper.rtl.sidebar-xs #header .branding .brand > span {
        display: inline-block;
    }
    .appWrapper.rtl.sidebar-xs #header .search {
        left: auto;
        right: 15px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-left {
        right: auto;
        left: 0;
        padding-left: 0;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-left .settings .dropdown-menu {
        right: auto;
        left: 0;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-left .settings .dropdown-menu.with-arrow:before {
        right: auto;
        left: 11px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-left .settings .dropdown-menu.with-arrow:after {
        right: auto;
        left: 12px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right {
        float: right !important;
        padding-left: 0;
        padding-right: 3px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .nav-profile {
        right: auto;
        left: 40px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .nav-profile .dropdown-menu {
        left: 0;
        right: auto;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .nav-profile .dropdown-menu.with-arrow:before {
        right: auto;
        left: 11px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .nav-profile .dropdown-menu.with-arrow:after {
        right: auto;
        left: 12px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .toggle-right-sidebar {
        right: auto;
        left: 0;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .users .dropdown-menu,
    .appWrapper.rtl.sidebar-xs #header .nav-right .messages .dropdown-menu,
    .appWrapper.rtl.sidebar-xs #header .nav-right .notifications .dropdown-menu {
        left: auto;
        right: 0;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .users .dropdown-menu.with-arrow:before,
    .appWrapper.rtl.sidebar-xs #header .nav-right .messages .dropdown-menu.with-arrow:before,
    .appWrapper.rtl.sidebar-xs #header .nav-right .notifications .dropdown-menu.with-arrow:before {
        left: auto;
        right: 11px;
    }
    .appWrapper.rtl.sidebar-xs #header .nav-right .users .dropdown-menu.with-arrow:after,
    .appWrapper.rtl.sidebar-xs #header .nav-right .messages .dropdown-menu.with-arrow:after,
    .appWrapper.rtl.sidebar-xs #header .nav-right .notifications .dropdown-menu.with-arrow:after {
        left: auto;
        right: 12px;
    }
    .appWrapper.rtl.sidebar-xs.header-static.aside-fixed #header .search {
        right: 55px;
        left: auto;
    }
}
@media only screen and (max-width: 480px) {
    .appWrapper.rtl.sidebar-xs #header .branding {
        text-align: right;
        padding-left: 0;
        padding-right: 10px;
    }
    .appWrapper.rtl.sidebar-xs #header .branding > a {
        background-position: 5px -1px;
    }
    .appWrapper.rtl.sidebar-xs #header .branding .brand > span {
        display: none;
    }
    .appWrapper.rtl.sidebar-xs #header .search {
        left: auto;
        right: 55px;
    }
    .appWrapper.rtl.sidebar-xs.header-static.aside-fixed #header .search {
        left: auto;
        right: 95px;
    }
}
@media only screen and (max-width: 360px) {
    .appWrapper.rtl.rightbar-hidden #rightbar {
        right: auto;
        left: -100%;
    }
}
.no-rtl {
    direction: ltr;
    unicode-bidi: embed;
}
#content {
    padding-top: 45px;
    width: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: -blackberry-touch;
    -webkit-transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    -moz-transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
#content > div[ui-view] {
    height: 100%;
}
#content.ng-enter .page {
    -webkit-animation: littleFadeInUp 0.5s ease;
    -moz-animation: littleFadeInUp 0.5s ease;
    animation: littleFadeInUp 0.5s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#content.ng-leave .page {
    filter: alpha(opacity=0);
    opacity: 0;
}
/*#content > [ui-view].ng-enter,*/
/*#content > [ui-view].ng-leave {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    -webkit-transition: all 0.5s ease-in-out;*/
/*    -moz-transition: all 0.5s ease-in-out;*/
/*    transition: all 0.5s ease-in-out;*/
/*}*/
#content > [ui-view].ng-enter {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    -moz-transform: scale3d(0.5, 0.5, 0.5);
    -ms-transform: scale3d(0.5, 0.5, 0.5);
    -o-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}
#content > [ui-view].ng-enter-active {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
#content > [ui-view].ng-leave {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*#content > [ui-view].ng-leave-active {*/
/*    filter: alpha(opacity=0);*/
/*    opacity: 0;*/
/*    -webkit-transform: translate3d(100px, 100px, 0);*/
/*    -moz-transform: translate3d(100px, 100px, 0);*/
/*    -ms-transform: translate3d(100px, 100px, 0);*/
/*    -o-transform: translate3d(100px, 100px, 0);*/
/*    transform: translate3d(100px, 100px, 0);*/
/*}*/
.appWrapper.header-fixed.aside-fixed #content {
    position: absolute;
    top: 45px;
    right: 0;
    bottom: 0;
    width: auto;
    left: 250px;
    padding-left: 0;
    padding-top: 0;
    z-index: 1;
}
.appWrapper.header-static #content {
    padding-left: 250px;
    padding-top: 0;
}
.appWrapper.aside-static #content {
    padding-left: 250px;
}
@media only screen and (max-width: 992px) {
    .appWrapper.header-fixed.aside-fixed:not(.sidebar-sm):not(.sidebar-xs) #content {
        left: 80px;
    }
}
@media only screen and (max-width: 768px) {
    .appWrapper.header-fixed.aside-fixed #content {
        top: 90px;
    }
    .appWrapper.header-fixed.aside-fixed:not(.sidebar-sm):not(.sidebar-xs) #content {
        left: 40px;
    }
    .appWrapper.aside-static #content {
        padding-top: 90px;
    }
    .appWrapper.header-static.aside-static #content {
        padding-top: 0;
    }
}
.appWrapper.header-fixed #header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}
.appWrapper:not(.header-fixed) #header {
    padding-left: 250px;
}
.appWrapper:not(.header-fixed) #header .branding {
    position: fixed;
    left: 0;
}
.appWrapper:not(.header-fixed):not(.aside-fixed) #header {
    padding-left: 0;
    position: relative;
}
.appWrapper:not(.header-fixed):not(.aside-fixed) #header .branding {
    position: static;
}
.appWrapper:not(.sidebar-offcanvas) #header .branding .offcanvas-toggle {
    display: none !important;
}
#header {
    background-color: #51445f;
    z-index: 1001;
    -webkit-transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    -moz-transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335), padding-right 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
#header .branding {
    background-color: #493d55;
    width: 250px;
    height: 45px;
    float: left;
    padding: 0 15px;
    text-align: center;
}
#header .branding a.brand {
    font-family: "Dosis", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: white;
    height: 45px;
    line-height: 45px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
#header .branding a.brand:hover {
    text-decoration: none;
}
#header .branding .offcanvas-toggle {
    color: white;
    margin-left: 5px;
    opacity: .5;
    padding: 1px 4px;
    font-size: 18px;
}
#header .branding .offcanvas-toggle:hover {
    opacity: 1;
}
#header .search {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    background-color: #51445f;
}
#header .search .form-control {
    margin-top: 3px;
}
#header .search:after {
    content: '\f002';
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 43px;
    color: rgba(255, 255, 255, 0.25);
}
#header .search .underline-input {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    font-family: "Ubuntu Mono", sans-serif;
    font-size: 16px;
}
#header .search .underline-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}
#header .search .underline-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}
#header .search .underline-input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}
#header .search .underline-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}
#header .search .underline-input:focus {
    border-color: rgba(255, 255, 255, 0.7);
}
#header .search .underline-input:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#header .search .underline-input:focus::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#header .search .underline-input:focus:-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#header .search .underline-input:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#header .nav-right,
#header .nav-left {
    margin-bottom: 0;
}
#header .nav-right > li,
#header .nav-left > li {
    margin-top: 3px;
    vertical-align: top;
    background-color: #51445f;
}
#header .nav-right > li > a,
#header .nav-left > li > a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 42px;
    padding: 0 10px;
    display: inline-block;
    position: relative;
}
#header .nav-right > li > a:hover,
#header .nav-left > li > a:hover {
    color: white;
}
#header .nav-right > li > a > .badge,
#header .nav-left > li > a > .badge {
    position: absolute;
    top: 1px;
    left: 1px;
}
#header .nav-right > li.nav-profile,
#header .nav-left > li.nav-profile {
    margin-top: 0;
}
#header .nav-right > li.nav-profile > a,
#header .nav-left > li.nav-profile > a {
    font-size: 12px;
    padding: 0;
}
#header .nav-right > li.nav-profile > a img,
#header .nav-left > li.nav-profile > a img {
    margin-top: -2px;
}
#header .nav-right > li.nav-profile > a span,
#header .nav-left > li.nav-profile > a span {
    margin: 0 5px;
    line-height: 45px;
}
#header .nav-right > li.nav-profile > a span > i,
#header .nav-left > li.nav-profile > a span > i {
    margin-left: 5px;
}
#header .nav-right > li.language,
#header .nav-left > li.language {
    margin-top: 0;
}
#header .nav-right > li.language > a img,
#header .nav-left > li.language > a img {
    height: 20px;
}
#header .nav-right > li.language .dropdown-menu,
#header .nav-left > li.language .dropdown-menu {
    right: 8px;
    margin-top: 1px;
    display: none !important;
}
#header .nav-right > li.language .dropdown-menu > li > a img,
#header .nav-left > li.language .dropdown-menu > li > a img {
    height: 20px;
    margin-right: 5px;
}
#header .nav-right > li.language.open .dropdown-menu,
#header .nav-left > li.language.open .dropdown-menu {
    display: block !important;
}
#header .nav-right > li.toggle-right-sidebar,
#header .nav-left > li.toggle-right-sidebar {
    margin-top: 0;
    padding: 0;
}
#header .nav-right > li.toggle-right-sidebar > a,
#header .nav-left > li.toggle-right-sidebar > a {
    background-color: #493d55;
    line-height: 45px;
    padding: 0 15px;
}
#header .nav-left {
    margin-left: 0;
}
#header .nav-left > li.divided-right {
    margin-top: 0;
    border-color: rgba(255, 255, 255, 0.1);
}
#header .nav-left > li.divided-right > a {
    line-height: 45px;
}
@media only screen and (max-width: 992px) {
    .appWrapper.sidebar-sm #header .branding,
    .appWrapper:not(.sidebar-sm):not(.sidebar-xs) #header .branding {
        width: 80px;
    }
    .appWrapper.sidebar-sm #header .branding .brand > span,
    .appWrapper:not(.sidebar-sm):not(.sidebar-xs) #header .branding .brand > span {
        display: none;
    }
    .appWrapper.sidebar-sm #header .branding .brand,
    .appWrapper:not(.sidebar-sm):not(.sidebar-xs) #header .branding .brand {
        margin-left: 12px;
    }
    .appWrapper:not(.sidebar-sm):not(.sidebar-xs) #header .branding {
        width: 40px;
    }
    .appWrapper:not(.sidebar-sm):not(.sidebar-xs) #header .branding .brand {
        margin-left: -9px;
    }
}
@media only screen and (max-width: 768px) {
    .appWrapper.sidebar-xs #header {
        position: relative;
        z-index: 22;
    }
    .appWrapper.sidebar-xs #header .branding {
        float: none;
        width: 100% !important;
        text-align: center;
        position: relative;
    }
    .appWrapper.sidebar-xs #header .branding > a {
        float: none;
        width: auto;
        background-position: 8px 1px;
    }
    .appWrapper.sidebar-xs #header .branding .brand > span {
        display: inline-block;
        margin-left: 10px;
    }
    .appWrapper.sidebar-xs #header .search {
        position: absolute;
        left: 0;
        top: 0;
        width: 120px;
    }
    .appWrapper.sidebar-xs #header .nav-left {
        position: absolute;
        right: 0;
        top: 0;
    }
    .appWrapper.sidebar-xs #header .nav-left .sidebar-collapse {
        display: none;
    }
    .appWrapper.sidebar-xs #header .nav-left .settings .dropdown-menu {
        right: 0;
        left: auto;
    }
    .appWrapper.sidebar-xs #header .nav-left .settings .dropdown-menu.with-arrow:before {
        right: 12px;
        left: auto;
    }
    .appWrapper.sidebar-xs #header .nav-left .settings .dropdown-menu.with-arrow:after {
        right: 13px;
        left: auto;
    }
    .appWrapper.sidebar-xs #header .nav-right {
        float: left !important;
        padding-left: 10px;
    }
    .appWrapper.sidebar-xs #header .nav-right .nav-profile {
        position: absolute;
        bottom: 0;
        right: 40px;
    }
    .appWrapper.sidebar-xs #header .nav-right .nav-profile > a > span {
        display: none;
    }
    .appWrapper.sidebar-xs #header .nav-right .nav-profile .dropdown-menu {
        left: auto;
        right: 0;
    }
    .appWrapper.sidebar-xs #header .nav-right .nav-profile .dropdown-menu.with-arrow:before {
        right: 12px;
        left: auto;
    }
    .appWrapper.sidebar-xs #header .nav-right .nav-profile .dropdown-menu.with-arrow:after {
        right: 13px;
        left: auto;
    }
    .appWrapper.sidebar-xs #header .nav-right .toggle-right-sidebar {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .appWrapper.sidebar-xs #header .nav-right .users .dropdown-menu,
    .appWrapper.sidebar-xs #header .nav-right .messages .dropdown-menu,
    .appWrapper.sidebar-xs #header .nav-right .notifications .dropdown-menu {
        left: 0;
        right: auto;
    }
    .appWrapper.sidebar-xs #header .nav-right .users .dropdown-menu.with-arrow:before,
    .appWrapper.sidebar-xs #header .nav-right .messages .dropdown-menu.with-arrow:before,
    .appWrapper.sidebar-xs #header .nav-right .notifications .dropdown-menu.with-arrow:before {
        left: 12px;
        right: auto;
    }
    .appWrapper.sidebar-xs #header .nav-right .users .dropdown-menu.with-arrow:after,
    .appWrapper.sidebar-xs #header .nav-right .messages .dropdown-menu.with-arrow:after,
    .appWrapper.sidebar-xs #header .nav-right .notifications .dropdown-menu.with-arrow:after {
        left: 13px;
        right: auto;
    }
    .appWrapper.sidebar-xs.header-static.aside-fixed #header .search {
        left: 40px;
    }
    .appWrapper.sidebar-xs.header-fixed #header {
        position: fixed;
    }
}
@media only screen and (max-width: 480px) {
    .appWrapper.sidebar-xs #header .branding {
        text-align: left;
        padding-left: 10px;
    }
    .appWrapper.sidebar-xs #header .branding > a {
        background-position: 0 1px;
    }
    .appWrapper.sidebar-xs #header .branding .brand > span {
        display: none;
    }
    .appWrapper.sidebar-xs #header .search {
        left: 40px;
    }
    .appWrapper.sidebar-xs.header-static.aside-fixed #header .search {
        left: 80px;
    }
    .appWrapper.sidebar-xs.sidebar-offcanvas #header .search {
        left: 70px;
    }
}
@media only screen and (max-width: 420px) {
    /* .appWrapper.sidebar-xs #header .nav-right > li {
    position: static !important; }*/

    .appWrapper.sidebar-xs #header .nav-right > li.toggle-right-sidebar {
        position: absolute !important;
    }
    /*    .appWrapper.sidebar-xs #header .nav-right > li .dropdown-menu {
      left: 0 !important;
      right: 0 !important; }*/

    .appWrapper.sidebar-xs #header .nav-right > li .dropdown-menu.with-arrow:before,
    .appWrapper.sidebar-xs #header .nav-right > li .dropdown-menu.with-arrow:after {
        display: none !important;
    }
    .tile .tile-header,
    .tile .tile-widget,
    .tile .tile-body,
    .tile .tile-footer {
        overflow: auto;
    }
}
.appWrapper.sidebar-xs .sidebar-collapse i:before {
    content: "\f03c";
}
.appWrapper.aside-fixed #sidebar {
    position: fixed;
    top: 45px;
    bottom: 0;
}
.appWrapper.aside-static #wrap {
    position: relative;
}
.appWrapper.aside-static #wrap #controls {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.appWrapper.aside-static #wrap #controls.dropdown-open {
    right: 0;
}
.appWrapper.aside-static #sidebar {
    position: static;
    float: left;
    padding-top: 45px;
    min-height: 100%;
}
.appWrapper.aside-static.header-static #sidebar {
    padding-top: 45px;
}
#sidebar {
    width: 250px;
    padding: 0;
    background-color: #493d55;
    z-index: 21;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: -blackberry-touch;
}
#sidebar accordion {
    display: block;
}
#sidebar accordion .panel-group {
    margin-bottom: 0;
}
#sidebar accordion .panel-group .panel + .panel {
    margin-top: 0;
}
#sidebar accordion .panel-group .panel {
    border-radius: 0;
    border: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#sidebar accordion .panel-group .panel > .panel-heading {
    background-color: transparent;
    border: 0;
    text-transform: uppercase;
    padding: 0 15px;
    display: none;
}
#sidebar accordion .panel-group .panel > .panel-heading .panel-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#sidebar accordion .panel-group .panel > .panel-heading .panel-title > a {
    display: block;
    position: relative;
    padding: 15px 0;
    cursor: pointer;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
}
#sidebar accordion .panel-group .panel > .panel-heading .panel-title > a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}
#sidebar accordion .panel-group .panel > .panel-heading .panel-title > a > i {
    position: absolute;
    right: 0;
}
#sidebar accordion .panel-group .panel > .panel-heading + .panel-collapse > .panel-body {
    border-top: 0;
    padding-top: 0;
}
#sidebar accordion .panel-group .panel.closed > .panel-heading {
    background-color: rgba(0, 0, 0, 0.05);
}
#sidebar accordion .panel-group .panel.closed > .panel-heading .panel-title {
    border: 0;
}
#sidebar accordion .panel-group .panel.closed > .panel-heading .panel-title > a {
    color: rgba(255, 255, 255, 0.5);
}
#sidebar accordion .panel-group .panel.closed > .panel-heading .panel-title > a:hover {
    color: white;
}
#sidebar accordion .panel-group .panel .panel-body {
    color: rgba(255, 255, 255, 0.5);
}
#sidebar .summary .media .media-body {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}
#sidebar .summary .media .media-body .media-heading {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}
#sidebar .settings label {
    font-weight: 400;
}
#sidebar .settings .onoffswitch {
    right: -10px;
}
#sidebar .settings .onoffswitch .onoffswitch-label {
    filter: alpha(opacity=40);
    opacity: 0.4;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#sidebar .settings .onoffswitch-checkbox:checked + .onoffswitch-label {
    filter: alpha(opacity=100);
    opacity: 1;
}
#sidebar-wrap {
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: -blackberry-touch;
    width: 100%;
    height: 100%;
}
#navigation {
    margin: 0 -15px;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: -blackberry-touch;
    list-style: none;
    background-color: #493d55;
}
#navigation > li > a > i {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
    width: 20px;
    line-height: 1;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
#navigation > li {
    position: relative;
    margin: 0;
    overflow: hidden;
    z-index: 10;
}
#navigation > li.open > a,
#navigation > li:hover > a {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
}
#navigation > li.open > i,
#navigation > li:hover > i {
    color: white;
}
#navigation > li.active > a {
    background-color: #16a085;
    color: white;
}
#navigation > li.active > i {
    color: white;
}
#navigation > li.active .ink {
    z-index: 9;
}
#navigation > li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}
#navigation > li a:hover {
    text-decoration: none;
}
#navigation > li .ink {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    transform: scale(0);
    width: 250px !important;
    height: 250px !important;
}
#navigation > li .ink.animate {
    -webkit-animation: ripple 0.65s linear;
    -moz-animation: ripple 0.65s linear;
    animation: ripple 0.65s linear;
}
#navigation > li > a {
    font-weight: 700;
    position: relative;
    display: block;
    padding: 12px 15px;
}
#navigation > li > a > .badge {
    position: absolute;
    top: 7px;
    left: 25px;
}
#navigation > li > a > .label {
    position: absolute;
    top: 13px;
    right: 10px;
}
#navigation .dropdown > a > i:last-of-type {
    font-size: 10px;
    position: absolute;
    top: 17px;
    right: 0px;
}
#navigation .dropdown.open > a > i:last-of-type:before {
    content: "\f068";
}
#navigation .dropdown > a > .label {
    right: 35px;
}
#navigation .dropdown > ul {
    display: none;
    background-color: rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 5px 0;
}
#navigation .dropdown > ul li {
    position: relative;
    padding: 0;
}
#navigation .dropdown > ul li:hover > a,
#navigation .dropdown > ul li.active > a {
    color: #16a085;
}
#navigation .dropdown > ul li:last-child > a {
    border-bottom: 0;
}
#navigation .dropdown > ul li > a {
    font-size: 12px;
    position: relative;
    display: block;
    padding: 8px 0 8px 30px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#navigation .dropdown > ul li > a > i {
    margin-right: 15px;
}
#navigation .dropdown > ul li > a > .badge,
#navigation .dropdown > ul li > a > .label {
    position: absolute;
    right: 10px;
    top: 8px;
}
#navigation .dropdown.submenu > a > i:last-of-type {
    top: 14px;
}
#navigation .dropdown.submenu.open > a {
    color: white !important;
}
#navigation .dropdown.submenu > ul {
    background-color: transparent;
    padding-left: 15px;
}
.sidebar-sm #sidebar,
.sidebar-xs #sidebar {
    background-color: transparent;
}
.sidebar-sm #sidebar #sidebar-wrap:before,
.sidebar-xs #sidebar #sidebar-wrap:before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 80px;
    background-color: #493d55;
}
.sidebar-sm #sidebar.dropdown-open,
.sidebar-xs #sidebar.dropdown-open {
    width: 100% !important;
}
.sidebar-sm #sidebar .slimScrollDiv .slimScrollBar,
.sidebar-sm #sidebar .slimScrollDiv .slimScrollRail,
.sidebar-xs #sidebar .slimScrollDiv .slimScrollBar,
.sidebar-xs #sidebar .slimScrollDiv .slimScrollRail {
    right: auto !important;
    left: 1px !important;
    width: 4px !important;
}
.sidebar-sm #sidebar accordion .panel-heading,
.sidebar-sm #sidebar accordion .charts,
.sidebar-sm #sidebar accordion .settings,
.sidebar-xs #sidebar accordion .panel-heading,
.sidebar-xs #sidebar accordion .charts,
.sidebar-xs #sidebar accordion .settings {
    display: none;
}
.sidebar-sm #sidebar accordion .panel-body,
.sidebar-xs #sidebar accordion .panel-body {
    padding: 0 10px;
}
.sidebar-sm #sidebar accordion .panel-collapse.collapse,
.sidebar-xs #sidebar accordion .panel-collapse.collapse {
    display: block !important;
}
.sidebar-sm #sidebar accordion .panel-group,
.sidebar-xs #sidebar accordion .panel-group {
    height: 100%;
}
.sidebar-sm #sidebar accordion .panel-group .panel,
.sidebar-sm #sidebar accordion .panel-group .panel-collapse,
.sidebar-sm #sidebar accordion .panel-group .panel-body,
.sidebar-xs #sidebar accordion .panel-group .panel,
.sidebar-xs #sidebar accordion .panel-group .panel-collapse,
.sidebar-xs #sidebar accordion .panel-group .panel-body {
    height: 100% !important;
}
.sidebar-sm #sidebar #navigation,
.sidebar-xs #sidebar #navigation {
    margin: 0 -10px;
    height: 100%;
}
.sidebar-sm #sidebar #navigation > li,
.sidebar-xs #sidebar #navigation > li {
    overflow: visible;
}
.sidebar-sm #sidebar #navigation > li > a,
.sidebar-xs #sidebar #navigation > li > a {
    padding: 15px 5px;
    text-align: center;
    font-size: 10px;
}
.sidebar-sm #sidebar #navigation > li > a > i,
.sidebar-xs #sidebar #navigation > li > a > i {
    display: block;
    margin: 0 auto 3px;
    font-size: 22px;
}
.sidebar-sm #sidebar #navigation > li > a > .label,
.sidebar-xs #sidebar #navigation > li > a > .label {
    display: none;
}
.sidebar-sm #sidebar #navigation > li .ink,
.sidebar-xs #sidebar #navigation > li .ink {
    display: none;
}
.sidebar-sm #sidebar #navigation > li.dropdown > a > i:last-of-type,
.sidebar-xs #sidebar #navigation > li.dropdown > a > i:last-of-type {
    display: none;
}
.sidebar-sm #sidebar #navigation > li.dropdown > ul,
.sidebar-xs #sidebar #navigation > li.dropdown > ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background-color: #3c3246;
}
.sidebar-sm #sidebar #navigation > li.dropdown.open > ul,
.sidebar-xs #sidebar #navigation > li.dropdown.open > ul {
    display: none !important;
}
.sidebar-sm #sidebar #navigation > li.dropdown:hover > ul,
.sidebar-xs #sidebar #navigation > li.dropdown:hover > ul {
    display: block !important;
}
.sidebar-sm #sidebar #navigation > li li.submenu > ul,
.sidebar-xs #sidebar #navigation > li li.submenu > ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background-color: #3c3246;
    padding-left: 0;
}
.sidebar-sm #sidebar #navigation > li li.submenu.open > ul,
.sidebar-xs #sidebar #navigation > li li.submenu.open > ul {
    display: none !important;
}
.sidebar-sm #sidebar #navigation > li li.submenu:hover > ul,
.sidebar-xs #sidebar #navigation > li li.submenu:hover > ul {
    display: block !important;
}
.appWrapper.header-fixed.sidebar-sm #content {
    left: 80px;
    padding-left: 0;
}
.appWrapper:not(.header-fixed).sidebar-sm #header {
    padding-left: 80px;
}
.appWrapper:not(.header-fixed).sidebar-sm #header .branding {
    width: 80px;
}
.appWrapper:not(.header-fixed).sidebar-sm #header .branding .brand > span {
    display: none;
}
.appWrapper:not(.header-fixed).sidebar-sm #header .branding .brand {
    margin-left: 12px;
}
.appWrapper:not(.header-fixed).sidebar-sm #content {
    padding-left: 80px;
}
.appWrapper:not(.aside-fixed).sidebar-sm #content {
    padding-left: 80px;
}
.appWrapper:not(.header-fixed):not(.aside-fixed).sidebar-sm #header {
    padding-left: 0;
}
.sidebar-sm #sidebar,
.sidebar-sm #navigation {
    width: 80px;
}
.sidebar-sm #content {
    padding-left: 80px;
}
.sidebar-xs #header .branding {
    width: 40px;
    padding: 0;
}
.sidebar-xs #header .branding > a {
    background-position: 6px 10px;
    width: 40px;
}
.sidebar-xs #header .branding > a > span {
    display: none;
}
.sidebar-xs #sidebar,
.sidebar-xs #navigation {
    width: 40px;
}
.sidebar-xs #sidebar #navigation > li > a {
    padding: 10px 5px;
}
.sidebar-xs #sidebar #navigation > li > a > i {
    margin: 0;
    display: inline-block;
    font-size: 14px;
}
.sidebar-xs #sidebar #navigation > li > a span {
    display: none;
}
.sidebar-xs #sidebar #navigation > li > a .badge {
    display: block;
    left: 5px;
    top: 3px;
}
.sidebar-xs #content {
    padding-left: 40px;
}
.sidebar-xs #sidebar #sidebar-wrap:before {
    width: 40px;
}
.appWrapper.header-fixed.sidebar-xs #content {
    left: 40px;
    padding-left: 0;
}
.appWrapper:not(.header-fixed).sidebar-xs #header {
    padding-left: 40px;
}
.appWrapper:not(.header-fixed).sidebar-xs #header .branding {
    width: 40px;
}
.appWrapper:not(.header-fixed).sidebar-xs #content {
    padding-left: 40px;
}
.appWrapper:not(.aside-fixed).sidebar-xs #content {
    padding-left: 40px;
}
.appWrapper:not(.header-fixed):not(.aside-fixed).sidebar-xs #header {
    padding-left: 0;
}
.appWrapper.sidebar-xs.sidebar-offcanvas #sidebar {
    left: -40px;
    -webkit-transition: left 0.2s;
    -moz-transition: left 0.2s;
    transition: left 0.2s;
}
.appWrapper.sidebar-xs.sidebar-offcanvas #content {
    left: 0;
}
.appWrapper.sidebar-xs.sidebar-offcanvas.offcanvas-opened #sidebar {
    left: 0;
}
.appWrapper.sidebar-xs.sidebar-offcanvas.offcanvas-opened #content {
    left: 40px;
}
@media only screen and (max-width: 768px) {
    .appWrapper.sidebar-xs.aside-fixed #sidebar {
        top: 90px;
    }
    .appWrapper.sidebar-xs.aside-fixed.header-static #sidebar {
        top: 0;
        z-index: 99;
    }
    .appWrapper.sidebar-xs.aside-fixed.header-static #sidebar #navigation > li > a {
        height: 45px;
        line-height: 26px;
    }
    .appWrapper.sidebar-xs.aside-static #sidebar {
        padding-top: 90px;
    }
}
.pageheader {
   /*  margin-bottom: 30px;  */   float: left;
    width: 100%;
}
.pageheader h2 {
    display: inline-block;
    color: #4a555b;
    font-size: 32px;
    font-weight: 300;
    margin-top: 10px;
}
.pageheader h2 span {
    font-size: 14px;
    color: #95a2a9;
    font-style: italic;
}
.pageheader .page-bar {
    background-color: white;
}
.pageheader .page-bar .page-breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}
.pageheader .page-bar .page-breadcrumb > li {
    display: inline-block;
}
.pageheader .page-bar .page-breadcrumb > li > a {
    color: #95a2a9;
    padding: 8px 10px;
    display: inline-block;
}
.pageheader .page-bar .page-breadcrumb > li > a:hover {
    color: #16a085;
    text-decoration: none;
}
.pageheader .page-bar .page-breadcrumb > li:before {
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f105";
    color: #95a2a9;
}
.pageheader .page-bar .page-breadcrumb > li:first-child {
    background-color: #493d55;
    margin-right: 8px;
}
.pageheader .page-bar .page-breadcrumb > li:first-child > a {
    color: rgba(255, 255, 255, 0.5);
}
.pageheader .page-bar .page-breadcrumb > li:first-child > a:hover {
    color: white;
}
.pageheader .page-bar .page-breadcrumb > li:first-child:before {
    content: "";
}
.pageheader .page-bar .page-toolbar {
    display: inline-block;
    float: right;
}
.pageheader .page-bar .page-toolbar .btn {
    padding: 8px 12px;
}
@media only screen and (max-width: 992px) {
    .page-bar .page-toolbar .btn span {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .page-bar .page-toolbar .btn {
        width: 37px;
    }
    .page-bar .page-toolbar .btn i:last-of-type {
        display: none;
    }
}

.app-modal-window .modal-dialog {
    width: 1100px;
}

@media only screen and (max-width: 480px) {
    .pageheader h2 span {
        display: block;
    }
    .pageheader .page-bar .page-breadcrumb {
        width: 100%;
    }
    .pageheader .page-bar .page-breadcrumb > li {
        font-size: 12px;
        display: block;
        padding-left: 10px;
    }
    .pageheader .page-bar .page-breadcrumb > li:first-child {
        padding-left: 0;
        margin-right: 0;
    }
    .pageheader .page-bar .page-breadcrumb > li > a {
        padding: 8px 5px;
    }
    .pageheader .page-bar .page-toolbar {
        display: none;
    }
}
.appWrapper.rightbar-hidden #rightbar {
    right: -250px;
}
.appWrapper.header-fixed.rightbar-show #rightbar,
.appWrapper.aside-fixed.rightbar-show #rightbar {
    right: 0;
}
.appWrapper.header-fixed.rightbar-show #header,
.appWrapper.aside-fixed.rightbar-show #header {
    right: 250px;
}
.appWrapper.header-fixed.rightbar-show #content,
.appWrapper.aside-fixed.rightbar-show #content {
    right: 250px;
}
.appWrapper.header-static.rightbar-show #rightbar {
    right: 0;
}
.appWrapper.header-static.rightbar-show #header {
    padding-right: 250px;
}
.appWrapper.header-static.rightbar-show #content {
    padding-right: 250px;
}
.appWrapper.aside-static.rightbar-show #content {
    padding-right: 250px;
}
#rightbar {
    width: 250px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #1d2833;
    -webkit-transition: all 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    -moz-transition: all 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: all 0.25s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    overflow: auto;
}
#rightbar .nav.nav-tabs {
    padding: 0;
    max-height: 45px;
    z-index: 2;
}
#rightbar .nav.nav-tabs > li {
    display: table-cell;
    width: 1%;
}
#rightbar .nav.nav-tabs > li > a {
    border-radius: 0;
    border: 0;
    padding: 12px 15px;
    min-height: 45px;
    color: #95a2a9;
    background-color: #141b23;
    cursor: pointer;
}
#rightbar .nav.nav-tabs > li > a:hover {
    background-color: #172029;
    color: #bfc7cb;
}
#rightbar .nav.nav-tabs > li.active > a {
    background-color: #1d2833;
    color: white;
}
#rightbar .nav.nav-tabs > li.active > a:hover #rightbar .nav.nav-tabs > li.active > a:focus {
    background-color: #1d2833;
    color: white;
}
#rightbar .tab-content {
    left: 0;
    background: #1d2833;
    padding: 5px 15px;
}
#rightbar .tab-content .tab-pane {
    padding: 0;
}
#rightbar .tab-content .tab-pane > h6 {
    color: #95a2a9;
    font-family: "Dosis", "Arial", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}
#rightbar .tab-content .tab-pane ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#rightbar .tab-content .tab-pane ul > li {
    margin-bottom: 15px;
}
#rightbar .tab-content .tab-pane ul > li:last-child {
    margin-bottom: 30px;
}
#rightbar .tab-content .tab-pane ul > li .media {
    position: relative;
}
#rightbar .tab-content .tab-pane ul > li .media .unread {
    position: absolute;
    left: 30px;
}
#rightbar .tab-content .tab-pane ul > li .media .media-body {
    padding-top: 2px;
    padding-bottom: 6px;
    position: relative;
}
#rightbar .tab-content .tab-pane ul > li .media .media-body .media-heading {
    font-family: "Lato", "Arial", sans-serif;
    font-weight: 300;
    color: #bfc7cb;
    margin: 0 0 3px;
    display: block;
}
#rightbar .tab-content .tab-pane ul > li .media .media-body small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#rightbar .tab-content .tab-pane ul > li .media .media-body small i {
    font-size: 14px;
}
#rightbar .tab-content .tab-pane ul > li .media .media-body .status {
    position: absolute;
    right: 0px;
    top: 18px;
}
#rightbar .tab-content .tab-pane ul > li.online .status {
    border-color: #16a085;
}
#rightbar .tab-content .tab-pane ul > li.busy .status {
    border-color: #ffc100;
}
#rightbar .tab-content .tab-pane ul > li.offline .media .thumb {
    filter: alpha(opacity=40);
    opacity: 0.4;
}
#rightbar .tab-content .tab-pane ul > li.offline .status {
    border-color: #616f77;
}
#rightbar .tab-content .tab-pane ul.settings > li .form-group .control-label {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    color: #95a2a9;
    font-weight: 300;
    line-height: 22px;
}
#rightbar .tab-content .tab-pane ul.settings > li .form-group .control-label .onoffswitch {
    right: -35px;
}
@media only screen and (max-width: 1200px) {
    #rightbar {
        top: 45px;
    }
    .appWrapper:not(.rtl).rightbar-show #rightbar {
        right: 0;
    }
    .appWrapper:not(.rtl).rightbar-show #header {
        right: 0 !important;
        padding-right: 0 !important;
    }
    .appWrapper:not(.rtl).rightbar-show #content {
        right: 0 !important;
        padding-right: 0 !important;
    }
}
@media only screen and (max-width: 768px) {
    #rightbar {
        top: 90px;
    }
}
@media only screen and (max-width: 360px) {
    #rightbar {
        width: 100%;
    }
    .appWrapper.rightbar-hidden #rightbar {
        right: -100%;
    }
}
#pageloader.hide {
    display: none;
}
#pageloader.animate {
    width: 40px;
    height: 40px;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    -webkit-animation: loaderrotate 2s infinite linear;
    -moz-animation: loaderrotate 2s infinite linear;
    animation: loaderrotate 2s infinite linear;
}
#pageloader.animate .dot1,
#pageloader.animate .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #16a085;
    border-radius: 100%;
    -webkit-animation: loaderbounce 2s infinite ease-in-out;
    -moz-animation: loaderbounce 2s infinite ease-in-out;
    animation: loaderbounce 2s infinite ease-in-out;
}
#pageloader.animate .dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1s;
    -moz-animation-delay: -1s;
    animation-delay: -1s;
    background-color: #e05d6f;
}
@-webkit-keyframes loaderrotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes loaderrotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes loaderbounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}
@keyframes loaderbounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
.add-nav {
    margin-top: -29px;
}
.add-nav .nav-heading {
    background-color: white;
    padding: 30px 20px;
}
.add-nav .nav-heading h1,
.add-nav .nav-heading h2,
.add-nav .nav-heading h3,
.add-nav .nav-heading h4,
.add-nav .nav-heading h5,
.add-nav .nav-heading h6 {
    margin: 0;
    display: inline-block;
}
.add-nav .nav-tabs {
    background-color: white;
}
.add-nav .nav-tabs > li:first-child {
    margin-left: 10px;
}
.add-nav .nav-tabs > li > a {
    color: #616f77;
    padding: 0 8px 10px;
    margin: 0 10px;
}
.add-nav .nav-tabs > li > a:hover {
    color: #428bca;
    background-color: transparent;
}
.add-nav .nav-tabs > li.active > a,
.add-nav .nav-tabs > li.active > a:hover,
.add-nav .nav-tabs > li.active > a:focus {
    background-color: white;
    color: #428bca;
    font-weight: 700;
}
.add-nav .nav-tabs > li.active:after {
    display: none;
}
.add-nav .tab-content .tab-pane {
    padding: 40px 0 15px;
}
.tile {
    position: relative;
    margin-bottom: 20px;
    color: #616f77;
    background-color: white;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.tile.tile-shadow {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
}
.tile.tile-rounded {
    border-radius: 3px;
}
.tile.collapsed .controls .minimize {
    display: none;
}
.tile.collapsed .controls .expand {
    display: inline !important;
}
.tile.refreshing {
    filter: alpha(opacity=30);
    opacity: 0.3;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tile.refreshing a {
    pointer-events: none;
    cursor: default;
}
.tile.isInFullScreen {
    width: 90%;
    overflow: auto;
}
.tile.isInFullScreen .controls .remove {
    display: none;
}
.tile.isInFullScreen .controls > li:first-child {
    margin-right: 0 !important;
}
.tile .tile-header,
.tile .tile-widget,
.tile .tile-body,
.tile .tile-footer {
    position: relative;
    padding: 15px;
}
.tile .dvd {
    border-color: rgba(0, 0, 0, 0.1);
    border-style: solid;
    border-width: 0;
}
.tile .dvd.dvd-white {
    border-color: rgba(255, 255, 255, 0.1);
}
.tile .dvd.dvd-btm {
    border-bottom-width: 1px;
}
.tile .dvd.dvd-top {
    border-top-width: 1px;
}
.tile.tile-simple .tile-header .controls > li {
    background-color: transparent !important;
}
.tile.tile-simple .tile-header .controls > li > a {
    line-height: 28px;
    min-width: 28px;
    padding: 0 10px;
    font-size: 12px;
}
.tile .tile-header {
    padding: 8px 15px;
}
.tile .tile-header h1,
.tile .tile-header h2,
.tile .tile-header h3,
.tile .tile-header h4 {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}
.tile .tile-header h2 {
    font-size: 18px;
}
.tile .tile-header h3 {
    font-size: 16px;
}
.tile .tile-header h4 {
    font-size: 14px;
}
.tile .tile-header .controls {
    position: absolute;
        right: 10px;
    top: 10px;
    z-index: 9;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}
.tile .tile-header .controls > li {
    display: inline-block;
    height: 100%;
    float: left;
}
.tile .tile-header .controls > li > a {
    display: block;
    height: 100%;
    line-height: 43px;
    min-width: 41px;
    padding: 0 10px;
    text-align: center;
    color: #95a2a9;
}
.tile .tile-header .controls > li > a:hover {
    color: #616f77;
    text-decoration: none;
}
.tile .tile-header .controls .expand {
    display: none;
}
.tile .tile-header.dvd .controls {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tile .tile-header.dvd .controls > li {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.tile .tile-header.dvd.dvd-white .controls > li {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.tile .tile-header .note {
    display: inline-block;
    padding: 2px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #95a2a9;
    font-family: "Dosis", "Arial", sans-serif;
    font-size: 12px;
    margin-left: 5px;
    position: relative;
    top: -2px;
    margin-top: 5px;
}
.tile .tile-header .btn {
    /*padding: 2px 5px;*/
    /*margin-right: -24px;*/
}
.tile .tile-header.cover {
    padding: 0;
}
.tile .tile-nav {
    margin-bottom: 15px;
}
.tile .tile-nav > li {
    display: inline-block;
}
.tile .tile-nav > li > a {
    padding: 6px 12px;
}
.tile[class*='bg-']:not(.bg-default) .dvd,
.tile[class*='bg-']:not(.bg-default).dvd,
.tile-header[class*='bg-']:not(.bg-default) .dvd,
.tile-header[class*='bg-']:not(.bg-default).dvd,
.tile-widget[class*='bg-']:not(.bg-default) .dvd,
.tile-widget[class*='bg-']:not(.bg-default).dvd,
.tile-body[class*='bg-']:not(.bg-default) .dvd,
.tile-body[class*='bg-']:not(.bg-default).dvd,
.tile-footer[class*='bg-']:not(.bg-default) .dvd,
.tile-footer[class*='bg-']:not(.bg-default).dvd {
    border-color: rgba(255, 255, 255, 0.2);
}
.tile[class*='bg-']:not(.bg-default) .controls > li,
.tile-header[class*='bg-']:not(.bg-default) .controls > li,
.tile-widget[class*='bg-']:not(.bg-default) .controls > li,
.tile-body[class*='bg-']:not(.bg-default) .controls > li,
.tile-footer[class*='bg-']:not(.bg-default) .controls > li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.tile[class*='bg-']:not(.bg-default) .controls > li:last-child,
.tile-header[class*='bg-']:not(.bg-default) .controls > li:last-child,
.tile-widget[class*='bg-']:not(.bg-default) .controls > li:last-child,
.tile-body[class*='bg-']:not(.bg-default) .controls > li:last-child,
.tile-footer[class*='bg-']:not(.bg-default) .controls > li:last-child {
    background-color: rgba(0, 0, 0, 0.1);
    border: 0;
}
.tile[class*='bg-']:not(.bg-default) .controls > li:nth-last-child(2),
.tile-header[class*='bg-']:not(.bg-default) .controls > li:nth-last-child(2),
.tile-widget[class*='bg-']:not(.bg-default) .controls > li:nth-last-child(2),
.tile-body[class*='bg-']:not(.bg-default) .controls > li:nth-last-child(2),
.tile-footer[class*='bg-']:not(.bg-default) .controls > li:nth-last-child(2) {
    background-color: rgba(0, 0, 0, 0.05);
    border: 0;
}
.tile[class*='bg-']:not(.bg-default) .legend table,
.tile-header[class*='bg-']:not(.bg-default) .legend table,
.tile-widget[class*='bg-']:not(.bg-default) .legend table,
.tile-body[class*='bg-']:not(.bg-default) .legend table,
.tile-footer[class*='bg-']:not(.bg-default) .legend table {
    color: white !important;
}
.tile[class*='bg-']:not(.bg-default) h1.underline,
.tile[class*='bg-']:not(.bg-default) h2.underline,
.tile[class*='bg-']:not(.bg-default) h3.underline,
.tile[class*='bg-']:not(.bg-default) h4.underline,
.tile[class*='bg-']:not(.bg-default) h5.underline,
.tile[class*='bg-']:not(.bg-default) h6.underline,
.tile[class*='bg-']:not(.bg-default) .h1.underline,
.tile[class*='bg-']:not(.bg-default) .h2.underline,
.tile[class*='bg-']:not(.bg-default) .h3.underline,
.tile[class*='bg-']:not(.bg-default) .h4.underline,
.tile[class*='bg-']:not(.bg-default) .h5.underline,
.tile[class*='bg-']:not(.bg-default) .h6.underline,
.tile-header[class*='bg-']:not(.bg-default) h1.underline,
.tile-header[class*='bg-']:not(.bg-default) h2.underline,
.tile-header[class*='bg-']:not(.bg-default) h3.underline,
.tile-header[class*='bg-']:not(.bg-default) h4.underline,
.tile-header[class*='bg-']:not(.bg-default) h5.underline,
.tile-header[class*='bg-']:not(.bg-default) h6.underline,
.tile-header[class*='bg-']:not(.bg-default) .h1.underline,
.tile-header[class*='bg-']:not(.bg-default) .h2.underline,
.tile-header[class*='bg-']:not(.bg-default) .h3.underline,
.tile-header[class*='bg-']:not(.bg-default) .h4.underline,
.tile-header[class*='bg-']:not(.bg-default) .h5.underline,
.tile-header[class*='bg-']:not(.bg-default) .h6.underline,
.tile-widget[class*='bg-']:not(.bg-default) h1.underline,
.tile-widget[class*='bg-']:not(.bg-default) h2.underline,
.tile-widget[class*='bg-']:not(.bg-default) h3.underline,
.tile-widget[class*='bg-']:not(.bg-default) h4.underline,
.tile-widget[class*='bg-']:not(.bg-default) h5.underline,
.tile-widget[class*='bg-']:not(.bg-default) h6.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h1.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h2.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h3.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h4.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h5.underline,
.tile-widget[class*='bg-']:not(.bg-default) .h6.underline,
.tile-body[class*='bg-']:not(.bg-default) h1.underline,
.tile-body[class*='bg-']:not(.bg-default) h2.underline,
.tile-body[class*='bg-']:not(.bg-default) h3.underline,
.tile-body[class*='bg-']:not(.bg-default) h4.underline,
.tile-body[class*='bg-']:not(.bg-default) h5.underline,
.tile-body[class*='bg-']:not(.bg-default) h6.underline,
.tile-body[class*='bg-']:not(.bg-default) .h1.underline,
.tile-body[class*='bg-']:not(.bg-default) .h2.underline,
.tile-body[class*='bg-']:not(.bg-default) .h3.underline,
.tile-body[class*='bg-']:not(.bg-default) .h4.underline,
.tile-body[class*='bg-']:not(.bg-default) .h5.underline,
.tile-body[class*='bg-']:not(.bg-default) .h6.underline,
.tile-footer[class*='bg-']:not(.bg-default) h1.underline,
.tile-footer[class*='bg-']:not(.bg-default) h2.underline,
.tile-footer[class*='bg-']:not(.bg-default) h3.underline,
.tile-footer[class*='bg-']:not(.bg-default) h4.underline,
.tile-footer[class*='bg-']:not(.bg-default) h5.underline,
.tile-footer[class*='bg-']:not(.bg-default) h6.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h1.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h2.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h3.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h4.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h5.underline,
.tile-footer[class*='bg-']:not(.bg-default) .h6.underline {
    border-color: rgba(255, 255, 255, 0.2);
}
.tile[class*='bg-']:not(.bg-default) .owl-theme .owl-controls .owl-page span,
.tile-header[class*='bg-']:not(.bg-default) .owl-theme .owl-controls .owl-page span,
.tile-widget[class*='bg-']:not(.bg-default) .owl-theme .owl-controls .owl-page span,
.tile-body[class*='bg-']:not(.bg-default) .owl-theme .owl-controls .owl-page span,
.tile-footer[class*='bg-']:not(.bg-default) .owl-theme .owl-controls .owl-page span {
    background: white;
}
.tile[class*='bg-']:not(.bg-default) .form-control,
.tile-header[class*='bg-']:not(.bg-default) .form-control,
.tile-widget[class*='bg-']:not(.bg-default) .form-control,
.tile-body[class*='bg-']:not(.bg-default) .form-control,
.tile-footer[class*='bg-']:not(.bg-default) .form-control {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: white;
}
.tile[class*='bg-']:not(.bg-default) .form-control::-webkit-input-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .form-control::-webkit-input-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .form-control::-webkit-input-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .form-control::-webkit-input-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .form-control::-moz-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .form-control::-moz-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .form-control::-moz-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .form-control::-moz-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .form-control:-moz-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .form-control:-moz-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .form-control:-moz-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .form-control:-moz-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .form-control:-ms-input-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .form-control:-ms-input-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .form-control:-ms-input-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .form-control:-ms-input-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .form-control:hover:not(:disabled),
.tile-header[class*='bg-']:not(.bg-default) .form-control:hover:not(:disabled),
.tile-widget[class*='bg-']:not(.bg-default) .form-control:hover:not(:disabled),
.tile-body[class*='bg-']:not(.bg-default) .form-control:hover:not(:disabled),
.tile-footer[class*='bg-']:not(.bg-default) .form-control:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .form-control:focus,
.tile[class*='bg-']:not(.bg-default) .form-control:focus:hover,
.tile-header[class*='bg-']:not(.bg-default) .form-control:focus,
.tile-header[class*='bg-']:not(.bg-default) .form-control:focus:hover,
.tile-widget[class*='bg-']:not(.bg-default) .form-control:focus,
.tile-widget[class*='bg-']:not(.bg-default) .form-control:focus:hover,
.tile-body[class*='bg-']:not(.bg-default) .form-control:focus,
.tile-body[class*='bg-']:not(.bg-default) .form-control:focus:hover,
.tile-footer[class*='bg-']:not(.bg-default) .form-control:focus,
.tile-footer[class*='bg-']:not(.bg-default) .form-control:focus:hover {
    border-color: #22beef;
}
.tile[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap.open,
.tile-header[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap.open,
.tile-widget[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap.open,
.tile-body[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap.open,
.tile-footer[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap.open {
    border-color: #22beef;
}
.tile[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.tile[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder,
.tile-header[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder,
.tile-widget[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder,
.tile-body[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder,
.tile-footer[class*='bg-']:not(.bg-default) .ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 628px) {
    .tile .tile-header .controls {
        display: none;
    }
}
.form-control {
    color: #616f77;
    outline: 0;
    vertical-align: top;
    background-color: #fff;
    filter: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    border: 1px solid #dbe0e2;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.form-control:not(select) {
    -webkit-appearance: none !important;
}
.form-control::-webkit-input-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}
.form-control::-moz-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}
.form-control:-moz-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}
.form-control:-ms-input-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}
.form-control.input-lg::-webkit-input-placeholder {
    font-size: 18px;
}
.form-control.input-lg::-moz-placeholder {
    font-size: 18px;
}
.form-control.input-lg:-moz-placeholder {
    font-size: 18px;
}
.form-control.input-lg:-ms-input-placeholder {
    font-size: 18px;
}
.form-control.input-sm::-webkit-input-placeholder {
    line-height: 18px;
}
.form-control.input-sm::-moz-placeholder {
    line-height: 18px;
}
.form-control.input-sm:-moz-placeholder {
    line-height: 18px;
}
.form-control.input-sm:-ms-input-placeholder {
    line-height: 18px;
}
.form-control:hover:not(:disabled) {
    border-color: #b1bac0;
}
.form-control:focus,
.form-control:focus:hover {
    outline: none;
    border: 1px solid;
    border-color: #22beef;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control.underline-input {
    background: none;
    border: 0;
    border-bottom: 1px solid;
    border-radius: 0;
    -webkit-appearance: none !important;
    vertical-align: middle;
    padding-left: 0;
    border-color: #dbe0e2;
}
.form-control.underline-input:focus:hover {
    border: 0;
    border-bottom: 1px solid #22beef;
}
.form-control.underline-input:focus {
    border-color: #22beef;
}
.form-control.rounded {
    border-radius: 600px;
}
.form-control.input-unstyled {
    border: 0;
    padding: 0;
    background-color: transparent;
}
.form-control.input-unstyled::-webkit-input-placeholder {
    font-size: 16px;
}
.form-control.input-unstyled::-moz-placeholder {
    font-size: 16px;
}
.form-control.input-unstyled:-moz-placeholder {
    font-size: 16px;
}
.form-control.input-unstyled:-ms-input-placeholder {
    font-size: 16px;
}
.form-control.input-unstyled:focus,
.form-control.input-unstyled:focus:hover {
    border: 0;
}
/* hide for color css

.form-group.legend h1,
.form-group.legend h2,
.form-group.legend h3,
.form-group.legend h4,
.form-group.legend h5,
.form-group.legend h6 {
  color: #fff!important;
    margin-bottom: 3px;
}*/


.form-group.legend p {
    font-size: 12px;
    color: #95a2a9;
    border-bottom: 1px dotted #cacaca;
    padding-bottom: 5px;
}
label {
    font-weight: 400;
}
.input-group-addon {
    border-radius: 2px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 3px;
}
.input-group .btn {
    border-radius: 2px;
}
.form-validation .form-control.has-focus + .help-block {
    display: none;
}
.form-validation .form-control.has-visited:not(.has-focus) + .help-block {
    display: block;
}
.form-validation .form-control.ng-dirty.ng-invalid,
.form-validation .form-control.ng-dirty.ng-invalid[type="checkbox"] + i {
    border-color: #ff7b76;
}
.form-validation .form-control.ng-dirty.ng-invalid + .help-block,
.form-validation .form-control.ng-dirty.ng-invalid[type="checkbox"] + i + .help-block {
    color: #ff635d;
}
.form-validation .form-control.ng-dirty.ng-valid {
    border-color: #b2e600;
}
.form-validation .form-control.ng-dirty.ng-valid + .help-block {
    color: #aadc00;
}
.has-error .form-control,
.has-error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ff7b76!important;
}
.has-error .form-control.has-focus,
.has-error .form-control:focus.has-focus {
    border-color: #22beef;
}
.has-error .form-control.has-visited:not(.has-focus),
.has-error .form-control:focus.has-visited:not(.has-focus) {
    border-color: #ff7b76;
}
.has-error .control-label,
.has-error .help-block {
    color: #ff635d;
}
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #616f77;
}
.has-error .checkbox-custom > i,
.has-error .checkbox-custom:hover > i {
    border-color: #ff7b76;
}
.has-success .form-control,
.has-success .form-control:focus {
    -webkit-box-shadow: none!important;;
    box-shadow: none!important;;
    border-color: #b2e600!important;;
}
.has-success .form-control.has-focus,
.has-success .form-control:focus.has-focus {
    border-color: #22beef!important;;
}
.has-success .form-control.has-visited:not(.has-focus),
.has-success .form-control:focus.has-visited:not(.has-focus) {
    border-color: #b2e600!important;;
}
.has-success .control-label,
.has-success .help-block {
    color: #aadc00!important;;
}
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #616f77!important;;
}
.has-success .checkbox-custom > i {
    border-color: #b2e600!important;;
}
.has-warning .form-control,
.has-warning .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ffcd33;
}
.has-warning .form-control.has-focus,
.has-warning .form-control:focus.has-focus {
    border-color: #22beef;
}
.has-warning .form-control.has-visited:not(.has-focus),
.has-warning .form-control:focus.has-visited:not(.has-focus) {
    border-color: #ffcd33;
}
.has-warning .control-label,
.has-warning .help-block {
    color: #ffc71a;
}
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #616f77;
}
.has-warning .checkbox-custom > i {
    border-color: #ffcd33;
}
.checkbox-custom,
.checkbox-custom-alt {
    padding-left: 20px;
    cursor: pointer;
}
.checkbox-custom input,
.checkbox-custom-alt input {
    position: absolute;
    opacity: 0;
}
.checkbox-custom input:checked + i,
.checkbox-custom-alt input:checked + i {
    border-color: #428bca;
    background-color: #428bca;
}
.checkbox-custom input:checked + i:before,
.checkbox-custom-alt input:checked + i:before {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background-color: #fff;
}
.checkbox-custom input:checked + span .active,
.checkbox-custom-alt input:checked + span .active {
    display: inherit;
}
.checkbox-custom input[type='radio'] + i,
.checkbox-custom input[type='radio'] + i:before,
.checkbox-custom-alt input[type='radio'] + i,
.checkbox-custom-alt input[type='radio'] + i:before {
    border-radius: 50%;
}
.checkbox-custom input[disabled] + i,
.checkbox-custom-alt input[disabled] + i {
    border-color: #e2e2e2;
    background-color: #f2f2f2;
}
.checkbox-custom input[disabled] + i:before,
.checkbox-custom-alt input[disabled] + i:before {
    background-color: #e2e2e2;
}
.checkbox-custom > i,
.checkbox-custom-alt > i {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    margin-right: 4px;
    margin-left: -20px;
    line-height: 1;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.checkbox-custom > i:before,
.checkbox-custom-alt > i:before {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 0;
    height: 0;
    background-color: transparent;
    content: "";
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 1;
}
.checkbox-custom > span,
.checkbox-custom-alt > span {
    margin-left: -20px;
}
.checkbox-custom > span .active,
.checkbox-custom-alt > span .active {
    display: none;
}
.checkbox-custom:hover > i,
.checkbox-custom-alt:hover > i {
    border-color: #22beef;
}
.checkbox-custom.checkbox-custom-sm input:checked + i:before,
.checkbox-custom-alt.checkbox-custom-sm input:checked + i:before {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
}
.checkbox-custom.checkbox-custom-sm > i,
.checkbox-custom-alt.checkbox-custom-sm > i {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-left: -18px;
}
.checkbox-custom.checkbox-custom-lg input:checked + i:before,
.checkbox-custom-alt.checkbox-custom-lg input:checked + i:before {
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
}
.checkbox-custom.checkbox-custom-lg > i,
.checkbox-custom-alt.checkbox-custom-lg > i {
    width: 30px;
    height: 30px;
}
.checkbox-custom-alt input:checked + i {
    background-color: transparent;
    border-color: #666;
    color: #666;
}
.checkbox-custom-alt input:checked + i:before {
    top: 2px;
    left: 2px;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
}
.checkbox-custom-alt input[type='radio']:checked + i:before {
    left: 1px;
}
.checkbox-custom-alt input[disabled] + i {
    border-color: #e2e2e2;
    background-color: #f2f2f2;
}
.checkbox-custom-alt input[disabled] + i:before {
    background-color: transparent;
    color: #ccc;
}
.checkbox-custom-alt > i {
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid #dfdfdf;
}
.checkbox-custom-alt > i:before {
    content: "\f00c";
    top: 0;
    left: 0;
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11px;
    opacity: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.checkbox-custom-alt.checkbox-custom-sm > i:before {
    font-size: 9px;
}
.checkbox-custom-alt.checkbox-custom-sm input:checked + i:before {
    font-size: 9px;
    top: 1px;
}
.checkbox-custom-alt.checkbox-custom-lg input:checked + i:before {
    font-size: 18px;
    top: 4px;
    left: 4px;
}
.onoffswitch {
    position: relative;
    width: 40px;
    height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.onoffswitch.green .onoffswitch-inner:before {
    background-color: #a2d200;
}
.onoffswitch.red .onoffswitch-inner:before {
    background-color: #ff4a43;
}
.onoffswitch.cyan .onoffswitch-inner:before {
    background-color: #22beef;
}
.onoffswitch.orange .onoffswitch-inner:before {
    background-color: #ffc100;
}
.onoffswitch.amethyst .onoffswitch-inner:before {
    background-color: #cd97eb;
}
.onoffswitch.greensea .onoffswitch-inner:before {
    background-color: #16a085;
}
.onoffswitch.dutch .onoffswitch-inner:before {
    background-color: #1693A5;
}
.onoffswitch.hotpink .onoffswitch-inner:before {
    background-color: #FF0066;
}
.onoffswitch.drank .onoffswitch-inner:before {
    background-color: #A40778;
}
.onoffswitch.blue .onoffswitch-inner:before {
    background-color: #418bca;
}
.onoffswitch.slategray .onoffswitch-inner:before {
    background-color: #536781;
}
.onoffswitch.darkgray .onoffswitch-inner:before {
    background-color: #4d4d4d;
}
.onoffswitch.lightred .onoffswitch-inner:before {
    background-color: #e05d6f;
}
.onoffswitch.primary .onoffswitch-inner:before {
    background-color: #428bca;
}
.onoffswitch.success .onoffswitch-inner:before {
    background-color: #5cb85c;
}
.onoffswitch.warning .onoffswitch-inner:before {
    background-color: #f0ad4e;
}
.onoffswitch.danger .onoffswitch-inner:before {
    background-color: #d9534f;
}
.onoffswitch.info .onoffswitch-inner:before {
    background-color: #5bc0de;
}
.onoffswitch.labeled {
    width: 46px;
}
.onoffswitch.labeled .onoffswitch-inner:before {
    content: "On";
    padding-left: 7px;
}
.onoffswitch.labeled .onoffswitch-inner:after {
    content: "Off";
    padding-right: 7px;
}
.onoffswitch.labeled .onoffswitch-switch {
    right: 21px;
}
.onoffswitch.small {
    width: 20px;
    height: 15px;
    margin-top: 3px;
    right: -5px;
}
.onoffswitch.small .onoffswitch-switch {
    right: 6px;
}
.onoffswitch.small .onoffswitch-inner:before,
.onoffswitch.small .onoffswitch-inner:after {
    height: 15px;
    line-height: 15px;
}
.onoffswitch.small .onoffswitch-switch {
    width: 10px;
}
.onoffswitch.medium {
    width: 30px;
    height: 20px;
    margin-top: 3px;
    right: -5px;
}
.onoffswitch.medium .onoffswitch-switch {
    right: 11px;
}
.onoffswitch.medium .onoffswitch-inner:before,
.onoffswitch.medium .onoffswitch-inner:after {
    height: 20px;
    line-height: 20px;
}
.onoffswitch.medium .onoffswitch-switch {
    width: 15px;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -webkit-transition: margin 0.2s ease-in 0s;
    -moz-transition: margin 0.2s ease-in 0s;
    transition: margin 0.2s ease-in 0s;
}
.onoffswitch-inner:before,
.onoffswitch-inner:after {
    float: left;
    width: 50%;
    height: 25px;
    padding: 0;
    line-height: 25px;
    font-size: 9px;
    color: white;
    box-sizing: border-box;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    -webkit-transform: none;
}
.onoffswitch-inner:before {
    content: "";
    padding-left: 9px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "";
    padding-right: 9px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
    width: 21px;
    margin: 2px;
    background: #FFFFFF;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    -webkit-transition: all 0.2s ease-in 0s;
    -moz-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}
fieldset[disabled] .checkbox-custom input + i {
    border-color: rgba(0, 0, 0, 0.1);
}
fieldset[disabled] .checkbox-custom input + i:before {
    background-color: rgba(0, 0, 0, 0.1);
}
.help-block {
    font-size: 12px;
    color: #95a2a9;
}
.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.slider.slider-horizontal {
    width: 210px;
    height: 20px;
}
.slider.slider-horizontal .slider-track {
    width: 100%;
    margin-top: -5px;
    top: 50%;
    left: 0;
}
.slider.slider-horizontal .slider-selection {
    height: 100%;
    top: 0;
    bottom: 0;
}
.slider.slider-horizontal .slider-handle {
    margin-left: -10px;
    margin-top: -8px;
}
.slider.slider-horizontal .slider-handle.triangle {
    border-width: 0 10px 10px 10px;
    width: 0;
    height: 0;
    margin-top: 0;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom-color: #e05d6f;
}
.slider.slider-vertical {
    height: 210px;
    width: 20px;
}
.slider.slider-vertical .slider-track {
    height: 100%;
    left: 50%;
    top: 0;
    width: 6px;
    margin-left: -2px;
}
.slider.slider-vertical .slider-selection {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
}
.slider.slider-vertical .slider-handle {
    margin-left: -8px;
    margin-top: -10px;
}
.slider.slider-vertical .slider-handle.triangle {
    border-width: 10px 0 10px 10px;
    width: 1px;
    height: 1px;
    margin-left: 0;
    border-left-color: #e05d6f;
}
.slider.disabled .slider-track {
    cursor: not-allowed;
}
.slider input {
    display: none;
}
.slider .tooltip {
    display: none;
}
.slider .tooltip.top {
    margin-top: -22px;
}
.slider:hover .tooltip {
    display: block;
}
.slider .tooltip-inner {
    white-space: nowrap;
}
.slider .hide {
    display: none;
}
.slider .slider-track {
    position: absolute;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #dbe0e2;
    height: 6px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.slider .slider-selection {
    position: absolute;
    box-sizing: border-box;
    background-color: #418bca;
    background-image: none;
    border-radius: 3px;
}
.slider .slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    outline: none;
    background-color: #fff;
    background-image: none;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.slider .slider-handle.round {
    border-radius: 20px;
}
.slider .slider-handle.triangle {
    background: transparent none;
}
.ui-select-bootstrap > .ui-select-match {
    border-color: #dbe0e2 !important;
    border-radius: 2px;
}
.ui-select-bootstrap > .ui-select-match .ui-select-toggle > span:first-of-type {
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
}
.ui-select-bootstrap > .ui-select-match .ui-select-toggle > span:nth-of-type(2) > a {
    position: absolute;
    right: 35px;
    top: 7px;
    font-size: 10px;
    padding: 2px;
    color: #bfc7cb;
}
.ui-select-bootstrap > .ui-select-match .ui-select-toggle > span:nth-of-type(2) > a:hover {
    color: #428bca;
}
.ui-select-bootstrap .ui-select-match-item.btn-primary {
    color: white;
}
.ui-select-bootstrap .ui-select-choices {
    top: 0px !important;
}
.ui-select-choices .ui-select-choices-row {
    padding: 0;
}
.ui-select-choices .ui-select-choices-row > a {
    color: #616f77;
    font-size: 12px;
}
.ui-select-choices .ui-select-choices-row.active > a {
    background: #798992;
}
.ui-select-multiple.ui-select-bootstrap.open {
    border-color: #22beef;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
    line-height: .8;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search::-webkit-input-placeholder {
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    padding: 0 7px;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search::-moz-placeholder {
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    padding: 0 7px;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search:-moz-placeholder {
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    padding: 0 7px;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search:-ms-input-placeholder {
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    padding: 0 7px;
}
.ui-select-multiple.ui-select-bootstrap.underline-input input.ui-select-search::-webkit-input-placeholder {
    padding: 0;
}
.ui-select-multiple.ui-select-bootstrap.underline-input input.ui-select-search::-moz-placeholder {
    padding: 0;
}
.ui-select-multiple.ui-select-bootstrap.underline-input input.ui-select-search:-moz-placeholder {
    padding: 0;
}
.ui-select-multiple.ui-select-bootstrap.underline-input input.ui-select-search:-ms-input-placeholder {
    padding: 0;
}
.ta-toolbar {
    margin-bottom: 10px;
}
.ta-root.focussed .ta-scroll-window.form-control {
    border-color: #22beef;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.ta-hidden-input {
    display: none;
}
tags-input .tags {
    border: 1px solid #ccc;
    box-shadow: none;
}
tags-input .tags.focused,
tags-input .tags.focused:hover {
    box-shadow: none;
    border-color: #22beef;
}
tags-input .tags .tag-item {
    background: white;
    border-radius: 2px;
    border-color: #cfcfcf;
    font-size: 12px;
    font-family: "Lato", "Arial", sans-serif;
}
tags-input .tags .tag-item.selected {
    background: #f2f2f2;
    border-color: #e05d6f;
}
.badge,
.label {
    font-size: 10px;
    font-weight: 400;
}
.badge {
    padding: 3px 5px;
}
.badge.badge-success {
    background-color: #5cb85c;
}
.badge.badge-danger {
    background-color: #d9534f;
}
.badge.badge-warning {
    background-color: #f0ad4e;
}
.badge.badge-info {
    background-color: #5bc0de;
}
.badge.badge-primary {
    background-color: #428bca;
}
.badge.badge-default {
    background-color: #616f77;
}
.badge.badge-outline {
    display: inline-block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid;
    background: transparent;
}
accordion .panel .panel-heading {
    padding: 0;
}
.panel {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.panel .panel-heading {
    border-radius: 0;
}
.panel .panel-heading .panel-title .accordion-toggle {
    display: block;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 15px;
}
.panel .panel-heading .panel-title .accordion-toggle span {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.panel .panel-heading .panel-title .accordion-toggle:hover {
    text-decoration: none;
}
.panel .panel-heading .panel-title .accordion-toggle:hover span {
    padding-left: 5px;
}
.panel .panel-heading .panel-title .accordion-toggle:hover span.text-muted {
    padding-left: 0;
}
.panel.panel-cyan {
    border-color: #22beef;
}
.panel.panel-cyan > .panel-heading {
    color: white;
    background-color: #22beef;
    border-color: #22beef;
}
.panel.panel-amethyst {
    border-color: #cd97eb;
}
.panel.panel-amethyst > .panel-heading {
    color: white;
    background-color: #cd97eb;
    border-color: #cd97eb;
}
.panel.panel-green {
    border-color: #a2d200;
}
.panel.panel-green > .panel-heading {
    color: white;
    background-color: #a2d200;
    border-color: #a2d200;
}
.panel.panel-orange {
    border-color: #ffc100;
}
.panel.panel-orange > .panel-heading {
    color: white;
    background-color: #ffc100;
    border-color: #ffc100;
}
.panel.panel-red {
    border-color: #ff4a43;
}
.panel.panel-red > .panel-heading {
    color: white;
    background-color: #ff4a43;
    border-color: #ff4a43;
}
.panel.panel-greensea {
    border-color: #16a085;
}
.panel.panel-greensea > .panel-heading {
    color: white;
    background-color: #16a085;
    border-color: #16a085;
}
.panel.panel-dutch {
    border-color: #1693A5;
}
.panel.panel-dutch > .panel-heading {
    color: white;
    background-color: #1693A5;
    border-color: #1693A5;
}
.panel.panel-hotpink {
    border-color: #FF0066;
}
.panel.panel-hotpink > .panel-heading {
    color: white;
    background-color: #FF0066;
    border-color: #FF0066;
}
.panel.panel-drank {
    border-color: #A40778;
}
.panel.panel-drank > .panel-heading {
    color: white;
    background-color: #A40778;
    border-color: #A40778;
}
.panel.panel-blue {
    border-color: #418bca;
}
.panel.panel-blue > .panel-heading {
    color: white;
    background-color: #418bca;
    border-color: #418bca;
}
.panel.panel-lightred {
    border-color: #e05d6f;
}
.panel.panel-lightred > .panel-heading {
    color: white;
    background-color: #e05d6f;
    border-color: #e05d6f;
}
.panel.panel-slategray {
    border-color: #3f4e62;
}
.panel.panel-slategray > .panel-heading {
    color: white;
    background-color: #3f4e62;
    border-color: #3f4e62;
}
.panel.panel-darkgray {
    border-color: #333;
}
.panel.panel-darkgray > .panel-heading {
    color: white;
    background-color: #333;
    border-color: #333;
}
.panel.panel-filled.panel-default .panel-body {
    background-color: white;
}
.panel.panel-filled.panel-primary .panel-body {
    background-color: #6aa3d5;
    color: white;
}
.panel.panel-filled.panel-success .panel-body {
    background-color: #eaf6ea;
    color: #357935;
}
.panel.panel-filled.panel-warning .panel-body {
    background-color: #fef9f3;
    color: #c77c11;
}
.panel.panel-filled.panel-danger .panel-body {
    background-color: #fdf7f7;
    color: #a02622;
}
.panel.panel-filled.panel-info .panel-body {
    background-color: #f0f9fc;
    color: #2390b0;
}
.panel.panel-filled.panel-cyan .panel-body {
    background-color: #3ac5f1;
    color: white;
}
.panel.panel-filled.panel-amethyst .panel-body {
    background-color: #d1a0ed;
    color: white;
}
.panel.panel-filled.panel-green .panel-body {
    background-color: #aadc00;
    color: white;
}
.panel.panel-filled.panel-orange .panel-body {
    background-color: #ffc71a;
    color: white;
}
.panel.panel-filled.panel-red .panel-body {
    background-color: #ff635d;
    color: white;
}
.panel.panel-filled.panel-greensea .panel-body {
    background-color: #19b698;
    color: white;
}
.panel.panel-filled.panel-dutch .panel-body {
    background-color: #19a7bc;
    color: white;
}
.panel.panel-filled.panel-hotpink .panel-body {
    background-color: #ff1a75;
    color: white;
}
.panel.panel-filled.panel-drank .panel-body {
    background-color: #bc088a;
    color: white;
}
.panel.panel-filled.panel-blue .panel-body {
    background-color: #5597d0;
    color: white;
}
.panel.panel-filled.panel-lightred .panel-body {
    background-color: #e47282;
    color: white;
}
.panel.panel-filled.panel-slategray .panel-body {
    background-color: #495a72;
    color: white;
}
.panel.panel-filled.panel-darkgray .panel-body {
    background-color: #404040;
    color: white;
}
.panel.panel-transparent {
    border-left: 0;
    border-right: 0;
}
.panel.panel-transparent:last-of-type {
    border-bottom: 0;
}
.panel.panel-transparent .panel-heading {
    background: none;
}
.panel.panel-transparent .panel-heading .panel-title .accordion-toggle {
    padding: 15px;
}
.panel.panel-transparent .panel-body {
    background-color: #f7f7f7;
    padding: 0;
}
.panel-group .panel {
    border-radius: 0;
}
.panel-group .panel.panel-transparent + .panel.panel-transparent {
    margin-top: -1px;
}
.well {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.breadcrumb {
    border-radius: 0;
}
.breadcrumb > li + li:before {
    content: "\f105";
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.datepicker .btn-default {
    border-width: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.datepicker .btn-default .glyphicon {
    top: 2px;
}
.datepicker .btn[disabled] {
    opacity: .3;
}
.datepicker .btn-info {
    color: white !important;
}
.datepicker .btn-info .text-info {
    color: white;
}
.datepicker .btn-info.active {
    background-color: #5bc0de !important;
}
.datepicker td > em {
    color: #95a2a9;
}
.pagination {
    border-radius: 0;
}
.pagination > li > a,
.pagination > li > span {
    border-color: #e4e7e9;
}
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    background-color: #f2f3f4;
}
.pagination > li:first-child > a,
.pagination > li:last-child > a {
    border-radius: 0;
}
.pager > li > a,
.pager > li > span {
    border-color: #e4e7e9;
}
.pager > li > a:hover,
.pager > li > a:focus,
.pager > li > span:hover,
.pager > li > span:focus {
    background-color: #f2f3f4;
}
.popover {
     max-width: 70%;
     border-radius: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
     border-color: #cdd3d7;
     font-weight: bold;
 }
.popover i{
    color: darkorange;
}
.popover .popover-title {
    background-color: #4f5973;
    font-weight: 600;
    border-radius: 0;
    color: white;
    font-size: 14px;
    text-align: center;
}
.popover .popover-content {
    font-size: 13px;
    color: #95a2a9;
}
check-toggler,
.check-toggler {
    cursor: pointer;
    padding: 2px;
}
check-toggler:before,
.check-toggler:before {
    content: "\f00d";
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #d9534f;
}
check-toggler.checked:before,
.check-toggler.checked:before {
    content: "\f00c";
    color: #5cb85c;
}
.dropdown > a:hover,
.dropdown > a:focus {
    text-decoration: none;
}
.dropdown.settings .dropdown-menu {
    padding: 0;
}
.dropdown.settings .dropdown-menu:after {
    border-bottom-color: #f2f2f2;
}
.dropdown.settings .color-schemes {
    padding: 5px 0px;
    /*
    background-color: #f2f2f2;
    border-bottom: 1px solid #e2e2e2;
    */
    margin-bottom: 10px;
}
.dropdown.settings .color-schemes li:not(.title) {
    padding: 3px;
}
.dropdown.settings .color-schemes li:not(.title) > a {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.dropdown.settings .color-schemes li:not(.title) > a:hover {
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -o-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.dropdown.settings .form-group {
    margin-bottom: 0;
}
.dropdown.nav-profile .dropdown-menu {
    min-width: 180px;
}
#header .dropdown > .dropdown-menu {
    margin-top: -2px;
}
#header .dropdown.open > a {
    color: white;
}
.dropdown-menu {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}
.dropdown-menu.with-arrow:before {
    content: "";
    position: absolute;
    left: 12px;
    top: -10px;
    height: 0;
    width: 0;
    border-bottom: 9px solid rgba(0, 0, 0, 0.15);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}
.dropdown-menu.with-arrow:after {
    content: "";
    position: absolute;
    left: 13px;
    top: -8px;
    height: 0;
    width: 0;
    border-bottom: 8px solid white;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.dropdown-menu.pull-right.with-arrow:before {
    left: auto;
    right: 11px;
}
.dropdown-menu.pull-right.with-arrow:after {
    left: auto;
    right: 12px;
}
.dropdown-menu > li > a {
    color: #4a555b;
    padding: 5px 15px;
}
.dropdown-menu > li > a > i {
    margin-right: 5px;
}
.dropdown-menu > li > a > .label,
.dropdown-menu > li > a > .badge {
    margin-top: 2px;
}
.dropdown-menu > li > div {
    padding: 5px 10px;
}
.dropdown-menu > li > ul {
    margin-left: 0;
    padding: 0 10px;
}
.dropdown-menu > li > ul > li.title {
    padding: 5px 0 0;
    display: block;
    font-size: 12px;
    color: #616f77;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dropdown-menu.panel {
    min-width: 280px;
    margin-bottom: 0;
    padding: 0;
    border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu.panel .panel-heading {
    background-color: #333;
    border-radius: 0;
    color: #95a2a9;
    border: 0;
    font-weight: 300;
}
.dropdown-menu.panel .panel-heading strong {
    color: white;
}
.dropdown-menu.panel .panel-footer {
    background-color: white;
    padding: 0;
}
.dropdown-menu.panel .panel-footer > a {
    display: block;
    padding: 10px 15px;
    color: #616f77;
    font-size: 12px;
}
.dropdown-menu.panel .panel-footer > a > i {
    margin-top: 2px;
}
.dropdown-menu.panel .panel-footer > a:hover {
    text-decoration: none;
    color: #428bca;
}
.dropdown-menu.panel.with-arrow:before {
    border-color: transparent;
}
.dropdown-menu.panel.with-arrow:after {
    height: 0;
    width: 0;
    border-bottom: 9px solid #333;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}
.dropdown-menu.panel .list-group > li {
    padding: 0;
    border-color: #eaeaea;
}
.dropdown-menu.panel .list-group > li .media .media-object {
    margin: 10px 10px 10px 15px;
}
.dropdown-menu.panel .list-group > li .media .media-body {
    padding: 10px 15px 10px 0;
}
.dropdown-menu.panel .list-group > li:hover {
    background-color: #f8f8f8;
}
.dropdown-menu.panel .list-group > li > a:hover {
    text-decoration: none;
}
.jqstooltip {
    box-sizing: content-box;
}
#flotTip {
    z-index: 100;
    padding: 4px 10px;
    font-size: 12px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    border: 0;
    border-radius: 2px;
}
.legendColorBox > div {
    margin: 3px 5px;
    border: none !important;
}
.legendColorBox > div > div {
    border-radius: 10px;
}
.easypiechart {
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 5px auto;
}
.easypiechart .pie-percent {
    display: inline-block;
    line-height: 100%;
    font-size: 40px;
    font-weight: 300;
    color: #95a2a9;
}
.easypiechart .pie-percent:after {
    content: '%';
    margin-left: 0.1em;
    font-size: .6em;
}
.easypiechart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
/* General button style (reset) */

.btn-ef {
    border: none;
    display: inline-block;
    outline: none;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    /* Success and error */
}
.btn-ef:focus,
.btn-ef:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-ef:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-ef.btn-ef-1 {
    background: none;
    border: 2px solid #616f77;
    color: #616f77;
}
.btn-ef.btn-ef-1.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1a.active {
    background-color: #616f77;
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1b:after {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #616f77;
}
.btn-ef.btn-ef-1.btn-ef-1b:hover,
.btn-ef.btn-ef-1.btn-ef-1b:active,
.btn-ef.btn-ef-1.btn-ef-1b.active {
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1b:hover:after,
.btn-ef.btn-ef-1.btn-ef-1b:active:after,
.btn-ef.btn-ef-1.btn-ef-1b.active:after {
    height: 100%;
}
.btn-ef.btn-ef-1.btn-ef-1c:after {
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #616f77;
}
.btn-ef.btn-ef-1.btn-ef-1c:hover,
.btn-ef.btn-ef-1.btn-ef-1c:active,
.btn-ef.btn-ef-1.btn-ef-1c.active {
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1c:hover:after,
.btn-ef.btn-ef-1.btn-ef-1c:active:after,
.btn-ef.btn-ef-1.btn-ef-1c.active:after {
    width: 100%;
}
.btn-ef.btn-ef-1.btn-ef-1d {
    overflow: hidden;
}
.btn-ef.btn-ef-1.btn-ef-1d:after {
    width: 0;
    height: 103%;
    top: 50%;
    left: 50%;
    background: #616f77;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.btn-ef.btn-ef-1.btn-ef-1d:hover,
.btn-ef.btn-ef-1.btn-ef-1d:active,
.btn-ef.btn-ef-1.btn-ef-1d.active {
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1d:hover:after,
.btn-ef.btn-ef-1.btn-ef-1d:active:after,
.btn-ef.btn-ef-1.btn-ef-1d.active:after {
    width: 80%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1d:active:after,
.btn-ef.btn-ef-1.btn-ef-1d.active:after {
    width: 101%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1e {
    overflow: hidden;
}
.btn-ef.btn-ef-1.btn-ef-1e:after {
    width: 110%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #616f77;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.btn-ef.btn-ef-1.btn-ef-1e:hover,
.btn-ef.btn-ef-1.btn-ef-1e:active,
.btn-ef.btn-ef-1.btn-ef-1e.active {
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1e:hover:after,
.btn-ef.btn-ef-1.btn-ef-1e:active:after,
.btn-ef.btn-ef-1.btn-ef-1e.active:after {
    height: 160%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1e:active:after,
.btn-ef.btn-ef-1.btn-ef-1e.active:after {
    height: 400%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1f {
    overflow: hidden;
}
.btn-ef.btn-ef-1.btn-ef-1f:after {
    width: 101%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #616f77;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.btn-ef.btn-ef-1.btn-ef-1f:hover,
.btn-ef.btn-ef-1.btn-ef-1f:active,
.btn-ef.btn-ef-1.btn-ef-1f.active {
    color: white;
}
.btn-ef.btn-ef-1.btn-ef-1f:hover:after,
.btn-ef.btn-ef-1.btn-ef-1f:active:after,
.btn-ef.btn-ef-1.btn-ef-1f.active:after {
    height: 75%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1f:active:after,
.btn-ef.btn-ef-1.btn-ef-1f.active:after {
    height: 130%;
    opacity: 1;
}
.btn-ef.btn-ef-1.btn-ef-1-primary {
    border-color: #428bca;
    color: #428bca;
}
.btn-ef.btn-ef-1.btn-ef-1-primary.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-primary.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-primary.btn-ef-1a.active {
    background-color: #428bca;
}
.btn-ef.btn-ef-1.btn-ef-1-primary:after {
    background-color: #428bca;
}
.btn-ef.btn-ef-1.btn-ef-1-success {
    border-color: #5cb85c;
    color: #5cb85c;
}
.btn-ef.btn-ef-1.btn-ef-1-success.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-success.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-success.btn-ef-1a.active {
    background-color: #5cb85c;
}
.btn-ef.btn-ef-1.btn-ef-1-success:after {
    background-color: #5cb85c;
}
.btn-ef.btn-ef-1.btn-ef-1-warning {
    border-color: #f0ad4e;
    color: #f0ad4e;
}
.btn-ef.btn-ef-1.btn-ef-1-warning.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-warning.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-warning.btn-ef-1a.active {
    background-color: #f0ad4e;
}
.btn-ef.btn-ef-1.btn-ef-1-warning:after {
    background-color: #f0ad4e;
}
.btn-ef.btn-ef-1.btn-ef-1-danger {
    border-color: #d9534f;
    color: #d9534f;
}
.btn-ef.btn-ef-1.btn-ef-1-danger.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-danger.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-danger.btn-ef-1a.active {
    background-color: #d9534f;
}
.btn-ef.btn-ef-1.btn-ef-1-danger:after {
    background-color: #d9534f;
}
.btn-ef.btn-ef-1.btn-ef-1-info {
    border-color: #5bc0de;
    color: #5bc0de;
}
.btn-ef.btn-ef-1.btn-ef-1-info.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-info.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-info.btn-ef-1a.active {
    background-color: #5bc0de;
}
.btn-ef.btn-ef-1.btn-ef-1-info:after {
    background-color: #5bc0de;
}
.btn-ef.btn-ef-1.btn-ef-1-cyan {
    border-color: #22beef;
    color: #22beef;
}
.btn-ef.btn-ef-1.btn-ef-1-cyan.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-cyan.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-cyan.btn-ef-1a.active {
    background-color: #22beef;
}
.btn-ef.btn-ef-1.btn-ef-1-cyan:after {
    background-color: #22beef;
}
.btn-ef.btn-ef-1.btn-ef-1-amethyst {
    border-color: #cd97eb;
    color: #cd97eb;
}
.btn-ef.btn-ef-1.btn-ef-1-amethyst.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-amethyst.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-amethyst.btn-ef-1a.active {
    background-color: #cd97eb;
}
.btn-ef.btn-ef-1.btn-ef-1-amethyst:after {
    background-color: #cd97eb;
}
.btn-ef.btn-ef-1.btn-ef-1-green {
    border-color: #a2d200;
    color: #a2d200;
}
.btn-ef.btn-ef-1.btn-ef-1-green.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-green.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-green.btn-ef-1a.active {
    background-color: #a2d200;
}
.btn-ef.btn-ef-1.btn-ef-1-green:after {
    background-color: #a2d200;
}
.btn-ef.btn-ef-1.btn-ef-1-orange {
    border-color: #ffc100;
    color: #ffc100;
}
.btn-ef.btn-ef-1.btn-ef-1-orange.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-orange.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-orange.btn-ef-1a.active {
    background-color: #ffc100;
}
.btn-ef.btn-ef-1.btn-ef-1-orange:after {
    background-color: #ffc100;
}
.btn-ef.btn-ef-1.btn-ef-1-red {
    border-color: #ff4a43;
    color: #ff4a43;
}
.btn-ef.btn-ef-1.btn-ef-1-red.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-red.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-red.btn-ef-1a.active {
    background-color: #ff4a43;
}
.btn-ef.btn-ef-1.btn-ef-1-red:after {
    background-color: #ff4a43;
}
.btn-ef.btn-ef-1.btn-ef-1-greensea {
    border-color: #16a085;
    color: #16a085;
}
.btn-ef.btn-ef-1.btn-ef-1-greensea.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-greensea.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-greensea.btn-ef-1a.active {
    background-color: #16a085;
}
.btn-ef.btn-ef-1.btn-ef-1-greensea:after {
    background-color: #16a085;
}
.btn-ef.btn-ef-1.btn-ef-1-dutch {
    border-color: #1693A5;
    color: #1693A5;
}
.btn-ef.btn-ef-1.btn-ef-1-dutch.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-dutch.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-dutch.btn-ef-1a.active {
    background-color: #1693A5;
}
.btn-ef.btn-ef-1.btn-ef-1-dutch:after {
    background-color: #1693A5;
}
.btn-ef.btn-ef-1.btn-ef-1-hotpink {
    border-color: #FF0066;
    color: #FF0066;
}
.btn-ef.btn-ef-1.btn-ef-1-hotpink.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-hotpink.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-hotpink.btn-ef-1a.active {
    background-color: #FF0066;
}
.btn-ef.btn-ef-1.btn-ef-1-hotpink:after {
    background-color: #FF0066;
}
.btn-ef.btn-ef-1.btn-ef-1-drank {
    border-color: #A40778;
    color: #A40778;
}
.btn-ef.btn-ef-1.btn-ef-1-drank.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-drank.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-drank.btn-ef-1a.active {
    background-color: #A40778;
}
.btn-ef.btn-ef-1.btn-ef-1-drank:after {
    background-color: #A40778;
}
.btn-ef.btn-ef-1.btn-ef-1-blue {
    border-color: #418bca;
    color: #418bca;
}
.btn-ef.btn-ef-1.btn-ef-1-blue.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-blue.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-blue.btn-ef-1a.active {
    background-color: #418bca;
}
.btn-ef.btn-ef-1.btn-ef-1-blue:after {
    background-color: #418bca;
}
.btn-ef.btn-ef-1.btn-ef-1-lightred {
    border-color: #e05d6f;
    color: #e05d6f;
}
.btn-ef.btn-ef-1.btn-ef-1-lightred.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-lightred.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-lightred.btn-ef-1a.active {
    background-color: #e05d6f;
}
.btn-ef.btn-ef-1.btn-ef-1-lightred:after {
    background-color: #e05d6f;
}
.btn-ef.btn-ef-1.btn-ef-1-slategray {
    border-color: #3f4e62;
    color: #3f4e62;
}
.btn-ef.btn-ef-1.btn-ef-1-slategray.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-slategray.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-slategray.btn-ef-1a.active {
    background-color: #3f4e62;
}
.btn-ef.btn-ef-1.btn-ef-1-slategray:after {
    background-color: #3f4e62;
}
.btn-ef.btn-ef-1.btn-ef-1-darkgray {
    border-color: #333;
    color: #333;
}
.btn-ef.btn-ef-1.btn-ef-1-darkgray.btn-ef-1a:hover,
.btn-ef.btn-ef-1.btn-ef-1-darkgray.btn-ef-1a:active,
.btn-ef.btn-ef-1.btn-ef-1-darkgray.btn-ef-1a.active {
    background-color: #333;
}
.btn-ef.btn-ef-1.btn-ef-1-darkgray:after {
    background-color: #333;
}
.btn-ef.btn-ef-2 {
    background: #e6e6e6;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 3px;
    box-shadow: 0 3px;
    color: #616f77;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-2.btn-rounded {
    border-radius: 4px;
}
.btn-ef.btn-ef-2.btn-ef-2a:hover {
    top: 2px;
    -webkit-box-shadow: 0 1px;
    box-shadow: 0 1px;
}
.btn-ef.btn-ef-2.btn-ef-2a:active,
.btn-ef.btn-ef-2.btn-ef-2a.active {
    top: 3px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.btn-ef.btn-ef-2.btn-ef-2b:hover {
    top: -2px;
    -webkit-box-shadow: 0 5px;
    box-shadow: 0 5px;
}
.btn-ef.btn-ef-2.btn-ef-2b:active,
.btn-ef.btn-ef-2.btn-ef-2b.active {
    top: 3px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.btn-ef.btn-ef-2.btn-ef-2c {
    -webkit-box-shadow: -3px 0;
    box-shadow: -3px 0;
}
.btn-ef.btn-ef-2.btn-ef-2c:hover {
    left: -2px;
    -webkit-box-shadow: -1px 0;
    box-shadow: -1px 0;
}
.btn-ef.btn-ef-2.btn-ef-2c:active,
.btn-ef.btn-ef-2.btn-ef-2c.active {
    left: -3px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.btn-ef.btn-ef-2.btn-ef-2d {
    -webkit-box-shadow: 3px 0;
    box-shadow: 3px 0;
}
.btn-ef.btn-ef-2.btn-ef-2d:hover {
    left: 2px;
    -webkit-box-shadow: 1px 0;
    box-shadow: 1px 0;
}
.btn-ef.btn-ef-2.btn-ef-2d:active,
.btn-ef.btn-ef-2.btn-ef-2d.active {
    left: 3px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.btn-ef.btn-ef-2.btn-ef-2-primary {
    color: #428bca;
    background-color: #cde1f1;
}
.btn-ef.btn-ef-2.btn-ef-2-success {
    color: #5cb85c;
    background-color: #d8eed8;
}
.btn-ef.btn-ef-2.btn-ef-2-warning {
    color: #f0ad4e;
    background-color: #fceedb;
}
.btn-ef.btn-ef-2.btn-ef-2-danger {
    color: #d9534f;
    background-color: #f9e2e2;
}
.btn-ef.btn-ef-2.btn-ef-2-info {
    color: #5bc0de;
    background-color: #f0f9fc;
}
.btn-ef.btn-ef-2.btn-ef-2-cyan {
    color: #22beef;
    background-color: #e0f6fd;
}
.btn-ef.btn-ef-2.btn-ef-2-amethyst {
    color: #cd97eb;
    background-color: #f6edfb;
}
.btn-ef.btn-ef-2.btn-ef-2-green {
    color: #a2d200;
    background-color: #f5ffd2;
}
.btn-ef.btn-ef-2.btn-ef-2-orange {
    color: orange;
    background-color: #fff3cc;
}
.btn-ef.btn-ef-2.btn-ef-2-red {
    color: #ff4a43;
    background-color: #ffdddc;
}
.btn-ef.btn-ef-2.btn-ef-2-greensea {
    color: #16a085;
    background-color: #d5f9f2;
}
.btn-ef.btn-ef-2.btn-ef-2-dutch {
    color: #1693A5;
    background-color: #daf6fa;
}
.btn-ef.btn-ef-2.btn-ef-2-hotpink {
    color: #FF0066;
    background-color: #ffe6f0;
}
.btn-ef.btn-ef-2.btn-ef-2-drank {
    color: #A40778;
    background-color: #fdc7ee;
}
.btn-ef.btn-ef-2.btn-ef-2-blue {
    color: #418bca;
    background-color: #e1ecf6;
}
.btn-ef.btn-ef-2.btn-ef-2-lightred {
    color: #e05d6f;
    background-color: #f9dde1;
}
.btn-ef.btn-ef-2.btn-ef-2-slategray {
    color: #3f4e62;
    background-color: #b6c1d0;
}
.btn-ef.btn-ef-2.btn-ef-2-darkgray {
    color: #333;
    background-color: #a6a6a6;
}
.btn-ef.btn-ef-3 {
    /* Button 3a */
    /* Button 3b */
    /* Button 3c */
}
.btn-ef.btn-ef-3.btn-default {
    background: #e2e2e2;
    color: #616f77;
}
.btn-ef.btn-ef-3.btn-default:hover {
    background: #c9c9c9;
}
.btn-ef.btn-ef-3.btn-default:active,
.btn-ef.btn-ef-3.btn-default.active {
    background: #bcbcbc;
}
.btn-ef.btn-ef-3.btn-default:focus {
    background: #e2e2e2;
    color: #616f77;
}
.btn-ef.btn-ef-3:active {
    top: 2px;
}
.btn-ef.btn-ef-3 > i {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 32px;
    font-size: 130%;
    width: 40px;
}
.btn-ef.btn-ef-3.btn-ef-3a {
    padding-left: 50px;
}
.btn-ef.btn-ef-3.btn-ef-3a > i {
    background: rgba(0, 0, 0, 0.05);
}
.btn-ef.btn-ef-3.btn-ef-3b {
    padding-left: 45px;
}
.btn-ef.btn-ef-3.btn-ef-3b > i {
    width: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ef.btn-ef-3.btn-ef-3c {
    padding-right: 25px;
    overflow: hidden;
}
.btn-ef.btn-ef-3.btn-ef-3c > i {
    left: auto;
    right: -6px;
    font-size: 12px;
    z-index: 2;
}
.btn-ef.btn-ef-3.btn-ef-3c:after {
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    right: 0;
    top: 0;
    margin: -5px 0 0 -5px;
    -webkit-transform-origin: 0 0;
    -webkit-transform: rotate(-20deg);
    -moz-transform-origin: 0 0;
    -moz-transform: rotate(-20deg);
    -ms-transform-origin: 0 0;
    -ms-transform: rotate(-20deg);
    transform-origin: 0 0;
    transform: rotate(-20deg);
}
.btn-ef.btn-ef-3.btn-ef-3c:hover:after {
    width: 40%;
}
.btn-ef.btn-ef-4 {
    overflow: hidden;
    padding: 6px 30px;
    /* Button 4a */
    /* Button 4b */
    /* Button 4c */
    /* Button 4d */
}
.btn-ef.btn-ef-4.btn-default {
    border: 2px solid #ccc;
}
.btn-ef.btn-ef-4.btn-default:hover {
    border: 2px solid #b3b3b3;
}
.btn-ef.btn-ef-4:active,
.btn-ef.btn-ef-4.active {
    top: 2px;
}
.btn-ef.btn-ef-4 > i {
    position: absolute;
    height: 100%;
    line-height: 32px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-ef.btn-ef-4.btn-ef-4a > i {
    left: 130%;
    top: 0;
}
.btn-ef.btn-ef-4.btn-ef-4a:hover > i {
    left: 80%;
}
.btn-ef.btn-ef-4.btn-ef-4b > i {
    left: 70%;
    opacity: 0;
    top: 0;
}
.btn-ef.btn-ef-4.btn-ef-4b:hover > i {
    left: 80%;
    opacity: 1;
}
.btn-ef.btn-ef-4.btn-ef-4c > i {
    left: -50%;
    top: 0;
}
.btn-ef.btn-ef-4.btn-ef-4c:hover > i {
    left: 10%;
}
.btn-ef.btn-ef-4.btn-ef-4d > i {
    left: 30%;
    opacity: 0;
    top: 0;
}
.btn-ef.btn-ef-4.btn-ef-4d:hover > i {
    left: 10%;
    opacity: 1;
}
.btn-ef.btn-ef-5 {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Button 5a */
    /* Button 5b */
}
.btn-ef.btn-ef-5.btn-default {
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
}
.btn-ef.btn-ef-5.btn-default:hover {
    border-color: #b3b3b3;
}
.btn-ef.btn-ef-5:active,
.btn-ef.btn-ef-5.active {
    top: 2px;
}
.btn-ef.btn-ef-5:active i,
.btn-ef.btn-ef-5.active i {
    color: white;
}
.btn-ef.btn-ef-5 span {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btn-ef.btn-ef-5 i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 1.8;
    font-size: 130%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-ef.btn-ef-5.btn-ef-5a:hover span {
    -webkit-transform: translateY(300%);
    -moz-transform: translateY(300%);
    -ms-transform: translateY(300%);
    -o-transform: translateY(300%);
    transform: translateY(300%);
}
.btn-ef.btn-ef-5.btn-ef-5a:hover i {
    top: 0;
}
.btn-ef.btn-ef-5.btn-ef-5a i {
    left: 0;
    top: -100%;
}
.btn-ef.btn-ef-5.btn-ef-5b:hover span {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
}
.btn-ef.btn-ef-5.btn-ef-5b:hover i {
    left: 0;
}
.btn-ef.btn-ef-5.btn-ef-5b i {
    left: -100%;
    top: 0;
}
.btn-ef.btn-ef-6 {
    border-width: 0;
    padding: 8px 14px;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    /* Button 6a */
    /* Button 6b */
    /* Button 6c */
    /* Button 6d */
}
.btn-ef.btn-ef-6.btn-default {
    background: #e2e2e2;
    color: #616f77;
}
.btn-ef.btn-ef-6.btn-default:hover {
    background: #c9c9c9;
}
.btn-ef.btn-ef-6.btn-default:active,
.btn-ef.btn-ef-6.btn-default.active {
    background: #bcbcbc;
}
.btn-ef.btn-ef-6.btn-default:focus {
    background: #e2e2e2;
    color: #616f77;
}
.btn-ef.btn-ef-6:active,
.btn-ef.btn-ef-6.active {
    top: 2px;
}
.btn-ef.btn-ef-6:hover {
    padding: 6px 12px;
    border-width: 2px;
    background: transparent !important;
    color: #616f77;
}
.btn-ef.btn-ef-6.btn-ef-6a {
    border-style: solid;
}
.btn-ef.btn-ef-6.btn-ef-6b {
    border-style: dashed;
}
.btn-ef.btn-ef-6.btn-ef-6c {
    border-style: dotted;
}
.btn-ef.btn-ef-6.btn-ef-6d {
    padding: 10px 16px;
    border-style: double;
}
.btn-ef.btn-ef-6.btn-ef-6d:hover {
    border-width: 4px;
    padding: 6px 12px;
}
.btn-ef.btn-ef-7 {
    border-width: 1px;
    border-style: solid;
    padding: 6px 16px 6px 40px!important;
    /* Button 7a */
    /* Button 7b */
    /* Button 7c */
    /* Button 7d */
    /* Button 7e */
    /* Button 7f */
    /* Button 7g */
    /* Button 7h */
}
.btn-ef.btn-ef-7:not(.btn-icon-only) i {
    color: rgba(255, 255, 255, 0.5);
}
.btn-ef.btn-ef-7.btn-default {
    border-color: #ccc;
}
.btn-ef.btn-ef-7.btn-default:not(.btn-icon-only) i {
    color: rgba(0, 0, 0, 0.5);
}
.btn-ef.btn-ef-7.btn-default:hover {
    border-color: #b3b3b3;
}
.btn-ef.btn-ef-7.btn-ef-7a {
    overflow: hidden;
}
.btn-ef.btn-ef-7.btn-ef-7a i {
    position: absolute;
    left: 0;
    width: 32%;
    font-size: 130%;
    line-height: 1.1;
}
.btn-ef.btn-ef-7.btn-ef-7a.btn-activated {
    -webkit-animation: fadeOutText 0.5s;
    -moz-animation: fadeOutText 0.5s;
    animation: fadeOutText 0.5s;
}
.btn-ef.btn-ef-7.btn-ef-7a.btn-activated i {
    -webkit-animation: moveToRight 0.5s;
    -moz-animation: moveToRight 0.5s;
    animation: moveToRight 0.5s;
}
.btn-ef.btn-ef-7.btn-ef-7b {
    overflow: hidden;
}
.btn-ef.btn-ef-7.btn-ef-7b i {
    position: absolute;
    left: 0;
    width: 28%;
    font-size: 130%;
    line-height: 1.1;
}
.btn-ef.btn-ef-7.btn-ef-7b.btn-activated i {
    -webkit-animation: scaleUp 0.5s;
    -moz-animation: scaleUp 0.5s;
    animation: scaleUp 0.5s;
}
.btn-ef.btn-ef-7.btn-ef-7c {
    overflow: hidden;
}
.btn-ef.btn-ef-7.btn-ef-7c i {
    z-index: 1;
}
.btn-ef.btn-ef-7.btn-ef-7c:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
    width: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-7.btn-ef-7c.btn-activated:after {
    -webkit-animation: fillToRight 0.7s forwards;
    -moz-animation: fillToRight 0.7s forwards;
    animation: fillToRight 0.7s forwards;
}
.btn-ef.btn-ef-7.btn-ef-7d {
    overflow: hidden;
}
.btn-ef.btn-ef-7.btn-ef-7d i {
    z-index: 1;
}
.btn-ef.btn-ef-7.btn-ef-7d:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-7.btn-ef-7d.btn-activated:after {
    -webkit-animation: emptyBottom 0.7s forwards;
    -moz-animation: emptyBottom 0.7s forwards;
    animation: emptyBottom 0.7s forwards;
}
.btn-ef.btn-ef-7.btn-ef-7e i.after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: 22px;
    line-height: 42px;
    color: #ea515e;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-7.btn-ef-7e.btn-activated i.after {
    -webkit-animation: scaleFade 0.5s forwards;
    -moz-animation: scaleFade 0.5s forwards;
    animation: scaleFade 0.5s forwards;
}
.btn-ef.btn-ef-7.btn-ef-7f i.after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: 22px;
    line-height: 42px;
    color: #ffe44d;
    visibility: hidden;
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -ms-transform: scale(4);
    -o-transform: scale(4);
    transform: scale(4);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-7.btn-ef-7f.btn-activated i.after {
    visibility: visible;
    -webkit-animation: dropDown 0.3s forwards;
    -moz-animation: dropDown 0.3s forwards;
    animation: dropDown 0.3s forwards;
}
.btn-ef.btn-ef-7.btn-ef-7g i.after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: 22px;
    line-height: 42px;
    color: #616f77;
    visibility: hidden;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.btn-ef.btn-ef-7.btn-ef-7g.btn-activated i.after {
    visibility: visible;
    -webkit-animation: dropDownFade 0.5s forwards;
    -moz-animation: dropDownFade 0.5s forwards;
    animation: dropDownFade 0.5s forwards;
}
.btn-ef.btn-ef-7.btn-ef-7h span {
    display: inline-block;
    width: 100%;
}
.btn-ef.btn-ef-7.btn-ef-7h i {
    position: absolute;
    left: 0;
    width: 28%;
    font-size: 130%;
    line-height: 1.1;
}
.btn-ef.btn-ef-7.btn-ef-7h.btn-activated i {
    -webkit-animation: scaleUp 0.5s;
    -moz-animation: scaleUp 0.5s;
    animation: scaleUp 0.5s;
}
.btn-ef.btn-activated-success,
.btn-ef.btn-activated-error {
    color: transparent !important;
}
.btn-ef.btn-activated-success:after,
.btn-ef.btn-activated-error:after {
    z-index: 1;
    color: #fff;
    left: 40%;
}
.btn-ef.btn-activated-success .fa:before {
    content: "\f118";
}
.btn-ef.btn-activated-success:after {
    content: "Success!";
    -webkit-animation: moveUp 0.5s;
    -moz-animation: moveUp 0.5s;
    animation: moveUp 0.5s;
}
.btn-ef.btn-activated-error {
    -webkit-animation: shake 0.5s;
    -moz-animation: shake 0.5s;
    animation: shake 0.5s;
}
.btn-ef.btn-activated-error .fa:before {
    content: "\f119";
}
.btn-ef.btn-activated-error:after {
    content: "Error!";
    -webkit-animation: scaleFromUp 0.5s;
    -moz-animation: scaleFromUp 0.5s;
    animation: scaleFromUp 0.5s;
}
button:focus {
    outline: 0 !important;
}
.btn {
    border-radius: 0;
    outline: 0 !important;
}
.btn.rounded-corners,
.btn.btn-rounded {    margin-bottom: 5px;
    border-radius: 4px;
}
.btn.rounded-corners.btn-lg,
.btn.btn-rounded.btn-lg {
    border-radius: 6px;
}
.btn.rounded-corners.btn-sm,
.btn.rounded-corners.btn-xs,
.btn.btn-rounded.btn-sm,
.btn.btn-rounded.btn-xs {
    border-radius: 3px;
}
.btn.btn-rounded-10 {
    border-radius: 10px;
}
.btn.btn-rounded-20 {
    border-radius: 20px;
}
.btn.btn-rounded-40 {
    border-radius: 40px;
}
.btn.btn-rounded-50p {
    border-radius: 50%;
}
.btn.no-border {
    border: 0;
}
.btn.btn-icon-only {
    font-size: 0;
    padding: 20px 25px;
    position: relative;
}
.btn.btn-icon-only i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 22px;
    line-height: 42px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btn:focus,
.btn:active {
    outline: 0 !important;
}
.btn.btn-cyan {
    background-color: #22beef;
    color: white;
    border-color: #10acdd;
}
.btn.btn-cyan:hover,
.btn.btn-cyan:active,
.btn.btn-cyan.active {
    background-color: #10acdd;
    border-color: #0f9dca;
    color: white;
}
.btn.btn-cyan:active,
.btn.btn-cyan.active {
    background-color: #0f9dca;
    border-color: #0e92bc;
}
.btn.btn-amethyst {
    background-color: #cd97eb;
    color: white;
    border-color: #c382e7;
}
.btn.btn-amethyst:hover,
.btn.btn-amethyst:active,
.btn.btn-amethyst.active {
    background-color: #c382e7;
    border-color: #ba71e4;
    color: white;
}
.btn.btn-amethyst:active,
.btn.btn-amethyst.active {
    background-color: #ba71e4;
    border-color: #b464e1;
}
.btn.btn-green {
    background-color: #a2d200;
    color: white;
    border-color: #96c300;
}
.btn.btn-green:hover,
.btn.btn-green:active,
.btn.btn-green.active {
    background-color: #96c300;
    border-color: #86ae00;
    color: white;
}
.btn.btn-green:active,
.btn.btn-green.active {
    background-color: #86ae00;
    border-color: #7b9f00;
}
.btn.btn-orange {
    background-color: #ffc100;
    color: white;
    border-color: #f0b500;
}
.btn.btn-orange:hover,
.btn.btn-orange:active,
.btn.btn-orange.active {
    background-color: #f0b500;
    border-color: #dba600;
    color: white;
}
.btn.btn-orange:active,
.btn.btn-orange.active {
    background-color: #dba600;
    border-color: #cc9a00;
}
.btn.btn-red {
    background-color: #ff4a43;
    color: white;
    border-color: #ff1910;
}
.btn.btn-red:hover,
.btn.btn-red:active,
.btn.btn-red.active {
    background-color: #ff1910;
    border-color: #e60900;
    color: white;
}
.btn.btn-red:active,
.btn.btn-red.active {
    background-color: #e60900;
    border-color: #d70800;
}
.btn.btn-greensea {
    background-color: #16a085;
    color: white;
    border-color: #138a72;
}
.btn.btn-greensea:hover,
.btn.btn-greensea:active,
.btn.btn-greensea.active {
    background-color: #138a72;
    border-color: #107863;
    color: white;
}
.btn.btn-greensea:active,
.btn.btn-greensea.active {
    background-color: #107863;
    border-color: #0f6a58;
}
.btn.btn-dutch {
    background-color: #1693A5;
    color: white;
    border-color: #137f8f;
}
.btn.btn-dutch:hover,
.btn.btn-dutch:active,
.btn.btn-dutch.active {
    background-color: #137f8f;
    border-color: #116f7d;
    color: white;
}
.btn.btn-dutch:active,
.btn.btn-dutch.active {
    background-color: #116f7d;
    border-color: #0f636f;
}
.btn.btn-hotpink {
    background-color: #FF0066;
    color: white;
    border-color: #e6005c;
}
.btn.btn-hotpink:hover,
.btn.btn-hotpink:active,
.btn.btn-hotpink.active {
    background-color: #e6005c;
    border-color: #d10054;
    color: white;
}
.btn.btn-hotpink:active,
.btn.btn-hotpink.active {
    background-color: #d10054;
    border-color: #c2004e;
}
.btn.btn-drank {
    background-color: #A40778;
    color: white;
    border-color: #8c0666;
}
.btn.btn-drank:hover,
.btn.btn-drank:active,
.btn.btn-drank.active {
    background-color: #8c0666;
    border-color: #780558;
    color: white;
}
.btn.btn-drank:active,
.btn.btn-drank.active {
    background-color: #780558;
    border-color: #69044d;
}
.btn.btn-blue {
    background-color: #418bca;
    color: white;
    border-color: #357ebd;
}
.btn.btn-blue:hover,
.btn.btn-blue:active,
.btn.btn-blue.active {
    background-color: #357ebd;
    border-color: #3074ad;
    color: white;
}
.btn.btn-blue:active,
.btn.btn-blue.active {
    background-color: #3074ad;
    border-color: #2d6ca1;
}
.btn.btn-lightred {
    background-color:#e91e63;
    color: white;
    border-color: #dc485c;
}
.btn.btn-lightred:hover,
.btn.btn-lightred:active,
.btn.btn-lightred.active {
    background-color: #dc485c;
    border-color: #d9364d;
    color: white;
}
.btn.btn-lightred:active,
.btn.btn-lightred.active {
    background-color: #d9364d;
    border-color: #d62a41;
}
.btn.btn-slategray {
    background-color: #3f4e62;
    color: white;
    border-color: #354252;
}
.btn.btn-slategray:hover,
.btn.btn-slategray:active,
.btn.btn-slategray.active {
    background-color: #354252;
    border-color: #2d3846;
    color: white;
}
.btn.btn-slategray:active,
.btn.btn-slategray.active {
    background-color: #2d3846;
    border-color: #27303d;
}
.btn.btn-darkgray {
    background-color: #333;
    color: white;
    border-color: #262626;
}
.btn.btn-darkgray:hover,
.btn.btn-darkgray:active,
.btn.btn-darkgray.active {
    background-color: #262626;
    border-color: #1c1c1c;
    color: white;
}
.btn.btn-darkgray:active,
.btn.btn-darkgray.active {
    background-color: #1c1c1c;
    border-color: #141414;
}
.btn.btn-default {
    color: #616f77;
    border-color: #cdd3d7;
}
.btn.btn-default:focus {
    background-color: white;
    border-color: #b1bac0;
}
.btn.btn-default:hover {
    background-color: #f2f3f4;
}
.btn.btn-default:active,
.btn.btn-default.active {
    background-color: #eaeced;
}
.btn.btn-primary:focus {
    background-color: #428bca;
    border-color: #357ebd;
}
.btn.btn-primary:hover {
    background-color: #3071a9;
}
.btn.btn-primary:active,
.btn.btn-primary.active {
    background-color: #2a6496;
}
.btn.btn-success:focus {
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn.btn-success:hover {
    background-color: #449d44;
}
.btn.btn-success:active,
.btn.btn-success.active {
    background-color: #3d8b3d;
}
.btn.btn-warning:focus {
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn.btn-warning:hover {
    background-color: #ec971f;
}
.btn.btn-warning:active,
.btn.btn-warning.active {
    background-color: #df8a13;
}
.btn.btn-danger:focus {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn.btn-danger:hover {
    background-color: #c9302c;
}
.btn.btn-danger:active,
.btn.btn-danger.active {
    background-color: #b52b27;
}
.btn.btn-info:focus {
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn.btn-info:hover {
    background-color: #31b0d5;
}
.btn.btn-info:active,
.btn.btn-info.active {
    background-color: #28a1c5;
}
.btn.btn-border {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}
.btn.btn-border:hover,
.btn.btn-border:active,
.btn.btn-border.active,
.btn.btn-border:focus {
    background-color: transparent;
}
.btn.btn-border.btn-xs,
.btn.btn-border.btn-sm {
    border-width: 1px;
}
.btn.btn-border.btn-cyan {
    color: #22beef;
}
.btn.btn-border.btn-cyan:hover,
.btn.btn-border.btn-cyan:active,
.btn.btn-border.btn-cyan.active {
    color: #0f9dca;
}
.btn.btn-border.btn-amethyst {
    color: #cd97eb;
}
.btn.btn-border.btn-amethyst:hover,
.btn.btn-border.btn-amethyst:active,
.btn.btn-border.btn-amethyst.active {
    color: #ba71e4;
}
.btn.btn-border.btn-green {
    color: #a2d200;
}
.btn.btn-border.btn-green:hover,
.btn.btn-border.btn-green:active,
.btn.btn-border.btn-green.active {
    color: #86ae00;
}
.btn.btn-border.btn-orange {
    color: #ffc100;
}
.btn.btn-border.btn-orange:hover,
.btn.btn-border.btn-orange:active,
.btn.btn-border.btn-orange.active {
    color: #dba600;
}
.btn.btn-border.btn-red {
    color: #ff4a43;
}
.btn.btn-border.btn-red:hover,
.btn.btn-border.btn-red:active,
.btn.btn-border.btn-red.active {
    color: #e60900;
}
.btn.btn-border.btn-greensea {
    color: #16a085;
}
.btn.btn-border.btn-greensea:hover,
.btn.btn-border.btn-greensea:active,
.btn.btn-border.btn-greensea.active {
    color: #107863;
}
.btn.btn-border.btn-dutch {
    color: #1693A5;
}
.btn.btn-border.btn-dutch:hover,
.btn.btn-border.btn-dutch:active,
.btn.btn-border.btn-dutch.active {
    color: #116f7d;
}
.btn.btn-border.btn-hotpink {
    color: #FF0066;
}
.btn.btn-border.btn-hotpink:hover,
.btn.btn-border.btn-hotpink:active,
.btn.btn-border.btn-hotpink.active {
    color: #d10054;
}
.btn.btn-border.btn-drank {
    color: #A40778;
}
.btn.btn-border.btn-drank:hover,
.btn.btn-border.btn-drank:active,
.btn.btn-border.btn-drank.active {
    color: #780558;
}
.btn.btn-border.btn-blue {
    color: #418bca;
}
.btn.btn-border.btn-blue:hover,
.btn.btn-border.btn-blue:active,
.btn.btn-border.btn-blue.active {
    color: #3074ad;
}
.btn.btn-border.btn-lightred {
    color: #e05d6f;
}
.btn.btn-border.btn-lightred:hover,
.btn.btn-border.btn-lightred:active,
.btn.btn-border.btn-lightred.active {
    color: #d9364d;
}
.btn.btn-border.btn-slategray {
    color: #3f4e62;
}
.btn.btn-border.btn-slategray:hover,
.btn.btn-border.btn-slategray:active,
.btn.btn-border.btn-slategray.active {
    color: #2d3846;
}
.btn.btn-border.btn-darkgray {
    color: #333;
}
.btn.btn-border.btn-darkgray:hover,
.btn.btn-border.btn-darkgray:active,
.btn.btn-border.btn-darkgray.active {
    color: #1c1c1c;
}
.btn.btn-border.btn-primary {
    color: #428bca;
}
.btn.btn-border.btn-primary:hover,
.btn.btn-border.btn-primary:active,
.btn.btn-border.btn-primary.active {
    color: #245682;
}
.btn.btn-border.btn-success {
    color: #5cb85c;
}
.btn.btn-border.btn-success:hover,
.btn.btn-border.btn-success:active,
.btn.btn-border.btn-success.active {
    color: #357935;
}
.btn.btn-border.btn-warning {
    color: #f0ad4e;
}
.btn.btn-border.btn-warning:hover,
.btn.btn-border.btn-warning:active,
.btn.btn-border.btn-warning.active {
    color: #c77c11;
}
.btn.btn-border.btn-danger {
    color: #d9534f;
}
.btn.btn-border.btn-danger:hover,
.btn.btn-border.btn-danger:active,
.btn.btn-border.btn-danger.active {
    color: #a02622;
}
.btn.btn-border.btn-info {
    color: #5bc0de;
}
.btn.btn-border.btn-info:hover,
.btn.btn-border.btn-info:active,
.btn.btn-border.btn-info.active {
    color: #2390b0;
}
.btn.btn-border.btn-white {
    color: #fff;
    border-color: white;
}
.btn.btn-border.btn-white:hover,
.btn.btn-border.btn-white:active,
.btn.btn-border.btn-white.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.open .dropdown-toggle.btn-cyan {
    background-color: #10acdd;
    color: white;
}
.open .dropdown-toggle.btn-amethyst {
    background-color: #c382e7;
    color: white;
}
.open .dropdown-toggle.btn-green {
    background-color: #96c300;
    color: white;
}
.open .dropdown-toggle.btn-orange {
    background-color: #f0b500;
    color: white;
}
.open .dropdown-toggle.btn-red {
    background-color: #ff1910;
    color: white;
}
.open .dropdown-toggle.btn-greensea {
    background-color: #138a72;
    color: white;
}
.open .dropdown-toggle.btn-dutch {
    background-color: #137f8f;
    color: white;
}
.open .dropdown-toggle.btn-hotpink {
    background-color: #e6005c;
    color: white;
}
.open .dropdown-toggle.btn-drank {
    background-color: #dc485c;
    color: white;
}
.open .dropdown-toggle.btn-drank {
    background-color: #dc485c;
    color: white;
}
.open .dropdown-toggle.btn-blue {
    background-color: #357ebd;
    color: white;
}
.open .dropdown-toggle.btn-lightred {
    background-color: #dc485c;
    color: white;
}
.open .dropdown-toggle.btn-slategray {
    background-color: #354252;
    color: white;
}
.open .dropdown-toggle.btn-darkgray {
    background-color: #262626;
    color: white;
}
.btn-group > .btn {
    border-radius: 0;
}
.btn-group.btn-group-rounded > .btn {
    border-radius: 4px;
}
.btn-group.btn-group-rounded-20 > .btn {
    border-radius: 20px;
}
.btn-group-lg > .btn {
    border-radius: 0;
}
.btn-group-lg.btn-group-rounded > .btn {
    border-radius: 6px;
}
.btn-group-sm > .btn,
.btn-group-xs > .btn {
    border-radius: 0;
}
.btn-group-sm.btn-group-rounded > .btn,
.btn-group-xs.btn-group-rounded > .btn {
    border-radius: 3px;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-radius: 0;
}
.btn-group > .btn:not(.btn-default) {
    /*&:not(.dropdown-toggle){
    &:hover,
    &:focus,
    &.active,
    &:active {
      border-right: 1px solid $transparent-black-2;
    }
  }*/
}
.btn-group > .btn:not(.btn-default) + .dropdown-toggle {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-group > .btn:not(.btn-default) + .dropdown-toggle:hover,
.btn-group > .btn:not(.btn-default) + .dropdown-toggle:focus,
.btn-group > .btn:not(.btn-default) + .dropdown-toggle.active,
.btn-group > .btn:not(.btn-default) + .dropdown-toggle:active {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.tile-button {
    display: block;
    padding: 30px 20px;
    text-align: center;
    font-size: 18px;
    color: #616f77;
    opacity: .6;
}
.tile-button:hover,
.tile-button:focus {
    color: #616f77;
    opacity: 1;
    text-decoration: none;
}
.icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    /* Effect 1 */
    /* Effect 2 */
    /* Effect 3 */
    /* Effect 4 */
    /* Effect 5 */
    /* Effect 6 */
    /* Effect 7 */
    /* Effect 8 */
    /* Effect 9 */
}
.icon:hover {
    text-decoration: none;
}
.icon > .fa {
    speak: none;
    font-size: 26px;
    line-height: 50px;
    display: block;
}
.icon:after,
.icon:before {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
}
.icon:before {
    display: none;
}
.icon.icon-ef-1 {
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
    /* Effect 1a */
    /* Effect 1b */
}
.icon.icon-ef-1:after {
    top: -5px;
    left: -5px;
    padding: 5px;
    box-shadow: 0 0 0 3px;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    filter: alpha(opacity=0);
    opacity: 0;
}
.icon.icon-ef-1:before {
    display: none;
}
.icon.icon-ef-1.icon-ef-1a:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: alpha(opacity=100);
    opacity: 1;
}
.icon.icon-ef-1.icon-ef-1b:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.icon.icon-ef-1.icon-ef-1b:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: alpha(opacity=100);
    opacity: 1;
}
.icon.icon-ef-2 {
    background-color: transparent !important;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    /* Effect 2a */
    /* Effect 2b */
}
.icon.icon-ef-2:after {
    box-shadow: 0 0 0 3px;
    left: 0;
    top: 0;
}
.icon.icon-ef-2:before {
    display: block;
    top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.icon.icon-ef-2.icon-ef-2a:hover:before {
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
}
.icon.icon-ef-2.icon-ef-2b:hover:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    opacity: 0;
}
.icon.icon-ef-3 {
    background-color: transparent !important;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    /* Effect 3a */
    /* Effect 3b */
}
.icon.icon-ef-3:after {
    box-shadow: 0 0 0 3px;
    left: 0;
    top: 0;
}
.icon.icon-ef-3:before {
    display: block;
    top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.icon.icon-ef-3.icon-ef-3a:hover:before {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    filter: alpha(opacity=0);
    opacity: 0;
}
.icon.icon-ef-3.icon-ef-3b:before {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    filter: alpha(opacity=0);
    opacity: 0;
}
.icon.icon-ef-3.icon-ef-3b:hover {
    color: white !important;
}
.icon.icon-ef-3.icon-ef-3b:hover:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: alpha(opacity=100);
    opacity: 1;
}
.icon.icon-ef-4 {
    background-color: transparent !important;
    box-shadow: 0 0 0 3px;
    /* Effect 4a */
    /* Effect 4b */
}
.icon.icon-ef-4:after {
    top: -3px;
    left: -3px;
    padding: 0;
    z-index: 10;
    border: 3px dashed;
}
.icon.icon-ef-4:before {
    display: none;
}
.icon.icon-ef-4:hover {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.icon.icon-ef-4.icon-ef-4a {
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}
.icon.icon-ef-4.icon-ef-4b:hover {
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}
.icon.icon-ef-4.icon-ef-4b:hover:after {
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
}
.icon.icon-ef-5 {
    background-color: transparent !important;
    /* Effect 5a */
    /* Effect 5b */
    /* Effect 5c */
    /* Effect 5d */
}
.icon.icon-ef-5:after {
    top: 0;
    left: 0;
    box-shadow: 0 0 0 3px;
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
}
.icon.icon-ef-5:before {
    display: block;
    top: -2px;
    left: -2px;
    padding: 2px;
    display: none;
    z-index: -1;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}
.icon.icon-ef-5:hover > .fa {
    color: white !important;
}
.icon.icon-ef-5:hover:before {
    display: block;
}
.icon.icon-ef-5:hover:after {
    box-shadow: 0 0 0 6px;
    filter: alpha(opacity=30);
    opacity: 0.3;
}
.icon.icon-ef-5.icon-ef-5a:hover > .fa {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}
.icon.icon-ef-5.icon-ef-5b:hover > .fa {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    -moz-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
}
.icon.icon-ef-5.icon-ef-5c:hover > .fa {
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
}
.icon.icon-ef-5.icon-ef-5d:hover > .fa {
    -webkit-animation: toBottomFromTop 0.3s forwards;
    -moz-animation: toBottomFromTop 0.3s forwards;
    animation: toBottomFromTop 0.3s forwards;
}
.icon.icon-ef-6 {
    background-color: transparent !important;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
}
.icon.icon-ef-6:after {
    top: 0;
    left: 0;
    box-shadow: 0 0 0 3px;
}
.icon.icon-ef-6:before {
    display: block;
    top: -2px;
    left: -2px;
    padding: 2px;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.icon.icon-ef-6:hover {
    color: white !important;
}
.icon.icon-ef-6:hover > .fa {
    -webkit-animation: spinAround 2s linear infinite;
    -moz-animation: spinAround 2s linear infinite;
    animation: spinAround 2s linear infinite;
}
.icon.icon-ef-6:hover:before {
    filter: alpha(opacity=100);
    opacity: 1;
}
.icon.icon-ef-7 {
    background-color: transparent !important;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    box-shadow: 0 0 0 3px;
    /* Effect 7a */
    /* Effect 7b */
}
.icon.icon-ef-7:after {
    top: -6px;
    left: -6px;
    padding: 6px;
    z-index: -1;
    filter: alpha(opacity=0);
    opacity: 0;
}
.icon.icon-ef-7:before {
    display: none;
}
.icon.icon-ef-7 > .fa {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.icon.icon-ef-7:hover > .fa {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: alpha(opacity=100);
    opacity: 1;
}
.icon.icon-ef-7.icon-ef-7a:after {
    box-shadow: 0 0 0;
    -webkit-transition: opacity 0.2s, box-shadow 0.2s;
    -moz-transition: opacity 0.2s, box-shadow 0.2s;
    transition: opacity 0.2s, box-shadow 0.2s;
}
.icon.icon-ef-7.icon-ef-7a:hover:after {
    filter: alpha(opacity=100);
    opacity: 1;
    box-shadow: 2px 2px 0;
}
.icon.icon-ef-7.icon-ef-7b:after {
    box-shadow: 2px 2px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: opacity, -webkit-transform;
    -moz-transition: opacity, -moz-transform;
    transition: opacity, transform;
}
.icon.icon-ef-7.icon-ef-7b:hover:after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.icon.icon-ef-8 {
    background: transparent !important;
    -webkit-transition: -webkit-transform, background;
    -moz-transition: -moz-transform, background;
    transition: transform, background;
}
.icon.icon-ef-8:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px;
    opacity: 0;
}
.icon.icon-ef-8:before {
    display: block;
    top: 0;
    left: 0;
    filter: alpha(opacity=10);
    opacity: 0.1;
}
.icon.icon-ef-8:hover {
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    -o-transform: scale(0.93);
    transform: scale(0.93);
}
.icon.icon-ef-8:hover:before {
    filter: alpha(opacity=5);
    opacity: 0.05;
}
.icon.icon-ef-8:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}
.icon.icon-ef-9 {
    background-color: transparent !important;
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}
.icon.icon-ef-9:after {
    top: 0;
    left: 0;
    padding: 0;
    box-shadow: 0 0 0 3px;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.icon.icon-ef-9:before {
    display: none;
}
.icon.icon-ef-9:hover {
    box-shadow: 0 0 0 5px;
}
.icon.icon-ef-9:hover:after {
    filter: alpha(opacity=30);
    opacity: 0.3;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.icon.icon-cyan {
    background-color: #22beef;
    color: white;
}
.icon.icon-cyan.transparent {
    background-color: rgba(34, 190, 239, 0.1);
    color: #22beef;
}
.icon.icon-cyan.transparent:hover {
    background-color: #22beef;
    color: white;
}
.icon.icon-cyan:after,
.icon.icon-cyan.hover-color:hover,
.icon.icon-cyan.icon-color {
    color: #22beef;
}
.icon.icon-cyan:before {
    background-color: #22beef;
}
.icon.icon-cyan:hover {
    background-color: #10acdd;
}
.icon.icon-cyan:active {
    background-color: #0f9dca;
}
.icon.icon-amethyst {
    background-color: #cd97eb;
    color: white;
}
.icon.icon-amethyst.transparent {
    background-color: rgba(205, 151, 235, 0.1);
    color: #cd97eb;
}
.icon.icon-amethyst.transparent:hover {
    background-color: #cd97eb;
    color: white;
}
.icon.icon-amethyst:after,
.icon.icon-amethyst.hover-color:hover,
.icon.icon-amethyst.icon-color {
    color: #cd97eb;
}
.icon.icon-amethyst:before {
    background-color: #cd97eb;
}
.icon.icon-amethyst:hover {
    background-color: #c382e7;
}
.icon.icon-amethyst:active {
    background-color: #ba71e4;
}
.icon.icon-green {
    background-color: #a2d200;
    color: white;
}
.icon.icon-green.transparent {
    background-color: rgba(162, 210, 0, 0.1);
    color: #a2d200;
}
.icon.icon-green.transparent:hover {
    background-color: #a2d200;
    color: white;
}
.icon.icon-green:after,
.icon.icon-green.hover-color:hover,
.icon.icon-green.icon-color {
    color: #a2d200;
}
.icon.icon-green:before {
    background-color: #a2d200;
}
.icon.icon-green:hover {
    background-color: #96c300;
}
.icon.icon-green:active {
    background-color: #86ae00;
}
.icon.icon-orange {
    background-color: #ffc100;
    color: white;
}
.icon.icon-orange.transparent {
    background-color: rgba(255, 193, 0, 0.1);
    color: #ffc100;
}
.icon.icon-orange.transparent:hover {
    background-color: #ffc100;
    color: white;
}
.icon.icon-orange:after,
.icon.icon-orange.hover-color:hover,
.icon.icon-orange.icon-color {
    color: #ffc100;
}
.icon.icon-orange:before {
    background-color: #ffc100;
}
.icon.icon-orange:hover {
    background-color: #f0b500;
}
.icon.icon-orange:active {
    background-color: #dba600;
}
.icon.icon-red {
    background-color: #ff4a43;
    color: white;
}
.icon.icon-red.transparent {
    background-color: rgba(255, 74, 67, 0.1);
    color: #ff4a43;
}
.icon.icon-red.transparent:hover {
    background-color: #ff4a43;
    color: white;
}
.icon.icon-red:after,
.icon.icon-red.hover-color:hover,
.icon.icon-red.icon-color {
    color: #ff4a43;
}
.icon.icon-red:before {
    background-color: #ff4a43;
}
.icon.icon-red:hover {
    background-color: #ff1910;
}
.icon.icon-red:active {
    background-color: #e60900;
}
.icon.icon-greensea {
    background-color: #16a085;
    color: white;
}
.icon.icon-greensea.transparent {
    background-color: rgba(22, 160, 133, 0.1);
    color: #16a085;
}
.icon.icon-greensea.transparent:hover {
    background-color: #16a085;
    color: white;
}
.icon.icon-greensea:after,
.icon.icon-greensea.hover-color:hover,
.icon.icon-greensea.icon-color {
    color: #16a085;
}
.icon.icon-greensea:before {
    background-color: #16a085;
}
.icon.icon-greensea:hover {
    background-color: #138a72;
}
.icon.icon-greensea:active {
    background-color: #107863;
}
.icon.icon-dutch {
    background-color: #1693A5;
    color: white;
}
.icon.icon-dutch.transparent {
    background-color: rgba(22, 147, 165, 0.1);
    color: #1693A5;
}
.icon.icon-dutch.transparent:hover {
    background-color: #1693A5;
    color: white;
}
.icon.icon-dutch:after,
.icon.icon-dutch.hover-color:hover,
.icon.icon-dutch.icon-color {
    color: #1693A5;
}
.icon.icon-dutch:before {
    background-color: #1693A5;
}
.icon.icon-dutch:hover {
    background-color: #137f8f;
}
.icon.icon-dutch:active {
    background-color: #116f7d;
}
.icon.icon-hotpink {
    background-color: #FF0066;
    color: white;
}
.icon.icon-hotpink.transparent {
    background-color: rgba(255, 0, 102, 0.1);
    color: #FF0066;
}
.icon.icon-hotpink.transparent:hover {
    background-color: #FF0066;
    color: white;
}
.icon.icon-hotpink:after,
.icon.icon-hotpink.hover-color:hover,
.icon.icon-hotpink.icon-color {
    color: #FF0066;
}
.icon.icon-hotpink:before {
    background-color: #FF0066;
}
.icon.icon-hotpink:hover {
    background-color: #e6005c;
}
.icon.icon-hotpink:active {
    background-color: #d10054;
}
.icon.icon-drank {
    background-color: #A40778;
    color: white;
}
.icon.icon-drank.transparent {
    background-color: rgba(164, 7, 120, 0.1);
    color: #A40778;
}
.icon.icon-drank.transparent:hover {
    background-color: #A40778;
    color: white;
}
.icon.icon-drank:after,
.icon.icon-drank.hover-color:hover,
.icon.icon-drank.icon-color {
    color: #A40778;
}
.icon.icon-drank:before {
    background-color: #A40778;
}
.icon.icon-drank:hover {
    background-color: #8c0666;
}
.icon.icon-drank:active {
    background-color: #780558;
}
.icon.icon-blue {
    background-color: #418bca;
    color: white;
}
.icon.icon-blue.transparent {
    background-color: rgba(65, 139, 202, 0.1);
    color: #418bca;
}
.icon.icon-blue.transparent:hover {
    background-color: #418bca;
    color: white;
}
.icon.icon-blue:after,
.icon.icon-blue.hover-color:hover,
.icon.icon-blue.icon-color {
    color: #418bca;
}
.icon.icon-blue:before {
    background-color: #418bca;
}
.icon.icon-blue:hover {
    background-color: #357ebd;
}
.icon.icon-blue:active {
    background-color: #3074ad;
}
.icon.icon-lightred {
    background-color: #e05d6f;
    color: white;
}
.icon.icon-lightred.transparent {
    background-color: rgba(224, 93, 111, 0.1);
    color: #e05d6f;
}
.icon.icon-lightred.transparent:hover {
    background-color: #e05d6f;
    color: white;
}
.icon.icon-lightred:after,
.icon.icon-lightred.hover-color:hover,
.icon.icon-lightred.icon-color {
    color: #e05d6f;
}
.icon.icon-lightred:before {
    background-color: #e05d6f;
}
.icon.icon-lightred:hover {
    background-color: #dc485c;
}
.icon.icon-lightred:active {
    background-color: #d9364d;
}
.icon.icon-slategray {
    background-color: #3f4e62;
    color: white;
}
.icon.icon-slategray.transparent {
    background-color: rgba(63, 78, 98, 0.1);
    color: #3f4e62;
}
.icon.icon-slategray.transparent:hover {
    background-color: #3f4e62;
    color: white;
}
.icon.icon-slategray:after,
.icon.icon-slategray.hover-color:hover,
.icon.icon-slategray.icon-color {
    color: #3f4e62;
}
.icon.icon-slategray:before {
    background-color: #3f4e62;
}
.icon.icon-slategray:hover {
    background-color: #354252;
}
.icon.icon-slategray:active {
    background-color: #2d3846;
}
.icon.icon-darkgray {
    background-color: #333;
    color: white;
}
.icon.icon-darkgray.transparent {
    background-color: rgba(51, 51, 51, 0.1);
    color: #333;
}
.icon.icon-darkgray.transparent:hover {
    background-color: #333;
    color: white;
}
.icon.icon-darkgray:after,
.icon.icon-darkgray.hover-color:hover,
.icon.icon-darkgray.icon-color {
    color: #333;
}
.icon.icon-darkgray:before {
    background-color: #333;
}
.icon.icon-darkgray:hover {
    background-color: #262626;
}
.icon.icon-darkgray:active {
    background-color: #1c1c1c;
}
.icon.icon-primary {
    background-color: #428bca;
    color: white;
}
.icon.icon-primary.transparent {
    background-color: rgba(66, 139, 202, 0.1);
    color: #428bca;
}
.icon.icon-primary.transparent:hover {
    background-color: #428bca;
    color: white;
}
.icon.icon-primary:after,
.icon.icon-primary.hover-color:hover,
.icon.icon-primary.icon-color {
    color: #428bca;
}
.icon.icon-primary:before {
    background-color: #428bca;
}
.icon.icon-primary:hover {
    background-color: #3071a9;
}
.icon.icon-primary:active {
    background-color: #245682;
}
.icon.icon-success {
    background-color: #5cb85c;
    color: white;
}
.icon.icon-success.transparent {
    background-color: rgba(92, 184, 92, 0.1);
    color: #5cb85c;
}
.icon.icon-success.transparent:hover {
    background-color: #5cb85c;
    color: white;
}
.icon.icon-success:after,
.icon.icon-success.hover-color:hover,
.icon.icon-success.icon-color {
    color: #5cb85c;
}
.icon.icon-success:before {
    background-color: #5cb85c;
}
.icon.icon-success:hover {
    background-color: #449d44;
}
.icon.icon-success:active {
    background-color: #357935;
}
.icon.icon-warning {
    background-color: #f0ad4e;
    color: white;
}
.icon.icon-warning.transparent {
    background-color: rgba(240, 173, 78, 0.1);
    color: #f0ad4e;
}
.icon.icon-warning.transparent:hover {
    background-color: #f0ad4e;
    color: white;
}
.icon.icon-warning:after,
.icon.icon-warning.hover-color:hover,
.icon.icon-warning.icon-color {
    color: #f0ad4e;
}
.icon.icon-warning:before {
    background-color: #f0ad4e;
}
.icon.icon-warning:hover {
    background-color: #ec971f;
}
.icon.icon-warning:active {
    background-color: #c77c11;
}
.icon.icon-danger {
    background-color: #d9534f;
    color: white;
}
.icon.icon-danger.transparent {
    background-color: rgba(217, 83, 79, 0.1);
    color: #d9534f;
}
.icon.icon-danger.transparent:hover {
    background-color: #d9534f;
    color: white;
}
.icon.icon-danger:after,
.icon.icon-danger.hover-color:hover,
.icon.icon-danger.icon-color {
    color: #d9534f;
}
.icon.icon-danger:before {
    background-color: #d9534f;
}
.icon.icon-danger:hover {
    background-color: #c9302c;
}
.icon.icon-danger:active {
    background-color: #a02622;
}
.icon.icon-info {
    background-color: #5bc0de;
    color: white;
}
.icon.icon-info.transparent {
    background-color: rgba(91, 192, 222, 0.1);
    color: #5bc0de;
}
.icon.icon-info.transparent:hover {
    background-color: #5bc0de;
    color: white;
}
.icon.icon-info:after,
.icon.icon-info.hover-color:hover,
.icon.icon-info.icon-color {
    color: #5bc0de;
}
.icon.icon-info:before {
    background-color: #5bc0de;
}
.icon.icon-info:hover {
    background-color: #31b0d5;
}
.icon.icon-info:active {
    background-color: #2390b0;
}
.icon.icon-default {
    background-color: #616f77;
    color: white;
}
.icon.icon-default.transparent {
    background-color: rgba(97, 111, 119, 0.1);
    color: #616f77;
}
.icon.icon-default.transparent:hover {
    background-color: #616f77;
    color: white;
}
.icon.icon-default:after,
.icon.icon-default.hover-color:hover,
.icon.icon-default.icon-color {
    color: #616f77;
}
.icon.icon-default:before {
    background-color: #616f77;
}
.icon.icon-default:hover {
    background-color: #4a555b;
}
.icon.icon-default:active {
    background-color: #333b3f;
}
.icons-list div {
    line-height: 40px;
    white-space: nowrap;
    cursor: default;
    position: relative;
    z-index: 1;
}
.icons-list div::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 0;
    width: 85%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: -1;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity, -webkit-transform;
    -moz-transition: opacity, -moz-transform;
    transition: opacity, transform;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
}
.icons-list div i {
    display: inline-block;
    width: 40px;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: font-size 0.2s;
    -moz-transition: font-size 0.2s;
    transition: font-size 0.2s;
}
.icons-list div:hover::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.icons-list div:hover i {
    font-size: 26px;
}
.icon-border {
    border: 1px solid;
    border-radius: 50%;
}
md-icon[md-font-icon] {
    height: auto;
    font-size: 2rem;
}
ul > li.divided-right,
ol > li.divided-right {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
ul.list-type,
ol.list-type {
    padding: 0;
    margin: 7px 0 7px 20px;
    list-style-type: none;
}
ul.list-type li,
ol.list-type li {
    padding: 2px 2px 2px 0px;
    position: relative;
}
ul.list-type li:before,
ol.list-type li:before {
    position: absolute;
    left: -18px;
    margin-top: 3px;
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
ul.list-type.arrow li:before,
ol.list-type.arrow li:before {
    content: "\f061";
}
ul.list-type.circle li:before,
ol.list-type.circle li:before {
    content: "\f10c";
}
ul.list-type.check li:before,
ol.list-type.check li:before {
    content: "\f046";
}
ul.list-type.caret-right li:before,
ol.list-type.caret-right li:before {
    content: "\f0da";
}
.angular-ui-tree .tree-node {
    background: #f0f9fc;
    border: 1px solid #daf1f8;
    color: #6aa3d5;
    padding: 0;
    margin-bottom: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.angular-ui-tree .tree-node:hover {
    color: #428bca;
    background: #daf1f8;
    border-color: #c5e9f3;
}
.angular-ui-tree .tree-node .btn.add,
.angular-ui-tree .tree-node .btn.remove,
.angular-ui-tree .tree-node .btn.edit {
    padding: 6px;
    font-size: 12px;
    line-height: 20px;
}
.angular-ui-tree .tree-node .btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.angular-ui-tree .tree-node .tree-handle {
    padding: 6px 8px;
    line-height: 22px;
    background-color: #daf1f8;
    border-right: 1px solid #c5e9f3;
}
.angular-ui-tree .angular-ui-tree-placeholder {
    background: #f4fbfd;
    border: 2px dashed #85d0e7;
    box-sizing: border-box;
}
.list-group.no-radius .list-group-item {
    border-radius: 0 !important;
}
.list-group.no-border .list-group-item {
    border-width: 1px 0;
}
.media .media-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
}
.thumb {
    width: 60px;
    display: inline-block;
}
.thumb img {
    height: auto;
    max-width: 53px;
    /*max-width: 100%;*/

    vertical-align: middle;
}
.thumb.thumb-sm {
    width: 40px;
}
.thumb.thumb-md {
    width: 80px;
}
.thumb.thumb-lg {
    width: 100px;
}
.thumb.thumb-xl {
    width: 120px;
}
.thumb.thumb-xxl {
    width: 160px;
}
.thumb .thumb-header,
.thumb .thumb-body {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.thumb .thumb-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0.01);
}
.thumb .thumb-body {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.text-muted {
    color: #95a2a9;
}
.custom-font {
    font-family: "Dosis", "Arial", sans-serif;
}
.filled {
    padding: 10px;
    color: white;
}
.text-thin {
    font-weight: 300;
}
.text-italic {
    font-style: italic;
}
.text-strong {
    font-weight: 700;
}
.text-small {
    font-size: 85%;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-active {
    display: none;
}
.active > .text-active {
    display: inline-block;
}
.active > .text-inactive {
    display: none;
}
h1.underline,
h2.underline,
h3.underline,
h4.underline,
h5.underline,
h6.underline,
.h1.underline,
.h2.underline,
.h3.underline,
.h4.underline,
.h5.underline,
.h6.underline {
    border-bottom: 1px solid #95a2a9;
    padding-bottom: 5px;
}
p.docs {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.010em;
    line-height: 1.6em;
    margin: 0.8em 0 1.6em;
}
address.filled strong {
    display: block;
    margin: -10px;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 300;
}
address.filled i {
    font-size: 80px;
    margin-top: -50px;
    filter: alpha(opacity=5);
    opacity: 0.05;
}
address.filled.append {
    margin-top: -20px;
}
dl.filled {
    padding: 0;
}
dl.filled dt {
    font-family: "Dosis", "Arial", sans-serif;
}
dl.filled dt,
dl.filled dd {
    padding: 5px 10px;
}
blockquote.filled {
    min-height: 60px;
    padding: 10px;
    border-left: 5px solid;
    border-color: rgba(0, 0, 0, 0.3);
}
blockquote.filled i[class*='fa-quote-'] {
    font-size: 46px;
    margin: 0 10px 10px 0;
    color: rgba(0, 0, 0, 0.1);
}
blockquote.filled .fa.pull-right {
    margin-left: .3em;
}
blockquote.filled small {
    color: rgba(0, 0, 0, 0.3);
}
blockquote.filled.text-right {
    border-left-width: 0;
    border-right: 5px solid rgba(0, 0, 0, 0.3);
}
blockquote p {
    line-height: 1.6em;
}
.note {
    display: inline-block;
    padding: 2px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #95a2a9;
    font-family: "Dosis", "Arial", sans-serif;
    font-size: 12px;
    margin-left: 5px;
    position: relative;
    top: -2px;
    margin-top: 5px;
}
.example .link-effect {
    font-family: "Dosis", "Arial", sans-serif;
    margin: 15px 25px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
}
.link-effect {
    font-family: "Dosis", "Arial", sans-serif;
    margin: 15px 25px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    outline: none;
    text-decoration: none;
    vertical-align: middle;
    /* Effect 1: Brackets */
    /* Effect 2: 3D rolling links, idea from http://hakim.se/thoughts/rolling-links */
    /* Effect 3: bottom line slides/fades in */
    /* Effect 4: bottom border enlarge */
    /* Effect 5: same word slide in */
    /* Effect 6: same word slide in and border bottom */
    /* Effect 7: second border slides up */
    /* Effect 8: border slight translate */
    /* Effect 9: second text and borders */
    /* Effect 10: reveal, push out */
    /* Effect 11: text fill based on Lea Verou's animation http://dabblet.com/gist/6046779 */
    /* Effect 12: circle */
    /* Effect 13: three circles */
    /* Effect 14: border switch */
    /* Effect 15: scale down, reveal */
    /* Effect 16: fall down */
    /* Effect 17: move up fade out, push border */
    /* Effect 18: cross */
    /* Effect 19: 3D side */
    /* Effect 20: 3D side */
    /* Effect 21: borders slight translate */
}
.link-effect:hover,
.link-effect:focus {
    outline: 0;
    text-decoration: none;
}
.link-effect.link-effect-1::before,
.link-effect.link-effect-1::after {
    display: inline-block;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.link-effect.link-effect-1::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
}
.link-effect.link-effect-1::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
}
.link-effect.link-effect-1:hover::before,
.link-effect.link-effect-1:hover::after,
.link-effect.link-effect-1:focus::before,
.link-effect.link-effect-1:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.link-effect.link-effect-2 {
    color: white;
    line-height: 1.8em;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}
.link-effect.link-effect-2 span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #428bca;
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.link-effect.link-effect-2 span::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #245682;
    content: attr(data-hover);
    padding: 0 10px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
}
.link-effect.link-effect-2:hover span,
.link-effect.link-effect-2:focus span {
    -webkit-transform: rotateX(90deg) translateY(-22px);
    -moz-transform: rotateX(90deg) translateY(-22px);
    -ms-transform: rotateX(90deg) translateY(-22px);
    -o-transform: rotateX(90deg) translateY(-22px);
    transform: rotateX(90deg) translateY(-22px);
}
.link-effect.link-effect-2:hover span::before,
.link-effect.link-effect-2:focus span::before {
    background-color: #428bca;
}
.link-effect.link-effect-3 {
    padding: 4px 0;
}
.link-effect.link-effect-3::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(66, 139, 202, 0.15);
    content: '';
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity, -webkit-transform;
    -moz-transition: opacity, -moz-transform;
    transition: opacity, transform;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.link-effect.link-effect-3:hover::after,
.link-effect.link-effect-3:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.link-effect.link-effect-4 {
    padding: 0 0 4px;
}
.link-effect.link-effect-4::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(66, 139, 202, 0.15);
    content: '';
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: height, opacity, -webkit-transform;
    -moz-transition: height, opacity, -moz-transform;
    transition: height, opacity, transform;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.link-effect.link-effect-4:hover::after,
.link-effect.link-effect-4:focus::after {
    height: 5px;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.link-effect.link-effect-5 {
    overflow: hidden;
    padding: 0 4px;
}
.link-effect.link-effect-5 span {
    position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
}
.link-effect.link-effect-5 span::before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    font-weight: 700;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.link-effect.link-effect-5:hover span,
.link-effect.link-effect-5:focus span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.link-effect.link-effect-6 {
    margin: 0 10px;
    padding: 5px 10px;
}
.link-effect.link-effect-6::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428bca;
    content: '';
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    transition: top 0.3s;
}
.link-effect.link-effect-6::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: #428bca;
    content: '';
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}
.link-effect.link-effect-6:hover::before {
    top: 100%;
    filter: alpha(opacity=100);
    opacity: 1;
}
.link-effect.link-effect-6:hover::after {
    height: 100%;
}
.link-effect.link-effect-7 {
    padding: 6px 5px 5px;
}
.link-effect.link-effect-7::before,
.link-effect.link-effect-7::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428bca;
    content: '';
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
}
.link-effect.link-effect-7::after {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: top, opacity, -webkit-transform;
    -moz-transition: top, opacity, -moz-transform;
    transition: top, opacity, transform;
}
.link-effect.link-effect-7:hover::before,
.link-effect.link-effect-7:hover::after,
.link-effect.link-effect-7:focus::before,
.link-effect.link-effect-7:focus::after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.link-effect.link-effect-7:hover::after,
.link-effect.link-effect-7:focus::after {
    top: 0%;
    filter: alpha(opacity=100);
    opacity: 1;
}
.link-effect.link-effect-8 {
    padding: 5px 10px;
}
.link-effect.link-effect-8::before,
.link-effect.link-effect-8::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #333;
    content: '';
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.link-effect.link-effect-8::after {
    border-color: #428bca;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(-7px) translateX(6px);
    -moz-transform: translateY(-7px) translateX(6px);
    -ms-transform: translateY(-7px) translateX(6px);
    -o-transform: translateY(-7px) translateX(6px);
    transform: translateY(-7px) translateX(6px);
}
.link-effect.link-effect-8:hover::before,
.link-effect.link-effect-8:focus::before {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(5) translateX(-5px);
    -moz-transform: translateY(5) translateX(-5px);
    -ms-transform: translateY(5) translateX(-5px);
    -o-transform: translateY(5) translateX(-5px);
    transform: translateY(5) translateX(-5px);
}
.link-effect.link-effect-8:hover::after,
.link-effect.link-effect-8:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    -moz-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    -o-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}
.link-effect.link-effect-9 {
    margin: 0 20px;
    padding: 8px 10px;
    text-align: center;
}
.link-effect.link-effect-9::before,
.link-effect.link-effect-9::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428bca;
    content: '';
    filter: alpha(opacity=20);
    opacity: 0.2;
    -webkit-transition: opacity 0.3s, height 0.3s;
    -moz-transition: opacity 0.3s, height 0.3s;
    transition: opacity 0.3s, height 0.3s;
}
.link-effect.link-effect-9::after {
    top: 100%;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.link-effect.link-effect-9 span:first-child {
    z-index: 2;
    display: block;
}
.link-effect.link-effect-9 span:last-child {
    z-index: 1;
    display: block;
    padding: 2px 0 0 0;
    color: rgba(0, 0, 0, 0.4);
    text-shadow: none;
    text-transform: none;
    font-style: italic;
    font-size: 10px;
    font-family: Georgia, serif;
    opacity: 0;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.link-effect.link-effect-9:hover::before,
.link-effect.link-effect-9:focus::before {
    height: 6px;
}
.link-effect.link-effect-9:hover::before,
.link-effect.link-effect-9:hover::after,
.link-effect.link-effect-9:focus::before,
.link-effect.link-effect-9:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.link-effect.link-effect-9:hover span:last-child,
.link-effect.link-effect-9:focus span:last-child {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.link-effect.link-effect-10 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 8px;
}
.link-effect.link-effect-10 span {
    display: block;
    padding: 5px 10px;
    background: #cde1f1;
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
}
.link-effect.link-effect-10::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 5px 10px;
    width: 100%;
    height: 100%;
    background: #428bca;
    color: white;
    content: attr(data-hover);
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
    -webkit-transform: translateX(-25%);
    -moz-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    -o-transform: translateX(-25%);
    transform: translateX(-25%);
}
.link-effect.link-effect-10:hover span,
.link-effect.link-effect-10:focus span {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.link-effect.link-effect-10:hover::before,
.link-effect.link-effect-10:focus::before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.link-effect.link-effect-11 {
    padding: 5px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.4);
}
.link-effect.link-effect-11::before {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    padding: 5px 0;
    max-width: 0;
    border-bottom: 2px solid #428bca;
    color: #428bca;
    content: attr(data-hover);
    -webkit-transition: max-width 0.5s;
    -moz-transition: max-width 0.5s;
    transition: max-width 0.5s;
}
.link-effect.link-effect-11:hover::before,
.link-effect.link-effect-11:focus::before {
    max-width: 100%;
}
.link-effect.link-effect-12::before,
.link-effect.link-effect-12::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    content: '';
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0.2);
    -o-transform: translateX(-50%) translateY(-50%) scale(0.2);
    transform: translateX(-50%) translateY(-50%) scale(0.2);
}
.link-effect.link-effect-12:after {
    width: 60px;
    height: 60px;
    border-width: 4px;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0.8);
    -o-transform: translateX(-50%) translateY(-50%) scale(0.8);
    transform: translateX(-50%) translateY(-50%) scale(0.8);
}
.link-effect.link-effect-12:hover::before,
.link-effect.link-effect-12:hover::after,
.link-effect.link-effect-12:focus::before,
.link-effect.link-effect-12:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1);
    -o-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
}
.link-effect.link-effect-13 {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}
.link-effect.link-effect-13::before {
    position: absolute;
    top: 70%;
    left: 50%;
    color: transparent;
    content: '•';
    text-shadow: 0 0 transparent;
    font-size: 1.2em;
    -webkit-transition: text-shadow 0.3s, color 0.3s;
    -moz-transition: text-shadow 0.3s, color 0.3s;
    transition: text-shadow 0.3s, color 0.3s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}
.link-effect.link-effect-13:hover::before,
.link-effect.link-effect-13:focus::before {
    color: #616f77;
    text-shadow: 10px 0 #616f77, -10px 0 #616f77;
}
.link-effect.link-effect-14 {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
}
.link-effect.link-effect-14::before,
.link-effect.link-effect-14::after {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #428bca;
    content: '';
    filter: alpha(opacity=20);
    opacity: 0.2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}
.link-effect.link-effect-14::before {
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
}
.link-effect.link-effect-14::after {
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.link-effect.link-effect-14:hover::before,
.link-effect.link-effect-14:hover::after,
.link-effect.link-effect-14:focus::before,
.link-effect.link-effect-14:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
}
.link-effect.link-effect-14:hover::before,
.link-effect.link-effect-14:focus::before {
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
    -moz-transform: rotate(0deg) translateX(-50%);
    -ms-transform: rotate(0deg) translateX(-50%);
    -o-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
}
.link-effect.link-effect-14:hover::after,
.link-effect.link-effect-14:focus::after {
    right: 50%;
    -webkit-transform: rotate(0deg) translateX(50%);
    -moz-transform: rotate(0deg) translateX(50%);
    -ms-transform: rotate(0deg) translateX(50%);
    -o-transform: rotate(0deg) translateX(50%);
    transform: rotate(0deg) translateX(50%);
}
.link-effect.link-effect-15 {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
}
.link-effect.link-effect-15::before {
    color: #428bca;
    content: attr(data-hover);
    position: absolute;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
}
.link-effect.link-effect-15:hover::before,
.link-effect.link-effect-15:focus::before {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    filter: alpha(opacity=0);
    opacity: 0;
}
.link-effect.link-effect-16 {
    color: rgba(0, 0, 0, 0.4);
}
.link-effect.link-effect-16::before {
    color: #428bca;
    content: attr(data-hover);
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -ms-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -o-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    pointer-events: none;
}
.link-effect.link-effect-16:hover::before,
.link-effect.link-effect-16:focus::before {
    -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    -ms-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    -o-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
    filter: alpha(opacity=100);
    opacity: 1;
}
.link-effect.link-effect-17 {
    color: rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}
.link-effect.link-effect-17::before {
    color: #428bca;
    content: attr(data-hover);
    position: absolute;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    pointer-events: none;
}
.link-effect.link-effect-17::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #616f77;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    pointer-events: none;
}
.link-effect.link-effect-17:hover::before,
.link-effect.link-effect-17:focus::before {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}
.link-effect.link-effect-17:hover::after,
.link-effect.link-effect-17:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.link-effect.link-effect-18 {
    position: relative;
    z-index: 1;
    padding: 0 5px;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}
.link-effect.link-effect-18::before,
.link-effect.link-effect-18::after {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: rgba(0, 0, 0, 0.2);
    content: '';
    z-index: -1;
    -webkit-transition: -webkit-transform, opacity;
    -moz-transition: -moz-transform, opacity;
    transition: transform, opacity;
    pointer-events: none;
}
.link-effect.link-effect-18::before {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}
.link-effect.link-effect-18::after {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}
.link-effect.link-effect-18:hover,
.link-effect.link-effect-18:focus {
    color: #428bca;
}
.link-effect.link-effect-18:hover::before,
.link-effect.link-effect-18:hover::after,
.link-effect.link-effect-18:focus::before,
.link-effect.link-effect-18:focus::after {
    filter: alpha(opacity=70);
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
}
.link-effect.link-effect-18:hover::before,
.link-effect.link-effect-18:focus::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.link-effect.link-effect-18:hover::after,
.link-effect.link-effect-18:focus::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.link-effect.link-effect-19 {
    line-height: 1.8em;
    margin: 15px;
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    perspective: 800px;
    color: white;
}
.link-effect.link-effect-19 span {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 15px;
    background: #428bca;
    -webkit-transition: -webkit-transform, background;
    -moz-transition: -moz-transform, background;
    transition: transform, background;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -100px;
    -moz-transform-origin: 50% 50% -100px;
    -ms-transform-origin: 50% 50% -100px;
    -o-transform-origin: 50% 50% -100px;
    transform-origin: 50% 50% -100px;
}
.link-effect.link-effect-19 span::before {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    background: #245682;
    content: attr(data-hover);
    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    transform-origin: 0 50%;
    pointer-events: none;
}
.link-effect.link-effect-19:hover span,
.link-effect.link-effect-19:focus span {
    background: #245682;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}
.link-effect.link-effect-19:hover span::before,
.link-effect.link-effect-19:focus span::before {
    background: #428bca;
}
.link-effect.link-effect-20 {
    line-height: 1.8em;
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    perspective: 800px;
}
.link-effect.link-effect-20 span {
    position: relative;
    display: inline-block;
    padding: 3px 15px 0;
    background: #cde1f1;
    box-shadow: inset 0 3px #92bce0;
    -webkit-transition: background 0.6s;
    -moz-transition: background 0.6s;
    transition: background 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}
.link-effect.link-effect-20 span::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3px 15px 0;
    background: #428bca;
    color: #fff;
    content: attr(data-hover);
    -webkit-transition: -webkit-transform;
    -moz-transition: -moz-transform;
    transition: transform;
    -webkit-transform: rotateX(270deg);
    -moz-transform: rotateX(270deg);
    -ms-transform: rotateX(270deg);
    -o-transform: rotateX(270deg);
    transform: rotateX(270deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    pointer-events: none;
}
.link-effect.link-effect-20:hover span,
.link-effect.link-effect-20:focus span {
    background: #92bce0;
}
.link-effect.link-effect-20:hover span::before,
.link-effect.link-effect-20:focus span::before {
    -webkit-transform: rotateX(10deg);
    -moz-transform: rotateX(10deg);
    -ms-transform: rotateX(10deg);
    -o-transform: rotateX(10deg);
    transform: rotateX(10deg);
}
.link-effect.link-effect-21 {
    padding: 10px;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}
.link-effect.link-effect-21::before,
.link-effect.link-effect-21::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428bca;
    content: '';
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity, -webkit-transform;
    -moz-transition: opacity, -moz-transform;
    transition: opacity, transform;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.link-effect.link-effect-21::before {
    top: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.link-effect.link-effect-21::after {
    bottom: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.link-effect.link-effect-21:hover,
.link-effect.link-effect-21:focus {
    color: #428bca;
}
.link-effect.link-effect-21:hover::before,
.link-effect.link-effect-21:hover::after,
.link-effect.link-effect-21:focus::before,
.link-effect.link-effect-21:focus::after {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#loading-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
#loading-bar .bar {
    position: absolute;
    background-color: #16a085;
    z-index: 9;
}
#loading-bar .peg {
    -webkit-box-shadow: #16a085 1px 0 6px 1px;
    box-shadow: #16a085 1px 0 6px 1px;
}
#loading-bar-spinner {
    position: absolute;
    z-index: 99;
}
#loading-bar-spinner .spinner-icon {
    border-top-color: #16a085;
    border-left-color: #16a085;
}
.daterangepicker .ranges li {
    font-size: 12px;
    border-radius: 0;
}
.daterangepicker .ranges .daterangepicker_start_input label,
.daterangepicker .ranges .daterangepicker_end_input label {
    color: #616f77;
    text-transform: none;
}
.daterangepicker .ranges .input-mini {
    border-radius: 0;
    color: #616f77;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.daterangepicker .ranges .input-mini:focus {
    outline: 0;
    border: 1px solid gray;
}
.alert {
    padding: 10px 15px;
    border-radius: 0;
    border: 0;
    border-left: 3px solid;
}
.alert.alert-big {
    padding: 15px;
}
.alert.alert-dismissable {
    padding-right: 35px;
}
.alert.closeable > .close {
    right: 0;
}
.alert.notcloseable > .close {
    display: none;
}
.alert.alert-primary {
    color: #428bca;
    background-color: #cde1f1;
}
.alert.alert-primary .alert-link {
    color: #357ebd;
}
.alert.alert-success {
    color: #5cb85c;
    background-color: #eaf6ea;
}
.alert.alert-success .alert-link {
    color: #4cae4c;
}
.alert.alert-warning {
    color: #f0ad4e;
    background-color: #fef9f3;
}
.alert.alert-warning .alert-link {
    color: #eea236;
}
.alert.alert-danger {
    color: #d9534f;
    background-color: #fdf7f7;
}
.alert.alert-danger .alert-link {
    color: #d43f3a;
}
.alert.alert-info {
    color: #5bc0de;
    background-color: #f0f9fc;
}
.alert.alert-info .alert-link {
    color: #46b8da;
}
.alert.alert-default {
    color: #616f77;
    background-color: #dbe0e2;
}
.alert.alert-default .alert-link {
    color: #566269;
}
.alert.alert-cyan {
    color: #22beef;
    background-color: #e0f6fd;
}
.alert.alert-cyan .alert-link {
    color: #10acdd;
}
.alert.alert-amethyst {
    color: #cd97eb;
    background-color: #f6edfb;
}
.alert.alert-amethyst .alert-link {
    color: #c382e7;
}
.alert.alert-green {
    color: #a2d200;
    background-color: #f5ffd2;
}
.alert.alert-green .alert-link {
    color: #96c300;
}
.alert.alert-orange {
    color: #ffc100;
    background-color: #fff3cc;
}
.alert.alert-orange .alert-link {
    color: #f0b500;
}
.alert.alert-red {
    color: #ff4a43;
    background-color: #ffdddc;
}
.alert.alert-red .alert-link {
    color: #ff1910;
}
.alert.alert-greensea {
    color: #16a085;
    background-color: #d5f9f2;
}
.alert.alert-greensea .alert-link {
    color: #138a72;
}
.alert.alert-dutch {
    color: #1693A5;
    background-color: #daf6fa;
}
.alert.alert-dutch .alert-link {
    color: #137f8f;
}
.alert.alert-hotpink {
    color: #FF0066;
    background-color: #ffe6f0;
}
.alert.alert-hotpink .alert-link {
    color: #e6005c;
}
.alert.alert-drank {
    color: #A40778;
    background-color: #fdc7ee;
}
.alert.alert-drank .alert-link {
    color: #8c0666;
}
.alert.alert-blue {
    color: #418bca;
    background-color: #e1ecf6;
}
.alert.alert-blue .alert-link {
    color: #357ebd;
}
.alert.alert-lightred {
    color: #e05d6f;
    background-color: #f9dde1;
}
.alert.alert-lightred .alert-link {
    color: #dc485c;
}
.alert.alert-slategray {
    color: #3f4e62;
    background-color: #b6c1d0;
}
.alert.alert-slategray .alert-link {
    color: #354252;
}
.alert.alert-darkgray {
    color: #333;
    background-color: #a6a6a6;
}
.alert.alert-darkgray .alert-link {
    color: #262626;
}
#toast-container > div {
    opacity: 0.8 !important;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    transition: opacity 0.25s;
    position: relative;
}
#toast-container > div:hover {
    opacity: 1 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#toast-container > div .toast-title {
    font-family: "Dosis", "Arial", sans-serif;
}
#toast-container > div .toast-message {
    font-size: 12px;
}
#toast-container > div > .fa:not(.toast-close-button) {
    position: absolute;
    font-size: 2em;
    left: 13px;
}
#toast-container .toast-close-button {
    font-size: 12px;
    font-weight: 400;
    text-shadow: none;
    opacity: 1;
}
#toast-container .toast-close-button:hover {
    text-shadow: none;
    opacity: .5;
    color: white;
}
.nav-tabs {
    border: 0;
    background-color: #f5f5f5;
}
.nav-tabs > li {
    margin-bottom: 0;
}
.nav-tabs > li > a {
    border: 0;
    border-radius: 0;
    margin-right: 0;
    cursor: pointer;
    -webkit-box-shadow: inset 0 -3px 0 transparent;
    box-shadow: inset 0 -3px 0 transparent;
}
.nav-tabs > li > a:hover {
    background-color: #f0f0f0;
    border: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    -webkit-box-shadow: inset 0 -3px 0 #e84c3d;
    box-shadow: inset 0 -3px 0 #e84c3d;
    background-color: #e84c3d;
    border: 0;
}
.nav-tabs > li.active:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -4px;
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #e84c3d;
}
.nav-tabs > li.tabs-title {
    padding: 8px 0 0 20px;
    font-size: 16px;
    color: white;
    font-weight: 300;
}
.nav-tabs.nav-justified > li > a {
    border: 0;
    border-radius: 0;
}
.nav-tabs.nav-justified > li.active > a,
.nav-tabs.nav-justified > li.active > a:hover,
.nav-tabs.nav-justified > li.active > a:focus {
    border: 0;
}
.tab-content .tab-pane {
    padding: 15px;
}
.nav-pills > li > a {
    cursor: pointer;
}
.nav.nav-sm > li > a {
    padding: 7px 10px;
}
.tabs-dark .nav-tabs {
    background-color: #3f4e62;
}
.tabs-dark .nav-tabs > li > a {
    color: rgba(255, 255, 255, 0.5);
}
.tabs-dark .nav-tabs > li > a:hover {
    background-color: #354252;
    color: rgba(255, 255, 255, 0.8);
}
.tabs-dark .nav-tabs > li.disabled > a {
    color: rgba(255, 255, 255, 0.2);
}
.tabs-dark .nav-tabs > li.active > a,
.tabs-dark .nav-tabs > li.active > a:hover,
.tabs-dark .nav-tabs > li.active > a:focus {
    /* background-color: #2b3543; */
    background-color: #e84c3d;
    color: white;
}
.tab-container .nav-tabs {
    background-color: white;
}
.tab-container .nav-tabs > li {
    border-right: 1px solid #eaeaea;
}
.tab-container .nav-tabs > li:last-child {
    border-right: 0;
}
.tab-container .nav-tabs > li > a {
    color: #bfc7cb;
}
.tab-container .nav-tabs > li > a:hover {
    background-color: #f5f5f5;
}
.tab-container .nav-tabs > li.active > a,
.tab-container .nav-tabs > li.active > a:hover,
.tab-container .nav-tabs > li.active > a:focus {
    color: #616f77;
    background-color: #f5f5f5;
}
.tab-container .nav-tabs > li.disabled > a:hover,
.tab-container .nav-tabs > li.disabled > a:focus {
    color: #bfc7cb;
}
.tab-container .tab-content .tab-pane {
    background-color: white;
}
.tab-nopadding .tab-pane {
    padding: 15px 0;
}
.tab-wizard .nav-tabs > li > a {
    text-align: left;
    padding-left: 30px;
    position: relative;
}
.tab-wizard .nav-tabs > li > a:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-bottom: 19px solid transparent;
    border-left: 19px solid #f5f5f5;
    border-top: 19px solid transparent;
    top: 1px;
    right: -18px;
    z-index: 6;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.tab-wizard .nav-tabs > li > a:after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #f5f5f5;
    border-top: 20px solid transparent;
    top: 0;
    right: -20px;
    z-index: 5;
}
.tab-wizard .nav-tabs > li > a .wizard-step {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 50%;
    background-color: #616f77;
    color: #eaeaea;
    border: 1px solid #eaeaea;
    margin-top: -2px;
    margin-right: -10px;
    width: 26px;
    height: 26px;
    line-height: 14px;
}
.tab-wizard .nav-tabs > li:first-child > a {
    padding-left: 15px;
}
.tab-wizard .nav-tabs > li:last-child > a:after,
.tab-wizard .nav-tabs > li:last-child > a:before {
    display: none;
}
.tab-wizard .nav-tabs > li:last-child > a .wizard-step {
    margin-right: 0;
}
.tab-wizard .nav-tabs > li > a,
.tab-wizard .nav-tabs > li > a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f5f5f5;
}
.tab-wizard .nav-tabs > li:after,
.tab-wizard .nav-tabs > li:before {
    content: "";
    position: absolute;
    border: 0;
    width: 100%;
    height: 10px;
    background-color: #798992;
    left: 0;
    margin-left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s;
    -moz-transition: opacity 0.8s;
    transition: opacity 0.8s;
}
.tab-wizard .nav-tabs > li:before {
    background-color: #428bca;
    bottom: -10px;
    opacity: 1;
    -webkit-transition: width 0.8s;
    -moz-transition: width 0.8s;
    transition: width 0.8s;
}
.tab-wizard .nav-tabs > li.active > a:before {
    border-left-color: white;
}
.tab-wizard .nav-tabs > li.active > a .wizard-step {
    background-color: transparent;
    color: #616f77;
    border-color: #616f77;
}
.tab-wizard .nav-tabs > li.active > a,
.tab-wizard .nav-tabs > li.active > a:hover {
    background-color: white;
}
.tab-wizard .nav-tabs > li.active:after {
    opacity: 1;
}
.tab-wizard .nav-tabs > li.active:before {
    opacity: 0;
    width: 0;
}
.tab-wizard .nav-tabs > li.disabled > a:before {
    border-left-color: white;
}
.tab-wizard .nav-tabs > li.disabled > a .wizard-step {
    background-color: transparent;
    color: #eaeaea;
    border-color: #eaeaea;
}
.tab-wizard .nav-tabs > li.active ~ li > a:before {
    border-left-color: white;
}
.tab-wizard .nav-tabs > li.active ~ li > a .wizard-step {
    background-color: transparent;
    color: #eaeaea;
    border-color: #eaeaea;
}
.tab-wizard .nav-tabs > li.active ~ li > a,
.tab-wizard .nav-tabs > li.active ~ li > a:hover {
    background-color: white;
}
.tab-wizard .nav-tabs > li.active ~ li:before {
    opacity: 0;
    width: 0;
}
.tab-wizard .tab-content .tab-pane {
    margin-top: 10px;
}
.tab-animation > .tab-content {
    position: relative;
    overflow: hidden;
}
.tab-animation > .tab-content > .tab-pane {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.tab-animation > .tab-content > .tab-pane.active-remove {
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
}
.tab-animation > .tab-content > .tab-pane.active-remove-active {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.tab-animation > .tab-content > .tab-pane.active-add {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.tabs-right .nav-tabs {
    text-align: right;
}
.tabs-right .nav-tabs > li {
    margin-right: -3px;
    float: none;
    display: inline-block;
}
.tabs-right .nav-tabs > li:last-child {
    margin-right: 0;
}
@media only screen and (max-width: 768px) {
    .nav-tabs.nav-justified > li a {
        margin-bottom: 0;
    }
    .nav-tabs.nav-justified > li:after {
        display: none;
    }
    .nav-tabs > li.tabs-title {
        display: none;
    }
}
.tabs-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tabs-menu > li {
    margin-bottom: 1px;
    position: relative;
}
.tabs-menu > li > a {
    display: block;
    background-color: #f7f7f7;
    padding: 10px 15px;
    color: #616f77;
}
.tabs-menu > li > a:hover {
    color: #428bca;
}
.tabs-menu > li.active > a {
    background-color: #428bca;
    color: white;
    font-weight: 700;
}
.tabs-menu > li.active:after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #428bca;
    border-top: 6px solid transparent;
    right: -6px;
    top: 15px;
}
.modal-content {
    border-radius: 0;
}
.pickup-modal .modal-content {
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translateY(0%);
    width: 160%;
    height: auto;
    max-height: 50vh;
    background-color: #FFF;
    padding: 0 50px;
    overflow-y: auto;
}
.modal-footer {
    background-color: #f8f8f8;
}
.modal-backdrop {
    bottom: 0;
}
.modal.splash.fade {
    filter: alpha(opacity=100);
    opacity: 1;
}
.modal-backdrop.splash.fade {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.modal.splash.fade .modal-dialog,
.modal.splash.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.splash {
    /* Splash Effect 2: Fade in and scale up */
    /* Splash Effect 3: Slide from the right  */
    /* Splash Effect 4: Slide from the bottom  */
    /* Splash Effect 5: Newspaper  */
    /* Splash Effect 6: Fall  */
    /* Splash Effect 7: Side Fall  */
    /* Splash Effect 8: slide and stick to top  */
    /* Splash Effect 9: 3D flip horizontal  */
    /* Splash Effect 10: 3D flip vertical  */
    /* Splash Effect 11: 3D Sign  */
    /* Splash Effect 12: Super Scaled  */
    /* Splash Effect 13: Just me  */
    /* Splash Effect 14: 3D Slit */
    /* Splash Effect 15: 3D Rotate from bottom */
    /* Splash Effect 16:3D Rotate in from left */
}
.splash .modal-dialog {
    margin-top: 60px;
}
.splash .modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
.splash.modal-backdrop {
    background-color: black;
}
.splash.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.splash.modal-backdrop.in {
    filter: alpha(opacity=85);
    opacity: 0.85;
}
.splash.modal {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}
.splash.splash-1 .modal-content {
    background-color: transparent;
    color: white;
}
.splash.splash-1 .modal-header {
    border-bottom: 0;
    text-align: center;
}
.splash.splash-1 .modal-header .modal-title {
    font-weight: 700;
}
.splash.splash-1 .modal-footer {
    background-color: transparent;
    border-top: 0;
    text-align: center;
}
.splash.splash-1 .modal-footer .btn-default {
    border: 2px solid white;
    color: white;
}
.splash.splash-1 .modal-footer .btn-default:hover,
.splash.splash-1 .modal-footer .btn-default:active,
.splash.splash-1 .modal-footer .btn-default.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.splash.splash-2 .modal-header {
    background-color: #f5f5f5;
    text-align: center;
}
.splash.splash-2 .modal-header .modal-title {
    font-weight: 700;
}
.splash.splash-2 .modal-footer {
    background-color: white;
    border-top: 0;
    text-align: center;
}
.splash.splash-ef-1.modal-backdrop {
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.splash.splash-ef-1.modal .modal-dialog {
    -webkit-transition: opacity, -webkit-transform;
    -moz-transition: opacity, -moz-transform;
    transition: opacity, transform;
}
.splash.splash-ef-1.modal.fade .modal-dialog {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 150px);
    -moz-transform: translate3d(0, 0, 150px);
    -ms-transform: translate3d(0, 0, 150px);
    -o-transform: translate3d(0, 0, 150px);
    transform: translate3d(0, 0, 150px);
}
.splash.splash-ef-1.modal.in .modal-dialog {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.splash.splash-ef-2.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-2.modal .modal-dialog {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.splash.splash-ef-2.modal.fade .modal-dialog {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
}
.splash.splash-ef-2.modal.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.splash.splash-ef-3.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-3.modal .modal-dialog {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.splash.splash-ef-3.modal.fade .modal-dialog {
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    opacity: 0;
}
.splash.splash-ef-3.modal.in .modal-dialog {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.splash.splash-ef-4.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-4.modal .modal-dialog {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.splash.splash-ef-4.modal.fade .modal-dialog {
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
}
.splash.splash-ef-4.modal.in .modal-dialog {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.splash.splash-ef-5.modal-backdrop {
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.splash.splash-ef-5.modal .modal-dialog {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.splash.splash-ef-5.modal.fade .modal-dialog {
    -webkit-transform: scale(0) rotate(720deg);
    -moz-transform: scale(0) rotate(720deg);
    -ms-transform: scale(0) rotate(720deg);
    transform: scale(0) rotate(720deg);
    opacity: 0;
}
.splash.splash-ef-5.modal.in .modal-dialog {
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    opacity: 1;
}
.splash.splash-ef-6.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-6.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-6.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(600px) rotateX(20deg);
    -moz-transform: translateZ(600px) rotateX(20deg);
    -ms-transform: translateZ(600px) rotateX(20deg);
    transform: translateZ(600px) rotateX(20deg);
    opacity: 0;
}
.splash.splash-ef-6.modal.in .modal-dialog {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transform: translateZ(0px) rotateX(0deg);
    -moz-transform: translateZ(0px) rotateX(0deg);
    -ms-transform: translateZ(0px) rotateX(0deg);
    transform: translateZ(0px) rotateX(0deg);
    opacity: 1;
}
.splash.splash-ef-7.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-7.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-7.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translate(30%) translateZ(600px) rotate(10deg);
    -moz-transform: translate(30%) translateZ(600px) rotate(10deg);
    -ms-transform: translate(30%) translateZ(600px) rotate(10deg);
    transform: translate(30%) translateZ(600px) rotate(10deg);
    opacity: 0;
}
.splash.splash-ef-7.modal.in .modal-dialog {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-transform: translate(0%) translateZ(0) rotate(0deg);
    -moz-transform: translate(0%) translateZ(0) rotate(0deg);
    -ms-transform: translate(0%) translateZ(0) rotate(0deg);
    transform: translate(0%) translateZ(0) rotate(0deg);
    opacity: 1;
}
.splash.splash-ef-8.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-8.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-8.modal.fade .modal-dialog {
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
    opacity: 0;
}
.splash.splash-ef-8.modal.in .modal-dialog {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    border-radius: 0 0 3px 3px;
    opacity: 1;
}
.splash.splash-ef-9.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-9.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-9.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-9.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-70deg);
    -moz-transform: rotateY(-70deg);
    -ms-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    opacity: 0;
}
.splash.splash-ef-9.modal.in .modal-dialog {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
}
.splash.splash-ef-10.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-10.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-10.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-10.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(-70deg);
    -moz-transform: rotateX(-70deg);
    -ms-transform: rotateX(-70deg);
    transform: rotateX(-70deg);
    opacity: 0;
}
.splash.splash-ef-10.modal.in .modal-dialog {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
}
.splash.splash-ef-11.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-11.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-11.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-11.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(-60deg);
    -moz-transform: rotateX(-60deg);
    -ms-transform: rotateX(-60deg);
    transform: rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    opacity: 0;
}
.splash.splash-ef-11.modal.in .modal-dialog {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
}
.splash.splash-ef-12.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-12.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-12.modal.fade .modal-dialog {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    opacity: 0;
}
.splash.splash-ef-12.modal.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.splash.splash-ef-13.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-13.modal-backdrop.in {
    opacity: 1;
}
.splash.splash-ef-13.modal .modal-dialog {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.splash.splash-ef-13.modal.fade .modal-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
.splash.splash-ef-13.modal.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.splash.splash-ef-13.modal .modal-content {
    color: white;
    background-color: transparent;
}
.splash.splash-ef-13.modal .modal-content .modal-header,
.splash.splash-ef-13.modal .modal-content .modal-body,
.splash.splash-ef-13.modal .modal-content .modal-footer {
    background-color: transparent;
    border: 0;
}
.splash.splash-ef-13.modal .modal-content .btn-default {
    border: 2px solid white;
    color: white;
}
.splash.splash-ef-13.modal .modal-content .btn-default:hover,
.splash.splash-ef-13.modal .modal-content .btn-default:active,
.splash.splash-ef-13.modal .modal-content .btn-default.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.splash.splash-ef-13.modal .modal-content a {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}
.splash.splash-ef-13.modal .modal-content a:hover {
    color: white;
}
.splash.splash-ef-14.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-14.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-14.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-3000px) rotateY(90deg);
    -moz-transform: translateZ(-3000px) rotateY(90deg);
    -ms-transform: translateZ(-3000px) rotateY(90deg);
    transform: translateZ(-3000px) rotateY(90deg);
    opacity: 0;
}
.splash.splash-ef-14.modal.in .modal-dialog {
    -webkit-animation: slit .7s forwards ease-out;
    -moz-animation: slit .7s forwards ease-out;
    animation: slit .7s forwards ease-out;
}
.splash.splash-ef-15.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-15.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-15.modal .modal-dialog {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.splash.splash-ef-15.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(100%) rotateX(90deg);
    -moz-transform: translateY(100%) rotateX(90deg);
    -ms-transform: translateY(100%) rotateX(90deg);
    transform: translateY(100%) rotateX(90deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    opacity: 0;
}
.splash.splash-ef-15.modal.in .modal-dialog {
    -webkit-transform: translateY(0%) rotateX(0deg);
    -moz-transform: translateY(0%) rotateX(0deg);
    -ms-transform: translateY(0%) rotateX(0deg);
    transform: translateY(0%) rotateX(0deg);
    opacity: 1;
}
.splash.splash-ef-16.modal-backdrop {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.splash.splash-ef-16.modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}
.splash.splash-ef-16.modal .modal-dialog {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.splash.splash-ef-16.modal.fade .modal-dialog {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
    -moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
    -ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
    transform: translateZ(100px) translateX(-30%) rotateY(90deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    opacity: 0;
}
.splash.splash-ef-16.modal.in .modal-dialog {
    -webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
    -moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
    -ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
    transform: translateZ(0px) translateX(0%) rotateY(0deg);
    opacity: 1;
}
.splash.splash-primary.splash-2 .modal-content,
.splash.splash-success.splash-2 .modal-content,
.splash.splash-warning.splash-2 .modal-content,
.splash.splash-danger.splash-2 .modal-content,
.splash.splash-info.splash-2 .modal-content,
.splash.splash-cyan.splash-2 .modal-content,
.splash.splash-amethyst.splash-2 .modal-content,
.splash.splash-green.splash-2 .modal-content,
.splash.splash-orange.splash-2 .modal-content,
.splash.splash-red.splash-2 .modal-content,
.splash.splash-greensea.splash-2 .modal-content,
.splash.splash-dutc.splash-2h .modal-content,
.splash.splash-hotpink.splash-2 .modal-content,
.splash.splash-drank.splash-2 .modal-content,
.splash.splash-blue.splash-2 .modal-content,
.splash.splash-lightred.splash-2 .modal-content,
.splash.splash-slategray.splash-2 .modal-content,
.splash.splash-darkgray.splash-2 .modal-content {
    color: white;
}
.splash.splash-primary.splash-2 .modal-content .btn-default,
.splash.splash-success.splash-2 .modal-content .btn-default,
.splash.splash-warning.splash-2 .modal-content .btn-default,
.splash.splash-danger.splash-2 .modal-content .btn-default,
.splash.splash-info.splash-2 .modal-content .btn-default,
.splash.splash-cyan.splash-2 .modal-content .btn-default,
.splash.splash-amethyst.splash-2 .modal-content .btn-default,
.splash.splash-green.splash-2 .modal-content .btn-default,
.splash.splash-orange.splash-2 .modal-content .btn-default,
.splash.splash-red.splash-2 .modal-content .btn-default,
.splash.splash-greensea.splash-2 .modal-content .btn-default,
.splash.splash-dutc.splash-2h .modal-content .btn-default,
.splash.splash-hotpink.splash-2 .modal-content .btn-default,
.splash.splash-drank.splash-2 .modal-content .btn-default,
.splash.splash-blue.splash-2 .modal-content .btn-default,
.splash.splash-lightred.splash-2 .modal-content .btn-default,
.splash.splash-slategray.splash-2 .modal-content .btn-default,
.splash.splash-darkgray.splash-2 .modal-content .btn-default {
    border: 2px solid white;
    color: white;
}
.splash.splash-primary.splash-2 .modal-content .btn-default:hover,
.splash.splash-primary.splash-2 .modal-content .btn-default:active,
.splash.splash-primary.splash-2 .modal-content .btn-default.active,
.splash.splash-success.splash-2 .modal-content .btn-default:hover,
.splash.splash-success.splash-2 .modal-content .btn-default:active,
.splash.splash-success.splash-2 .modal-content .btn-default.active,
.splash.splash-warning.splash-2 .modal-content .btn-default:hover,
.splash.splash-warning.splash-2 .modal-content .btn-default:active,
.splash.splash-warning.splash-2 .modal-content .btn-default.active,
.splash.splash-danger.splash-2 .modal-content .btn-default:hover,
.splash.splash-danger.splash-2 .modal-content .btn-default:active,
.splash.splash-danger.splash-2 .modal-content .btn-default.active,
.splash.splash-info.splash-2 .modal-content .btn-default:hover,
.splash.splash-info.splash-2 .modal-content .btn-default:active,
.splash.splash-info.splash-2 .modal-content .btn-default.active,
.splash.splash-cyan.splash-2 .modal-content .btn-default:hover,
.splash.splash-cyan.splash-2 .modal-content .btn-default:active,
.splash.splash-cyan.splash-2 .modal-content .btn-default.active,
.splash.splash-amethyst.splash-2 .modal-content .btn-default:hover,
.splash.splash-amethyst.splash-2 .modal-content .btn-default:active,
.splash.splash-amethyst.splash-2 .modal-content .btn-default.active,
.splash.splash-green.splash-2 .modal-content .btn-default:hover,
.splash.splash-green.splash-2 .modal-content .btn-default:active,
.splash.splash-green.splash-2 .modal-content .btn-default.active,
.splash.splash-orange.splash-2 .modal-content .btn-default:hover,
.splash.splash-orange.splash-2 .modal-content .btn-default:active,
.splash.splash-orange.splash-2 .modal-content .btn-default.active,
.splash.splash-red.splash-2 .modal-content .btn-default:hover,
.splash.splash-red.splash-2 .modal-content .btn-default:active,
.splash.splash-red.splash-2 .modal-content .btn-default.active,
.splash.splash-greensea.splash-2 .modal-content .btn-default:hover,
.splash.splash-greensea.splash-2 .modal-content .btn-default:active,
.splash.splash-greensea.splash-2 .modal-content .btn-default.active,
.splash.splash-dutc.splash-2h .modal-content .btn-default:hover,
.splash.splash-dutc.splash-2h .modal-content .btn-default:active,
.splash.splash-dutc.splash-2h .modal-content .btn-default.active,
.splash.splash-hotpink.splash-2 .modal-content .btn-default:hover,
.splash.splash-hotpink.splash-2 .modal-content .btn-default:active,
.splash.splash-hotpink.splash-2 .modal-content .btn-default.active,
.splash.splash-drank.splash-2 .modal-content .btn-default:hover,
.splash.splash-drank.splash-2 .modal-content .btn-default:active,
.splash.splash-drank.splash-2 .modal-content .btn-default.active,
.splash.splash-blue.splash-2 .modal-content .btn-default:hover,
.splash.splash-blue.splash-2 .modal-content .btn-default:active,
.splash.splash-blue.splash-2 .modal-content .btn-default.active,
.splash.splash-lightred.splash-2 .modal-content .btn-default:hover,
.splash.splash-lightred.splash-2 .modal-content .btn-default:active,
.splash.splash-lightred.splash-2 .modal-content .btn-default.active,
.splash.splash-slategray.splash-2 .modal-content .btn-default:hover,
.splash.splash-slategray.splash-2 .modal-content .btn-default:active,
.splash.splash-slategray.splash-2 .modal-content .btn-default.active,
.splash.splash-darkgray.splash-2 .modal-content .btn-default:hover,
.splash.splash-darkgray.splash-2 .modal-content .btn-default:active,
.splash.splash-darkgray.splash-2 .modal-content .btn-default.active {
    background-color: rgba(255, 255, 255, 0.1);
}
.splash.splash-primary.splash-2 .modal-content a,
.splash.splash-success.splash-2 .modal-content a,
.splash.splash-warning.splash-2 .modal-content a,
.splash.splash-danger.splash-2 .modal-content a,
.splash.splash-info.splash-2 .modal-content a,
.splash.splash-cyan.splash-2 .modal-content a,
.splash.splash-amethyst.splash-2 .modal-content a,
.splash.splash-green.splash-2 .modal-content a,
.splash.splash-orange.splash-2 .modal-content a,
.splash.splash-red.splash-2 .modal-content a,
.splash.splash-greensea.splash-2 .modal-content a,
.splash.splash-dutc.splash-2h .modal-content a,
.splash.splash-hotpink.splash-2 .modal-content a,
.splash.splash-drank.splash-2 .modal-content a,
.splash.splash-blue.splash-2 .modal-content a,
.splash.splash-lightred.splash-2 .modal-content a,
.splash.splash-slategray.splash-2 .modal-content a,
.splash.splash-darkgray.splash-2 .modal-content a {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}
.splash.splash-primary.splash-2 .modal-content a:hover,
.splash.splash-success.splash-2 .modal-content a:hover,
.splash.splash-warning.splash-2 .modal-content a:hover,
.splash.splash-danger.splash-2 .modal-content a:hover,
.splash.splash-info.splash-2 .modal-content a:hover,
.splash.splash-cyan.splash-2 .modal-content a:hover,
.splash.splash-amethyst.splash-2 .modal-content a:hover,
.splash.splash-green.splash-2 .modal-content a:hover,
.splash.splash-orange.splash-2 .modal-content a:hover,
.splash.splash-red.splash-2 .modal-content a:hover,
.splash.splash-greensea.splash-2 .modal-content a:hover,
.splash.splash-dutc.splash-2h .modal-content a:hover,
.splash.splash-hotpink.splash-2 .modal-content a:hover,
.splash.splash-drank.splash-2 .modal-content a:hover,
.splash.splash-blue.splash-2 .modal-content a:hover,
.splash.splash-lightred.splash-2 .modal-content a:hover,
.splash.splash-slategray.splash-2 .modal-content a:hover,
.splash.splash-darkgray.splash-2 .modal-content a:hover {
    color: white;
}
.splash.splash-primary.modal-backdrop {
    background-color: #428bca;
}
.splash.splash-primary.splash-2 .modal-content,
.splash.splash-primary.splash-2 .modal-footer {
    background-color: #428bca;
}
.splash.splash-primary.splash-2 .modal-header {
    background-color: #357ebd;
    border-color: #3071a9;
}
.splash.splash-success.modal-backdrop {
    background-color: #5cb85c;
}
.splash.splash-success.splash-2 .modal-content,
.splash.splash-success.splash-2 .modal-footer {
    background-color: #5cb85c;
}
.splash.splash-success.splash-2 .modal-header {
    background-color: #4cae4c;
    border-color: #449d44;
}
.splash.splash-warning.modal-backdrop {
    background-color: #f0ad4e;
}
.splash.splash-warning.splash-2 .modal-content,
.splash.splash-warning.splash-2 .modal-footer {
    background-color: #f0ad4e;
}
.splash.splash-warning.splash-2 .modal-header {
    background-color: #eea236;
    border-color: #ec971f;
}
.splash.splash-danger.modal-backdrop {
    background-color: #d9534f;
}
.splash.splash-danger.splash-2 .modal-content,
.splash.splash-danger.splash-2 .modal-footer {
    background-color: #d9534f;
}
.splash.splash-danger.splash-2 .modal-header {
    background-color: #d43f3a;
    border-color: #c9302c;
}
.splash.splash-info.modal-backdrop {
    background-color: #5bc0de;
}
.splash.splash-info.splash-2 .modal-content,
.splash.splash-info.splash-2 .modal-footer {
    background-color: #5bc0de;
}
.splash.splash-info.splash-2 .modal-header {
    background-color: #46b8da;
    border-color: #31b0d5;
}
.splash.splash-cyan.modal-backdrop {
    background-color: #22beef;
}
.splash.splash-cyan.splash-2 .modal-content,
.splash.splash-cyan.splash-2 .modal-footer {
    background-color: #22beef;
}
.splash.splash-cyan.splash-2 .modal-header {
    background-color: #11b4e7;
    border-color: #0fa1cf;
}
.splash.splash-amethyst.modal-backdrop {
    background-color: #cd97eb;
}
.splash.splash-amethyst.splash-2 .modal-content,
.splash.splash-amethyst.splash-2 .modal-footer {
    background-color: #cd97eb;
}
.splash.splash-amethyst.splash-2 .modal-header {
    background-color: #c382e7;
    border-color: #b86ce3;
}
.splash.splash-green.modal-backdrop {
    background-color: #a2d200;
}
.splash.splash-green.splash-2 .modal-content,
.splash.splash-green.splash-2 .modal-footer {
    background-color: #a2d200;
}
.splash.splash-green.splash-2 .modal-header {
    background-color: #8eb900;
    border-color: #7b9f00;
}
.splash.splash-orange.modal-backdrop {
    background-color: #ffc100;
}
.splash.splash-orange.splash-2 .modal-content,
.splash.splash-orange.splash-2 .modal-footer {
    background-color: #ffc100;
}
.splash.splash-orange.splash-2 .modal-header {
    background-color: #e6ae00;
    border-color: #cc9a00;
}
.splash.splash-red.modal-backdrop {
    background-color: #ff4a43;
}
.splash.splash-red.splash-2 .modal-content,
.splash.splash-red.splash-2 .modal-footer {
    background-color: #ff4a43;
}
.splash.splash-red.splash-2 .modal-header {
    background-color: #ff312a;
    border-color: #ff1910;
}
.splash.splash-greensea.modal-backdrop {
    background-color: #16a085;
}
.splash.splash-greensea.splash-2 .modal-content,
.splash.splash-greensea.splash-2 .modal-footer {
    background-color: #16a085;
}
.splash.splash-greensea.splash-2 .modal-header {
    background-color: #138a72;
    border-color: #107360;
}
.splash.splash-dutch.modal-backdrop {
    background-color: #1693A5;
}
.splash.splash-dutch.splash-2 .modal-content,
.splash.splash-dutch.splash-2 .modal-footer {
    background-color: #1693A5;
}
.splash.splash-dutch.splash-2 .modal-header {
    background-color: #137f8f;
    border-color: #106b78;
}
.splash.splash-hotpink.modal-backdrop {
    background-color: #FF0066;
}
.splash.splash-hotpink.splash-2 .modal-content,
.splash.splash-hotpink.splash-2 .modal-footer {
    background-color: #FF0066;
}
.splash.splash-hotpink.splash-2 .modal-header {
    background-color: #e6005c;
    border-color: #cc0052;
}
.splash.splash-drank.modal-backdrop {
    background-color: #A40778;
}
.splash.splash-drank.splash-2 .modal-content,
.splash.splash-drank.splash-2 .modal-footer {
    background-color: #A40778;
}
.splash.splash-drank.splash-2 .modal-header {
    background-color: #8c0666;
    border-color: #730554;
}
.splash.splash-blue.modal-backdrop {
    background-color: #418bca;
}
.splash.splash-blue.splash-2 .modal-content,
.splash.splash-blue.splash-2 .modal-footer {
    background-color: #418bca;
}
.splash.splash-blue.splash-2 .modal-header {
    background-color: #357ebd;
    border-color: #2f71a9;
}
.splash.splash-lightred.modal-backdrop {
    background-color: #e05d6f;
}
.splash.splash-lightred.splash-2 .modal-content,
.splash.splash-lightred.splash-2 .modal-footer {
    background-color: #e05d6f;
}
.splash.splash-lightred.splash-2 .modal-header {
    background-color: #dc485c;
    border-color: #d83249;
}
.splash.splash-slategray.modal-backdrop {
    background-color: #3f4e62;
}
.splash.splash-slategray.splash-2 .modal-content,
.splash.splash-slategray.splash-2 .modal-footer {
    background-color: #3f4e62;
}
.splash.splash-slategray.splash-2 .modal-header {
    background-color: #354252;
    border-color: #2b3543;
}
.splash.splash-darkgray.modal-backdrop {
    background-color: #333;
}
.splash.splash-darkgray.splash-2 .modal-content,
.splash.splash-darkgray.splash-2 .modal-footer {
    background-color: #333;
}
.splash.splash-darkgray.splash-2 .modal-header {
    background-color: #262626;
    border-color: #1a1a1a;
}
.portlets.connected {
    min-height: 50px;
}
.sortable-placeholder {
    border: 3px dashed rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100px;
    visibility: visible !important;
    opacity: .7;
}
.portlet .tile-header {
    cursor: pointer;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.portlet .tile-header:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}
.progress {
    background-color: #ebeef2;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress .progress-bar {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress.progress-xxs {
    height: 2px;
    border-radius: 0;
}
.progress.progress-xs {
    height: 6px;
    border-radius: 2px;
}
.progress.progress-sm {
    height: 12px;
    border-radius: 3px;
}
.progress.progress-sm .progress-bar {
    font-size: 10px;
    line-height: 12px;
}
.progress.not-rounded {
    border-radius: 0;
}
.progress-list {
    position: relative;
}
.progress-list .details {
    display: inline-block;
    float: left;
}
.progress-list .details .title {
    font-family: "Dosis", "Arial", sans-serif;
    line-height: 16px;
}
.progress-list .details .description {
    text-transform: uppercase;
    font-size: 10px;
    color: #95a2a9;
    line-height: 12px;
}
.progress-list .status {
    display: inline-block;
    background-color: #ebeef2;
    font-size: 9px;
    padding: 6px;
}
.progress-list .clearfix {
    height: 30px;
}
.progress-bar-cyan {
    background-color: #22beef;
}
.progress-bar-amethyst {
    background-color: #cd97eb;
}
.progress-bar-green {
    background-color: #a2d200;
}
.progress-bar-orange {
    background-color: #ffc100;
}
.progress-bar-red {
    background-color: #ff4a43;
}
.progress-bar-greensea {
    background-color: #16a085;
}
.progress-bar-dutch {
    background-color: #1693A5;
}
.progress-bar-hotpink {
    background-color: #FF0066;
}
.progress-bar-drank {
    background-color: #A40778;
}
.progress-bar-blue {
    background-color: #418bca;
}
.progress-bar-lightred {
    background-color: #e05d6f;
}
.progress-bar-slategray {
    background-color: #3f4e62;
}
.progress-bar-darkgray {
    background-color: #333;
}
.progress.transparent-black {
    background-color: rgba(0, 0, 0, 0.1);
}
.progress.transparent-black .progress-bar {
    background-color: rgba(0, 0, 0, 0.2);
}
.tbox {
    display: table;
    width: 100%;
    height: 100%;
    border-spacing: 0;
    table-layout: fixed;
}
.tbox > .tcol {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
}
@media only screen and (max-width: 992px) {
    .tbox-sm {
        display: block;
    }
    .tbox-sm > .tcol {
        display: block;
        width: auto;
        height: auto;
    }
}
@media only screen and (max-width: 768px) {
    .tbox-xs {
        display: block;
    }
    .tbox-xs > .tcol {
        display: block;
        width: auto;
        height: auto;
    }
}
ul.abn-tree li.abn-tree-row a {
    border-radius: 0;
    color: #616f77;
}
ul.abn-tree li.abn-tree-row a:hover,
ul.abn-tree li.abn-tree-row a:focus {
    background-color: #f2f2f2;
    color: #4a555b;
}
ul.abn-tree li.abn-tree-row.active a {
    color: white;
}
ul.abn-tree li.abn-tree-row.active a:hover,
ul.abn-tree li.abn-tree-row.active a:focus {
    background-color: #357ebd;
    color: white;
}
.chosen-container {
    font-size: 14px;
}
.chosen-container .chosen-drop {
    border-color: #22beef;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
.chosen-container .chosen-results {
    color: #616f77;
}
.chosen-container .chosen-results li {
    font-size: 12px;
}
.chosen-container .chosen-results li.group-result {
    color: #4a555b;
}
.chosen-container .chosen-results li.highlighted {
    background: #798992;
}
.chosen-container-single .chosen-single {
    height: 34px;
    line-height: 1.42857143;
    padding: 6px 12px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background: white;
    color: #616f77;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #dbe0e2;
}
.chosen-container-single .chosen-single div b {
    background-position: 0 7px;
}
.chosen-container-single .chosen-search input[type=text] {
    border-color: #dbe0e2;
    font-size: 12px;
    color: #95a2a9;
}
.chosen-container-multi .chosen-choices {
    background: white;
    border-color: #dbe0e2;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 2px 12px;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    height: 28px;
    margin: 0;
    font-family: "Lato", "Arial", sans-serif;
    color: #bfc7cb;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
}
.chosen-container-multi .chosen-choices li.search-choice {
    background: #eaeced;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #616f77;
    font-size: 12px;
    padding: 5px 20px 4px 10px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: 6px;
}
.chosen-container-active.chosen-with-drop .chosen-single {
    background: white;
    border-color: #22beef;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 7px;
}
.chosen-container-active.chosen-with-drop .chosen-choices {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.chosen-container-active .chosen-choices {
    border-color: #22beef;
}
.chosen-rtl .chosen-search input[type="text"],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type="text"],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
    background-image: url("../images/chosen-sprite.png") !important;
}
/* @group Retina compatibility */

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 144dpi) {
    .chosen-rtl .chosen-search input[type="text"],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type="text"],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span {
        background-image: url("../images/chosen-sprite@2x.png") !important;
    }
}
/* @end */

.table > thead > tr td,
.table > thead > tr th,
.table > tbody > tr td,
.table > tbody > tr th,
.table > tfoot > tr td,
.table > tfoot > tr th {
    border-color: #dbe0e2;
}
.table > thead > tr td:first-child,
.table > thead > tr th:first-child,
.table > tbody > tr td:first-child,
.table > tbody > tr th:first-child,
.table > tfoot > tr td:first-child,
.table > tfoot > tr th:first-child {
    padding-left: 15px;
}
.table > thead > tr td:last-child,
.table > thead > tr th:last-child,
.table > tbody > tr td:last-child,
.table > tbody > tr th:last-child,
.table > tfoot > tr td:last-child,
.table > tfoot > tr th:last-child {
    padding-right: 15px;
}
.table.table-no-border > thead > tr td,
.table.table-no-border > thead > tr th,
.table.table-no-border > tbody > tr td,
.table.table-no-border > tbody > tr th,
.table.table-no-border > tfoot > tr td,
.table.table-no-border > tfoot > tr th {
    border: 0;
}
.table.table-custom {
    border-collapse: separate;
}
.table.table-custom > thead > tr td,
.table.table-custom > thead > tr th,
.table.table-custom > tbody > tr td,
.table.table-custom > tbody > tr th,
.table.table-custom > tfoot > tr td,
.table.table-custom > tfoot > tr th {
    padding: 8px;
}
.table.table-custom > thead > tr td,
.table.table-custom > thead > tr th {
    border-color: #798992;
    border-width: 1px;
    position: relative;
}
.table.table-custom > thead > tr td.sorting:after,
.table.table-custom > thead > tr td.st-sort-ascent:after,
.table.table-custom > thead > tr td.st-sort-descent:after,
.table.table-custom > thead > tr th.sorting:after,
.table.table-custom > thead > tr th.st-sort-ascent:after,
.table.table-custom > thead > tr th.st-sort-descent:after {
    position: absolute;
    top: 12px;
    right: 8px;
    display: block;
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.table.table-custom > thead > tr td.sorting:after,
.table.table-custom > thead > tr th.sorting:after {
    content: "\f0dc";
    color: #dbe0e2;
}
.table.table-custom > thead > tr td.st-sort-ascent:after,
.table.table-custom > thead > tr th.st-sort-ascent:after {
    content: "\f0de";
    top: 14px;
    color: #428bca;
}
.table.table-custom > thead > tr td.st-sort-descent:after,
.table.table-custom > thead > tr th.st-sort-descent:after {
    content: "\f0dd";
    top: 8px;
    color: #428bca;
}
.table.table-custom > tbody > tr:first-child td,
.table.table-custom > tbody > tr:first-child th {
    border-top: 0;
}
.table.table {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.table-responsive {
    overflow-x: visible;
}
*[class*='bg-']:not(.bg-default) .table > thead > tr td,
*[class*='bg-']:not(.bg-default) .table > thead > tr th,
*[class*='bg-']:not(.bg-default) .table > tbody > tr td,
*[class*='bg-']:not(.bg-default) .table > tbody > tr th,
*[class*='bg-']:not(.bg-default) .table > tfoot > tr td,
*[class*='bg-']:not(.bg-default) .table > tfoot > tr th {
    border-color: rgba(255, 255, 255, 0.15);
}
*[class*='bg-']:not(.bg-default) .table.table-bordered {
    border-collapse: separate;
    border: 0;
}
*[class*='bg-']:not(.bg-default) .table.table-bordered > thead > tr td,
*[class*='bg-']:not(.bg-default) .table.table-bordered > thead > tr th,
*[class*='bg-']:not(.bg-default) .table.table-bordered > tbody > tr td,
*[class*='bg-']:not(.bg-default) .table.table-bordered > tbody > tr th,
*[class*='bg-']:not(.bg-default) .table.table-bordered > tfoot > tr td,
*[class*='bg-']:not(.bg-default) .table.table-bordered > tfoot > tr th {
    border-bottom: 0;
    border-right: 0;
}
*[class*='bg-']:not(.bg-default) .table.table-hover > tbody > tr:hover td,
*[class*='bg-']:not(.bg-default) .table.table-hover > tbody > tr:hover th {
    background-color: rgba(255, 255, 255, 0.1);
}
/******************************************/
/*************** datatables ***************/
/******************************************/
/*
* Sort styling
*/

table.dataTable thead th {
    position: relative;
    background-image: none !important;
    /* Remove the DataTables bootstrap integration styling */
}
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
    position: absolute;
    top: 12px;
    right: 8px;
    display: block;
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
table.dataTable thead th.sorting:after {
    content: "\f0dc";
    color: #dbe0e2;
}
table.dataTable thead th.sorting_asc:after {
    content: "\f0de";
    top: 16px;
}
table.dataTable thead th.sorting_desc:after {
    content: "\f0dd";
}
div.dataTables_scrollBody table.dataTable thead th.sorting:after,
div.dataTables_scrollBody table.dataTable thead th.sorting_asc:after,
div.dataTables_scrollBody table.dataTable thead th.sorting_desc:after {
    content: "";
}
/*
 * DataTables style pagination controls
 */

div.dataTables_paginate a.first,
div.dataTables_paginate a.previous {
    position: relative;
    padding-left: 24px !important;
}
div.dataTables_paginate a.next,
div.dataTables_paginate a.last {
    position: relative;
    padding-right: 24px !important;
}
div.dataTables_paginate a.first:before,
div.dataTables_paginate a.previous:before,
div.dataTables_paginate a.next:after,
div.dataTables_paginate a.last:after {
    position: absolute;
    top: 8px;
    left: 10px;
    display: block;
    display: inline-block;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
div.dataTables_paginate a.next:after,
div.dataTables_paginate a.last:after {
    left: auto;
    right: 10px;
}
div.dataTables_paginate a.first:before {
    content: "\f100";
}
div.dataTables_paginate a.previous:before {
    content: "\f104";
}
div.dataTables_paginate a.next:after {
    content: "\f105";
}
div.dataTables_paginate a.last:after {
    content: "\f101";
}
.p-0 .dataTables_wrapper > .row {
    padding: 15px;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #616f77;
    font-size: 12px;
}
.dataTables_wrapper .pagination {
    margin: 0;
}
.dataTables_wrapper .pagination > li > a,
.dataTables_wrapper .pagination > li > span {
    padding: 5px 10px;
}
.dataTables_wrapper .DTTT {
    margin-bottom: 15px;
    margin-left: 10px;
}
.dataTables_wrapper .ColVis {
    margin-left: 10px;
}
.dataTables_wrapper table > tbody .row_selected {
    background-color: rgba(0, 0, 0, 0.05);
}
.dataTables_wrapper table > tbody .parent td,
.dataTables_wrapper table > tbody .parent th {
    background-color: #f5f5f5;
}
.dataTables_wrapper table > tbody .child td,
.dataTables_wrapper table > tbody .child th {
    background-color: #fafafa;
}
.dataTables_wrapper table.table-custom + .row {
    padding: 15px 0 0;
}
.dataTables_wrapper table.table-custom > thead td.sorting_asc,
.dataTables_wrapper table.table-custom > thead td.sorting_desc,
.dataTables_wrapper table.table-custom > thead th.sorting_asc,
.dataTables_wrapper table.table-custom > thead th.sorting_desc {
    color: #428bca;
    border-bottom: 3px solid #428bca !important;
    padding-bottom: 4px;
}
.dataTables_wrapper table.table-custom > thead td.sorting,
.dataTables_wrapper table.table-custom > thead th.sorting {
    padding-bottom: 6px;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -moz-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
}
.dataTables_wrapper table.table-custom > thead td.sorting:hover,
.dataTables_wrapper table.table-custom > thead th.sorting:hover {
    color: #6aa3d5;
    border-color: #6aa3d5;
    background-color: #fafafa;
}
.dataTables_wrapper table > tfoot {
    background-color: #dbe0e2;
}
.dataTables_wrapper table > tfoot .filter_column input {
    width: 100%;
}
.dataTables_wrapper .dataTables_scroll {
    margin-bottom: 10px;
}
.dataTables_wrapper .dataTables_scroll .dataTables_scrollBody {
    border-bottom: 0 !important;
}
.dataTables_wrapper .dataTables_scroll .dataTables_scrollBody table {
    margin-top: 0 !important;
}
.dataTables_wrapper .dataTables_scroll .dataTables_scrollBody table tbody tr:last-child td {
    border-bottom: 1px solid #dbe0e2 !important;
}
.dataTables_wrapper .dataTables_scroll .dataTables_scrollBody thead > tr > th {
    border-bottom: 0 !important;
}
.dataTables_wrapper .inline-controls div.dataTables_paginate,
.dataTables_wrapper .inline-controls div.dataTables_length,
.dataTables_wrapper .inline-controls div.dataTables_info {
    display: inline-block !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
}
.dataTables_wrapper .inline-controls div.dataTables_paginate .seperator,
.dataTables_wrapper .inline-controls div.dataTables_length .seperator,
.dataTables_wrapper .inline-controls div.dataTables_info .seperator {
    padding: 0 5px;
}
.dataTables_wrapper .inline-controls div.dataTables_length label {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: inline-block !important;
}
table.dataTable.no-footer {
    border-bottom-color: #dbe0e2;
}
.table-custom .dataTables_wrapper .dataTables_filter input {
    background: none;
    border: 0;
    border-bottom: 1px solid;
    border-radius: 0;
    -webkit-appearance: none !important;
    vertical-align: middle;
    padding-left: 0;
    border-color: #dbe0e2;
}
.table-custom .dataTables_wrapper .dataTables_filter input:focus:hover {
    border: 0;
    border-bottom: 1px solid #22beef;
}
.table-custom .dataTables_wrapper .dataTables_filter input:hover:not(:disabled) {
    border-color: #b1bac0;
}
.table-custom .dataTables_wrapper .dataTables_filter input:focus,
.table-custom .dataTables_wrapper .dataTables_filter input:focus:hover {
    border-color: #22beef;
}
div.dataTables_paginate.paging_input {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
div.dataTables_paginate.paging_input .next {
    padding-right: 10px !important;
    margin-right: 5px;
}
div.dataTables_paginate.paging_input .next:after {
    content: "";
}
div.dataTables_paginate.paging_input .prev {
    margin-left: 5px;
}
@media (max-width: 768px) {
    .dataTables_wrapper .inline-controls div.dataTables_paginate,
    .dataTables_wrapper .inline-controls div.dataTables_length,
    .dataTables_wrapper .inline-controls div.dataTables_info {
        display: block !important;
        margin: 10px !important;
        text-align: left;
    }
    .dataTables_wrapper .inline-controls div.dataTables_length label {
        display: block !important;
        line-height: 30px;
    }
    .dataTables_wrapper .inline-controls div.dataTables_length select {
        display: inline-block;
    }
    .dataTables_wrapper .inline-controls .seperator {
        display: none !important;
    }
    .dataTables_wrapper div.dataTables_filter,
    .dataTables_wrapper div.dataTables_paginate {
        display: block !important;
        margin: 10px !important;
        text-align: left;
    }
    .dataTables_wrapper div.dataTables_filter .pagination-panel-input,
    .dataTables_wrapper div.dataTables_paginate .pagination-panel-input {
        display: inline-block;
    }
    .dataTables_wrapper div.dataTables_filter label,
    .dataTables_wrapper div.dataTables_paginate label {
        line-height: 30px;
    }
    .dataTables_wrapper div.dataTables_filter label input,
    .dataTables_wrapper div.dataTables_paginate label input {
        display: inline-block;
        width: 60%;
    }
}
/***************************************/
/*************** ui grid ***************/
/***************************************/

@font-face {
    font-family: 'ui-grid';
    src: url("../fonts/ui-grid.eot");
    src: url("../fonts/ui-grid.eot#iefix") format("embedded-opentype"), url("../fonts/ui-grid.woff") format("woff"), url("../fonts/ui-grid.ttf?") format("truetype"), url("../fonts/ui-grid.svg?#ui-grid") format("svg");
    font-weight: normal;
    font-style: normal;
}
.ui-grid-column-menu-button {
    top: 2px;
}
.ui-grid-row:nth-child(even) .ui-grid-cell {
    background-color: #f5f5f5;
}
input[type="text"].ui-grid-filter-input {
    border: 1px solid #dbe0e2;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 5px;
}
input[type="text"].ui-grid-filter-input::-webkit-input-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-family: "Lato", "Arial", sans-serif;
    font-style: italic;
}
input[type="text"].ui-grid-filter-input::-moz-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-family: "Lato", "Arial", sans-serif;
    font-style: italic;
}
input[type="text"].ui-grid-filter-input:-moz-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-family: "Lato", "Arial", sans-serif;
    font-style: italic;
}
input[type="text"].ui-grid-filter-input:-ms-input-placeholder {
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #bfc7cb;
    font-family: "Lato", "Arial", sans-serif;
    font-style: italic;
}
input[type="text"].ui-grid-filter-input:hover {
    border-color: #b1bac0;
}
input[type="text"].ui-grid-filter-input:focus,
input[type="text"].ui-grid-filter-input:focus:hover {
    outline: none;
    border: 1px solid;
    border-color: #22beef;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.ui-grid-menu .ui-grid-menu-inner {
    background: white;
}
.ui-grid-menu .ui-grid-menu-inner ul li {
    border-bottom: 0 !important;
}
.ui-grid-menu .ui-grid-menu-inner ul li:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #428bca;
    color: white;
}
.ui-grid-menu .ui-grid-menu-inner ul li.ui-grid-menu-item-active {
    background: #428bca;
    color: white;
}
/**************************************/
/*************** ngTable***************/
/**************************************/

.ng-table.table-custom th {
    text-align: left;
}
.ng-table.table-custom th.sortable {
    padding-bottom: 6px;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -moz-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
}
.ng-table.table-custom th.sortable:hover {
    background-color: #fafafa;
    color: #6aa3d5;
    border-color: #6aa3d5;
}
.ng-table.table-custom th.sortable.sort-desc,
.ng-table.table-custom th.sortable.sort-asc {
    text-shadow: none;
    background-color: transparent;
    color: #428bca;
    border-bottom: 3px solid #428bca;
    padding-bottom: 4px;
}
.ng-table.table-custom th.sortable.sort-desc div:after,
.ng-table.table-custom th.sortable.sort-desc div:before,
.ng-table.table-custom th.sortable.sort-asc div:after,
.ng-table.table-custom th.sortable.sort-asc div:before {
    border-color: #428bca transparent;
    opacity: 1;
}
.ng-table.table-custom th.sortable.sort-desc div:before,
.ng-table.table-custom th.sortable.sort-asc div:before {
    border-top-color: #428bca;
}
.ng-table.table-custom th.sortable div:after,
.ng-table.table-custom th.sortable div:before {
    border-color: #616f77 transparent;
}
.ng-table.table-custom .ng-table-filters th {
    font-weight: 400;
    border-top: 0;
}
/******************************************/
/*************** smartTable ***************/
/******************************************/

.st-table > thead {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.st-table > thead td.sorting,
.st-table > thead th.sorting {
    cursor: pointer;
    padding-bottom: 6px;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -moz-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
}
.st-table > thead td.sorting:hover,
.st-table > thead th.sorting:hover {
    background-color: #fafafa;
    color: #6aa3d5;
    border-bottom: 1px solid #6aa3d5;
}
.st-table > thead td.sorting.st-sort-ascent,
.st-table > thead td.sorting.st-sort-descent,
.st-table > thead th.sorting.st-sort-ascent,
.st-table > thead th.sorting.st-sort-descent {
    color: #428bca;
    border-bottom: 3px solid #428bca;
    padding-bottom: 6px;
}
.st-table > tbody .st-selected td,
.st-table > tbody .st-selected th {
    background-color: rgba(0, 0, 0, 0.05);
}
.st-table .st-filters td,
.st-table .st-filters th {
    border-top: 0;
    font-weight: 400;
}
.st-table .pagination {
    margin: 0;
    margin-top: 10px;
}
.st-table .pagination a {
    cursor: pointer;
}
.st-table .loading-indicator {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 0.7em;
}
.st-table .loading-indicator:before {
    display: inline-block;
    margin: 0 0.4em;
    min-width: 1em;
    min-height: 1em;
    border-top: 4px solid #646464;
    border-right: 4px solid #e6e6e6;
    border-left: 4px solid #e6e6e6;
    border-bottom: 4px solid #646464;
    content: "";
    -webkit-animation: halfspin 1s ease infinite;
    -moz-animation: halfspin 1s ease infinite;
    -o-animation: halfspin 1s ease infinite;
    animation: halfspin 1s ease infinite;
    border-radius: 100%;
}
@-webkit-keyframes halfspin {
    to {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@-moz-keyframes halfspin {
    to {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@keyframes halfspin {
    to {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media screen and (max-width: 1360px) {
    .table-responsive-wide {
        width: 100%;
        margin-bottom: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 0;
    }
}
/*********************************/
/************* CARDS *************/
/*********************************/

.card-container {
    position: relative;
}
.card-container .card {
    min-height: 110px;
    margin-bottom: 20px;
    position: relative;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
    width: 100%;
    cursor: pointer;
    z-index: 9;
}
.card-container .card .front {
    height: 100%;
    position: relative;
    width: 100%;
    padding: 28px;
    top: 0;
    left: 0;
    z-index: 11;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -ms-transform: rotateX(0deg) rotateY(0deg);
    -o-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* -- transition is the magic sauce for animation -- */

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.card-container .card:hover .front {
    z-index: 11;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.card-container .card:hover .back {
    z-index: 12;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -ms-transform: rotateX(0deg) rotateY(0deg);
    -o-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
}
.card-container .card .back {
    position: absolute;
    top: 0;
    border: 0;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 10;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-179deg);
    /* setting to 180 causes an unnatural-looking half-flip */

    transform: rotateY(-179deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* -- transition is the magic sauce for animation -- */

    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.card-container .card .back > .row {
    height: 100%;
    margin: 0;
}
.card-container .card .back > .row > div {
    height: 100%;
    padding: 0;
}
.card-container .card .back > .row > div a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 30px 10px 10px;
}
.card-container .card .back > .row > div a i {
    display: block;
    margin-bottom: 5px;
}
.card-container .card .back > .row > div a:hover {
    text-decoration: none;
}
.card-container .card .back > .row > div:first-of-type a {
    background-color: rgba(0, 0, 0, 0.1);
}
.card-container .card .back > .row > div:nth-of-type(2) a {
    background-color: rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 420px) {
    .card-container .card .front {
        padding: 28px 10px;
    }
}
.task-container {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    padding: 15px;
    background-color: white;
    margin-bottom: 15px;
    border-left: 3px solid;
    position: relative;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.task-container.priority-high {
    border-left-color: #d9534f;
}
.task-container.priority-high .task-priority {
    color: #d9534f;
}
.task-container.priority-medium {
    border-left-color: #f0ad4e;
}
.task-container.priority-medium .task-priority {
    color: #f0ad4e;
}
.task-container.priority-normal {
    border-left-color: #616f77;
}
.task-container.priority-normal .task-priority {
    color: #616f77;
}
.task-container.priority-low {
    border-left-color: #5cb85c;
}
.task-container.priority-low .task-priority {
    color: #5cb85c;
}
.task-container .task-name {
    margin: 0;
    font-size: 18px;
    color: #222;
}
.task-container .task-meta {
    font-size: 12px;
    color: #999;
}
.task-container .task-priority {
    font-size: 10px;
    text-transform: uppercase;
    position: absolute;
    right: 15px;
    top: 15px;
}
.task-container .task-desc {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}
.task-container:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    cursor: grab;
}
.task-container.drag-task {
    margin: 0;
    cursor: move;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.5);
    position: fixed !important;
    z-index: 9999 !important;
}
.owl-theme .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: #616f77;
    opacity: .3;
}
.owl-theme .owl-controls .owl-page.active span {
    width: 14px;
    height: 14px;
    margin: 3px 4px;
    opacity: .6;
}
.tile-simple .owl-theme .owl-controls {
    margin-top: 0;
}
.widget-todo form .form-control {
    height: 30px;
    margin-bottom: 30px;
}
.widget-todo .todo-list > li {
    position: relative;
}
.widget-todo .todo-list > li .checkbox-custom > input {
    display: none;
}
.widget-todo .todo-list > li .checkbox-custom > i {
    margin-left: -74px;
    margin-right: 33px;
    margin-top: -3px;
}
.widget-todo .todo-list > li .remove-todo {
    display: none;
}
.widget-todo .todo-list > li:hover .remove-todo {
    display: block;
}
.widget-todo .todo-list > li span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.widget-todo .todo-list > li.completed span {
    text-decoration: line-through;
    color: #bfc7cb;
}
.widget-todo .todo-list > li .edit {
    display: none;
}
.widget-todo .todo-list > li.editing .view {
    display: none;
}
.widget-todo .todo-list > li.editing .edit {
    display: block;
}
.widget-calendar .datepicker > table {
    width: 100%;
}
.widget-calendar .datepicker > table .btn-default {
    background-color: #3f4e62;
    color: white;
}
.widget-calendar .datepicker > table thead tr:first-child th:first-child .btn,
.widget-calendar .datepicker > table thead tr:first-child th:last-child .btn {
    font-size: 24px;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.5);
}
.widget-calendar .datepicker > table thead tr:first-child th:first-child .btn:hover,
.widget-calendar .datepicker > table thead tr:first-child th:last-child .btn:hover {
    color: white;
}
.widget-calendar .datepicker > table thead tr:first-child th:nth-child(2) .btn {
    font-size: 18px;
}
.widget-calendar .datepicker > table thead tr:first-child th:nth-child(2) .btn strong {
    font-weight: 300;
}
.widget-calendar .datepicker > table thead tr:nth-child(2) th {
    background-color: #354252;
}
.widget-calendar .datepicker > table thead tr:nth-child(2) th small {
    font-size: 14px;
    line-height: 35px;
}
.widget-calendar .datepicker > table tbody tr td {
    position: relative;
}
.widget-calendar .datepicker > table tbody tr td .btn {
    font-size: 14px;
    font-weight: 300;
    padding: 11px 10px;
}
.widget-calendar .datepicker > table tbody tr td .btn .text-muted {
    color: rgba(255, 255, 255, 0.3);
}
.widget-calendar .datepicker > table tbody tr td .btn .text-info {
    color: #e05d6f;
}
.widget-calendar .datepicker > table tbody tr td .btn.active {
    background-color: #e05d6f !important;
    border-radius: 50px;
    height: 30px;
    padding: 0;
}
.widget-calendar .datepicker > table tbody tr td .btn.active .text-info {
    color: white;
}
.widget-message .ta-toolbar {
    margin: 0;
    padding: 5px;
    background-color: #f8f8f8;
}
.widget-message .ta-scroll-window.form-control {
    border: 0;
    border-bottom: 10px solid #f8f8f8;
    border-radius: 0;
    min-height: 160px;
}
.widget-message .ta-scroll-window > .ta-bind {
    min-height: 160px;
}
.widget-message .ta-root.focussed .ta-scroll-window.form-control {
    border-color: #e2e2e2;
}
.widget-message .ta-root.focussed .ta-toolbar {
    background-color: #e2e2e2;
}
.widget-appointments .day {
    font-size: 120px;
    line-height: 120px;
    font-weight: 300;
}
.widget-appointments .month {
    font-size: 36px;
    line-height: 56px;
    font-weight: 700;
}
.widget-appointments .b-l {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}
.widget-appointments .owl-carousel .owl-item {
    padding: 0 60px;
}
.widget-appointments .owl-carousel .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 100%;
    text-align: left;
}
.widget-appointments .owl-carousel .owl-controls .owl-buttons .owl-next {
    float: right;
}
.widget-appointments .owl-carousel .owl-controls .owl-buttons div {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 4px 10px;
}
.streamline {
    position: relative;
    z-index: 1;
}
.streamline:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    top: 0;
    left: 20px;
    z-index: 1;
}
.streamline:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #ddd;
    bottom: 0;
    left: 15px;
    z-index: 2;
}
.streamline .streamline-post {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.streamline .streamline-post > aside {
    float: left;
    vertical-align: top;
}
.streamline .streamline-post .post-container,
.streamline .streamline-post .reply-container {
    vertical-align: top;
    padding-left: 55px;
    position: relative;
    z-index: 2;
}
.streamline .streamline-post .post-container:before,
.streamline .streamline-post .reply-container:before {
    content: '';
    height: 0;
    width: 0;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #ddd;
    border-top: 7px solid transparent;
    position: absolute;
    top: 13px;
    left: 48px;
}
.streamline .streamline-post .post-container:after,
.streamline .streamline-post .reply-container:after {
    content: '';
    height: 0;
    width: 0;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #fff;
    border-top: 6px solid transparent;
    position: absolute;
    top: 14px;
    left: 50px;
}
.streamline .streamline-post .post-replies > li > aside {
    float: left;
    vertical-align: top;
}
.streamline .streamline-form {
    position: absolute;
    width: 100%;
    padding-bottom: 20px;
    z-index: 2;
}
.streamline .streamline-form .thumb {
    float: left;
}
.streamline .streamline-form form {
    padding-left: 55px;
}
.streamline.timeline {
    overflow: hidden;
    position: relative;
}
.streamline.timeline ul {
    padding: 0 0 30px;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 2;
}
.streamline.timeline ul > li {
    margin: 20px 0;
}
.streamline.timeline ul > li:first-child {
    margin-top: 0;
}
.streamline.timeline ul .heading {
    color: white;
    display: block;
    text-align: center;
    margin: 0 auto;
}
.streamline.timeline ul .heading:after,
.streamline.timeline ul .heading:before {
    content: "";
    display: table;
    clear: both;
}
.streamline.timeline ul .timeline-post {
    position: relative;
    float: left;
    clear: left;
    text-align: right;
    width: 50%;
    padding-right: 40px;
}
.streamline.timeline ul .timeline-post aside {
    float: right;
    position: absolute;
    right: -15px;
}
.streamline.timeline ul .timeline-post .time {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 12px;
}
.streamline.timeline ul .timeline-post .time > i {
    margin-right: 5px;
}
.streamline.timeline ul .timeline-post:nth-of-type(even):after {
    content: '';
    height: 0;
    width: 0;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    position: absolute;
    top: 10px;
    right: 32px;
}
.streamline.timeline ul .timeline-post:nth-of-type(odd) {
    float: right;
    clear: right;
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}
.streamline.timeline ul .timeline-post:nth-of-type(odd) aside {
    float: left;
    right: auto;
    left: -15px;
    top: 40px;
}
.streamline.timeline ul .timeline-post:nth-of-type(odd) .time {
    left: auto;
    right: 10px;
}
.streamline.timeline ul .timeline-post:nth-of-type(odd):after {
    content: '';
    height: 0;
    width: 0;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
    border-top: 8px solid transparent;
    position: absolute;
    top: 50px;
    left: 32px;
}
.streamline.timeline ul .timeline-post .thumb {
    line-height: 30px;
    font-size: 18px;
    text-align: center;
}
.streamline.timeline ul .timeline-post .post-container > .panel {
    padding: 10px 20px;
}
.streamline.timeline:before,
.streamline.timeline:after {
    left: 50%;
}
.streamline.timeline:before {
    background-color: #bbb;
}
.streamline.timeline:after {
    margin-left: -5px;
    border-color: #bbb;
}
.streamline-form .post-toolbar {
    padding: 5px 10px;
    border-radius: 0 0 2px 2px;
    border: 1px solid #e2e2e2;
    border-top: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.streamline-form .post-toolbar > a {
    color: rgba(0, 0, 0, 0.2);
    padding: 2px 5px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.streamline-form .post-toolbar > a:hover {
    color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 768px) {
    .streamline.timeline ul .heading {
        text-align: left;
    }
    .streamline.timeline ul .timeline-post,
    .streamline.timeline ul .timeline-post:nth-of-type(odd),
    .streamline.timeline ul .timeline-post:nth-of-type(even) {
        padding-right: 0;
        padding-left: 40px;
        float: none;
        text-align: left;
        width: 100%;
    }
    .streamline.timeline ul .timeline-post aside,
    .streamline.timeline ul .timeline-post:nth-of-type(odd) aside,
    .streamline.timeline ul .timeline-post:nth-of-type(even) aside {
        float: none;
        right: auto;
        left: 0;
        top: 0;
    }
    .streamline.timeline ul .timeline-post:after,
    .streamline.timeline ul .timeline-post:nth-of-type(odd):after,
    .streamline.timeline ul .timeline-post:nth-of-type(even):after {
        border: 0;
        height: 0;
        width: 0;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #fff;
        border-top: 8px solid transparent;
        position: absolute;
        top: 10px;
        left: 32px;
        right: auto;
    }
    .streamline.timeline ul .timeline-post .time,
    .streamline.timeline ul .timeline-post:nth-of-type(odd) .time,
    .streamline.timeline ul .timeline-post:nth-of-type(even) .time {
        left: auto;
        right: 10px;
    }
    .streamline.timeline:before,
    .streamline.timeline:after {
        left: 15px;
    }
}
.ui-map,
.angular-google-map-container {
    display: block;
    height: 400px;
}
.jqvmap-zoomin,
.jqvmap-zoomout {
    position: absolute;
    left: 10px;
    border-radius: 2px;
    background: #566269;
    padding: 3px 4px;
    color: #fff;
    cursor: pointer;
    line-height: 10px;
    text-align: center;
}
.jqvmap-zoomin {
    top: 10px;
}
.jqvmap-zoomout {
    top: 30px;
}
.jqvmap-region {
    cursor: pointer;
}
.jqvmap-ajax_response {
    width: 100%;
    height: 400px;
}
.jqvmap-label {
    position: absolute;
    display: none;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: smaller;
    padding: 3px 5px;
}
.event-control {
    background-color: white;
}
.event-control a {
    color: #616f77;
    cursor: pointer;
    opacity: .5;
}
.event-control a:hover {
    opacity: 1;
}
.event-control[class*='bg-']:not(.bg-default):not(.bg-white) a {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}
.event-control[class*='bg-']:not(.bg-default):not(.bg-white) a:hover {
    color: white !important;
}
.fc-overlay {
    display: none;
    position: absolute;
    min-width: 260px;
    padding: 15px 0;
    top: auto;
    left: 50%;
    margin-left: -150px;
    z-index: 1000;
    color: #616f77 !important;
}
.fc-overlay.left {
    left: 100%;
    top: -15px;
    padding: 0 10px;
    margin: 0;
}
.fc-overlay.right {
    left: auto;
    right: 100%;
    top: -15px;
    padding: 0 10px;
    margin: 0;
}
.fc-overlay .panel {
    padding: 10px;
}
.fc .fc-header {
    height: 50px;
    color: #fff;
    background-color: #16a085;
    border-radius: 0;
    margin: 0;
}
.fc .fc-header .fc-button {
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    margin: 0;
    height: 50px;
    line-height: 28px;
    padding: 10px;
}
.fc .fc-header .fc-button:hover {
    color: white;
}
.fc .fc-header h2 {
    font-size: 24px;
    line-height: 50px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
    font-family: "Dosis", "Arial", sans-serif;
}
.fc .fc-content .fc-event {
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 0;
    background-color: white;
    border: 0;
    color: #616f77;
}
.fc .fc-content .fc-event.fc-event-end:not(.fc-event-start) {
    border: 0 !important;
}
.fc .fc-content .fc-event:focus,
.fc .fc-content .fc-event:hover,
.fc .fc-content .fc-event:active {
    z-index: 1000;
}
.fc .fc-content .fc-event:focus .fc-overlay,
.fc .fc-content .fc-event:hover .fc-overlay,
.fc .fc-content .fc-event:active .fc-overlay {
    display: block;
}
.fc .fc-content .fc-view.fc-grid table > thead > tr > th.fc-widget-header,
.fc .fc-content .fc-view.fc-agenda table > thead > tr > th.fc-widget-header {
    border: 0;
    background-color: #fff;
    padding: 10px;
    color: #616f77;
    font-size: 12px;
    font-weight: 400;
}
.fc .fc-content .fc-view.fc-grid table > thead > tr > th.fc-agenda-gutter,
.fc .fc-content .fc-view.fc-agenda table > thead > tr > th.fc-agenda-gutter {
    padding: 0;
}
.fc .fc-content .fc-view.fc-grid table > tbody > tr > td.fc-widget-content,
.fc .fc-content .fc-view.fc-agenda table > tbody > tr > td.fc-widget-content {
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
}
.fc .fc-content .fc-view.fc-grid table > tbody > tr > td.fc-widget-content .fc-day-number,
.fc .fc-content .fc-view.fc-agenda table > tbody > tr > td.fc-widget-content .fc-day-number {
    padding: 5px 10px;
    margin: 5px;
    color: #616f77;
    font-size: 12px;
}
.fc .fc-content .fc-view.fc-grid table > tbody > tr > td:first-child.fc-widget-content,
.fc .fc-content .fc-view.fc-agenda table > tbody > tr > td:first-child.fc-widget-content {
    border-left: 1px solid #d2d2d2;
}
.fc .fc-content .fc-view.fc-grid table > tbody > tr > td.fc-state-highlight,
.fc .fc-content .fc-view.fc-agenda table > tbody > tr > td.fc-state-highlight {
    background: rgba(255, 255, 255, 0.5);
}
.fc .fc-content .fc-view.fc-grid table > tbody > tr > td.fc-state-highlight .fc-day-number,
.fc .fc-content .fc-view.fc-agenda table > tbody > tr > td.fc-state-highlight .fc-day-number {
    background-color: #e05d6f;
    color: white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding: 4px 6px;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-allday .fc-agenda-axis,
.fc .fc-content .fc-view.fc-agenda .fc-agenda-allday .fc-agenda-gutter {
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    background-color: #f2f2f2;
    color: #616f77;
    font-size: 10px;
    font-weight: 300;
    padding: 10px 5px;
}
.fc .fc-content .fc-view.fc-agenda > table > tbody > tr > td.fc-state-highlight {
    background: #f2f2f2;
}
.fc .fc-content .fc-view.fc-agenda > table > tbody > tr > td.fc-sat {
    border-right: 0;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-slots tr {
    line-height: 35px;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-slots tr th {
    border: 0;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    background-color: #f2f2f2;
    color: #616f77;
    font-size: 12px;
    font-weight: 300;
    padding-top: 10px;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-slots tr td.fc-widget-content {
    border-bottom: 1px solid #e2e2e2;
    line-height: 50px;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-slots tr td.fc-widget-content:last-child {
    border-right: 0;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-slots tr.fc-minor td.fc-widget-content {
    border-bottom: 1px solid #e2e2e2;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-divider {
    border: 1px solid #e2e2e2;
}
.fc .fc-content .fc-view.fc-agenda .fc-agenda-divider .fc-agenda-divider-inner {
    background-color: #f2f2f2;
    height: 3px;
}
.mix-filter,
.mix-controls {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}
.mix-filter li,
.mix-controls li {
    cursor: pointer;
    padding: 6px 15px;
    margin-right: 2px;
    margin-bottom: 5px;
    background: #dbe0e2;
    display: inline-block;
    font-size: 12px;
}
.mix-filter li:hover:not(.disabled),
.mix-filter li.active:not(.disabled),
.mix-controls li:hover:not(.disabled),
.mix-controls li.active:not(.disabled) {
    color: #fff;
    background: #16a085;
}
.mix-controls li.select-all {
    background: none;
    padding-left: 0;
}
.mix-controls li.select-all .checkbox {
    min-height: 17px;
}
.mix-controls li.select-all:hover {
    color: #566269;
    background: none;
}
.mix-controls li.disabled,
.mix-controls li.disabled a {
    opacity: .5;
    cursor: not-allowed;
}
.mix-controls li a {
    color: #616f77;
}
.mix-controls li a i {
    margin-right: 5px;
}
.mix-controls li a:hover {
    text-decoration: none;
}
.mix-controls li:hover:not(.disabled) a {
    color: white;
    text-decoration: none;
}
.mix-grid .mix {
    position: relative;
    display: none;
}
.mix-grid .mix .img-container {
    position: relative;
    width: 100%;
}
.mix-grid .mix .img-details {
    padding: 0;
    color: white;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    text-align: center;
    position: absolute;
    background: transparent;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}
.mix-grid .mix .img-details h4 {
    margin-top: 30px;
}
.mix-grid .mix .img-details .img-controls {
    margin-top: 15px;
}
.mix-grid .mix .img-details .img-controls > a {
    color: white;
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px 15px;
    background: black;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 22px;
    margin-right: 5px;
}
.mix-grid .mix .img-details .img-controls > a:hover {
    background-color: #5bc0de;
    text-decoration: none;
}
.mix-grid .mix .img-container:hover .img-details,
.mix-grid .mix.selected .img-details {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.mix-grid .mix.selected .img-controls .img-select {
    background: #5bc0de;
}
.mfp-arrow-right:before,
.mfp-arrow-left:before {
    display: none !important;
}
md-content,
md-dialog-content {
    color: rgba(0, 0, 0, 0.87);
}
md-content p,
md-dialog-content p {
    font-size: 1.6rem;
    letter-spacing: 0.010em;
    line-height: 1.6em;
    margin: 0.8em 0 1.6em;
}
md-content fieldset,
md-dialog-content fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}
md-content fieldset legend,
md-dialog-content fieldset legend {
    font-size: 1.6rem;
    margin-bottom: 0;
    border: 0;
    display: inline;
    width: auto;
    padding: 0 4px;
}
.md-button.md-fab md-icon[md-font-icon] {
    color: white;
}
md-fab-actions .md-button.md-fab md-icon[md-font-icon] {
    color: #616f77;
}
.md-title,
.md-toolbar-tools {
    font-weight: 700;
}
.md-title h2,
.md-toolbar-tools h2 {
    letter-spacing: 0;
}
.demo-container {
    max-width: 864px;
    margin-bottom: 15px;
    position: relative;
}
.autocomplete-custom-template li {
    border-bottom: 1px solid #ccc;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    white-space: normal;
}
.autocomplete-custom-template li:last-child {
    border-bottom-width: 0;
}
.autocomplete-custom-template .item-title,
.autocomplete-custom-template .item-metadata {
    display: block;
    line-height: 2;
}
.autocomplete-custom-template .item-title md-icon,
.autocomplete-custom-template .item-metadata md-icon {
    height: 18px;
    width: 18px;
    font-size: 14px/1;
}
.md-button {
    font-weight: 700;
}
.bottomSheet .md-inline-list-icon-label {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: -12px;
    height: 24px;
    vertical-align: middle;
}
.bottomSheet .md-grid-item-content {
    height: 96px;
}
.bottomSheet .md-grid-item-content md-icon {
    font-size: 36px;
}
.bottomSheet .md-grid-text {
    padding-bottom: 5px;
}
.md-contact-suggestion img,
.md-chip .md-contact-avatar img {
    vertical-align: top;
}
md-input-container.md-icon-float > md-icon,
md-input-container > md-icon {
    left: 8px;
}
.md-tab {
    font-weight: 700;
}
.buttondemoBasicUsage section {
    background: #f7f7f7;
    border-radius: 3px;
    text-align: center;
    margin: 1em;
    position: relative !important;
    padding-bottom: 10px;
}
.buttondemoBasicUsage md-content {
    margin-right: 7px;
}
.buttondemoBasicUsage section .md-button {
    margin-top: 16px;
    margin-bottom: 16px;
}
.buttondemoBasicUsage .label {
    position: absolute;
    bottom: 5px;
    left: 7px;
    font-size: 14px;
    opacity: 0.54;
    color: #616f77;
}
.checkboxdemoBasicUsage.checkboxDemo1 div {
    clear: both;
}
.checkboxdemoBasicUsage.checkboxDemo1 md-checkbox {
    float: left;
}
.checkboxdemoBasicUsage p {
    padding-left: 8px;
}
.checkboxdemoBasicUsage fieldset.standard {
    border-style: solid;
    border-width: 1px;
}
.checkboxdemoBasicUsage legend {
    color: #3F51B5;
}
.checkboxdemoBasicUsage legend code {
    color: #3F51B5;
    font-weight: normal;
}
.checkboxdemoBasicUsage .ipsum {
    color: saddlebrown;
}
.checkboxdemoSyncing .checkboxDemo1 div {
    clear: both;
}
.checkboxdemoSyncing .checkboxDemo1 md-checkbox {
    float: left;
}
.checkboxdemoSyncing legend {
    color: #3F51B5;
}
.checkboxdemoSyncing legend code {
    color: #3F51B5;
    font-weight: normal;
}
.checkboxdemoSyncing p {
    padding-left: 8px;
}
.checkboxdemoSyncing .info {
    padding-left: 13px;
}
.checkboxdemoSyncing div.standard {
    padding: 8px;
    padding-left: 15px;
}
.checkboxdemoSyncing fieldset.standard {
    border-style: solid;
    border-width: 1px;
}
.chipsdemoBasicUsage .custom-chips .md-chip {
    position: relative;
    padding-right: 35px;
}
.chipsdemoBasicUsage .custom-chips .md-chip .md-chip-remove-container {
    position: absolute;
    right: 4px;
    top: 4px;
    margin-right: 0;
    height: 24px;
}
.chipsdemoBasicUsage .custom-chips .md-chip .md-chip-remove-container button.vegetablechip {
    position: relative;
    height: 24px;
    width: 24px;
    line-height: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: background 0.15s linear;
    display: block;
}
.chipsdemoBasicUsage .custom-chips .md-chip .md-chip-remove-container button.vegetablechip md-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.7);
    color: white;
    fill: white;
}
.chipsdemoBasicUsage .custom-chips .md-chip .md-chip-remove-container button.vegetablechip:hover,
.chipsdemoBasicUsage .custom-chips .md-chip .md-chip-remove-container button.vegetablechip:focus {
    background: rgba(255, 0, 0, 0.8);
}
md-content.autocomplete.chipsdemoContactChips {
    min-height: 250px;
}
.chipsdemoContactChips .md-item-text.compact {
    padding-top: 8px;
    padding-bottom: 8px;
}
.chipsdemoContactChips .contact-item {
    box-sizing: border-box;
}
.chipsdemoContactChips .contact-item.selected {
    opacity: 0.5;
}
.chipsdemoContactChips .contact-item.selected h3 {
    opacity: 0.5;
}
.chipsdemoContactChips .contact-item .md-list-item-text {
    padding: 14px 0;
}
.chipsdemoContactChips .contact-item .md-list-item-text h3 {
    margin: 0 !important;
    padding: 0;
    line-height: 1.2em !important;
}
.chipsdemoContactChips .contact-item .md-list-item-text h3,
.chipsdemoContactChips .contact-item .md-list-item-text p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
@media (min-width: 900px) {
    .chipsdemoContactChips .contact-item {
        float: left;
        width: 33%;
    }
}
.chipsdemoContactChips md-contact-chips {
    margin-bottom: 10px;
}
.chipsdemoContactChips .md-chips {
    padding: 5px 0 8px;
}
.chipsdemoContactChips .fixedRows {
    height: 250px;
    overflow: hidden;
}
md-content .chipsdemoCustomInputs.autocomplete {
    min-height: 200px;
}
.chipsdemoCustomInputs input[type=number] {
    width: 110px;
}
.chipsdemoCustomInputs .veggie-option {
    float: left;
    width: 20%;
    box-sizing: border-box;
    padding: 0 8px;
}
.chipsdemoCustomInputs .veggie-option .md-item-text {
    padding: 8px;
    background: #f0f0f0;
    border-radius: 3px;
}
.chipsdemoCustomInputs .veggie-option .md-item-text h3,
.chipsdemoCustomInputs .veggie-option .md-item-text p {
    padding: 0;
    margin: 0;
}
.dividerdemoBasicUsage .face {
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 48px;
    margin: 16px;
}
.fabSpeedDialdemoBasicUsage .text-capitalize {
    text-transform: capitalize;
}
.fabSpeedDialdemoBasicUsage .md-fab:hover,
.fabSpeedDialdemoBasicUsage .md-fab.md-focused {
    background-color: #000 !important;
}
.fabSpeedDialdemoBasicUsage p.note {
    font-size: 1.2rem;
}
.fabSpeedDialdemoBasicUsage .lock-size {
    min-width: 300px;
    min-height: 300px;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.fabSpeedDialdemoMoreOptions .lock-size {
    min-width: 300px;
    min-height: 300px;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.fabSpeedDialdemoMoreOptions .md-fab.demo-fab.trigger-fab:hover,
.fabSpeedDialdemoMoreOptions .md-fab.demo-fab.trigger-fab.md-focused,
.fabSpeedDialdemoMoreOptions .md-fab.demo-fab.action-fab:hover,
.fabSpeedDialdemoMoreOptions .md-fab.demo-fab.action-fab.md-focused {
    background-color: #333;
}
.fabSpeedDialdemoMoreOptions .md-fab.demo-fab.action-fab {
    background-color: #aaa;
}
md-content.fabSpeedDialdemoMoreOptions div[flex="50"] {
    padding: 15px;
}
.fabToolbardemoBasicUsage md-fab-toolbar.md-right md-fab-trigger.align-with-text {
    left: 7px;
}
.gridListdemoBasicUsage md-grid-list {
    margin: 8px;
}
.gridListdemoBasicUsage .gray {
    background: #f5f5f5;
}
.gridListdemoBasicUsage .green {
    background: #b9f6ca;
}
.gridListdemoBasicUsage .yellow {
    background: #ffff8d;
}
.gridListdemoBasicUsage .blue {
    background: #84ffff;
}
.gridListdemoBasicUsage .purple {
    background: #b388ff;
}
.gridListdemoBasicUsage .red {
    background: #ff8a80;
}
.gridListdemoBasicUsage md-grid-tile {
    transition: all 400ms ease-out 50ms;
}
.gridListdemoDynamicTiles md-icon {
    width: 50%;
    height: 50%;
}
.gridListdemoDynamicTiles md-icon svg {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.gridListdemoDynamicTiles .s64 {
    font-size: 64px;
}
.gridListdemoDynamicTiles .s32 {
    font-size: 48px;
}
.gridListdemoDynamicTiles md-icon.fa {
    display: block;
    padding-left: 0;
}
.gridListdemoDynamicTiles md-icon.s32 span {
    padding-left: 8px;
}
.gridListdemoDynamicTiles md-grid-list {
    margin: 8px;
}
.gridListdemoDynamicTiles .gray {
    background: #f5f5f5;
}
.gridListdemoDynamicTiles .green {
    background: #b9f6ca;
}
.gridListdemoDynamicTiles .yellow {
    background: #ffff8d;
}
.gridListdemoDynamicTiles .blue {
    background: #84ffff;
}
.gridListdemoDynamicTiles .darkBlue {
    background: #80d8ff;
}
.gridListdemoDynamicTiles .deepBlue {
    background: #448aff;
}
.gridListdemoDynamicTiles .purple {
    background: #b388ff;
}
.gridListdemoDynamicTiles .lightPurple {
    background: #8c9eff;
}
.gridListdemoDynamicTiles .red {
    background: #ff8a80;
}
.gridListdemoDynamicTiles .pink {
    background: #ff80ab;
}
.gridListdemoDynamicTiles md-grid-tile {
    transition: all 300ms ease-out 50ms;
}
.gridListdemoDynamicTiles md-grid-tile md-icon {
    padding-bottom: 32px;
}
.gridListdemoDynamicTiles md-grid-tile md-grid-tile-footer {
    background: rgba(0, 0, 0, 0.68);
    height: 36px;
}
.gridListdemoDynamicTiles md-grid-tile-footer figcaption {
    width: 100%;
}
.gridListdemoDynamicTiles md-grid-tile-footer figcaption h3 {
    margin: 0;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.inputdemoIcons md-input-container:not(.md-input-invalid) > md-icon.email {
    color: green;
}
.inputdemoIcons md-input-container:not(.md-input-invalid) > md-icon.name {
    color: dodgerblue;
}
.inputdemoIcons md-input-container.md-input-invalid > md-icon.email,
.inputdemoIcons md-input-container.md-input-invalid > md-icon.name {
    color: red;
}
.listdemoBasicUsage md-divider,
.listdemoListControls md-divider {
    margin-top: 10px;
    margin-bottom: 10px;
}
.menudemoBasicUsage .md-menu-demo {
    padding: 24px;
}
.menudemoBasicUsage .menu-demo-container {
    min-height: 200px;
}
.menudemoMenuPositionModes .md-menu-demo {
    padding: 24px;
}
.menudemoMenuPositionModes .menu-demo-container {
    min-height: 200px;
}
.menudemoMenuWidth .md-menu-demo {
    padding: 24px;
}
.menudemoMenuWidth .menu-demo-container {
    min-height: 200px;
}
.menudemoMenuWidth .menus {
    width: 100%;
}
.progressLineardemoBasicUsage h4 {
    margin: 10px 0;
}
.progressLineardemoBasicUsage md-progress-linear {
    padding-top: 10px;
    margin-bottom: 20px;
}
.radioButtondemoBasicUsage hr {
    margin-left: -20px;
    opacity: 1;
}
.radioButtondemoBasicUsage md-radio-group {
    width: 150px;
}
.radioButtondemoBasicUsage p:last-child {
    padding-bottom: 50px;
}
.radioButtondemoBasicUsage [ng-controller] {
    padding-left: 20px;
}
.radioButtondemoBasicUsage .radioValue {
    margin-left: 5px;
    color: #0f9d58;
    font-weight: bold;
    padding: 5px;
}
.radioButtondemoBasicUsage md-icon {
    margin: 20px;
    margin-top: 0;
    width: 128px;
    height: 128px;
}
.radioButtondemoBasicUsage .ipsum {
    color: saddlebrown;
    font-size: 0.9em;
}
.subheaderdemoBasicUsage .face {
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 48px;
    margin: 16px;
}
.swipedemoBasicUsage .demo-swipe {
    padding: 20px 10px;
}
.swipedemoBasicUsage .no-select {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tabsdemoDynamicHeight md-content {
    background-color: transparent !important;
}
md-content.tabsdemoDynamicHeight md-tabs {
    background: #f6f6f6;
    border: 1px solid #e1e1e1;
}
md-content.tabsdemoDynamicHeight md-tabs md-tabs-wrapper {
    background: white;
}
md-content.tabsdemoDynamicHeight h1:first-child {
    margin-top: 0;
}
.tabsdemoDynamicTabs md-content {
    background-color: transparent !important;
}
.tabsdemoDynamicTabs md-tabs {
    border: 1px solid #e1e1e1;
}
md-content.tabsdemoDynamicTabs md-tabs md-tab-content {
    background: #f6f6f6;
}
.tabsdemoDynamicTabs md-content md-tabs md-tabs-wrapper {
    background: white;
}
.tabsdemoDynamicTabs md-content h1:first-child {
    margin-top: 0;
}
.tabsdemoDynamicTabs md-input-container {
    padding-bottom: 0;
}
.tabsdemoDynamicTabs .remove-tab {
    margin-bottom: 40px;
}
.tabsdemoDynamicTabs .demo-tab > div > div {
    padding: 25px;
    box-sizing: border-box;
}
.tabsdemoDynamicTabs .edit-form input {
    width: 100%;
}
.tabsdemoDynamicTabs md-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.tabsdemoDynamicTabs md-tab[disabled] {
    opacity: 0.5;
}
.tabsdemoDynamicTabs label {
    text-align: left;
}
.tabsdemoDynamicTabs .long > input {
    width: 264px;
}
.tabsdemoDynamicTabs .md-button.add-tab {
    transform: translateY(5px);
}
.tabsdemoStaticTabs md-tab-content {
    padding: 25px;
}
.tabsdemoStaticTabs md-tab-content:nth-child(1) {
    background-color: #42A5F5;
}
.tabsdemoStaticTabs md-tab-content:nth-child(2) {
    background-color: #689F38;
}
.tabsdemoStaticTabs md-tab-content:nth-child(3) {
    background-color: #26C6DA;
}
.tabsdemoStaticTabs .after-tabs-area > span {
    margin-top: 25px;
    padding-right: 15px;
    vertical-align: middle;
    line-height: 30px;
    height: 35px;
}
.tabsdemoStaticTabs .after-tabs-area > md-checkbox {
    margin-top: 26px;
    margin-left: 0;
}
.toolbardemoBasicUsage md-toolbar md-icon.md-default-theme {
    color: white;
}
.toolbardemoScrollShrink .face {
    width: 48px;
    margin: 16px;
    border-radius: 48px;
    border: 1px solid #ddd;
}
.tooltipdemoBasicUsage md-toolbar .md-toolbar-tools .md-button,
.tooltipdemoBasicUsage md-toolbar .md-toolbar-tools .md-button:hover {
    box-shadow: none;
    border: none;
    transform: none;
    -webkit-transform: none;
}
.tooltipdemoBasicUsage .left {
    top: 70px !important;
    left: 56px !important;
}
.tooltipdemoBasicUsage .right {
    top: 70px !important;
    right: 56px !important;
}
.whiteframedemoBasicUsage md-whiteframe {
    background: #fff;
    margin: 20px;
    padding: 20px;
}
.masonry-brick {
    display: none;
}
.masonry-brick.loaded {
    display: block;
}
.masonry-brick .tile {
    border-radius: 3px;
    overflow: hidden;
}
.masonry-brick .tile .tile-body {
    padding: 30px 25px;
}
.masonry-brick .brick-title {
    font-weight: 400;
    line-height: 1.2;
    color: #37474f;
    margin-top: 0;
}
.masonry-brick .brick-meta {
    color: #a3afb7;
    font-size: 12px;
    margin-bottom: 15px;
}
.masonry-brick .brick-meta a {
    color: #a3afb7;
}
.masonry-brick .brick-meta a:hover {
    color: #ccd5db;
}
.masonry-brick .read-more {
    margin-top: 15px;
    padding: 7px 15px;
}
.masonry-brick .brick-content {
    color: #76838f;
}
.introjs-overlay {
    background: #000;
}
.introjs-tooltip {
    background: transparent;
    box-shadow: none;
    min-width: 300px;
    max-width: 500px;
}
.introjs-tooltip .introjs-tooltiptext {
    color: white;
}
.introjs-tooltip .introjs-tooltiptext .header {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 10px;
}
.introjs-tooltip .introjs-tooltiptext p {
    font-weight: 300;
    opacity: .8;
}
.introjs-arrow {
    display: none !important;
}
.introjs-skipbutton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: none;
    color: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.75);
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    font-size: 30px;
    text-align: center;
    border-radius: 100%;
    text-shadow: none;
}
.introjs-skipbutton:hover,
.introjs-skipbutton:focus,
.introjs-skipbutton:active {
    border: 2px solid #e05d6f;
    background: #e05d6f;
    color: white;
    box-shadow: none;
}
.introjs-nextbutton,
.introjs-prevbutton {
    background: #16a085;
    border: 0;
    text-shadow: none;
    border-radius: 40px;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 20px;
    font-size: 12px;
}
.introjs-nextbutton i,
.introjs-prevbutton i {
    margin: 0 5px;
    font-size: 10px;
}
.introjs-nextbutton:hover,
.introjs-prevbutton:hover {
    box-shadow: none;
    color: white;
}
.introjs-nextbutton:focus,
.introjs-nextbutton:active,
.introjs-prevbutton:focus,
.introjs-prevbutton:active {
    background: #16a085;
    color: white;
    text-decoration: none;
}
.introjs-nextbutton.introjs-disabled,
.introjs-prevbutton.introjs-disabled {
    display: none;
}
.introjs-prevbutton {
    float: left;
}
.introjs-helperLayer {
    border-radius: 0;
    border: 0;
    box-shadow: none;
}
body {
    font-family: "Lato", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    -ms-overflow-style: scrollbar;
    background-color: #e7eaeb;
    color: #616f77;
}
body a {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#wrap {
    visibility: hidden;
}
*:focus {
    outline: 0 !important;
}
.bg-white {
    background-color: rgba(255, 255, 255, 0.82) !important;
}
.bg-cyan {
    background-color: #22beef !important;
    color: white !important;
}
.bg-cyan.dk {
    background-color: #10acdd !important;
}
.bg-cyan.dker {
    background-color: #0f9dca !important;
}
.bg-cyan.lt {
    background-color: #3ac5f1 !important;
}
.bg-cyan.lter {
    background-color: #52ccf2 !important;
}
.bg-amethyst {
    background-color: #cd97eb !important;
    color: white !important;
}
.bg-amethyst.dk {
    background-color: #c382e7 !important;
}
.bg-amethyst.dker {
    background-color: #ba71e4 !important;
}
.bg-amethyst.lt {
    background-color: #d1a0ed !important;
}
.bg-amethyst.lter {
    background-color: #d5a8ee !important;
}
.bg-green {
    background-color: #a2d200 !important;
    color: white !important;
}
.bg-green.dk {
    background-color: #96c300 !important;
}
.bg-green.dker {
    background-color: #86ae00 !important;
}
.bg-green.lt {
    background-color: #aadc00 !important;
}
.bg-green.lter {
    background-color: #b2e600 !important;
}
.bg-orange {
    background-color: #ffc100 !important;
    color: white !important;
}
.bg-orange.dk {
    background-color: #f0b500 !important;
}
.bg-orange.dker {
    background-color: #dba600 !important;
}
.bg-orange.lt {
    background-color: #ffc71a !important;
}
.bg-orange.lter {
    background-color: #ffcd33 !important;
}
.bg-red {
    background-color: #ff4a43 !important;
    color: white !important;
}
.bg-red.dk {
    background-color: #ff1910 !important;
}
.bg-red.dker {
    background-color: #e60900 !important;
}
.bg-red.lt {
    background-color: #ff635d !important;
}
.bg-red.lter {
    background-color: #ff7b76 !important;
}
.bg-greensea {
    background-color: #16a085 !important;
    color: white !important;
}
.bg-greensea.dk {
    background-color: #138a72 !important;
}
.bg-greensea.dker {
    background-color: #107863 !important;
}
.bg-greensea.lt {
    background-color: #19b698 !important;
}
.bg-greensea.lter {
    background-color: #1ccdaa !important;
}
.bg-dutch {
    background-color: #D9534E !important;
    color: white !important;
}
.bg-dutch.dk {
    background-color: #137f8f !important;
}
.bg-dutch.dker {
    background-color: #116f7d !important;
}
.bg-dutch.lt {
    background-color: #19a7bc !important;
}
.bg-dutch.lter {
    background-color: #1cbbd2 !important;
}
.bg-hotpink {
    background-color: #FF0066 !important;
    color: white !important;
}
.bg-hotpink.dk {
    background-color: #e6005c !important;
}
.bg-hotpink.dker {
    background-color: #d10054 !important;
}
.bg-hotpink.lt {
    background-color: #ff1a75 !important;
}
.bg-hotpink.lter {
    background-color: #ff3385 !important;
}
.bg-drank {
    background-color: #A40778 !important;
    color: white !important;
}
.bg-drank.dk {
    background-color: #8c0666 !important;
}
.bg-drank.dker {
    background-color: #780558 !important;
}
.bg-drank.lt {
    background-color: #bc088a !important;
}
.bg-drank.lter {
    background-color: #d5099c !important;
}
.bg-blue {
    background-color:#2d8c16 !important;
    color: white !important;
}
.bg-lightblue1 {
  background-color: #e6bbad !important;
  color: white !important; }
  .bg-lightblue3 {
  background-color:#885de0!important;
  color: white !important; }
  .bg-lightblue4 {
  background-color:#e0925d !important;
  color: white !important; }
 .bg-lightblue5 {
  background-color:#5de084!important;
  color: white !important; }
 .bg-lightblue6 {
  background-color: #00bfff !important;
  color: white !important; }
.bg-lightblue8 {
  background-color:#A9A9A9 !important;
  color: white !important; }
.bg-lightblue9 {
  background-color: #F0E68C !important;
  color: white !important; }
.bg-blue.dk {
    background-color: #357ebd !important;
}
.bg-blue.dker {
    background-color: #3074ad !important;
}
.bg-blue.lt {
    background-color: #5597d0 !important;
}
.bg-blue.lter {
    background-color: #69a3d5 !important;
}
.bg-lightred {
    background-color:#2ea937 !important;
    color: white !important;
}
.bg-lightred.dk {
    background-color: #dc485c !important;
}
.bg-lightred.dker {
    background-color: #d9364d !important;
}
.bg-lightred.lt {
    background-color: #e47282 !important;
}
.bg-lightred.lter {
    background-color: #e88895 !important;
}
.bg-slategray {
    background-color: #ff4a43 !important;
    color: white !important;
}
.bg-slategray.dk {
    background-color: #354252 !important;
}
.bg-slategray.dker {
    background-color: #2d3846 !important;
}
.bg-slategray.lt {
    background-color: #495a72 !important;
}
.bg-slategray.lter {
    background-color: #536781 !important;
}
.bg-darkgray {
    background-color: #333 !important;
    color: white !important;
}
.bg-darkgray.dk {
    background-color: #262626 !important;
}
.bg-darkgray.dker {
    background-color: #1c1c1c !important;
}
.bg-darkgray.lt {
    background-color: #404040 !important;
}
.bg-darkgray.lter {
    background-color: #4d4d4d !important;
}
.bg-primary {
    background-color: #428bca !important;
    color: white !important;
}
.bg-primary.dk {
    background-color: #3071a9 !important;
}
.bg-primary.dker {
    background-color: #245682 !important;
}
.bg-primary.lt {
    background-color: #5697d0 !important;
}
.bg-primary.lter {
    background-color: #6aa3d5 !important;
}
.bg-success {
    background-color: #5cb85c !important;
    color: white !important;
}
.bg-success.dk {
    background-color: #449d44 !important;
}
.bg-success.dker {
    background-color: #357935 !important;
}
.bg-success.lt {
    background-color: #a3d7a3 !important;
    color: #357935 !important;
}
.bg-success.lter {
    background-color: #eaf6ea !important;
    color: #357935 !important;
}
.bg-warning {
    background-color: #f0ad4e !important;
    color: white !important;
}
.bg-warning.dk {
    background-color: #ec971f !important;
}
.bg-warning.dker {
    background-color: #c77c11 !important;
}
.bg-warning.lt {
    background-color: #f6ce95 !important;
    color: #c77c11 !important;
}
.bg-warning.lter {
    background-color: #fef9f3 !important;
    color: #c77c11 !important;
}
.bg-danger,
.bg-error {
    background-color: #d9534f !important;
    color: white !important;
}
.bg-danger.dk,
.bg-error.dk {
    background-color: #c9302c !important;
}
.bg-danger.dker,
.bg-error.dker {
    background-color: #a02622 !important;
}
.bg-danger.lt,
.bg-error.lt {
    background-color: #eba5a3 !important;
    color: #a02622 !important;
}
.bg-danger.lter,
.bg-error.lter {
    background-color: #fdf7f7 !important;
    color: #a02622 !important;
}
.bg-info {
    background-color: #5bc0de !important;
    color: white !important;
}
.bg-info.dk {
    background-color: #31b0d5 !important;
}
.bg-info.dker {
    background-color: #2390b0 !important;
}
.bg-info.lt {
    background-color: #9bd8eb !important;
    color: #2390b0 !important;
}
.bg-info.lter {
    background-color: #f0f9fc !important;
    color: #2390b0 !important;
}
.bg-default {
    background-color: #616f77 !important;
    color: white !important;
}
.bg-default.dk {
    background-color: #4a555b !important;
    color: white !important;
}
.bg-default.dker {
    background-color: #333b3f !important;
    color: white !important;
}
.bg-default.lt {
    background-color: #a3aeb4 !important;
    color: #616f77 !important;
}
.bg-default.lter {
    background-color: #e1e5e7 !important;
    color: #616f77 !important;
}
.bg-tr-black {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #f2f2f2 !important;
}
.bg-tr-black.btn:hover,
.bg-tr-black.btn:focus,
.bg-tr-black.btn:active,
.bg-tr-black.btn.active {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
}
.bg-tr-black.dk {
    background-color: rgba(0, 0, 0, 0.2) !important;
}
.bg-tr-black.dker {
    background-color: rgba(0, 0, 0, 0.3) !important;
    color: #616f77 !important;
}
.bg-tr-black.lt {
    background-color: rgba(0, 0, 0, 0.05) !important;
    color: #616f77 !important;
}
.bg-tr-black.lter {
    background-color: rgba(0, 0, 0, 0.03) !important;
    color: #616f77 !important;
}
.bg-tr-white {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.bg-tr-white.btn:hover,
.bg-tr-white.btn:focus,
.bg-tr-white.btn:active,
.bg-tr-white.btn.active {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #616f77 !important;
}
.bg-tr-white.dk {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.bg-tr-white.dker {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.bg-tr-white.lt {
    background-color: rgba(255, 255, 255, 0.3) !important;
}
.bg-tr-white.lter {
    background-color: rgba(255, 255, 255, 0.4) !important;
}
.no-bg {
    background-color: transparent !important;
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) a:not(.ui-select-choices-row-inner):not(.event-remove) {
    color: rgba(255, 255, 255, 0.7);
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) a:not(.ui-select-choices-row-inner):not(.event-remove):hover {
    color: white;
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) .dropdown-menu > li > a {
    color: #585858 !important;
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) .dropdown-menu > li > a:hover {
    color: #262626 !important;
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) > .form-control.input-unstyled {
    color: rgba(255, 255, 255, 0.7);
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) > .text-muted {
    color: rgba(255, 255, 255, 0.4);
}
*[class*='bg-']:not(.bg-default):not(.bg-white):not(.bg-tr-white) .pagination a {
    color: #616f77 !important;
}
.text-cyan {
    color: #22beef;
}
.text-amethyst {
    color: #cd97eb;
}
.text-green {
    color: #a2d200;
}
.text-orange {
    color: #ffc100;
}
.text-red {
    color: #ff4a43;
}
.text-greensea {
    color: #16a085;
}
.text-dutch {
    color: #1693A5;
}
.text-hotpink {
    color: #FF0066;
}
.text-drank {
    color: #A40778;
}
.text-blue {
    color: #418bca;
}
.text-lightred {
    color: #e05d6f;
}
.text-slategray {
    color: #3f4e62;
}
.text-darkgray {
    color: #333;
}
.text-primary {
    color: #428bca;
}
.text-success {
    color: #5cb85c;
}
.text-warning {
    color: #f0ad4e;
}
.text-danger {
    color: #d9534f;
}
.text-info {
    color: #5bc0de;
}
.text-default {
    color: #616f77;
}
.text-default.dk {
    color: #4a555b;
}
.text-default.dker {
    color: #333b3f;
}
.text-default.lt {
    color: #a3aeb4;
}
.text-default.lter {
    color: #e1e5e7;
}
.text-transparent-white {
    color: rgba(255, 255, 255, 0.5) !important;
}
.text-transparent-black {
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white {
    color: white;
}
.text-xs {
    font-size: 10px !important;
}
.text-sm {
    font-size: 12px !important;
}
.text-md {
    font-size: 16px !important;
}
.text-lg {
    font-size: 18px !important;
}
.text-elg {
    font-size: 25px !important;
    line-height: 34px;
}
.text-light {
    font-weight: 300 !important;
}
.animated {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.block {
    display: block;
}
.inline {
    display: inline !important;
}
.inline-block {
    display: inline-block !important;
}

.front .fa-4x {
    font-size: 40px;
}
.text-left {
    text-align: left !important;
}
.wrap-reset {
    margin: -15px;
    padding: 15px;
}
.hidden-xs.show,
.hidden-sm.show {
    display: block !important;
}
.m-auto {
    margin: auto;
}
.m-40 {
    margin: 40px !important;
}
.m-20 {
    margin: 20px !important;
}
.m-10 {
    margin: 10px !important;
}
.m-5 {
    margin: 5px !important;
}
.m-0 {
    margin: 0 !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-5 {
    margin-top: 5px !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.ml-40 {
    margin-left: 40px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.ml-0 {
    margin-left: 0px !important;
}
.mr-40 {
    margin-right: 40px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-5 {
    margin-right: 5px !important;
}
.mr-0 {
    margin-right: 0px !important;
}
.p-30 {
    padding: 30px !important;
}
.p-20 {
    padding: 20px !important;
}
.p-15 {
    padding: 15px !important;
}
.p-10 {
    padding: 10px !important;
}
.p-5 {
    padding: 5px !important;
}
.p-0 {
    padding: 0 !important;
}
.pb-30 {
    padding-bottom: 30px !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pb-15 {
    padding-bottom: 15px !important;
}
.pb-10 {
    padding-bottom: 10px !important;
}
.pb-0 {
    padding-bottom: 0px !important;
}
.pt-30 {
    padding-top: 30px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.pt-15 {
    padding-top: 15px !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pl-30 {
    padding-left: 30px !important;
}
.pl-20 {
    padding-left: 20px !important;
}
.pl-15 {
    padding-left: 15px !important;
}
.pl-10 {
    padding-left: 10px !important;
}
.pl-0 {
    padding-left: 0px !important;
}
.pr-30 {
    padding-right: 30px !important;
}
.pr-20 {
    padding-right: 20px !important;
}
.pr-15 {
    padding-right: 15px !important;
}
.pr-10 {
    padding-right: 10px !important;
}
.pr-0 {
    padding-right: 0px !important;
}
.b-0 {
    border: 0 !important;
}
.bt-0 {
    border-top: 0 !important;
}
.bb-0 {
    border-bottom: 0 !important;
}
.b-a {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.b-r {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.b-b {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.b-l {
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.b-t {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.b-dashed {
    border-style: dashed !important;
}
.b-solid {
    border-color: #ddd !important;
}
.b-1x {
    border-width: 1px !important;
}
.b-2x {
    border-width: 2px !important;
}
.b-3x {
    border-width: 3px !important;
}
.b-cyan {
    border-color: #22beef !important;
}
.b-amethyst {
    border-color: #cd97eb !important;
}
.b-green {
    border-color: #a2d200 !important;
}
.b-orange {
    border-color: #ffc100 !important;
}
.b-red {
    border-color: #ff4a43 !important;
}
.b-greensea {
    border-color: #16a085 !important;
}
.b-dutch {
    border-color: #1693A5 !important;
}
.b-hotpink {
    border-color: #FF0066 !important;
}
.b-drank {
    border-color: #A40778 !important;
}
.b-blue {
    border-color: #418bca !important;
}
.b-lightred {
    border-color: #e05d6f !important;
}
.b-slategray {
    border-color: #3f4e62 !important;
}
.b-darkgray {
    border-color: #333 !important;
}
.b-primary {
    border-color: #428bca !important;
}
.b-success {
    border-color: #5cb85c !important;
}
.b-warning {
    border-color: #f0ad4e !important;
}
.b-danger {
    border-color: #d9534f !important;
}
.b-info {
    border-color: #5bc0de !important;
}
.b-default {
    border-color: #616f77 !important;
}
.br-0 {
    border-radius: 0 !important;
}
.br-2 {
    border-radius: 2px !important;
}
.br-2-l {
    border-radius: 2px 0 0 2px !important;
}
.br-2-r {
    border-radius: 0 2px 2px 0 !important;
}
.br-2-t {
    border-radius: 2px 2px 0 0 !important;
}
.br-2-b {
    border-radius: 0 0 2px 2px !important;
}
.size-30x30,
.wh30 {
    width: 30px;
    height: 30px;
}
.size-45x45,
.wh45 {
    width: 45px;
    height: 45px;
}
.size-50x50,
.wh50 {
    width: 50px;
    height: 50px;
}
.w-40 {
    width: 40px !important;
}
.w-xxs,
.w-60 {
    width: 60px;
}
.w-xs,
.w-100 {
    width: 100px;
}
.w-sm,
.w-150 {
    width: 150px;
}
.w-md,
.w-240 {
    width: 240px;
}
.w-lg,
.w-280 {
    width: 280px;
}
.w-xl,
.w-360 {
    width: 360px;
}
.w-xxl,
.w-420 {
    width: 420px;
}
hr.line-dashed {
    border-style: dashed;
}
hr.line-full {
    margin: 20px -20px;
}
.perspective {
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    perspective: 800px;
    display: inline-block;
}
.lined-paper {
    background-color: white;
    background-image: -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear- gradient(#e8e8e8 1px, transparent 1px);
    background-image: -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient #e8e8e8 1px, transparent 1px;
    background-image: -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#e8e8e8 1px, transparent 1px);
    background-image: linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#e8e8e8 1px, transparent 1px);
    background-size: 1px 1px, 1px 1px, 30px 30px;
    background-repeat: repeat-y, repeat-y, repeat;
    background-position: 62px 0, 66px 0, 0 -1px;
    position: relative;
    padding: 30px 15px 30px 75px !important;
    line-height: 30px;
    font-family: Georgia, serif;
    font-style: italic;
}
.lined-paper p,
.lined-paper ul,
.lined-paper ol {
    margin-bottom: 30px;
}
.example [class^="col-"] {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f2f2f2;
    border-right: 5px solid white;
}
.example .row {
    margin: 0;
    margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
    .text-left-sm {
        text-align: left;
    }
}
@media only screen and (max-width: 480px) {
    .text-left-xs {
        text-align: left;
    }
    .w-xxl,
    .w-420 {
        width: 100%;
    }
}
.color-schemes a.scheme-black {
    background-color: #1c2b36;
}
.color-schemes a.scheme-drank {
    background-color: #51445f;
}
.color-schemes a.scheme-greensea {
    background-color: #16a085;
}
.color-schemes a.scheme-cyan {
    background-color: #22beef;
}
.color-schemes a.scheme-lightred {
    background-color: #e05d6f;
}
.color-schemes a.scheme-light {
    background-color: #fff;
}
.sidebar-sm #sidebar.scheme-black,
.sidebar-sm #sidebar.scheme-drank,
.sidebar-sm #sidebar.scheme-greensea,
.sidebar-sm #sidebar.scheme-cyan,
.sidebar-sm #sidebar.scheme-lightred,
.sidebar-sm #sidebar.scheme-light,
.sidebar-xs #sidebar.scheme-black,
.sidebar-xs #sidebar.scheme-drank,
.sidebar-xs #sidebar.scheme-greensea,
.sidebar-xs #sidebar.scheme-cyan,
.sidebar-xs #sidebar.scheme-lightred,
.sidebar-xs #sidebar.scheme-light {
    background-color: transparent !important;
}
#header.scheme-black,
#header.scheme-black .nav-right > li,
#header.scheme-black .nav-left > li,
#header.scheme-black .search {
    background-color: #1c2b36;
}
#header .branding.scheme-black,
#sidebar.scheme-black,
#sidebar.scheme-black #navigation,
#sidebar.scheme-black #sidebar-wrap:before,
#header.scheme-black li.toggle-right-sidebar > a,
.appWrapper.scheme-black .page-breadcrumb > li:first-child {
    background-color: #131e25 !important;
}
.appWrapper.black-scheme-color #navigation > li.active > a,
.appWrapper.black-scheme-color #loading-bar .bar {
    background-color: #1c2b36 !important;
}
.appWrapper.black-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #1c2b36;
    border-left-color: #1c2b36;
}
.appWrapper.black-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #1c2b36 1px 0 6px 1px;
    box-shadow: #1c2b36 1px 0 6px 1px;
}
.appWrapper.black-scheme-color #navigation .dropdown > ul li:hover > a,
.appWrapper.black-scheme-color #navigation .dropdown > ul li.active > a {
    color: #1c2b36 !important;
}
.appWrapper.black-scheme-color #navigation .dropdown.submenu.open > a {
    color: white !important;
}
.appWrapper.black-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: #1c2b36 !important;
}
.sidebar-sm #sidebar.scheme-black #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-black #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-black #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-black #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-black #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-black #navigation li.submenu > ul {
    background-color: #10181e;
}
#header.scheme-drank,
#header.scheme-drank .nav-right > li,
#header.scheme-drank .nav-left > li,
#header.scheme-drank .search {
    background-color: #51445f;
}
#header .branding.scheme-drank,
#sidebar.scheme-drank,
#sidebar.scheme-drank #navigation,
#sidebar.scheme-drank #sidebar-wrap:before,
#header.scheme-drank li.toggle-right-sidebar > a,
.appWrapper.scheme-drank .page-breadcrumb > li:first-child {
    background-color: #493d55 !important;
}
.appWrapper.drank-scheme-color #navigation > li.active > a,
.appWrapper.drank-scheme-color #loading-bar .bar {
    background-color: #51445f !important;
}
.appWrapper.drank-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #51445f;
    border-left-color: #51445f;
}
.appWrapper.drank-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #51445f 1px 0 6px 1px;
    box-shadow: #51445f 1px 0 6px 1px;
}
.appWrapper.drank-scheme-color #navigation .dropdown > ul li:hover > a,
.appWrapper.drank-scheme-color #navigation .dropdown > ul li.active > a {
    color: #51445f !important;
}
.appWrapper.drank-scheme-color #navigation .dropdown.submenu.open > a {
    color: white !important;
}
.appWrapper.drank-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: #51445f !important;
}
.sidebar-sm #sidebar.scheme-drank #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-drank #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-drank #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-drank #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-drank #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-drank #navigation li.submenu > ul {
    background-color: #3c3246;
}
#header.scheme-greensea,
#header.scheme-greensea .nav-right > li,
#header.scheme-greensea .nav-left > li,
#header.scheme-greensea .search {
    background-color: #16a085;
}
#header .branding.scheme-greensea,
#sidebar.scheme-greensea,
#sidebar.scheme-greensea #navigation,
#sidebar.scheme-greensea #sidebar-wrap:before,
#header.scheme-greensea li.toggle-right-sidebar > a,
.appWrapper.scheme-greensea .page-breadcrumb > li:first-child {
    background-color: #138a72 !important;
}
.appWrapper.greensea-scheme-color #navigation > li.active > a,
.appWrapper.greensea-scheme-color #loading-bar .bar {
    background-color: #16a085 !important;
}
.appWrapper.greensea-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #16a085;
    border-left-color: #16a085;
}
.appWrapper.greensea-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #16a085 1px 0 6px 1px;
    box-shadow: #16a085 1px 0 6px 1px;
}
.appWrapper.greensea-scheme-color #navigation .dropdown > ul li:hover > a,
.appWrapper.greensea-scheme-color #navigation .dropdown > ul li.active > a {
    color: #16a085 !important;
}
.appWrapper.greensea-scheme-color #navigation .dropdown.submenu.open > a {
    color: white !important;
}
.appWrapper.greensea-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: #16a085 !important;
}
.sidebar-sm #sidebar.scheme-greensea #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-greensea #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-greensea #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-greensea #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-greensea #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-greensea #navigation li.submenu > ul {
    background-color: #0f6f5c;
}
#header.scheme-cyan,
#header.scheme-cyan .nav-right > li,
#header.scheme-cyan .nav-left > li,
#header.scheme-cyan .search {
    background-color: #22beef;
}
#header .branding.scheme-cyan,
#sidebar.scheme-cyan,
#sidebar.scheme-cyan #navigation,
#sidebar.scheme-cyan #sidebar-wrap:before,
#header.scheme-cyan li.toggle-right-sidebar > a,
.appWrapper.scheme-cyan .page-breadcrumb > li:first-child {
    background-color: #11b4e7 !important;
}
.appWrapper.cyan-scheme-color #navigation > li.active > a,
.appWrapper.cyan-scheme-color #loading-bar .bar {
    background-color: #22beef !important;
}
.appWrapper.cyan-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #22beef;
    border-left-color: #22beef;
}
.appWrapper.cyan-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #22beef 1px 0 6px 1px;
    box-shadow: #22beef 1px 0 6px 1px;
}
.appWrapper.cyan-scheme-color #navigation .dropdown > ul li:hover > a,
.appWrapper.cyan-scheme-color #navigation .dropdown > ul li.active > a {
    color: #22beef !important;
}
.appWrapper.cyan-scheme-color #navigation .dropdown.submenu.open > a {
    color: white !important;
}
.appWrapper.cyan-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: #22beef !important;
}
.sidebar-sm #sidebar.scheme-cyan #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-cyan #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-cyan #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-cyan #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-cyan #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-cyan #navigation li.submenu > ul {
    background-color: #0d8fb7;
}
#header.scheme-lightred,
#header.scheme-lightred .nav-right > li,
#header.scheme-lightred .nav-left > li,
#header.scheme-lightred .search {
    background-color: #e05d6f;
}
#header .branding.scheme-lightred,
#sidebar.scheme-lightred,
#sidebar.scheme-lightred #navigation,
#sidebar.scheme-lightred #sidebar-wrap:before,
#header.scheme-lightred li.toggle-right-sidebar > a,
.appWrapper.scheme-lightred .page-breadcrumb > li:first-child {
    background-color: #dc485c !important;
}
.appWrapper.lightred-scheme-color #navigation > li.active > a,
.appWrapper.lightred-scheme-color #loading-bar .bar {
    background-color: #e05d6f !important;
}
.appWrapper.lightred-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #e05d6f;
    border-left-color: #e05d6f;
}
.appWrapper.lightred-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #e05d6f 1px 0 6px 1px;
    box-shadow: #e05d6f 1px 0 6px 1px;
}
.appWrapper.lightred-scheme-color #navigation .dropdown > ul li:hover > a,
.appWrapper.lightred-scheme-color #navigation .dropdown > ul li.active > a {
    color: #e05d6f !important;
}
.appWrapper.lightred-scheme-color #navigation .dropdown.submenu.open > a {
    color: white !important;
}
.appWrapper.lightred-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: #e05d6f !important;
}
.sidebar-sm #sidebar.scheme-lightred #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-lightred #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-lightred #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-lightred #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-lightred #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-lightred #navigation li.submenu > ul {
    background-color: #d83249;
}
#header.scheme-light,
#header.scheme-light .nav-right > li,
#header.scheme-light .nav-left > li,
#header.scheme-light .search {
    background-color: #fff;
}
#header .branding.scheme-light,
#sidebar.scheme-light,
#sidebar.scheme-light #navigation,
#sidebar.scheme-light #sidebar-wrap:before,
#header.scheme-light li.toggle-right-sidebar > a {
    background-color: #fff !important;
}
.appWrapper.scheme-light .page-breadcrumb > li:first-child {
    background-color: rgba(0, 0, 0, 0.7);
}
#header.scheme-light {
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
}
#header.scheme-light .nav-right > li > a,
#header.scheme-light .nav-left > li > a {
    color: rgba(0, 0, 0, 0.7);
}
#header.scheme-light .nav-right > li > a:hover,
#header.scheme-light .nav-left > li > a:hover {
    color: rgba(0, 0, 0, 0.9);
}
#header.scheme-light .nav-left > li.divided-right {
    border-color: rgba(0, 0, 0, 0.1);
}
#header.scheme-light .search .form-control {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.2);
}
#header.scheme-light .search .form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
#header.scheme-light .search .form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
#header.scheme-light .search .form-control:-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
#header.scheme-light .search .form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}
#header.scheme-light .search .form-control:focus {
    border-color: rgba(0, 0, 0, 0.5);
}
#header.scheme-light .search .form-control:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
#header.scheme-light .search .form-control:focus::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
#header.scheme-light .search .form-control:focus:-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
#header.scheme-light .search .form-control:focus:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
#header.scheme-light .search:after {
    color: rgba(0, 0, 0, 0.3);
}
#header.scheme-light li.toggle-right-sidebar > a {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
#header .branding.scheme-light {
    border-right: 0px solid rgba(0, 0, 0, 0.1);
}
#header .branding.scheme-light .brand {
    color: #4a555b;
    background-image: url(../images/minovate-logo-color.png);
}
#sidebar.scheme-light,
#sidebar.scheme-light #sidebar-wrap:before {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}
#sidebar.scheme-light accordion .panel-group .panel > .panel-heading .panel-title,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel > .panel-heading .panel-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#sidebar.scheme-light accordion .panel-group .panel > .panel-heading .panel-title > a,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel > .panel-heading .panel-title > a {
    color: rgba(0, 0, 0, 0.5);
}
#sidebar.scheme-light accordion .panel-group .panel > .panel-heading .panel-title > a:hover,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel > .panel-heading .panel-title > a:hover {
    color: rgba(0, 0, 0, 0.8);
}
#sidebar.scheme-light accordion .panel-group .panel.closed > .panel-heading,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel.closed > .panel-heading {
    background-color: rgba(0, 0, 0, 0.05);
}
#sidebar.scheme-light accordion .panel-group .panel.closed > .panel-heading .panel-title > a,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel.closed > .panel-heading .panel-title > a {
    color: rgba(0, 0, 0, 0.8);
}
#sidebar.scheme-light accordion .panel-group .panel.closed > .panel-heading .panel-title > a:hover,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel.closed > .panel-heading .panel-title > a:hover {
    color: black;
}
#sidebar.scheme-light accordion .panel-group .panel .panel-body,
#sidebar.scheme-light #sidebar-wrap:before accordion .panel-group .panel .panel-body {
    color: rgba(0, 0, 0, 0.7);
}
#sidebar.scheme-light .summary .media .media-body,
#sidebar.scheme-light #sidebar-wrap:before .summary .media .media-body {
    color: rgba(0, 0, 0, 0.3);
}
#sidebar.scheme-light .summary .media .media-body .media-heading,
#sidebar.scheme-light #sidebar-wrap:before .summary .media .media-body .media-heading {
    color: rgba(0, 0, 0, 0.5);
}
#sidebar.scheme-light #navigation > li.open > a,
#sidebar.scheme-light #navigation > li:hover > a {
    background-color: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
}
#sidebar.scheme-light #navigation > li.open > i,
#sidebar.scheme-light #navigation > li:hover > i {
    color: rgba(0, 0, 0, 0.7);
}
#sidebar.scheme-light #navigation > li.active > a {
    background-color: #16a085;
    color: white;
}
#sidebar.scheme-light #navigation > li.active > i {
    color: white;
}
#sidebar.scheme-light #navigation > li a {
    color: rgba(0, 0, 0, 0.5);
}
#sidebar.scheme-light #navigation .dropdown > ul {
    background-color: rgba(0, 0, 0, 0.1);
}
#sidebar.scheme-light #navigation .dropdown > ul li:hover > a,
#sidebar.scheme-light #navigation .dropdown > ul li.active > a {
    color: #16a085;
}
#sidebar.scheme-light #navigation .submenu.open > a {
    color: rgba(0, 0, 0, 0.7) !important;
}
#sidebar.scheme-light #navigation .submenu > ul {
    background-color: transparent;
}
.appWrapper.light-scheme-color #navigation > li.active > a {
    background-color: rgba(255, 255, 255, 0.1);
}
.appWrapper.light-scheme-color #loading-bar .bar {
    background-color: #16a085;
}
.appWrapper.light-scheme-color #loading-bar-spinner .spinner-icon {
    border-top-color: #16a085;
    border-left-color: #16a085;
}
.appWrapper.light-scheme-color #loading-bar .peg {
    -webkit-box-shadow: #16a085 1px 0 6px 1px;
    box-shadow: #16a085 1px 0 6px 1px;
}
.appWrapper.light-scheme-color #navigation .dropdown > ul li:hover a,
.appWrapper.light-scheme-color #navigation .dropdown > ul li.active a {
    color: rgba(255, 255, 255, 0.8);
}
.appWrapper.light-scheme-color .pageheader .page-bar .page-breadcrumb > li:not(:first-child) > a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.sidebar-sm #sidebar.scheme-light,
.sidebar-xs #sidebar.scheme-light,
.hz-menu #sidebar.scheme-light {
    border-right: 0;
}
.sidebar-sm #sidebar.scheme-light #navigation,
.sidebar-xs #sidebar.scheme-light #navigation,
.hz-menu #sidebar.scheme-light #navigation {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.sidebar-sm #sidebar.scheme-light #navigation li > a,
.sidebar-xs #sidebar.scheme-light #navigation li > a,
.hz-menu #sidebar.scheme-light #navigation li > a {
    font-weight: 400;
}
.sidebar-sm #sidebar.scheme-light #navigation li.dropdown > ul,
.sidebar-sm #sidebar.scheme-light #navigation li.submenu > ul,
.sidebar-xs #sidebar.scheme-light #navigation li.dropdown > ul,
.sidebar-xs #sidebar.scheme-light #navigation li.submenu > ul,
.hz-menu #sidebar.scheme-light #navigation li.dropdown > ul,
.hz-menu #sidebar.scheme-light #navigation li.submenu > ul {
    background-color: #f2f2f2;
}
/* printing */

@media print {
    body,
    .custom-font {
        font-family: "Times New Roman", Times, serif;
        font-size: 12px;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 14px;
    }
    [class*="col-md-"] {
        float: left;
        display: inline-block;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666666666666%;
    }
    .col-md-10 {
        width: 83.33333333333334%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666666666666%;
    }
    .col-md-7 {
        width: 58.333333333333336%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666666666667%;
    }
    .col-md-4 {
        width: 33.33333333333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.666666666666664%;
    }
    .col-md-1 {
        width: 8.333333333333332%;
    }
    .visible-md-block,
    .visible-lg-block {
        display: block !important;
    }
    #header,
    #sidebar,
    #rightbar {
        display: none;
    }
    #content {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    #content .pageheader,
    #content .alert {
        display: none;
    }
    #content .add-nav .nav-heading,
    #content .add-nav .nav-tabs {
        display: none;
    }
    #content .price-total {
        float: right !important;
        width: 380px;
    }
    #content .page {
        padding: 0 !important;
    }
    .tile > .tile-header {
        display: none;
    }
}
@-webkit-keyframes littleFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes littleFadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.littleFadeInLeft {
    -webkit-animation-name: littleFadeInLeft;
    animation-name: littleFadeInLeft;
}
@-webkit-keyframes littleFadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes littleFadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.littleFadeInRight {
    -webkit-animation-name: littleFadeInRight;
    animation-name: littleFadeInRight;
}
@-webkit-keyframes littleFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes littleFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.littleFadeInUp {
    -webkit-animation-name: littleFadeInUp;
    animation-name: littleFadeInUp;
}
@-webkit-keyframes littleFadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes littleFadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.littleFadeInDown {
    -webkit-animation-name: littleFadeInDown;
    animation-name: littleFadeInDown;
}
@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
.ripple {
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
@-webkit-keyframes fadeOutText {
    0% {
        color: transparent;
    }
    80% {
        color: transparent;
    }
    100% {
        color: #fff;
    }
}
@-moz-keyframes fadeOutText {
    0% {
        color: transparent;
    }
    80% {
        color: transparent;
    }
    100% {
        color: #fff;
    }
}
@keyframes fadeOutText {
    0% {
        color: transparent;
    }
    80% {
        color: transparent;
    }
    100% {
        color: #fff;
    }
}
@-webkit-keyframes moveToRight {
    80% {
        -webkit-transform: translateX(350%);
    }
    81% {
        opacity: 1;
        -webkit-transform: translateX(350%);
    }
    82% {
        opacity: 0;
        -webkit-transform: translateX(350%);
    }
    83% {
        opacity: 0;
        -webkit-transform: translateX(-50%);
    }
    84% {
        opacity: 1;
        -webkit-transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveToRight {
    80% {
        -moz-transform: translateX(350%);
    }
    81% {
        opacity: 1;
        -moz-transform: translateX(350%);
    }
    82% {
        opacity: 0;
        -moz-transform: translateX(350%);
    }
    83% {
        opacity: 0;
        -moz-transform: translateX(-50%);
    }
    84% {
        opacity: 1;
        -moz-transform: translateX(-50%);
    }
    100% {
        -moz-transform: translateX(0%);
    }
}
@keyframes moveToRight {
    80% {
        transform: translateX(350%);
    }
    81% {
        opacity: 1;
        transform: translateX(350%);
    }
    82% {
        opacity: 0;
        transform: translateX(350%);
    }
    83% {
        opacity: 0;
        transform: translateX(-50%);
    }
    84% {
        opacity: 1;
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
@-webkit-keyframes scaleUp {
    80% {
        opacity: 0;
        -webkit-transform: scale(2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
    }
}
@-moz-keyframes scaleUp {
    80% {
        opacity: 0;
        -moz-transform: scale(2);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(2);
    }
}
@keyframes scaleUp {
    80% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}
@-webkit-keyframes fillToRight {
    to {
        width: 100%;
    }
}
@-moz-keyframes fillToRight {
    to {
        width: 100%;
    }
}
@keyframes fillToRight {
    to {
        width: 100%;
    }
}
@-webkit-keyframes emptyBottom {
    to {
        height: 100%;
    }
}
@-moz-keyframes emptyBottom {
    to {
        height: 100%;
    }
}
@keyframes emptyBottom {
    to {
        height: 100%;
    }
}
@-webkit-keyframes scaleFade {
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
    }
}
@-moz-keyframes scaleFade {
    50% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(2.5);
    }
}
@keyframes scaleFade {
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-webkit-keyframes dropDown {
    to {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes dropDown {
    to {
        opacity: 1;
        -moz-transform: scale(1);
    }
}
@keyframes dropDown {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@-webkit-keyframes dropDownFade {
    50% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}
@-moz-keyframes dropDownFade {
    50% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}
@keyframes dropDownFade {
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}
@-webkit-keyframes moveUp {
    0% {
        -webkit-transform: translateY(50%);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes moveUp {
    0% {
        -moz-transform: translateY(50%);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}
@keyframes moveUp {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-webkit-keyframes scaleFromUp {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes scaleFromUp {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}
@keyframes scaleFromUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@keyframes spinAround {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes toRightFromLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toRightFromLeft {
    49% {
        -moz-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-webkit-keyframes toLeftFromRight {
    49% {
        -webkit-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toLeftFromRight {
    49% {
        -moz-transform: translate(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toLeftFromRight {
    49% {
        transform: translate(-100%);
    }
    50% {
        opacity: 0;
        transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toBottomFromTop {
    49% {
        -moz-transform: translateY(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.2;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.2;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.2;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px, 0 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes slit {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(89deg);
        opacity: .5;
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes slit {
    50% {
        -moz-transform: translateZ(-250px) rotateY(89deg);
        opacity: .5;
        -moz-animation-timing-function: ease-out;
    }
    100% {
        -moz-transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes slit {
    50% {
        transform: translateZ(-250px) rotateY(89deg);
        opacity: 1;
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateZ(0) rotateY(0deg);
        opacity: 1;
    }
}
/*
.list-task table.listtable tr th:nth-child(3) {
    width: 250px;
}
*/
#table-scroll {
    height: 300px !important;
    overflow: auto;
    margin-top: 20px;
}
.intl-tel-input {
    display: block;
}
content-item button {
    margin-left: 5px;
    margin-right: 5px;
}
.header-scroll {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
li {
    list-style: none;
}
.lop-div-task {
    float: left;
    width: 100%;
    margin: 14px 0;
}
.botom-fuls {
    float: left;
    width: 100%;
}
/*------- ven-----*/

ul.availblty {
    overflow: hidden;
    width: auto;
    padding: 0;
}
ul.availblty li {
    border: 0.5px solid #ccc;
    float: left;
    padding: 16px 0;
    width: 90px;
}
.availblty a > label {
    color: #606060;
    float: left;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 3px;
    text-align: center;
    width: 100%;
}
.availblty a > span {
    color: #606060;
    float: left;
    font-size: 14px;
    text-align: center;
    width: 100%;
}
.u-hidden {
    display: none !important;
}
.availabilities-day-form .switch {
    background: #ebecec none repeat scroll 0 0;
    border: medium none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    height: 50px;
    margin-right: 0.5em;
    position: relative;
    -webkit-transition: background 0.2s ease-in-out 0s;
    transition: background 0.2s ease-in-out 0s;
    vertical-align: middle;
    width: 100px;
}
.availabilities-day-form .switch::after {
    background: #f5f6f6 none repeat scroll 0 0;
    border-radius: 100%;
    content: "";
    display: block;
    height: 40px;
    left: 5px;
    position: absolute;
    top: 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
}
.availabilities-day-form input:checked + .switch::after {
    left: 100%;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
}
.availabilities-day-form .switch::after {
    background: #f5f6f6 none repeat scroll 0 0;
    border-radius: 100%;
    content: "";
    display: block;
    height: 40px;
    left: 5px;
    position: absolute;
    top: 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
}
.availabilities-day-form input:checked + .switch {
    background: #66c093 none repeat scroll 0 0;
}
.availabilities-day-form .switch {
    background: #ebecec none repeat scroll 0 0;
    border: medium none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    height: 50px;
    margin-right: 0.5em;
    position: relative;
    -webkit-transition: background 0.2s ease-in-out 0s;
    transition: background 0.2s ease-in-out 0s;
    vertical-align: middle;
    width: 100px;
}
.radio-contr li > label {
    font-weight: normal;
}
h1.day-text {
    font-size: 23px;
    margin: 0;
    color: #fff;
}
.availabilities-day-form .modal-header {
    background-color: #00964b;
}
.availabilities-day-form .modal-dialog {
    width: 370px;
}
.tophln {
    float: left;
    width: 100%;
    font-size: 29px;
    font-family: proximanovasemibold;
}
.botom-fuls iframe {
    width: 100%;
}
.radio-live li {
    float: left;
    width: 100%;
}
.radio-live li textarea {
    float: left;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #8c8c8c;
    float: left;
    height: 100px;
    padding: 6px;
}
.apply4 .seldays {
    color: #505050;
    font-family: proximanovaregular;
    font-size: 17px;
}
.drop-conteli {
    background: #fcfcfc none repeat scroll 0 0;
    border: 1px solid #dcdcdc;
    float: left;
    margin: 20px 0 0;
    padding: 5px;
    width: 100%;
}
.hafl {
    float: left;
    margin: 5px 0;
    width: 50%;
}
.lefthalfi {
    float: left;
    width: 20px;
}
.righthalfi {
    float: left;
    padding: 0 0 0 10px;
    text-align: left;
    width: 90%;
}
.righthalfi > label {
    font-family: proximanovaregular;
    font-size: 19px;
    font-weight: normal;
    line-height: 21px;
}
.righthalfi p {
    float: left;
    width: 100%;
    color: #7c7c7c;
    float: left;
    line-height: 22px;
}
.radio-live.rdio-btnas li label {
    font-weight: normal;
    margin: 8px 2px 0 10px;
}
/*test by tamil*/

.errorclass {
    border-radius: 2px solid red !important;
}
.img-edit {
    display: inline-block;
    max-height: 25%;
    max-width: 25%;
}
/*test by tamil*/

.labele {
    font-size: 10 0px;
    font-weight: 400;
}
.switch {
    align: center;
    position: relative;
    display: block;
    vertical-align: top;
    width: 100px;
    height: 30px;
    padding: 3px;
    /*margin: 20px 10px; 10px 0*/

    background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
    border-radius: 18px;
    box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}
.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before,
.switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #aaaaaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}
.switch-input:checked ~ .switch-label {
    background: #369a3c;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}
.switch-handle {
    position: absolute;
    top: 1px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
    left: 74px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Transition
  ========================== */

.switch-label,
.switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}
.taskeditfrm .switch {
    margin: 20px auto;
    text-align: center;
    width: 60px;
}
.taskeditfrm .switch-input:checked ~ .switch-handle {
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
    left: 28px;
}
.wallet-opt .wallet-switch {
    padding: 0px!important;
    margin: 10px 0px;
}
.wallet-opt .tile-widget.p-20.wallet-switch label {
    display: inline-block;
    padding: 5px 0px;
}
.wallet-opt .tile-widget.p-20.wallet-switch label.switch {
    padding: 3px!important;
    width: 60px;
}
.wallet-opt .switch-input:checked ~ .switch-handle {
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
    left: 28px;
}
.cash-opt {
    padding: 0px!important;
    margin: 10px 0px;
}
.tile-widget.p-20.cash-opt label {
    display: inline-block;
    padding: 5px 0px;
}
.tile-widget.p-20.cash-opt label.switch {
    padding: 3px!important;
    width: 60px;
}
.cash-opt .switch-input:checked ~ .switch-handle {
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
    left: 28px;
}
.validerr {
    color: red;
}
.btnfixed {
    margin-top: -12px
}
.lng-fixed .table > tbody > tr td:nth-child(2) {
    word-wrap: break-word;
    word-break: break-all;
}
.lng-fixed input#name {
    width: 600px;
}
div[ng-controller="DatepickerDemoCtrl"] .input-group-btn {
    padding: 0px;
    vertical-align: top;
}
@media only screen and (max-width: 767px) {
    .appWrapper.sidebar-xs #header .nav-right .nav-profile > a > span {
        display: block !important;
    }
}
.curr-tbl .table.table,
.curr-tbl .table > thead > tr > th {
    text-align: center;
}
#sidebar accordion .panel-group .panel > .panel-collapse {
    display: block;
    height: inherit !important;
}
.wal-amt {
    display: inline-block;
    width: 100%;
    margin: 10px 0px;
}
span.msg-cont {
    width: 360px;
    float: left;
}
.page-login {
    padding: 130px 10px;
}
.rcnt-tsk .view-btn {
    padding: 5px 8px 5px 8px;
}
.rcnt-tsk table tbody {
    overflow: hidden;
    max-height: 310px;
    overflow-y: auto;
    width: 100%;
    display: block;
}
.rcnt-tsk table thead,
.rcnt-tsk table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.rcnt-tsk table.table > thead > tr th {
    padding-left: 5px;
}
.rcnt-tsk .table > tbody > tr td {
    padding-left: 15px;
    word-break: break-word;
}
.rcnt-tsk table.table > thead > tr th:first-child {
    padding-left: 15px;
}
.rcnt-tsk table.table > thead > tr th{
    padding-left: 15px;
}
.rcnt-usrs {
    min-height: 350px;
}
.img-sec {
    width: 22%;
    height: 150px;
    border: 5px solid #ddd;
}
.color-palete ul li {
    line-height: 30px;
}
.color-palete ul {
    padding: 0px;
}
.color-palete ul li.title {
    display: inline-block;
    width: 12%;
}
.color-palete .dropdown.settings .color-schemes li:not(.title) > a {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    vertical-align: middle;
}
.color-palete ul > li.divided-right {
    border-right: 0;
}

.activeColor {
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -o-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Loader */
.cssload-loader {
	position: relative;
	left: calc(50% - 31px);
	width: 62px;
	height: 62px;
	border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
	perspective: 780px;
}

.cssload-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.cssload-inner.cssload-one {
	left: 0%;
	top: 0%;
	animation: cssload-rotate-one 1.15s linear infinite;
    -o-animation: cssload-rotate-one 1.15s linear infinite;
    -ms-animation: cssload-rotate-one 1.15s linear infinite;
    -webkit-animation: cssload-rotate-one 1.15s linear infinite;
    -moz-animation: cssload-rotate-one 1.15s linear infinite;
	border-bottom: 3px solid #000000;
}

.cssload-inner.cssload-two {
	right: 0%;
	top: 0%;
	animation: cssload-rotate-two 1.15s linear infinite;
    -o-animation: cssload-rotate-two 1.15s linear infinite;
    -ms-animation: cssload-rotate-two 1.15s linear infinite;
    -webkit-animation: cssload-rotate-two 1.15s linear infinite;
    -moz-animation: cssload-rotate-two 1.15s linear infinite;
	border-right: 3px solid #e90019;
}

.cssload-inner.cssload-three {
	right: 0%;
	bottom: 0%;
	animation: cssload-rotate-three 1.15s linear infinite;
    -o-animation: cssload-rotate-three 1.15s linear infinite;
    -ms-animation: cssload-rotate-three 1.15s linear infinite;
    -webkit-animation: cssload-rotate-three 1.15s linear infinite;
    -moz-animation: cssload-rotate-three 1.15s linear infinite;
	border-top: 3px solid #f9f32f;
}

@keyframes cssload-rotate-one {
	0% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-one {
	0% {
		-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-one {
	0% {
		-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-one {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-one {
	0% {
		-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@keyframes cssload-rotate-two {
	0% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-two {
	0% {
		-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-two {
	0% {
		-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-two {
	0% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-two {
	0% {
		-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@keyframes cssload-rotate-three {
	0% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-three {
	0% {
		-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-three {
	0% {
		-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-three {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-three {
	0% {
		-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}
/* End Loader */

.page-login input{
    font-size: 14px;
}
.page-login input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
  font-style: normal;
  font-weight: bold;
}
.page-login input::-moz-placeholder { /* Firefox 19+ */
   color: #000;
   font-style: normal;
    font-weight: bold;
}
.page-login input:-ms-input-placeholder { /* IE 10+ */
   color: #000;
   font-style: normal;
    font-weight: bold;
}
.page-login input:-moz-placeholder { /* Firefox 18- */
   color: #000;
   font-style: normal;
    font-weight: bold;
}


/*admin button color changes*/
.text-greensea {
    color: #ff5400;
}
.btn.btn-greensea {
    background-color: #ff5400;
    border-color: #ce4b0c;
}
.btn.btn-greensea:hover, .btn.btn-greensea:active, .btn.btn-greensea.active {
    background-color: #e4540d;
    border-color: #fe8f59;
}
/*admin button color changes*/


/** Vasanth Start**/
.customer-detail{
    color: #000;
    line-height: 30px;
}
.user-detail{
    line-height: 30px;
    color: #000;
}
.user-detail h4{
    display: inline-block;
}
.tasker-detail{
    line-height: 30px;
    color: #000;
}
.task-detail{
    line-height: 30px;
    color: #000;
}
.payment-detail{
    line-height: 30px;
    color: #000;
}
.legend.user-detail{
    background-color:#16a085!important;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}
.legend.tasker-detail{
    background-color: #e05d6f!important;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}
.legend.task-detail{
    background-color: #418bca!important;
    border-top-right-radius:10px;
    border-top-left-radius:10px;

}
.legend.payment-detail{
    background-color: #3f4e62!important;
    border-top-right-radius:10px;
    border-top-left-radius:10px;

}
.grouping .wrap-reset{
    padding: 10px 10px;
}
.admin-bg-color .row{
    margin-right:0px!important;
}
.admin-bg-color h4{
    display: inline-block;
    margin-bottom: 0px;
}
.admin-bg-color i{
    font-size: 20px;
    padding: 0px 10px;
    padding-top: 6px;
    margin-top: 7px;
    color: #fff;
}
.admin-bg-color{
    background-color: rgba(155, 153, 153, 0.17);
    padding: 0px 0px;
    padding-left: 15px;
    margin-top: 20px;
    border:1px solid rgba(199, 197, 197, 0.35);
     border-top-right-radius:10px;
    border-top-left-radius:10px;

}
.order-detail{
    line-height: 30px;
}
.order-detail{
    line-height: 30px;
}
.billing-detail{
    line-height: 30px;
}
.billing-detail{
    padding: 0px;
    width: 100%;
}
.user-tasker{
    float: left;
    width: 100%;
}
.grouping{
    background-color: #fff;
    float: left;
    width: 100%;
}
.user-tasker.col-md-12{
    padding:0px;
    margin:0px;
}
.user-tasker .form-group.legend p{
    border:none;
}
.task-pay .form-group.legend p{
    border:none;
}
.task-pay{
    float: left;
    width: 100%;
    margin-bottom: 25px;
}
.task-pay.col-md-12{
    padding:0px;

}

.box-height{
    height: 200px;
    overflow-y:auto;
    overflow-x: hidden;
    padding:10px 0px;
}
.grouping .form-group{
    margin-bottom: 0px;
    padding-bottom: 5px;
}
.usr-det{
    line-height: 30px!important;
}
.custo-detail{

    float: left;
}
.custo-detail li{
    color: #000;
}
.genrl-sett {
    /*padding: 0px!important;
    margin: 0px!important;*/
}
.genrl-sett h4{
    color: #337ab7!important;
}
.genrl-sett label{
    font-size: 15px;
}
.genrl-sett label.switch{
    display: inline-block!important;
    width: 60px;
}
.genrl-sett .switch-input:checked ~ .switch-handle{
    left: 24px;
}
label.categry-label{
    padding: 5px 2px;
}
.billing-detail p{
    margin: 0px;
    padding: 0px;
}
.ui-widget-content{
    border-radius: 50%;
}
.invoice-text {
    color:#000;
}
.invoice-text li{
    color: #000;
}
.invoice-text li a{
    color: #000;
    text-decoration:none;
}
.invoice-text p{
    color: #000;
}
.invoice-text h6{
    color: #ff5400;
    font-size: 16px;
}
.invoice-text h3{
    margin-top: 5px!important;
}
.invoice-text th{
    color: #ff5400;
}
.invoice-text td a{
    color: #000;
}
.invoice-text td{
    color: #000;
}
/** Vasanth Start**/

/*---------------------*/

    .toolbr .tile-header
   {
    padding: 8px 15px;
    background-color: #3498db;
    color: #fff;
    border: 1px solid #217dbb;
    border-bottom: 1px solid #196090;
    background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3498db), to(#258cd1));
    background-image: -webkit-linear-gradient(top, #3498db, 0%, #258cd1, 100%);
    background-image: -moz-linear-gradient(top, #3498db 0%, #258cd1 100%);
    background-image: linear-gradient(to bottom, #3498db 0%, #258cd1 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3498db', endColorstr='#ff258cd1', GradientType=0);
    border-radius: 6px 6px 0px 0px;
    -webkit-box-shadow: inset 0px 1px 2px 0px rgba(255,255,255,0.3), 0px 2px 2px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0px 1px 2px 0px rgba(255,255,255,0.3),0px 2px 2px 0px rgba(0,0,0,0.2);
    box-shadow: inset 0px 1px 2px 0px rgba(255,255,255,0.3), 0px 2px 2px 0px rgba(0,0,0,0.2);
    }

   .toolbr .tile-header h1, .toolbr .tile-header h2, .toolbr .tile-header h3, .toolbr .tile-header h4
   {

    font-size: 16px;

   }


   /*map view in admin panel start */


/*hire-stp2 new design */
.profil-flow > li {
    width: 33.3%;
}
.profil-flow > li > i {
    margin: 0px 10px 0 0;
    float: left;
}
.profil-flow > li  > .txt-rit {
    display: inline;
    width: 90%;
    float: left;
}
.profil-flow > li > span {
    width: 100%;
    float: left;
}


/*map marker pin*/
.pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #0A950F;
  position: absolute;

  left: 50%;
  top: 0;
  margin: -20px 0px 0px -20px;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
}

.pin img{
  content: '';
  width: 30px;
  height: 30px;
  margin: 0px 0 0 0px;
  /*background: #2f2f2f;*/
  position: absolute;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  padding: 3px;
}
.pulse {
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 11px 0px 0px -12px;
  -webkit-transform: rotateX(55deg);
  -moz-transform: rotateX(55deg);
  -o-transform: rotateX(55deg);
  -ms-transform: rotateX(55deg);
  transform: rotateX(55deg);
  z-index: -2;
}
.pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -webkit-animation: pulsate 1s ease-out;
  -moz-animation: pulsate 1s ease-out;
  -o-animation: pulsate 1s ease-out;
  -ms-animation: pulsate 1s ease-out;
  animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 0 1px 2px #01DF01;
  box-shadow: 0 0 1px 2px #01DF01;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-o-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}

.gm-style .gm-style-iw {
    font-weight: 300;
    font-size: 13px;
    overflow: hidden;
    position: inherit!important;
    display: inline-block;
    margin: 0px auto!important;
    float: none;
    width: 300px!important;
    left: 25px !important;
}
.gm-style .gm-style-iw > div:first-child {
    width: 100%!important;
    overflow: inherit!important;
    overflow-y: auto!important;
}
   /*map view end*/

.section.tile{
    float: left;
    width: 100%;
    display: inline-block;
}
li.food-lst{
    margin: 10px 0px;
    float: left;
    width: 100%;
}
.foo-add-pg{
    float: left;
    width: 100%;
    display: inline-block;
}
.pin{
    background: #f71212;
}
.pulse:after{
    box-shadow: 0 0 1px 2px #000;
}
.tskr-padd.tsk-mapview{
    float: left;
    width: 100%;
    display: inline-block;
}
.tskr-padd.tsk-mapview figure{
    height: 70px;
    width: 70px;
    float: left;
}
.tskr-padd.tsk-mapview figure img{
    width: 100%;
    height: 100%;
}
ul.factloop {
    padding: 0px 0px 0px 15px;
}
.tskr-padd.tsk-mapview ul.factloop li p{
    line-height: 25px;
    color: #000;
}
.tskr-padd.tsk-mapview ul.factloop li i{
    color: #000;
}
.tskr-padd.tsk-mapview ul.factloop li h3{
    color: #ce1126;
}
.tskr-padd.tsk-mapview ul.factloop li i {
    color: #17863f;
}
.new-lst input{
    float: left;
    width: 235px;
    margin-right: 20px;
}
.new-lst span label{
    display: block;
}
/*.new-lst span{
    width: auto;
    float: left;
}*/
.new-lst span.dlt-btn label{
    visibility: hidden;
}
.col-md-12.new-lst {
    padding: 0px;
}
span.dlt-btn input {
    background: rgba(228, 27, 27, 0.82);
    color: #fff;
}
.new-lst{
    float: left;
    width: 100%;
}
.food-add-pge{
    float: left;
    width: 100%;
    margin-bottom: 50px;
}
.chg-btn.btn-ef.btn-ef-5 i{
    font-size: 100%;
}
.chg-btn.btn-ef.btn-ef-5.btn-ef-5b i{
    left: 0px;
    top: 3px;
}
.chg-btn{
    height: 30px;
    width: 30px;
}
button.chg-btn span{
    display: none;
}
#sidebar{
    width: 225px;
}
.appWrapper.header-fixed.aside-fixed #content{
    left: 225px;
}
.drvr-dashbrd .col-md-9{
    margin: 0px auto;
    float: none;
}
.drvr-dashbrd .tile-header{
    background-image: none;
    background-color:rgb(206, 18, 39);
    color: #fff;
    border: none;
}
 .drvr-dashbrd .table > tbody > tr > td{
        padding: 8px;
 }
 .drvr-dashbrd .table{
    border: 1px solid rgba(0, 0, 0, 0.26);
}
.drvr-dashbrd .table thead > tr{
    background: #fff;
    color: rgb(206, 17, 38);

}
.drvr-dashbrd .table tbody tr:nth-child(2n){
    background: rgba(0, 0, 0, 0.08);

}
.legend table{
    right: 24%!important;
}
span#pieLabel1P > div{
    padding: 0px 25px!important;
}
span#pieLabel1P div{
    padding: 0px 25px!important;
}






/*   body {
  background: #222;
}*/


#map-canvas {
  width: auto;
  height: 500px;
}

li.food-lst button.form-control.btn.btn-info {
    width: auto!important;
}
.new-lst select{
    width: 165px;
    margin-top: 24px;
    float: left
}
.new-lst .dlt-btn .btn-danger {
    margin: 0px;
}

.col-md-12.new-lst+ul li.food-lst {
    background: #f9f9f9;
    padding: 12px 20px;
    margin-bottom: 5px;
    width: 70%;
}

li.food-lst button.form-control.btn.btn-info+ul {
    padding-left: 20px;
}
button.form-control.btn.btn-info+ul {
    padding-left: 0px;
}
li.food-lst ul+button.form-control.btn.btn-info {
    margin-top: 7px;
}
li.food-lst ul+button.form-control.btn.btn-info{
    clear: both;
    margin: 0px;
    margin-top: 15px;
}
.col-md-12.new-lst+ul {
    width: 100%;
    float: left;
}

.lit-title{
	width: 100%;
	float: left;
	margin: 15px 0px;
	text-align: left;
	padding: 15px;
	background: #fff;
}


.usr-ic{
	float: right;

}
.lit-title span{
	margin:0px 5px;
}
.hlp-ic{
	float: right;
}

.usr-ic i{
	color: #ff5400;
}
.tskr-ic i{
	color: #5cb85c;
}
.driver-ic i{
	color: #9731F0;
}
.pin.driver {
    background: #9731f0;
}
.pin.user {
    background: #ff5400;
}
.pin.restaurant {
    background: #5cb85c;
}

.pulse.driver:after {
    box-shadow:0 0 1px 2px #3404D7;
}
.pulse.user:after {
    box-shadow: 0 0 1px 2px #F31D07;
}
.pulse.restaurant:after {
    box-shadow:  0 0 1px 2px #15B31F;
}
.no-pad{
    padding-left: 0px;
    padding-right: 0px;
}
.fltr{
    margin-bottom: 0px;
}
label.no-lab{
    visibility: hidden;
        display: block;
}


.tskr-padd.tsk-mapview{
    width: 375px;
}
span.muted.tskr-pop {
    padding: 5px;
    float: left;
    width: auto;
    border: 1px solid #22beef;
    margin: 10px 0px;
    font-size: 10px;
    border-radius: 3px;
}
a span.muted.tskr-pop:hover{
    background: #22beef;
    color: #fff;
}
.gm-style .gm-style-iw{
    width: 400px!important;
}

.chart {
 width: 500px;
 height: 500px;
}


/*veera admin dashboard*/

.offr-stng label.switch{
    float: left;
}
.offr-stng .form-group {
    float: left;
    display: block;
    margin: 10px 0px;
        width: 100%;
}
.tme-stngs label.switch{
    float: left;
}
.tme-stngs .form-group {
    float: left;
    display: block;
    margin: 10px 0px;
        width: 100%;
}
.switch{
    width: 75px;
}
.switch-input:checked ~ .switch-handle{
    left: 23px;
}


.usr_sts div {
    min-height: 130px;
    margin: 20px 0px;
    position: relative;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    border-radius: 2px;
}
.usr_sts div:hover {
    box-shadow: 5px 5px 2px 0px grey;
}
.actv div{
    background: #16a085;
}
.in_actv div{
    background: #d9534e;
}
.user div{
    background: #a40778;
}
.usr_sts div span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    left: 0px;
    right: 0px;
    margin: auto;
}
.usr_act_sts {
    display: inline-block;
    width: 100%;
    float: left;
}
.toolbr .tile-header{
    display: inline-block;
    width: 100%;
    color: #16a085;
    border:none;
    border-top: 1px solid #048269;
    border-bottom: 1px solid #048269;
    background-image: -webkit-linear-gradient(left, #ffffff,#ffffff,#16a085);
    border-radius: 0px;
}
.chat_full_list {
    display: inline-block;
    width: 100%;
    float: left;
    max-height: 250px;
    overflow: auto;
}

#chartdiv {
  width: 100%;
  height: 500px;
}
.dnt-sw label{
    visibility:hidden;
    display:block;

}
.dnt-sw	button{
        float: left !important;
         display: block;
}



/*---------28/11/17------------*/

.intl-tel-input .country-list {
   z-index: 999 !important;
}

.pageheader .page-bar {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.tile .tile-header .controls > li > a {
    color: #fff;
}
.tile .tile-header .controls > li > a:hover {
    color: #3e3e3e;
	}

	.chg-btn {
    margin-bottom: 5px;
}

hr.line-full {
    margin: 20px -20px;
    float: left;
    width: 100%;
}


.settings_page_wrap .form-group.col-sm-6 {
    padding: 0;
	margin: 0px!important;
}

.settings_page_wrap .form-group.col-sm-4 {
    padding: 0;
	margin: 0px!important;
}
.settings_page_wrap .form-group label{
    text-align: left;
    margin-bottom: 5px;
}
.settings_page_wrap .form-group.col-sm-6 .col-sm-12 {
    padding-left: 0;
    text-align: left;
    margin-bottom: 5px;
}
.settings_page_wrap .form-group.col-sm-4 .col-sm-12 {
    padding-left: 0;
    text-align: left;
    margin-bottom: 5px;
}

.select_all_btns {
    float: left;
    width: 100%;
}

.add_user_wrap .form-group.col-sm-6 {
    padding-left: 0;
}

.tile .tile-header, .tile .tile-widget, .tile .tile-body, .tile .tile-footer {
    position: relative;
    padding: 8px;
    float: left;
    width: 100%;
    background-color: #fff;
}
.pagecontent {
    float: left;
    width: 100%;
}

.btn_submit {
    margin-top: 25px;
}

.required_fieldds label.control-label {
    float: left;
    width: 100%;
}

.btn_rights {
    float: left;
    width: 100%;
    text-align: center;
    background-color: #fff;
}

.top_btns {
    float: right;
    margin: 10px 0px;
}
.tile-widget.p-20.cash-opt.col-sm-6 {
width: 48%!important;
    margin-left: 15px!important;
    float: left;
    margin: 0;
}

.feature-box-container .card .front .col-xs-8 {
    padding: 0;
}

.extra_fees_wrap label {
    float: left;
    width: 100%;
}

.tile .dvd.dvd-btm ul.controls select {
    margin-top: 4px;
}

.abt_wrap textarea {
    width: 100%;
}

.add_user_wrap.row {
    margin: 0;
}
.tile .dvd.dvd-btm ul.controls {
    top: 0!important;
}

.user.admin-bg-color div {
    background: transparent;
}

.admin-bg-color {
    background-color: #fff;
	}

	.crop_imgs {
       max-width: 100%;
}

.selectadd {
    margin-top: 10px;
}

form.payout_form,
div.payout_form {
    padding: 15px;
    background-color: #fff;
}

.food_prepare input {
    height: 35px;
}
img.crop_imgs.img-responsive {
    max-height: 200px;
    width: 100%;
    /* object-fit: cover; */
}


.email_tops label {
    float: left;
    width: 100%;
}

.email_tops textarea {
    float: left;
    width: 100%;
}


/*-----------admin scroll----------*/

.pagecontent.user_page_color  custom-table {
    width: 1300px;
    float: left;
}

.restaurant_panel_over custom-table {
    width: 1300px;
    float: left;
}

.payout_panel_over custom-table {
    width: 1300px;
    float: left;
}

.adminearnings_panel_over custom-table {
    width: 1600px;
    float: left;
}
.adminearnings_panel_over  {
    float: left;
    width: 100%;
}
.restaurant_panel_over  {
    float: left;
    width: 100%;
    overflow: auto; max-height: 410px;
}
.restaurant_panel_over1  {
    float: left;
    width: 100%;
}

.payout_panel_over {
    float: left;
    width: 100%;
    overflow: auto;
}
.pagecontent.user_page_color {
    float: left;
    width: 100%;
    overflow: auto;
}

.tile .btn {
    display: inline-block;
    padding: 6px 7px;}

	#header .branding.scheme-light .brand img {
    max-width: 155px;
    max-height: 35px;
    width: auto!important;
}


.view_block .ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
    line-height: .8;
    display: none;
}


.driver_page_wrap textarea {
    float: left;
    width: 100%;
}

.dashboard_page_style input#valid_from {
    background-color: #fff;
}


.restaurant_listss .ui-select-container {
    float: left;
    width: 100%;
}

.restaurant_listss .ui-select-container div {
    float: left;
    width: 100%;
}


.city_fare_design .form-group.legend h1,
.city_fare_design .form-group.legend h2,
.city_fare_design .form-group.legend h3,
.city_fare_design .form-group.legend h4,
.city_fare_design .form-group.legend h5,
.city_fare_design .form-group.legend h6 {
    color: #616f77!important;
    margin-bottom: 3px;
}
.dash_static .legend{
    display:none!important;
}
.mh-150{
    max-height:150px
}

.front .fa-4x {
    font-size: 75px!important;
}

/*bug fix on 14-3-18*/
.rcnt-tsk table.table > thead > tr th{
	border:0;
}
.url_wrap {
	display:block;
	float:left;
	width:100%;
}
.url_wrap input{
	width:70%;
	float:left;
}
.url_wrap .switch_wrap{
	width:30%;
	float:left;
	padding-left:15px;
}
text {
    font-family: 'OpenSansSemibold'!important;
}

.timepicker_holder table td {
    border: none;
 }

 .ui-cropper-loader{
	position:relative;
 }
 .ui-cropper-loader .loadersmall {
	position:absolute;
	top:50%;
	left:50%;
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%,-50%) rotate(0deg);
    -ms-transform: translate(-50%,-50%) rotate(0deg);
    transform: translate(-50%,-50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%,-50%) rotate(360deg);
    -ms-transform: translate(-50%,-50%) rotate(360deg);
    transform: translate(-50%,-50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%,-50%) rotate(0deg);
    -ms-transform: translate(-50%,-50%) rotate(0deg);
    transform: translate(-50%,-50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%,-50%) rotate(360deg);
    -ms-transform: translate(-50%,-50%) rotate(360deg);
    transform: translate(-50%,-50%) rotate(360deg);
  }
}

/**new bug fixes**/

.front .fa-4x {
    font-size: 40px!important;
    margin-top: 15px;
}
.admin_earnings_tabs .front .fa-4x:hover {
    font-size: 40px!important;
}
.front > .row  > .col-xs-9 {
    width: auto;
    float: right;
    max-width: 75%;
}
.front > .row  > .col-xs-7 {
    width: auto;
    float: right;
    max-width: 58.33333333%;
}

input[datepicker-options] + .dropdown-menu .btn-danger{
	margin-left:5px;
}
.page{
	overflow:auto;
}
.pagecontent {
    margin-bottom: 40px;
}

.currency-symbol-icon{
	color: rgba(0, 0, 0, 0.15);
	font-size: 37px;
    line-height: 73px;
	font-weight:bold;
	font-family:"Arial, sans-serif";
}

.col-md-12.new-lst div {
    float: left;
    width: 33%;
}

span.d_day {
    margin-top: 6px;
    display: block;
    font-weight: 700;
}

section#header {
    max-height: 50px;
    height: 50px;
}


ul#table-scroll a {
    padding: 15px;
}


ul#table-scroll i.pull-right.fa.fa-angle-right
{
    display: none;
}


/*---hc1---*/


#header .branding.scheme-light, #sidebar.scheme-light, #sidebar.scheme-light #navigation, #sidebar.scheme-light #sidebar-wrap:before, #header.scheme-light li.toggle-right-sidebar > a {
    background-color: #30374a !important;
}

.admin_earningss .form-group.col-sm-1.dnt-sw {
    margin-top: 12px;
}


.col-md-12.new-lst.curnt_custom .btn-danger {
    margin-left: 0!important;
    margin-top: 10px;
}

li.food-lst .btn-danger {
    margin-left: 15px!important;
}

ul.cutom_news .btn-danger {
    margin-left: 0!important;
    margin-top: 9px;
}

.min_hght
{
    min-height: 95px;
}



header.clearfix {
    max-height: 45px;
}

p.downs i {
    font-size: 21px;
}

p.downs {
    text-align: right;
    margin-top: 19px;
}

p.downs i {
    cursor: pointer;
}

.blob {
    font-weight: bold;
    margin: 10px;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(233, 0, 25, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.restaurant-name{
    color: yellow;
    font-weight: bold;
}
.restaurant-name:hover{
    color: #ff9900;

}
.buttonTable {
    margin-bottom: 20px;
}
.restaurantAmount{
    color:#ff1910;
}
.grandTotal{
    color:green;
    font-size: 1.2em;
}

.swal2-popup {
    font-size: 1.6rem !important;
}
.swal2-icon.swal2-warning::before {
    content: "";
}
.swal2-icon.swal2-info::before{
    content: "";
}
.swal-list-group{
    max-height:500px;
    overflow: auto;
}
.multiSelect .buttonLabel {
    padding: 4px !important;
    background: #fff;
    margin: 5px;
    border: 1px solid #cdd3d7;
    border-radius: 5px;
}
.ng-csv-import .label {
    display: none;
}

.switch{
    vertical-align: middle;
    margin-left: 10px !important;
}
.col-md-12.legend {
    margin-top: 30px;
}
.tile .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.tile .overlay .fa{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #333;
    font-size: 30px;
}

div.import > div {
    margin: 15px 0px;
}

div.import > div > span {
    color: white;
}

div.import > div> span > input[type="text"] {
    font-size: 18px;
    color: #d6492f;
    font-weight: bold;
    border-radius: none;
    outline: none;
}

div.import>div>div>input[type="file"] {
    color: transparent;
    padding: 0;
}

div.import>div>div>input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

div.import>div>div>input[type="file"]::before {
    content: attr(upload-button-label);
    display: inline-block;
    color: #616f77;
    border: 1px solid #cdd3d7;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
}

div.import>div>div>input[type="file"]:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
ul.nav-stacked li{
    margin: 10px; padding: 5px; border-bottom: 1px solid #cdd3d7;
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

ul.nav-stacked li button{
    float: right;
    /* position: relative; */
    display: inline-block;
    VERTICAL-ALIGN: middle;

}

multiselect {
    display: block;
}

multiselect > .btn-group {
    min-width: 180px;
}

multiselect .btn {
    width: 100%;
    background-color: #FFF;
}

multiselect .btn.has-error {
    border: 1px solid #a94442 !important;
    color: #db524b;
}

multiselect .dropdown-menu {
    max-height: 300px;
    min-width: 200px;
    overflow-y: auto;
}

multiselect .dropdown-menu .filter > input {
    width: 99%;
}

multiselect .dropdown-menu .filter .glyphicon {
    cursor: pointer;
    pointer-events: all;
}

multiselect .dropdown-menu {
    width: 100%;
    box-sizing: border-box;
    padding: 2px;
}

multiselect > .btn-group > button {
    padding-right: 20px;
}

multiselect > .btn-group > button > .caret {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid black;
    right: 5px;
    top: 45%;
    position: absolute;
}

multiselect .dropdown-menu > li > a {
    padding: 3px 10px;
    cursor: pointer;
}

multiselect .dropdown-menu > li > a i {
    margin-right: 4px;
}

.glyphicon-none:before {
    content: "\e013";
    color: transparent !important;
}

 /*The switch - the box around the slider */
.switch.custom {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
}

/* Hide default HTML checkbox */
.switch.custom input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #13A084;
}

input:focus + .slider {
    box-shadow: 0 0 1px #13A084;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.slider-label{
    padding-top:5px;
    margin-right: 2px;
    font-size: 15px!important;
}

.pen body {
    padding-top:50px;
}

/* Social Buttons - Twitter, Facebook, Google Plus */
.btn-twitter {
    background: #00acee;
    color: #fff
}
.btn-twitter:link, .btn-twitter:visited {
    color: #fff
}
.btn-twitter:active, .btn-twitter:hover {
    background: #0087bd;
    color: #fff
}

.btn-instagram {
    color:#fff;
    background-color:#3f729b;
    border-color:rgba(0,0,0,0.2);
}
.btn-instagram:focus,.btn-instagram.focus {
    color:#fff;
    background-color:#305777;
    border-color:rgba(0,0,0,0.2);
}
.btn-instagram:hover {
    color:#fff;
    background-color:#305777;
    border-color:rgba(0,0,0,0.2);
}

.btn-github {
    color:#fff;
    background-color:#444;
    border-color:rgba(0,0,0,0.2);
}
.btn-github:focus,.btn-github.focus {
    color:#fff;
    background-color:#2b2b2b;
    border-color:rgba(0,0,0,0.2);
}
.btn-github:hover {
    color:#fff;
    background-color:#2b2b2b;
    border-color:rgba(0,0,0,0.2);
}

/* MODAL FADE LEFT RIGHT BOTTOM */
.modal.fade:not(.in).left .modal-dialog {
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
}
.modal.fade:not(.in).right .modal-dialog {
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
}
.modal.fade:not(.in).bottom .modal-dialog {
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
}

.modal.right .modal-dialog {
    position:absolute;
    top:0;
    right:0;
    margin:0;
    width:40%;
}

.modal.left .modal-dialog {
    position:absolute;
    top:0;
    left:0;
    margin:0;
}

.modal.left .modal-dialog.modal-sm {
    max-width:300px;
}

.modal.left .modal-content, .modal.right .modal-content {
    min-height:100vh;
    border:0;
}
.thead-dark tr th {
    background-color: #0c7b93;
    color: white;
}
.menuitem-control{
    width: 5%!important;
}
.eye {
    max-height: 20px;
    margin: auto;
    opacity: 0.3;
    float:left;
}
.modify-container{
    display: flex;
    align-items: center;
}
.eye-container{
    display: flex;
    align-items: center;
}
.ui-state-highlight {
}
.ui-sortable-helper{
    display: table;

}
.largeWidth {
    width: 100%;
}
.mediumWidth {
    width: 50%;
}

.flex-center{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.img-wrap {
    position: relative;
    display: inline-block;
    font-size: 0;
}
.img-wrap .close {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 8;
    background-color: #eee;
    padding: 7px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    opacity: .2;
    text-align: center;
    font-size: 22px;
    line-height: 10px;
    border-radius: 50%;
}
.img-wrap:hover .close {
    opacity: 1;
}

table tr:nth-child(odd) input{
    background-color: #fff;
}

table tr:nth-child(even) input{
    background-color: #f7f7f7;
}

.multiSelect .buttonLabel {
    padding: 4px !important;
    background: #fff;
    margin: 5px;
    border: 1px solid #cdd3d7;
    border-radius: 5px;
}
.ng-csv-import .label {
    display: none;
}

.switch{
    vertical-align: middle;
    margin-left: 10px !important;
}
.col-md-12.legend {
    margin-top: 30px;
}
.tile .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.tile .overlay .fa{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #333;
    font-size: 30px;
}

div.import > div {
    margin: 15px 0px;
}

div.import > div > span {
    color: white;
}

div.import > div> span > input[type="text"] {
    font-size: 18px;
    color: #d6492f;
    font-weight: bold;
    border-radius: none;
    outline: none;
}

div.import>div>div>input[type="file"] {
    color: transparent;
    padding: 0;
}

div.import>div>div>input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

div.import>div>div>input[type="file"]::before {
    content: attr(upload-button-label);
    display: inline-block;
    color: #616f77;
    border: 1px solid #cdd3d7;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
}

div.import>div>div>input[type="file"]:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
ul.nav-stacked li{
    margin: 10px; padding: 5px; border-bottom: 1px solid #cdd3d7;
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

ul.nav-stacked li button{
    float: right;
    /* position: relative; */
    display: inline-block;
    VERTICAL-ALIGN: middle;

}


.red-border-tr{
    border: 1px double red;
}

.red-border-td{
    border: 1px double red!important;
}

.green-border-tr{
    border: 1px double #962fbf;
}

.green-border-td{
    border: 1px double #962fbf!important;
}

.green-border-td-v2{
    border: 1px double #fa7e1e!important;
}


.green-border-td-v3{
    border: 1px double #065535!important;
}

.green-border-td-v4{
    border: 1px double #df88b7!important;
}


.green-border-td-v5{
    border: 1px double #ffbb00!important;
}

.green-border-td-v6{
    border: 1px double #c767b0!important;
}

.green-border-td-v7{
    border: 1px double #9bca53!important;
}

.blue-border-tr{
    border: 1px double blue;
}

.blue-border-td{
    border: 1px double blue!important;
}

.orange-border-tr{
    border: 1px double #ff9966;
}

.info-border-tr{
    border: 1px double #2196F3;
}

.info-border-td-v1{
    border: 1px double #2196F3;
}

.info-border-td-v2{
    border: 1px double #a2beff;
}

.info-border-td-v3{
    border: 1px double #6667ab;
}

.orange-border-td{
    border: 1px double #ff9966!important;
}

ul.detilas-respop {
    float: left;
    width: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.mod-bodyleft {
    float: left;
    width: 80%;
}
.mod-bodyright {
    float: right;
}
ul.detilas-respop p {
    padding: 3px 0px;
    margin: 0px;
}
.detilas-respop p {
    font-size: 14px;
    color: #161616;
    font-weight: 600;
    padding: 2px 0px 20px;
}

.add-food  p {
    font-size: 14px;
    color: #161616;
    font-weight: 600;
    padding: 2px 0px 20px;
}

.add-food span {
    font-size: 14px;
    color: #161616;
}

.add-food basepack-name  .label , .add-food .basepack-name  .label  {
    color: #fff !important;
}

.body-struct h5 {
    color: #161616;
    font-size: 15px;
    margin: 15px 0px 20px;
    /* font-family: 'DINNextLTPro-Medium'; */
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    width:100%;
}
.body-struct label{
    font-weight: normal !important;
}
/*.detilas-respop.basepack .mod-bodyleft{*/
/*    width:100%;*/
/*}*/
.detilas-respop.basepack .mod-bodyleft .mod-bodyleft {
    padding-left: 15px;
}
.detilas-respop.basepack h6 {
    font-size: 15px;
    font-weight: 600;
    color: #bb2030;
}
.body-struct  textarea.form-control {
    border-radius: 0px;
    height: 120px!important;
    border: 1px solid #cccccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.res-footer {
    border-bottom: 1px solid #eaeaea;
    float: left;
    width: 100%;
}
.res-modelsfooter{
    padding: 20px;
    float: left;
    width: 100%;
    margin: 0px;
    border-bottom: 1px solid #eaeaea;
    background-color: #fbfbfb;
}
.resfooter-right button {
    background-color: #ce1127 !important;
    color: #fff !important;
    border-color: #ce1127;
    padding: 7px 10px;
    width: 100%;
    height: 40px;
    border-radius: 0px;
    font-size: 15px;
    text-transform: uppercase;
}
.resfooter-left,.resfooter-right {
    width: 50%;
    float: left;
}
.resfooter-left {
    width: 50%;
    float: left;
}
.pop-maxmin{
    width: 210px;
}
.pop-maxmin button.btn.btn-default.btn-number {
    height: 40px;
    border-radius: 0px !important; ;
    padding: 0;
    width: 40px;
    border: 1px solid #cccccc;
    background-color: #fbfbf9;
}
.pop-maxmin form{
    height: 40px;
    width:70px;
    display: table-cell;
}
.pop-maxmin input.form-control.input-number{
    height: 40px;
    border-radius: 0px;
    width: 100%;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;

    border: 1px solid #cccccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    background-color: #fbfbf9;
}
.pop-maxmin .input-number[type=number]::-webkit-inner-spin-button,
.pop-maxmin .input-number[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pop-maxmin .input-group-addon, .input-group-btn{
    width:auto;
}
.pop-maxmin button.btn.btn-default.btn-number.left {
    background-color: #efefed;
}
.pop-maxmin span.glyphicon.glyphicon-minus {
    color: #636162;
    font-size: 11px;
}
.pop-maxmin span.glyphicon.glyphicon-plus {
    color: #ce2134;
    font-size: 11px;
}
.dropzone {
    padding: 2rem;
    text-align: center;
    border: dashed 1px #979797;
    position: relative;
    margin: 0 auto;
}

.dragover{
    border: 1px solid #979797;
}

.dropzone input {
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dropzone label {
    color: white;
    width: 183px;
    height: 44px;
    border-radius: 21.5px;
    background-color: #db202f;
    padding: 8px 16px;
}

.dropzone h3 {
    font-size: 20px;
    font-weight: 600;
    color: #38424c;
}

#icon-upload{
    font-size: 60px;
}

.fileover {
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.files-list {
    margin-top: 1.5rem;
    display: flex;
    flex-grow: 1;
}

.files-list .single-file {
    display: flex;
    padding: 0.5rem;
    justify-content: space-between;
    align-items: center;
    border: dashed 1px #979797;
    margin-bottom: 1rem;
    width: 100%;
}
.files-list img.delete {
    margin-left: 0.5rem;
    cursor: pointer;
    align-self: flex-end;
}

.files-list.name {
    font-size: 14px;
    font-weight: 500;
    color: #353f4a;
    margin: 0;
}

.files-list.size {
    font-size: 12px;
    font-weight: 500;
    color: #a4a4a4;
    margin: 0;
    margin-bottom: 0.25rem;
}

#info {
    margin-right: auto!important;
    width: 100%!important;
    margin-left: 3rem!important;
}

.delete,.image-icon{
    font-size: 40px;
}

.progress-cont {
    height: 7px;
    width: 100%;
    border-radius: 4px;
    background-color: #d0d0d0;
    position: relative;
}
.progress-cont .progress {
    width: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 4px;
    background-color: #4c97cb;
    transition: 0.5s all;
}


/* drop files css*/

@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px); } }
@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px); } }
@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); } }
@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); } }
@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px); }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px); } }
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); } }
@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); } }
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); } }
/*.dropzone, .dropzone * {*/
/*    box-sizing: border-box; }*/

.dropzone {
    min-height: 150px;
    /*border: 2px solid rgba(0, 0, 0, 0.3);*/
    background: white;
    padding: 20px 20px; }
.dropzone.dz-clickable {
    cursor: pointer; }
.dropzone.dz-clickable * {
    cursor: default; }
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
    cursor: pointer; }
.dropzone.dz-started .dz-message {
    display: none; }
.dropzone.dz-drag-hover {
    border-style: solid; }
.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5; }
.dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
.dropzone .dz-preview:hover {
    z-index: 1000; }
.dropzone .dz-preview:hover .dz-details {
    opacity: 1; }
.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd); }
.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1; }
/*.dropzone .dz-preview.dz-image-preview {*/
/*    background: white; }*/
.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none; }
.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline; }
.dropzone .dz-preview:hover .dz-details {
    opacity: 1; }
.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%; }
.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px; }
.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap; }
.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8); }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis; }
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent; }
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px; }
.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px); }
.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
   }
.dropzone .dz-preview .dz-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    /*z-index: 500;*/
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px; }
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px; }
.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in; }
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite; }
.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden; }
.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out; }
.dropzone .dz-preview.dz-error .dz-error-message {
    display: block; }
.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto; }
.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white; }
.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626; }


.bootstrap-filestyle{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo {
    max-width: 70px;
}

span.current_price {
    color: #be2626;
    font-family: 'SofiaPro-Bold'!important;
    font-size: 14px;

}
span.striked {
    color: #9b9a9b;
    font-family: 'SofiaPro-Medium';
    margin-left: 10px;
    font-size: 14px;
    text-decoration: line-through;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes rotate {
    to {transform: rotate(360deg);}
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: rotate 1s linear infinite;
}


.notification {
    position: relative;
}



.notification .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 7px 10px;
    border-radius: 50%;
    background: green;
    color: white;
}

.container-welcom-text{
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text {
    text-transform: uppercase;
    background: linear-gradient(to right, #4f5973 0%, #c03f39 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    text-align: center;

}

.image-welcom{
    margin-bottom: 1rem;
    width: 200px;
}

.tag{
    background: #ce1127 !important;
    border-radius: 25px;
    padding: 5px 10px 5px 10px;
    color: white;
    margin-right:5px;
}

.inst{
    font-size: 16px;
    font-weight: bold;
}

.box-inst{
    margin-left: 8px;
    background: #EAEAEA;
    margin-top: 10px;
    border-radius:15px;
    min-height: 58px;
}


/*Chat Box Style*/

.container{max-width:1170px; margin:auto;}
img{ max-width:100%;}
.inbox_people {
    background: #f8f8f8 none repeat scroll 0 0;
    float: left;
    overflow: hidden;
    width: 40%; border-right:1px solid #c4c4c4;
}
.inbox_msg {
    border: 1px solid #c4c4c4;
    clear: both;
    overflow: hidden;
}
.top_spac{ margin: 20px 0 0;}


.recent_heading {float: left; width:40%;}
.srch_bar {
    display: inline-block;
    text-align: right;
    width: 60%;
}
.headind_srch{ padding:10px 29px 10px 20px; overflow:hidden; border-bottom:1px solid #c4c4c4;}

.recent_heading h4 {
    color: #05728f;
    font-size: 21px;
    margin: auto;
}
.srch_bar input{ border:1px solid #cdcdcd; border-width:0 0 1px 0; width:80%; padding:2px 0 4px 6px; background:none;}
.srch_bar .input-group-addon button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    padding: 0;
    color: #707070;
    font-size: 18px;
}
.srch_bar .input-group-addon { margin: 0 0 0 -27px;}

.chat_ib h5{ font-size:15px; color:#464646; margin:0 0 8px 0;}
.chat_ib h5 span{ font-size:13px; float:right;}
.chat_ib p{ font-size:14px; color:#989898; margin:auto}
.chat_img {
    float: left;
    width: 11%;
}
.chat_ib {
    float: left;
    padding: 0 0 0 15px;
    width: 88%;
}

.chat_people{ overflow:hidden; clear:both;}
.chat_list {
    border-bottom: 1px solid #c4c4c4;
    margin: 0;
    padding: 18px 16px 10px;
}
.inbox_chat { height: 550px; overflow-y: scroll;}

.active_chat{ background:#ebebeb;}

.incoming_msg_img {
    display: inline-block;
    width: 6%;
}
.incoming_msg{
    margin-right: 15px;
}
.received_msg {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: top;
    width:100%;
}
.received_withd_msg p {
    background: #ebebeb none repeat scroll 0 0;
    border-radius: 3px;
    color: #646464;
    font-size: 14px;
    margin: 0;
    padding: 5px 10px 5px 12px;
    width: 100%;
}
.user{
    font-weight:bold!important;
    font-size: 16px!important;
}
.comment-content{
    margin-left:15px!important;
}
.time_date {
    color: #747474;
    display: block;
    font-size: 12px;
    margin: 0 0 8px;
}
/*.received_withd_msg { width: 57%;}*/
.mesgs {
    float: left;
    /*padding: 30px 15px 0 25px;*/
    width: 100%;
}

.sent_msg p {
    background: #05728f none repeat scroll 0 0;
    border-radius: 3px;
    font-size: 14px;
    margin: 0; color:#fff;
    padding: 5px 10px 5px 12px;
    width:100%;
}
.outgoing_msg{ overflow:hidden; margin:26px 0 26px;}
.sent_msg {
    float: right;
    width: 46%;
}
.input_msg_write input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    color: #4c4c4c;
    font-size: 15px;
    min-height: 48px;
    width: 100%;
}

.type_msg {border-top: 1px solid #c4c4c4;position: relative;}
.msg_send_btn {
    background: #05728f none repeat scroll 0 0;
    border: medium none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    height: 33px;
    position: absolute;
    right: 0;
    top: 11px;
    width: 33px;
}
.messaging { padding: 0 0 50px 0;}
.msg_history {
    overflow-y: auto;
}


.round-week{
    /*padding: 1rem;*/
    /*border: 1px solid;*/
    /*border-radius: 25px;*/
    /*margin-right: 5px;*/
    /*cursor:default!important;*/
    /*font-size: 12px;*/

    display: inline-block;
    border-radius: 25px;
    background: #dddddd;
    height: 40px;
    width: 40px;
    margin-right: 3px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.clicked-week{
    background-color: #ce1127;
    color: #fff;
    border: none;
}

#include_exclude.checked{
    background: #df3b3a;
    border-color: #df3b3a;
}

.toast-title-cancel-user{
    font-weight: bold;
    font-size:16px;
}


#toast-container > .toast-error{
    width:100%;
}



/* Notification drop down style*/



.dropdown-menu {
    border: medium none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: none;
    float: left;
    font-size: 12px;
    left: 0;
    list-style: none outside none;
    padding: 0;
    position: absolute;
    text-shadow: none;
    top: 100%;
    z-index: 9998;
    border: 1px solid #D9DEE4;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.notification-item-li {
    background: #f7f7f7;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 6px 6px 0;
    width: 96% !important;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}


ul.msg_list li a {
    padding: 3px 5px !important;
}

.dropdown-menu.msg_list span {
    white-space: normal;
}

ul.msg_list li a .time {
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    position: absolute;
    right: 35px;
}

ul.msg_list li a .message {
    display: block !important;
    font-size: 11px;
}


ul.msg_list li a .image img {
    border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    float: left;
    margin-right: 10px;
    width: 11%;
}

ul.msg_list li a .time {
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    position: absolute;
    right: 35px;
}

/*.notification-item:hover{*/
/*    background-color: #E1E1E8;*/
/*}*/

.msg-list-items{
    overflow: auto;
    height: 300px;
}

.notification-list{
background: #f7f7f7;
}

.notification-list:hover{
    background-color: #E1E1E8;
}

.ring-bell{
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

.row-ring{
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% { -webkit-transform: rotateZ(0); }
    1% { -webkit-transform: rotateZ(30deg); }
    3% { -webkit-transform: rotateZ(-28deg); }
    5% { -webkit-transform: rotateZ(34deg); }
    7% { -webkit-transform: rotateZ(-32deg); }
    9% { -webkit-transform: rotateZ(30deg); }
    11% { -webkit-transform: rotateZ(-28deg); }
    13% { -webkit-transform: rotateZ(26deg); }
    15% { -webkit-transform: rotateZ(-24deg); }
    17% { -webkit-transform: rotateZ(22deg); }
    19% { -webkit-transform: rotateZ(-20deg); }
    21% { -webkit-transform: rotateZ(18deg); }
    23% { -webkit-transform: rotateZ(-16deg); }
    25% { -webkit-transform: rotateZ(14deg); }
    27% { -webkit-transform: rotateZ(-12deg); }
    29% { -webkit-transform: rotateZ(10deg); }
    31% { -webkit-transform: rotateZ(-8deg); }
    33% { -webkit-transform: rotateZ(6deg); }
    35% { -webkit-transform: rotateZ(-4deg); }
    37% { -webkit-transform: rotateZ(2deg); }
    39% { -webkit-transform: rotateZ(-1deg); }
    41% { -webkit-transform: rotateZ(1deg); }

    43% { -webkit-transform: rotateZ(0); }
    100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
    0% { -moz-transform: rotate(0); }
    1% { -moz-transform: rotate(30deg); }
    3% { -moz-transform: rotate(-28deg); }
    5% { -moz-transform: rotate(34deg); }
    7% { -moz-transform: rotate(-32deg); }
    9% { -moz-transform: rotate(30deg); }
    11% { -moz-transform: rotate(-28deg); }
    13% { -moz-transform: rotate(26deg); }
    15% { -moz-transform: rotate(-24deg); }
    17% { -moz-transform: rotate(22deg); }
    19% { -moz-transform: rotate(-20deg); }
    21% { -moz-transform: rotate(18deg); }
    23% { -moz-transform: rotate(-16deg); }
    25% { -moz-transform: rotate(14deg); }
    27% { -moz-transform: rotate(-12deg); }
    29% { -moz-transform: rotate(10deg); }
    31% { -moz-transform: rotate(-8deg); }
    33% { -moz-transform: rotate(6deg); }
    35% { -moz-transform: rotate(-4deg); }
    37% { -moz-transform: rotate(2deg); }
    39% { -moz-transform: rotate(-1deg); }
    41% { -moz-transform: rotate(1deg); }

    43% { -moz-transform: rotate(0); }
    100% { -moz-transform: rotate(0); }
}

@keyframes ring {
    0% { transform: rotate(0); }
    1% { transform: rotate(30deg); }
    3% { transform: rotate(-28deg); }
    5% { transform: rotate(34deg); }
    7% { transform: rotate(-32deg); }
    9% { transform: rotate(30deg); }
    11% { transform: rotate(-28deg); }
    13% { transform: rotate(26deg); }
    15% { transform: rotate(-24deg); }
    17% { transform: rotate(22deg); }
    19% { transform: rotate(-20deg); }
    21% { transform: rotate(18deg); }
    23% { transform: rotate(-16deg); }
    25% { transform: rotate(14deg); }
    27% { transform: rotate(-12deg); }
    29% { transform: rotate(10deg); }
    31% { transform: rotate(-8deg); }
    33% { transform: rotate(6deg); }
    35% { transform: rotate(-4deg); }
    37% { transform: rotate(2deg); }
    39% { transform: rotate(-1deg); }
    41% { transform: rotate(1deg); }

    43% { transform: rotate(0); }
    100% { transform: rotate(0); }
}


.bell-adjusted-admin{
    width: 8%!important;
    float: right!important;
}

.bell-adjusted-subadmin{
    width: 15%!important;
    float: right!important;
}

.close-icon{
    float: right;
    margin-right: 10px;
    margin-top: 10px
}
.pulsate-fwd{-webkit-animation:pulsate-fwd .5s ease-in-out infinite both;animation:pulsate-fwd .5s ease-in-out infinite both}
.glowing-fwd{-webkit-animation: glowing 500ms ease-in-out infinite both;
    -moz-animation: glowing 500ms ease-in-out infinite both;
    -o-animation: glowing 500ms ease-in-out infinite both;
    animation: glowing 500ms ease-in-out infinite both;}

@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes glowing {
    0% { background-color: #B20000;-webkit-transform:scale(1);transform:scale(1)  }
    50% { background-color: #ff0000; -webkit-transform:scale(1.3);transform:scale(1.2)}
    100% { background-color: #B20000;-webkit-transform:scale(1);transform:scale(1) }
}


@keyframes glowing {
    0% { background-color: #d9534f;-webkit-transform:scale(1);transform:scale(1)}
    50% { background-color: #ff0000; -webkit-transform: scale(1.3);transform: scale(1.2) }
    100% { background-color: #d9534f; -webkit-transform: scale(1);transform: scale(1) }
}

.divider-custom{
    border-bottom: 1px dotted #cacaca;
    padding-bottom: 5px;
    margin-bottom: 1rem;
    width: 100%;
}

.btn-upload{
    display: inline-block;
    color: #616f77;
    border: 1px solid #cdd3d7;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    background: none;
}
/*.multi-select-city button {*/
/*    width: 100%;              !* Or whatever width you like *!*/
/*}*/



/*open close all restaurant modal */

.body-modal {
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    /*background-color: #f5f5f5;*/
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.body-modal .modal-content {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 20px;
    padding: 20px 10px 38px;
}
.body-modal .modal-content button.close {
    width: 30px;
    font-size: 20px;
    /*color: #c0c5cb;*/
    align-self: flex-end;
    background-color: transparent;
    border: none;
    margin-bottom: 10px;

}
.body-modal .modal-content i {
    width: 82px;
    margin-bottom: 15px;
    border-color: #facea8;
    color: #f8bb86;
}
.body-modal .modal-content p {
    margin-bottom: 20px;
    font-size: 18px;
}
.body-modal .modal-content button.accept {
    background-color: #ed6755;
    border: none;
    border-radius: 5px;
    /*width: 200px;*/
    padding: 14px;
    font-size: 16px;
    color: white;
    box-shadow: 0px 6px 18px -5px rgba(237, 103, 85, 1);
}


.body-modal .modal-content .close{
    margin-left: auto!important;
}

.multi-select-city{
    margin-bottom: 20px;
}



/*Tabs Style*/

.tabs-link:hover,
.tabs-link:focus{
    text-decoration: none;
    outline: none;
}
.tab{ font-family: 'Barlow', sans-serif; }
.tab .nav-tabs{ border: none; }
.tab .nav-tabs li a{
    color: #555;
    background: #fff;
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 20px 14px;
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0.3s;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a:hover{
    color: #1d627c;
    background: #fff;
    border: none;
}
.tab .nav-tabs li a:before,
.tab .nav-tabs li a:after{
    content: "";
    background-color: rgba(29,98,124,0.09);
    width: 100%;
    height: 80%;
    position: absolute;
    top: -80%;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a:after{
    background-color: #1d627c;
    top: auto;
    bottom: -4px;
    height: 4px;
    clip-path: none;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before{
    top: 0;
}
.tab .nav-tabs li.active a:after,
.tab .nav-tabs li a:hover:after{
    bottom: 0;
}
.tab .tab-content{
    color: #555;
    background: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 20px;
    border-bottom: 4px solid #1d627c;
    box-shadow: 5px 5px 10px #cdcdcc;
    position: relative;
}
@media only screen and (max-width: 479px){
    .tab .nav-tabs{ margin: 0 0 10px; }
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
    }
}
.numberCircle {
    width: 25px;
    margin-left: 19px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    border: 2px solid #666;
}
.spinner {
    margin: 10px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.ctd {
    font-size: 20px;
    text-align: left;
    border: 2px solid;
    width: fit-content;
    padding: 6px;
}
.modal-footer .row .cancelBtn{
    padding-top: 6px;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
           transform: scaleY(1.0);
           -webkit-transform: scaleY(1.0);
       }
}

.acquisition-modal-window .modal-dialog {
    width: 700px;
}
#searchForm {
    display: block;
    margin: auto;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

#searchForm .form-group  {
    margin-top:10px ;
 
}
#searchForm .form-group input {
    margin-top:10px !important;
    width: 70%;
    margin: auto;
}
#searchForm .form-group input[type="checkbox"] {
    width: inherit;
    margin: 0px;
    margin-right: 10px;
}

#searchForm .form-group .help-block {
    color: #ff635d;   
}
#searchForm .form-group .searchFormBtn {
    width: 40% !important;
    background-color: #6316DB;
    border-radius: 10px !important;
    color: #fafbfb;
    margin-top:10px;
}

.json-tree {
    list-style-type: none;
    padding-left: 1em;
    font-family: Consolas, monospace;
    background-color: #f8f8f8;
    border-left: 3px solid #d3d3d3;
    margin-top: 5px;
}

.json-tree li {
    line-height: 1.6;
    position: relative;
    padding: 2px 0;
    border-bottom: 1px solid #efefef;
}

.json-tree li:last-child {
    border-bottom: none;
}

.json-tree li a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    display: block; /* Make the clickable area bigger */
}

.json-tree li a:hover {
    color: #555;
    background-color: #e0e0e0;
}

.json-tree li a i.fa {
    width: 1em;
    margin-right: 5px;
    color: #888; /* Icon color */
}

.json-tree strong {
    color: #228822; /* Key color */
    font-weight: normal;
}

.json-tree em {
    font-style: normal;
    color: #333; /* Value color for strings */
}

.json-tree .number {
    color: #0000ff; /* Value color for numbers */
}

.json-tree .boolean {
    color: #aa0d91; /* Value color for booleans */
}

.json-tree .null {
    color: #ff8c00; /* Value color for null */
}
