/* ==========================================================================
   Base styles
   ========================================================================== */

body {
    color: #5D5F63;
    background: #fdfdfd;
    font-family: 'Open Sans', sans-serif;
    padding: 0px;
    margin: 0px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

input, textarea, select, a:focus, button:focus, input:focus {
   outline: none;
}

input, textarea, select {
   color: #2a2a2a;
}

input::placeholder, textarea::placeholder {
   color: #ccc !important;
}

a:link, a:visited {
    text-decoration: none;
    outline: none;
    color: #0092B4;
}

a:hover, a:active {
    outline: none;
    text-decoration: none;
    color: #16a086;
}

.document-list td.tool {
   width: 16px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Exo 2', Arial, sans-serif;
}

p {
    font-size: 14px;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

img {
    max-width: 100%;
}

::selection {
    background: #fff7dd;
}

::-moz-selection {
    background: #fff7dd;
}


/*sexy webkit scrollbars*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #F7F7F7;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #D3D3D3;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 0, 0, 0.4);
}


/* ==========================================================================
   Base Bootstrap styles
   ========================================================================== */

.btn {
    white-space: normal;
}

.btn.dropdown-toggle {
    white-space: nowrap;
}

.row {
    margin-left: -7px;
    margin-right: -7px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 7px;
    padding-right: 7px;
}

.list-striped>li:nth-child(odd) {
    background: #f2f2f2;
    border-bottom: 1px solid #EFF2F7;
}

ul.results-list {
    padding: 5px;
}

ul.results-list>li {
    padding: 7px 7px 12px 12px;
}

button.list-group-item {
    width: 100%;
    text-align: left;
}

.bg-warning.list-group-item {
   background-color: #fcf8e3;
}


.text-danger {
   color: #FB5B3C;
}

.list-group.list-group-sm .list-group-item {
  padding: 5px 10px;
  font-size: 90%;
}

/* ==========================================================================
   Layout
   ========================================================================== */

#container {
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* Header */

#header {
    z-index: 200;
    background: #fff;
    min-height: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 0;
}

#header .brand {
    float: left;
    width: 240px;
    min-height: 60px;
    padding: 0 0 0 15px;
    position: relative;
    background: #f5f5f5 url('../img/logo_without_tagline.png') no-repeat 24px 14px;
    background-size: 175px;
}


/*-- FOR TEXT-BASED LOGOS -- */


/*
 #header .logo {
  color: #505050;
  font-size: 1.7em;
  padding: 13px 0 0 57px;
  display: inline-block;
  }
*/

#header .logo span {
    font-weight: 700;
}

#header .toggle-navigation button:hover, #header .toggle-navigation button:active, #header button#toggle-tasks:hover, #header button#toggle-tasks:active {
    background: #0092B4;
}

#header .toggle-navigation button:hover i, #header button#toggle-tasks:hover i {
    color: #F6F6F6;
}

#header .toggle-navigation.toggle-left {
    float: left;
    margin: 0;
    display: inline-block;
    border-left: 1px solid lightgrey;
    border-right: 1px solid lightgrey;
}

#header .toggle-navigation.toggle-left .btn-default {
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: 60px;
    background: #fff;
}

#header .header-search {
    float: left;
    padding: 15px 30px;
    color: lightgrey;
}

#header .header-search h3 {
    margin: 0;
}

#header-search-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 24px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

#header-search-modal.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 100;
}

#header-search-modal form {
    margin-top: 10em;
}

#header-search-modal input[type="search"] {
    height: 66px;
    width: 90%;
    padding-left: 15px;
    font-size: 42px;
    background: none;
    border: none;
    border-bottom: 1px solid #555;
    outline: none;
}

#header-search-modal .input-group-addon {
    background: none;
    border: none;
    font-size: 32px;
}

#header-search-modal .close {
    position: fixed;
    z-index: 1000;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.search-column {
    height: 70vh;
    overflow-y: scroll;
}

#header .btn-default {
    padding: 3px 9px;
    background: #F6F6F6;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    -ms-border-radius: 5%;
    -o-border-radius: 5%;
    border-radius: 5%;
    width: 35px;
    height: 35px;
}

#header .btn-default .fa-bars, #header .btn-default .fa-gear {
    cursor: pointer;
    color: #797979;
}

#header .user-nav {
    float: right;
    padding-top: 10px;
    padding-right: 20px;
    border-left: 1px solid lightgrey;
}

#header .user-nav ul {
    padding-left: 5px;
}

#header .user-nav ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
}

#header .user-nav ul li.profile-photo {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    max-width: 40px;
}

#header .user-nav ul li.profile-photo img {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    max-width: 40px;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu {
    width: 350px;
}

#header .user-nav ul li.dropdown.settings .dropdown-menu {}

#header .dropdown.settings .dropdown-menu>li>a:hover, #header .dropdown.settings .dropdown-menu>li>a:active {
    background-color: #16a086;
    color: #fff;
}

#header .dropdown.settings .dropdown-menu>li>a:hover .badge.badge-danger {
    background-color: #fff;
    color: #0092B4;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a:hover, #header .user-nav ul li.dropdown.messages .dropdown-menu>li>a:hover .message-info .time {
    background: #0092B4;
    color: #fff;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    left: -150px;
    top: 48px;
    background-color: #F6F6F6;
    border: none;
    -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu:before {
    bottom: 100%;
    left: 48%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #FB5B3C;
    border-width: 8px;
    margin-left: -8px;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu > li > a .message-info {
    vertical-align: top;
    display: inline-block;
    font-size: 11px;
    margin-left: 5px;
    width: 225px;
}

#header .btn-recipient {
    width: auto;
}

#header .btn-default.btn-recipient:hover {
    background: #BDC3C5;
}

#header .messages {
    margin: 0 15px;
}

#header .messages .badge {
    position: absolute;
    top: -5px;
    left: -10px;
}

#header .options i {
    color: #797979;
    font-size: 1.1em;
}

#header .user-nav ul li.dropdown.settings {
    line-height: 39px;
    margin-right: 10px;
    padding: 0 10px 0 10px;
}

#header .user-nav ul li.dropdown.settings .dropdown-menu>li>a {
    padding: 5px 10px;
    font-size: 12px;
}

#header .user-controls ul li.dropdown.settings .dropdown-menu>li {
    display: block;
}

#header .user-nav ul li.dropdown.settings .dropdown-menu {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    left: -55px;
    top: 48px;
    background-color: #F6F6F6;
    border-color: #e7e8ec;
    -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

#header .user-nav ul li.dropdown.settings .dropdown-menu:after {
    bottom: 100%;
    left: 78%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #F6F6F6;
    border-width: 8px;
    margin-left: -8px;
}

#header .user-nav ul li.dropdown.settings .dropdown-menu:before {
    bottom: 100%;
    left: 78%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #e7e8ec;
    border-width: 8px;
    margin-left: -8px;
    top: -17px;
}

#header .dropdown.settings .dropdown-menu>li, #header .dropdown.messages .dropdown-menu>li {
    display: block;
}

#header li.dropdown ul.dropdown-menu.alert>li h1 {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    background-color: #FB5B3C;
    margin: 0;
    font-size: 13px;
    padding: 10px;
    font-weight: 400;
    color: white;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li:last-child a {
    background-color: white;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -ms-border-radius: 0 0 3px 3px;
    -o-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    text-align: right;
    padding: 10px 15px;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li:last-child a:hover {
    background: #0092B4;
    color: #fff;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a {
    margin: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #fcfcfc;
    color: #797979;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a .message-info {
    vertical-align: top;
    display: inline-block;
    font-size: 11px;
    margin-left: 5px;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a .message-info .sender {
    font-weight: 500;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a .message-info .time {
    font-weight: 300;
    font-size: 9px;
    color: #b2b2b2;
}

#header .user-nav ul li.dropdown.messages .dropdown-menu>li>a .message-info .message-content {
    white-space: normal;
    margin-top: 5px;
}


/* Sidebar */

.sidebar {
    width: 240px;
    height: 100%;
    margin-left: -240px;
    background: #fefefe;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

.sidebar-toggle {
    margin-left: 0;
}

#leftside-navigation ul, #leftside-navigation ul ul {
    margin: -2px 0 0;
    padding: 0;
}

#leftside-navigation ul li {
    list-style-type: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#leftside-navigation ul li a {
    color: #737373;
    text-decoration: none;
    display: block;
    padding: 18px 0 18px 25px;
    font-size: 12px;
    outline: none;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

#leftside-navigation ul li a span {
    display: inline-block;
}

#leftside-navigation ul ul li {
    background: #f5f5f5;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    border-bottom: none;
}

#leftside-navigation ul ul li a {
    font-size: 12px;
    padding-top: 13px;
    padding-bottom: 13px;
    color: #737373;
}

#leftside-navigation ul li a i {
    width: 20px;
}

#leftside-navigation ul li a i.fa-angle-right, #leftside-navigation ul li a i.fa-angle-left {
    padding-top: 3px;
}

#leftside-navigation ul ul {
    display: none;
}

#leftside-navigation li.active ul {
    display: block;
}

#leftside-navigation ul li a:hover, #leftside-navigation ul li.active>a {
    color: #0092B4;
}

.btn-primary+.dropdown-menu>li>a:hover, .btn-primary+.dropdown-menu>li>a:active {
    background-color: #16a086;
}

.btn-primary {
    padding-left: 5px;
    padding-right: 5px;
}


/* Sidebar Right */

.sidebarRight {
    width: 240px;
    height: 100%;
    background: #4E4E4E;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    top: 60px;
    right: 0;
    display: none;
}

.sidebar-toggle-right {
    display: block;
}

.sidebarRight .sidebar-heading {
    font-size: 14px;
    color: #FFF;
    font-weight: 500;
    line-height: 30px;
    padding: 10px;
    text-transform: uppercase;
}

.sidebarRight a.list-item:hover {
    background: #2e2e2e;
}

.sidebarRight .sidebar-title {
    font-size: 11px;
    color: #CCC;
    font-weight: 500;
    text-transform: uppercase;
    float: left;
    width: 100%;
    padding: 10px;
}

.sidebarRight .list-contacts .list-item {
    float: left;
    position: relative;
    width: 100%;
    padding: 8px 5px 8px 10px;
    margin-bottom: 3px;
    display: block;
}

.sidebarRight .list-contacts a.list-item, .sidebarRight .list-contacts .list-item {
    color: #fff !important;
}

.sidebarRight .list-contacts .list-item .list-item-image img {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.sidebarRight .list-contacts .list-item .list-item-content h4 {
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
    padding: 0px;
    margin: 0px;
}

.sidebarRight .list-contacts .list-item .list-item-content p {
    padding: 0px;
    margin: 0px;
    line-height: 13px;
    font-size: 11px;
}



/* ==========================================================================
   Main Content
   ========================================================================== */

.main-content-wrapper {
    margin-left: 0;
    margin-right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #f1f2f7;
    min-height: 1000px;
}

.main-content-wrapper #main-content {
    border-top: solid thin #e7e8ec;
    border-left: solid thin #e7e8ec;
    display: inline-block;
    padding: 15px 15px 0 15px;
    width: 100%;
}

.main-content-wrapper #main-content .h1 {
    margin: 0;
    padding: 0px 10px 20px 10px;
    float: left;
    font-weight: 300;
    font-family: 'Exo 2', Arial, sans-serif;
}

.main-content-toggle-left {
    margin-left: 240px;
}

.main-content-toggle-right {
    margin-right: 240px;
}


/* ==========================================================================
   c3 charts
   ========================================================================== */

.c3-chart-arcs-title {
    font-size: 26px;
    fill: #767676;
}


/* ==========================================================================
   Tiles
   ========================================================================== */

.dashboard-tile {
    background-color: #fff;
    color: #555;
    margin-bottom: 15px;
    padding: 10px;
    min-height: 130px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.dashboard-tile.dashboard-tile-sm {
    min-height: 0;
    margin-bottom: 8px;
    padding: 6px;
    min-height: 80px;
}

.dashboard-tile.tile-turquoise {
    background-color: #0092B4;
    color: #fff;
}

.dashboard-tile.tile-red {
    background-color: #FB5B3C;
    color: #fff;
}

.dashboard-tile.tile-yellow {
    background-color: #f1c40f;
    color: #fff;
}

.dashboard-tile.tile-green {
    background-color: #2dcc70;
    color: #fff;
}

.dashboard-tile.tile-blue {
    background-color: #3598db;
    color: #fff;
}

.dashboard-tile.tile-purple {
    background-color: #9a59b5;
    color: #fff;
}

.dashboard-tile.tile-grey {
    background-color: #f9f9f9;
    color: #5D5F63;
}

.dashboard-tile .header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.dashboard-tile .header .title {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    padding: 5px;
    position: absolute;
    text-transform: uppercase;
    top: 7px;
}

.dashboard-tile .content {
    padding: 0;
}

.dashboard-tile.header .content {
    padding: 10px 20px;
    background: transparent;
    padding-right: 10px;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.dashboard-tile.detail .icon {
    position: absolute;
    top: 25%;
    right: 20px;
}

.dashboard-tile.detail .btn-default {
    border: 1px solid #fff;
    color: #fff;
}

.dashboard-tile-sm.detail .icon {
    top: 5%;
}

.dashboard-tile.header .icon img {
    opacity: 0.8;
    position: absolute;
    display: block;
    float: right;
    top: 20px;
    right: 20px;
}

.dashboard-tile.header {
    position: relative;
    overflow: hidden;
}

.dashboard-tile.detail {
    position: relative;
    overflow: hidden;
}

.dashboard-tile.detail .content {
    /*background: transparent;
  display: inline-block;
  position: relative;
  z-index: 5;*/
}

.dashboard-tile.detail .icon i {
    color: rgba(0, 0, 0, 0.05);
    font-size: 85px;
    line-height: 65px;
}

.dashboard-tile-sm.detail .icon i {
    font-size: 65px;
}

.dashboard-tile .content p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    clear: both;
}

#main-content .dashboard-tile .content h1 {
    margin: 0;
    font-weight: 300;
    font-size: 40px;
}

#main-content .dashboard-tile-sm .content h1 {
    margin: 0;
    font-weight: 300;
    font-size: 30px;
    display: inline;
}

#main-content .dashboard-tile-sm .content .btn {
    display: block;
}


/* ==========================================================================
  Forms
   ========================================================================== */

.form-control {
    color: #717171;
    outline: 0;
    height: 18px;
    padding: 6px 11px;
    line-height: 18px;
    font-size: 13px;
    background-color: #fafafa;
    min-height: 34px;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-control:focus {
    border-color: #7c7c7c;
}

.form-border .form-group {
    border-bottom: 1px solid #eff2f7;
    padding-bottom: 15px;
    /*  margin-bottom: 15px; */
}

.form-horizontal .form-group {
    margin-left: -7px;
    margin-right: -7px;
}

.input-group {
    margin-bottom: 15px;
}

select.input-sm {
   height: 34px;
}

.select2.select2-container {
   padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
   padding: 8px 6px 10px 6px !important;
   background: #fafafa !important;
   line-height: 1 !important;
}

.select2-container--default .select2-selection--single {
   border-color: #ccc !important;
   background: #fafafa !important;
   height: 34px !important;
}

.select2-selection__arrow {
   height: 32px !important;
}

.select2-dropdown {
   border-color: #ccc !important;
}

.select2-container--default .select2-selection--multiple {
   background-color: #fafafa !important;
   border-color: #ccc !important;
}

.select-style {
    border: 1px solid #ccc;
    border-radius: 3px;
    overflow: hidden;
}

.select-style:not(.no-image){
   background: #fafafa url(https://data.attribytes.com/assets/arrow-down-9628c9f30236565339efd06d844d335c5840151fc3abae759420410975cf75d1.svg) no-repeat 95% 50%;
   background-size: 20px;
};


.select-style select {
    padding: 7px 8px 8px 8px;
    border: none;
    font-size: 13px;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style:not(.no-image) select{
   width: 87%;
}

.control-group.error input, .control-group.error select, .control-group.error textarea {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group.error .checkbox, .control-group.error .radio, .control-group.error input, .control-group.error select, .control-group.error textarea {
    color: #b94a48;
}

label.error {
    color: #fff;
    background: #b94a48;
    border: solid thin #fff;
    padding: 3px 5px;
}

label.valid {
    color: #fff;
    background: #5CB85C;
    border: solid thin #fff;
    padding: 3px 5px;
}


/*--Font Awesome checkboxes and radios--*/

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox input[type="checkbox"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f00c";
    font-weight: 900;
}

.checkbox input[type="checkbox"]:disabled+label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked+label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked+label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked+label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
}

.radio input[type="radio"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"]+label::after {
    background-color: #428bca;
}

.radio-primary input[type="radio"]:checked+label::before {
    border-color: #428bca;
}

.radio-primary input[type="radio"]:checked+label::after {
    background-color: #428bca;
}

.radio-danger input[type="radio"]+label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
    background-color: #5cb85c;
}


/*--bootstrap select--*/


.bootstrap-select.inline .btn-link {
   padding-bottom: 2px;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    width: 90%;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select .dropdown-toggle:active {
   outline: transparent !important;
}

.h1 button.btn-link {
   padding: 0 20px 0 0;
   margin: -11px 0 0 0;
   line-height: 1.1;
}

.h1 button.btn-link span {
   font-size: 36px;
   font-weight: 700;
   overflow: visible !important;
}


/* ==========================================================================
  Buttons
   ========================================================================== */

.btn {
    border: none;
    font-size: 15px;
    font-weight: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 5px;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
    transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
}

.btn:hover, .btn:focus {
    outline: none;
    color: #fff;
}

.btn:active, .btn.active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    outline: none!important;
}

.btn.disabled, .btn[disabled], .btn fieldset[disabled] .btn {
    background-color: #bdc3c7;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0.7;
    filter: alpha(opacity=70);
}


/* Default Buttons*/

.btn-default, a.btn-default:link, a.btn-default:visited {
    color: #ffffff;
    background-color: #bdc3c7;
    outline: none!important;
}

a.btn-default:hover, a.btn-default:active {
    color: #ffffff;
    background-color: #cbd0d3;
    border-color: #cbd0d3;
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    color: #ffffff;
    background-color: #cbd0d3;
    border-color: #cbd0d3;
}

.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    background: #bdc3c7;
    border-color: #bdc3c7;
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
    background-color: #bdc3c7;
    border-color: #bdc3c7;
}

.btn-link, a.btn-link:link, a.btn-link:visited {
    color: #0092B4;
}

.btn-link:hover, .btn-link:focus {
   color: #16a086;
}

.btn-primary, a.btn-primary:link, a.btn-primary:visited {
    color: #fff;
    background-color: #0092B4;
}

a.btn-primary:hover, a.btn-primary:active {
    color: #ffffff;
    background-color: #438ac7;
    border-color: #119dbd;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #119dbd;
    border-color: #119dbd;
}

.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    background: #0092B4;
    border-color: #0092B4;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
    background-color: #0092B4;
    border-color: #0092B4;
}

.btn-info {
    color: #ffffff;
    background-color: #3598db;
}

.btn-info, a.btn-info:link, a.btn-info:visited {
    color: #ffffff;
    background-color: #3598db;
}

a.btn-info:hover, a.btn-info:active {
    color: #ffffff;
    background-color: #4ba3df;
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #4ba3df;
    border-color: #4ba3df;
}

.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
    background: #3598db;
    border-color: #3598db;
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
    background-color: #3598db;
    border-color: #3598db;
}

.btn-danger {
    color: #ffffff;
    background-color: #FB5B3C;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #eb6154;
    border-color: #eb6154;
}

.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
    background: #eb6154;
    border-color: #eb6154;
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
    background-color: #FB5B3C;
    border-color: #FB5B3C;
}

.btn-success, a.btn-success {
    color: #ffffff;
    background-color: #2dcc70;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #3ed47d;
    border-color: #3ed47d;
}

.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    background: #2dcc70;
    border-color: #2dcc70;
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
    background-color: #2dcc70;
    border-color: #2dcc70;
}

.btn-warning {
    color: #ffffff;
    background-color: #f1c40f;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #f1c40f;
    border-color: #f1c40f;
}

.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
    background: #f2ca27;
    border-color: #f2ca27;
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
    background-color: #f1c40f;
    border-color: #f1c40f;
}


/* 3d Buttons*/

.btn.btn-3d {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn.btn-3d:active {
    -webkit-transform: translate(0, 3px);
    -moz-transform: translate(0, 3px);
    transform: translate(0, 3px);
}

.btn-default.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #A6AAAC;
    -moz-box-shadow: 0px 6px 0px #A6AAAC;
    box-shadow: 0px 6px 0px #A6AAAC;
}

.btn-default.btn-3d:hover, .btn-default.btn-3d:focus {
    background-color: #bdc3c7;
}

.btn-default.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #A6AAAC;
    -moz-box-shadow: 0px 2px 0px #A6AAAC;
    box-shadow: 0px 2px 0px #A6AAAC;
}

.btn-default.btn-3d:hover, .btn-default.btn-3d:focus {
    background-color: #bdc3c7;
}

.btn-primary.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #00708B;
    -moz-box-shadow: 0px 6px 0px #00708B;
    box-shadow: 0px 6px 0px #00708B;
}

.btn-primary.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #00708B;
    -moz-box-shadow: 0px 2px 0px #00708B;
    box-shadow: 0px 2px 0px #00708B;
}

.btn-primary.btn-3d:hover, .btn-primary.btn-3d:focus {
    background-color: #0092B4;
}

.btn-success.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #2ab263;
    -moz-box-shadow: 0px 6px 0px #2ab263;
    box-shadow: 0px 6px 0px #2ab263;
}

.btn-success.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #2ab263;
    -moz-box-shadow: 0px 2px 0px #2ab263;
    box-shadow: 0px 2px 0px #2ab263;
}

.btn-success.btn-3d:hover, .btn-success.btn-3d:focus {
    background-color: #2dcc70;
}

.btn-info.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #2e86c1;
    -moz-box-shadow: 0px 6px 0px #2e86c1;
    box-shadow: 0px 6px 0px #2e86c1;
}

.btn-info.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #2e86c1;
    -moz-box-shadow: 0px 2px 0px #2e86c1;
    box-shadow: 0px 2px 0px #2e86c1;
}

.btn-info.btn-3d:hover, .btn-info.btn-3d:focus {
    background-color: #3598db;
}

.btn-warning.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #d6ae11;
    -moz-box-shadow: 0px 6px 0px #d6ae11;
    box-shadow: 0px 6px 0px #d6ae11;
}

.btn-warning.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #d6ae11;
    -moz-box-shadow: 0px 2px 0px #d6ae11;
    box-shadow: 0px 2px 0px #d6ae11;
}

.btn-warning.btn-3d:hover, .btn-warning.btn-3d:focus {
    background-color: #f1c40f;
}

.btn-danger.btn-3d {
    -webkit-box-shadow: 0px 6px 0px #c94034;
    -moz-box-shadow: 0px 6px 0px #c94034;
    box-shadow: 0px 6px 0px #c94034;
}

.btn-danger.btn-3d:active {
    -webkit-box-shadow: 0px 2px 0px #c94034;
    -moz-box-shadow: 0px 2px 0px #c94034;
    box-shadow: 0px 2px 0px #c94034;
}

.btn-danger.btn-3d:hover, .btn-danger.btn-3d:focus {
    background-color: #FB5B3C;
}


/* square buttons */

.btn-square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}


/* Transparent buttons */

.btn-default.btn-trans, a.btn-default.btn-trans {
    color: #bdc3c7;
    background-color: transparent;
    border: solid thin #bdc3c7;
}

.btn-default.btn-trans:hover, .btn-default.btn-trans:active, .btn-default.btn-trans:focus, .btn-default.btn-trans.active, a.btn-default.btn-trans.active {
    color: #fff;
    background-color: #bdc3c7;
    border: solid thin #bdc3c7;
}

.btn-primary.btn-trans, a.btn-primary.btn-trans {
    color: #0092B4;
    background-color: transparent;
    border: solid thin #0092B4;
}

.btn-secondary.btn-trans, a.btn-secondary.btn-trans {
    color: #bdc3c7;
    background-color: transparent;
    border: solid thin #bdc3c7;
}

.btn-primary.btn-trans:hover, .btn-primary.btn-trans:active, .btn-primary.btn-trans:focus {
    color: #fff;
    background-color: #0092B4;
    border: solid thin #0092B4;
}

.btn-success.btn-trans, a.btn-success.btn-trans {
    color: #2dcc70;
    background-color: transparent;
    border: solid thin #2dcc70;
}

.btn-success.btn-trans:hover, .btn-success.btn-trans:active, .btn-success.btn-trans:focus {
    color: #fff;
    background-color: #2dcc70;
    border: solid thin #2dcc70;
}

.btn-info.btn-trans, a.btn-info.btn-trans {
    color: #3598db;
    background-color: transparent;
    border: solid thin #3598db;
}

.btn-info.btn-trans:hover, .btn-info.btn-trans:active, .btn-info.btn-trans:focus {
    color: #fff;
    background-color: #3598db;
    border: solid thin #3598db;
}

.btn-warning.btn-trans, a.btn-warning.btn-trans {
    color: #f1c40f;
    background-color: transparent;
    border: solid thin #f1c40f;
}

.btn-warning.btn-trans:hover, .btn-warning.btn-trans:active, .btn-warning.btn-trans:focus {
    color: #fff;
    background-color: #f1c40f;
    border: solid thin #f1c40f;
}

.btn-danger.btn-trans, a.btn-danger.btn-trans {
    color: #FB5B3C;
    background-color: transparent;
    border: solid thin #FB5B3C;
}

.btn-danger.btn-trans:hover, .btn-danger.btn-trans:active, .btn-danger.btn-trans:focus {
    color: #fff;
    background-color: #FB5B3C;
    border: solid thin #FB5B3C;
}


/* Button Sizes */

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}


/* Button Groups */

.btn-toolbar {
    margin-top: 10px;
}


/* Card BUttons */

.btn-card {
   min-height: 120px;
}

/* ==========================================================================
  Badges
   ========================================================================== */


.badge.badge-success {
    background-color: #2dcc70;
    color: #fff;
}

.badge.badge-info {
    background-color: #3598db;
    color: #fff;
}

.badge.badge-warning {
    background-color: #f1c40f;
    color: #fff;
}

.badge.badge-danger {
    background-color: #FB5B3C;
    color: #fff;
}

/* ==========================================================================
  Loader
   ========================================================================== */

   html, body {
     height: 100%;
   }

   .loader-wrapper {
     width: 100%;
     height: 100%;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
         -ms-flex-direction: column;
             flex-direction: column;
     -webkit-box-align: center;
         -ms-flex-align: center;
             align-items: center;
     -webkit-box-pack: center;
         -ms-flex-pack: center;
             justify-content: center;
     text-align: center;
   }
   .loader-wrapper .loader {
     width: 30px;
     height: 30px;
     position: relative;
     border: 4px solid #ff5d3d;
     -webkit-animation: loader 2s infinite ease;
             animation: loader 2s infinite ease;
   }
   .loader-wrapper .loader-inner {
     vertical-align: top;
     display: inline-block;
     width: 100%;
     background-color: #ff5d3d;
     -webkit-animation: loader-inner 2s infinite ease-in;
             animation: loader-inner 2s infinite ease-in;
   }
   @-webkit-keyframes loader {
     0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
     }
     25% {
       -webkit-transform: rotate(180deg);
               transform: rotate(180deg);
     }
     50% {
       -webkit-transform: rotate(180deg);
               transform: rotate(180deg);
     }
     75% {
       -webkit-transform: rotate(360deg);
               transform: rotate(360deg);
     }
     100% {
       -webkit-transform: rotate(360deg);
               transform: rotate(360deg);
     }
   }
   @keyframes loader {
     0% {
       -webkit-transform: rotate(0deg);
               transform: rotate(0deg);
     }
     25% {
       -webkit-transform: rotate(180deg);
               transform: rotate(180deg);
     }
     50% {
       -webkit-transform: rotate(180deg);
               transform: rotate(180deg);
     }
     75% {
       -webkit-transform: rotate(360deg);
               transform: rotate(360deg);
     }
     100% {
       -webkit-transform: rotate(360deg);
               transform: rotate(360deg);
     }
   }
   @-webkit-keyframes loader-inner {
     0% {
       height: 0%;
     }
     25% {
       height: 0%;
     }
     50% {
       height: 100%;
     }
     75% {
       height: 100%;
     }
     100% {
       height: 0%;
     }
   }
   @keyframes loader-inner {
     0% {
       height: 0%;
     }
     25% {
       height: 0%;
     }
     50% {
       height: 100%;
     }
     75% {
       height: 100%;
     }
     100% {
       height: 0%;
     }
   }



/* ==========================================================================
 Sliders
   ========================================================================== */

.slider.slider-horizontal {
    margin: 10px 0;
}

.slider.slider-vertical {
    margin: 0 10px;
}

.slider-handle.round {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #EFF2F7;
    background: #fff;
    cursor: pointer;
}

.slider-default .slider-selection {
    background-image: none;
    background-color: #bdc3c7;
}

.slider-primary .slider-selection {
    background-image: none;
    background-color: #0092B4;
}

.slider-success .slider-selection {
    background-image: none;
    background-color: #2dcc70;
}

.slider-warning .slider-selection {
    background-image: none;
    background-color: #f1c40f;
}

.slider-info .slider-selection {
    background-image: none;
    background-color: #3598db;
}

.slider-danger .slider-selection {
    background-image: none;
    background-color: #FB5B3C;
}

#RGB {
    height: 239px;
    background: #808080;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}


/* ==========================================================================
   Progress Bars
   ========================================================================== */

.progress {
    margin-bottom: 0;
}

.progress.progress-sm {
    height: 5px;
}

.progress-bar-default {
    background-color: #bdc3c7;
}

.progress-bar-primary {
    background-color: #0092B4;
}

.progress-bar-success {
    background-color: #2dcc70;
}

.progress-bar-warning {
    background-color: #f1c40f;
}

.progress-bar-info {
    background-color: #3598db;
}

.progress-bar-danger {
    background-color: #FB5B3C;
}


/* ==========================================================================
   Nestable Sortable
   ========================================================================== */

.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 600px;
    list-style: none;
    font-size: 13px;
    line-height: 20px;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dd-list .dd-list {
    padding-left: 30px;
}

.dd-collapsed .dd-list {
    display: none;
}

.dd-item, .dd-empty, .dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
}

.dd-handle {
    cursor: move;
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ccc;
    background: #fafafa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-handle:hover {
    background: #fff;
    color: #0092B4;
}

.dd-item>button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
}

.dd-item>button:before {
    content: '+';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0;
}

.dd-item>button[data-action="collapse"]:before {
    content: '-';
}

.dd-placeholder, .dd-empty {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

.dd-dragel>.dd-item .dd-handle {
    margin-top: 0;
}

.dd-dragel .dd-handle {
    -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   Button Menu
   ========================================================================== */

.dropdown-menu {
    background-color: #F6F6F6;
    border-color: #cbd0d3;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 6px;
}

.dropdown-menu>li {
    font-size: 13px;
}

.dropdown-menu>li>a {
    color: #797979;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.dropdown-menu .divider {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-default+.dropdown-menu>li>a:hover, .btn-default+.dropdown-menu>li>a:focus {
    text-decoration: none;
    background-color: #bdc3c7;
    color: #fff;
}

.btn-primary+.dropdown-menu>li>a:hover, .btn-primary+.dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #fff;
}

.btn-info+.dropdown-menu>li>a:hover, .btn-info+.dropdown-menu>li>a:focus {
    text-decoration: none;
    background-color: #2C81BA;
    color: #fff;
}

.btn-warning+.dropdown-menu>li>a:hover, .btn-warning+.dropdown-menu>li>a:focus {
    text-decoration: none;
    background-color: #f2ca27;
    color: #fff;
}

.btn-danger+.dropdown-menu>li>a:hover, .btn-danger+.dropdown-menu>li>a:focus {
    text-decoration: none;
    background-color: #c1392b;
    color: #fff;
}


/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumb {
    background: none;
    margin-bottom: 10px;
}

.breadcrumb>li {
    font-size: 12px;
}

.breadcrumb .active {
    font-size: 1.1em;
}


/* ==========================================================================
Progress Steps
========================================================================== */

.progress-steps {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-flex-direction: flex-start;
    flex-direction: flex-start;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    height: calc(20px + 1em);
    margin-bottom: 16px;
    margin-top: 10px;
    list-style: none;
}

.progress-steps>li {
    position: relative;
    width: 25%;
    top: 20px;
    color: #999;
    font-size: 11px;
}

.progress-steps>li.complete {
    color: #2dcc70;
    font-weight: 600;
}

.progress-steps>li.complete>.number {
    background: #2dcc70;
    color: #FFF;
}

.progress-steps>li.complete::before {
    border-color: #2dcc70;
}

.progress-steps>li.in-progress {
    color: #f1c40f;
    font-weight: 600;
}

.progress-steps>li.in-progress>.number {
    background: #f1c40f;
    color: #FFF;
}

.progress-steps>li.in-progress::before {
    border-color: #f1c40f;
}

.progress-steps>li>span {
    font-size: 12px;
}

.progress-steps>li>.number {
    box-sizing: border-box;
    display: block;
    cursor: pointer;
    font-weight: 300;
    border-radius: 50%;
    background: #E5E5E5;
    width: 20px;
    height: 20px;
    padding: 1px;
    text-align: center;
    top: -21px;
    position: absolute;
}

.progress-steps>li::before {
    position: absolute;
    width: calc(100% - 24px);
    content: '';
    border-bottom: dashed 1px #D4D4D1;
    left: calc(-100% + 22px);
    top: -12px;
}

.progress-steps>li:first-child::before {
    border: none;
}


/* ==========================================================================
  Modal
   ========================================================================== */

.modal-footer .btn+.btn {
    margin-bottom: 5px;
}

.modal .modal-body.modal-scroll {
    max-height: 440px;
    overflow-y: auto;
}

h1.modal-title {
    font-size: 18px;
}

/* ==========================================================================
   Popovers
   ========================================================================== */
.popover, .popover-title {
   background-color: #505050;
   color: #fff;
}

.popover {
   font-size: 11px;
   z-index: 1001;
   position: absolute;
}

.popover.top>.arrow:after {
   border-top-color: #505050;
}

.popover.bottom>.arrow:after {
   border-bottom-color: #505050;
}

.popover.left>.arrow:after {
   border-left-color: #505050;

}

.popover.right>.arrow:after {
   border-right-color: #505050;

}

/* ==========================================================================
   Icons
   ========================================================================== */

.fa-hover {
    margin: 5px 0;
}

.fa-hover i {
    font-size: 14px;
    margin-right: 5px;
    width: 20px;
}



/* ==========================================================================
   Tabs
   ========================================================================== */

.tab-wrapper {
    margin-bottom: 20px;
}

.tab-wrapper .nav-tabs>li>a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.tab-wrapper .tab-content {
    border: 1px solid #ddd;
    background: #fff;
    border-top: 0;
    padding: 10px 15px;
}

.tab-wrapper>.nav-tabs>li a {
    color: #5D5F63;
}

.tab-wrapper>.nav-tabs>li.active>a {
    border-top: 2px solid #0092B4;
    background-color: #ffffff;
}

.tab-wrapper.tab-left>.nav-tabs>li, .tab-wrapper.tab-right>.nav-tabs>li {
    float: none;
    min-width: 75px;
}

.tab-wrapper.tab-left>.nav-tabs>li>a, .tab-wrapper.tab-right>.nav-tabs>li>a {
    border: 1px solid #ddd;
}

.tab-wrapper.tab-left>.nav-tabs>li.active>a, .tab-wrapper.tab-right>.nav-tabs>li.active>a {
    border-top-color: #ddd !important;
}

.tab-wrapper.tab-left .tab-content, .tab-wrapper.tab-right .tab-content {
    overflow: auto;
    border-top: 1px solid #ddd;
}

.tab-wrapper.tab-left>.nav-tabs {
    float: left;
    margin-right: -3px;
}

.tab-wrapper.tab-left>.nav-tabs>li>a {
    border-right: 0;
}

.tab-wrapper.tab-left>.nav-tabs>li.active>a {
    border-left: 2px solid #0092B4;
}

.tab-wrapper.tab-right>.nav-tabs {
    float: right;
    margin-left: -1px;
}

.tab-wrapper.tab-right>.nav-tabs>li>a {
    border-left: 0;
}

.tab-wrapper.tab-right>.nav-tabs>li.active>a {
    border-right: 2px solid #0092B4;
}

.tab-wrapper.tab-bottom>.tab-content {
    border-top: 1px solid #ddd;
}

.tab-wrapper.tab-bottom>.nav-tabs {
    border-bottom: none;
    margin-top: 0px;
}

.tab-wrapper.tab-bottom>.nav-tabs>li.active>a {
    margin-top: -2px;
    border-top-color: transparent !important;
    border-bottom: 2px solid #0092B4;
}

.tab-primary.tab-wrapper>.nav-tabs>li.active>a {
    border-top-color: #0092B4;
}

.tab-primary.tab-wrapper.tab-left>.nav-tabs>li.active {
    border-left-color: #0092B4;
}

.tab-primary.tab-wrapper.tab-right>.nav-tabs>li.active {
    border-right-color: #0092B4;
}

.tab-primary.tab-wrapper.tab-bottom>.nav-tabs>li.active>a {
    border-bottom-color: #0092B4;
}


/* ==========================================================================
   Tables
   ========================================================================== */

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    vertical-align: middle;
}

.table .hidden-row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.table .hidden-row .row:nth-of-type(1) {
    padding: 10px 0;
}

.table .hidden-row label {
    display: block;
}

.table .hidden-row select.attribyte-field {
    display: inline-block;
    width: 70%;
}

.attribute-text-field {
    display: inline-block;
    width: 70%;
    min-height: 30px;
}

.table.table-wide td, th {
    white-space: nowrap;
}

.overflow-column {
    max-width: 300px;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

colgroup col.success {
    background-color: #dff0d8;
}

colgroup col.error {
    background-color: #f2dede;
}

colgroup col.warning {
    background-color: #fcf8e3;
}

colgroup col.info {
    background-color: #d9edf7;
}

td.cell-danger {
    background-color: #FB5B3C !important;
    color: #fff;
}

td.cell-danger a {
   color: #fff;
}

td.cell-warning {
    background: #fcf8e3 !important;
    color: #5D5F63;
}

td.status .label {
    display: block;
    padding: .5em;
}

.row-unmapped {
   border: 2px solid #FB5B3C;
   border-left: 14px solid #FB5B3C;
   box-sizing: content-box;

}

.row-discrepancy {
   border: 2px solid #f1c40f;
   border-left: 14px solid #f1c40f;
   box-sizing: content-box;
}

.row-discrepancy.discrepancy-recipient {
   border-bottom: none;
}

.row-discrepancy.discrepancy-source {
   border-top: none;
}

.row-discrepancy td.discrepancy-count, .row-unmapped td.unmapped-count {
   position: relative;
}

.row-discrepancy td.discrepancy-count .label-warning {
   color: #2a2a2a;
}

.row-discrepancy td.discrepancy-count > span, .row-unmapped td.unmapped-count > span {
   position: absolute;
   top: -8px;
}

.row-discrepancy td.discrepancy-count > span > a {
   color: #2a2a2a;
}

.row-unmapped td.unmapped-count > span > a {
   color: #fff;
}



/* datatables =====================================================================*/

td.details-control {
    background: url('../img/fa-plus.svg') no-repeat center center;
    background-size: 12px;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('../img/fa-minus.svg') no-repeat center center;
    background-size: 12px;
}


/* ==========================================================================
   Panels
   ========================================================================== */

.panel {
    margin-bottom: 15px;
    border: none;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.panel>.panel-heading {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px;
}

.panel-heading>.panel-title {
    width: 100%;
    text-overflow: ellipsis;
}

.panel .actions {
    position: absolute;
    right: 30px;
    top: 18px;
}

.panel .actions.include-filter {
    top: 14px;
}

.panel .actions.include-filter .input-group {
    float: left;
    width: 75%;
}

.panel .actions.include-filter i {
    top: 12px;
}

.panel .actions i {
    font-size: 1em;
    margin: 0 3px;
}

.panel .actions i:hover {
    cursor: pointer;
}

.panel>.panel-footer {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px;
}

.panel-default>.panel-heading {
    border-color: #eff2f7;
    background: #fafafa;
    color: #767676;
}

.panel-default .actions i {
    font-size: 1em;
    color: #bdc3c7;
    margin: 0 3px;
}

.panel-default .actions i:hover {
    cursor: pointer;
    color: #767676;
}

.panel-default>.panel-footer {
    border-color: #eff2f7;
    background: #fafafa;
    color: #767676;
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #0092B4;
    border-color: #0092B4;
}

.panel-primary {
    border-color: #0092B4;
}

.panel-primary>.panel-heading a, .panel-primary>.panel-heading a:hover {
    color: #fff;
}

.panel-solid-default>.panel-heading, .panel-solid-default>.panel-body, .panel-solid-default>.panel-footer {
    background: #bdc3c7;
    color: #fff;
    border: none;
}

.panel-solid-primary>.panel-heading, .panel-solid-primary>.panel-body, .panel-solid-primary>.panel-footer {
    background: #0092B4;
    color: #fff;
    border: none;
}

.panel-solid-success>.panel-heading, .panel-solid-success>.panel-body, .panel-solid-success>.panel-footer {
    background: #2dcc70;
    color: #fff;
    border: none;
}

.panel-solid-warning>.panel-heading, .panel-solid-warning>.panel-body, .panel-solid-warning>.panel-footer {
    background: #f1c40f;
    color: #fff;
    border: none;
}

.panel-solid-info>.panel-heading, .panel-solid-info>.panel-body, .panel-solid-info>.panel-footer {
    background: #3598db;
    color: #fff;
    border: none;
}

.panel-solid-danger>.panel-heading, .panel-solid-danger>.panel-body, .panel-solid-danger>.panel-footer {
    background: #FB5B3C;
    color: #fff;
    border: none;
}

.panel-group .panel-group {
   font-size: 95%;
}

.panel-group .panel-group .panel-title {
   font-size: 14px;
}

.panel-group .panel-group .panel>.panel-heading {
   padding: 10px;
}

/* ==========================================================================
   Google Maps
   ========================================================================== */

.overlay {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 60px;
    line-height: 80px;
    opacity: 0.8;
    background: #0092B4;
    border: solid 3px #0092B4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 2px 2px 10px #333;
    text-shadow: 1px 1px 1px #666;
    padding: 0 4px;
}

.overlay_arrow {
    left: 50%;
    margin-left: -16px;
    width: 0;
    height: 0;
    position: absolute;
}

.overlay_arrow.above {
    bottom: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #0092B4;
}

.overlay_arrow.below {
    top: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #0092B4;
}


/* ==========================================================================
   Login
   ========================================================================== */

#login-container {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('../img/branding-bg.png') no-repeat bottom left #E7E8EC;
    background-size: 100px;
    -webkit-transition: all 3s ease-in-out;
    -moz-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    -ms-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
}

/* #login-wrapper {
    margin: 100px auto;
    float: none;
}

#login-wrapper .logo {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 70px;
    color: #fff;
    font-size: 1.7em;
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
} */

#login-wrapper .form-group i {
    position: absolute;
    left: 22px;
    top: 11px;
}

#login-wrapper #email, #login-wrapper #password {
    padding-left: 32px;
}


/* ==========================================================================
   Error Pages 404 and 500
   ========================================================================== */

#error-container {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transition: all 3s ease-in-out;
    -moz-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    -ms-transition: all 3s ease-in-out;
    transition: all 3s ease-in-out;
    color: #fff;
    background: #405d8c;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #405d8c 0%, #4E4E4E 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #405d8c), color-stop(100%, #4E4E4E));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #405d8c 0%, #4E4E4E 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #405d8c 0%, #4E4E4E 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #405d8c 0%, #4E4E4E 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, #405d8c 0%, #4E4E4E 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#405d8c', endColorstr='#4E4E4E', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

#error-container .block-error {
    width: 400px;
    margin: 50px auto 0px;
}

#error-container header h1.error {
    color: #fff;
    font-size: 250px;
}

#error-container header p {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
}

#error-container p {
    margin: 10px 0 40px 0;
}


/* ==========================================================================
   View My Product
   ========================================================================== */

img.distributor-sm {
    margin-right: 10px;
    border: 1px solid lightgray;
    border-radius: 3px;
    max-width: 75px;
    max-height: 35px;
}

.product-attribytes .badge {
    margin-right: 4px;
}


/* ==========================================================================
   Doc Management
   ========================================================================== */

.doc-management {

}


.doc-management .item-block {
   padding: 10px;
}

.doc-management .item-block > .dropdown {
   position: absolute;
   top: 20px;
   right: 20px;
}

.doc-management .item-block > a.item {
   display: block;
   padding: 10px;
   border-radius: 3px;
   border: 1px solid #eee;
   min-height: 70px;
}

.item-block > a.item > h4 {
   margin-top: 2px;
   margin-bottom: 2px;
}

.item-block > .item-icon {
   position: absolute;
   top: 20%;
   right: 30px;
   color: rgba(0, 0, 0, 0.05);

}

.item-block > .item-status {
   position: absolute;
   top: 4px;
   left: 20px;

}

.tinymce-output {
   min-height: 100px;
   max-height: 300px;
   overflow-y: scroll;
   background: #fff;
   padding: 20px;
   margin-bottom: 20px;
}

.tinymce-btn-group {
   position: absolute;
   top: -14px;
   right: 24px;
}

/* ==========================================================================
   Nutrition Facts - Old Panel
   ========================================================================== */

.performance-facts-container {
    overflow: auto;
    padding: 6px;
    border: 1px solid #eee;
}

.performance-facts {
    border: 1px solid black;
    min-width: 425px;
    max-width: 800px;
    padding: 0.5rem;
}

.performance-facts table {
    border-collapse: collapse;
}

.performance-facts__title {
    font-weight: bold;
    font-size: 2rem;
    margin: 0 0 0.25rem 0;
}

.performance-facts__header {
    border-bottom: 10px solid black;
    padding: 0 0 0.25rem 0;
    margin: 0 0 0.5rem 0;
}

.performance-facts__header p {
    margin: 0;
}

.performance-facts__table, .performance-facts__table--small, .performance-facts__table--grid {
    width: 100%;
}

.performance-facts__table thead tr th, .performance-facts__table--small thead tr th, .performance-facts__table--grid thead tr th, .performance-facts__table thead tr td, .performance-facts__table--small thead tr td, .performance-facts__table--grid thead tr td {
    border: 0;
}

.performance-facts__table th, .performance-facts__table--small th, .performance-facts__table--grid th, .performance-facts__table td, .performance-facts__table--small td, .performance-facts__table--grid td {
    font-weight: normal;
    text-align: left;
    padding: 0.25rem 0;
    border-top: 1px solid black;
    white-space: nowrap;
}

.performance-facts__table td:last-child, .performance-facts__table--small td:last-child, .performance-facts__table--grid td:last-child {
    text-align: right;
}

.performance-facts__table .blank-cell, .performance-facts__table--small .blank-cell, .performance-facts__table--grid .blank-cell {
    width: 1rem;
    border-top: 0;
}

.performance-facts__table .thick-row th, .performance-facts__table--small .thick-row th, .performance-facts__table--grid .thick-row th, .performance-facts__table .thick-row td, .performance-facts__table--small .thick-row td, .performance-facts__table--grid .thick-row td {
    border-top-width: 5px;
}

.performance-facts__table--small {
    border-bottom: 1px solid #999;
    margin: 0 0 0.5rem 0;
}

.performance-facts__table--small thead tr {
    border-bottom: 1px solid black;
}

.performance-facts__table--small td:last-child {
    text-align: left;
}

.performance-facts__table--small th, .performance-facts__table--small td {
    border: 0;
    padding: 0;
}

.performance-facts__table--grid {
    margin: 0 0 0.5rem 0;
}

.performance-facts__table--grid td:last-child {
    text-align: left;
}

.performance-facts__table--grid td:last-child::before {
    content: "•";
    font-weight: bold;
    margin: 0 0.25rem 0 0;
}

.performance-facts--text-center {
    text-align: center;
}

.performance-facts--thick-end {
    border-bottom: 10px solid black;
}

.performance-facts--thin-end {
    border-bottom: 1px solid black;
}

.performance-facts--small-info {
    font-size: 0.7rem;
}

/* ==========================================================================
   Nutrition Facts - New Panel
   ========================================================================== */
.nutrition-label {
    font-family: arial, sans-serif;
    color: black;
}
.nutrition-label .nutrition-bb {
    border-bottom: 10px solid black;
    margin-bottom: 5px;
}
.nutrition-label p.nutrition-header {
    padding-top: 10px;
    font-size: 32px;
    font-weight: 900;
    margin: 0px 6px;
    border-bottom: 1px solid lightgray;
}
.nutrition-label p.nutrition-data {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin: 1px 6px;
    min-height: 16px;
    border-bottom: 1px solid lightgray;
}
.nutrition-label p.nutrition-data.nutrition-data-light {
    font-weight: normal;
}
.nutrition-label p.nutrition-big-data {
    font-size: 28px;
    font-weight: bold;
    margin: 1px 6px;
    min-height: 28px;
}
.nutrition-label p.nutrition-small-data {
    font-size: 10px;
    font-weight: bold;
    min-height: 12px;
    margin: 1px 6px;
}
.nutrition-label span.nutrition-data-right {
    font-size: 14px;
    font-weight: bold;
    float: right;
}
.nutrition-label span.nutrition-big-data-right {
    font-size: 28px;
    font-weight: bold;
    float: right;
}
.nutrition-label span.nutrition-small-data-right {
    font-size: 10px;
    font-weight: bold;
    float: right;
}
.nutrition-label .indent {
    font-weight: normal;
}
.nutrition-label .indent::before {
    content: "\00a0 \00a0";
}
.nutrition-label .nutrition-light {
    font-weight: normal !important;
}
.nutrition-label .nutrition-no-bb {
    border-bottom: 0px !important;
}
.nutrition-label .indent {
    font-weight: normal;
}
.nutrition-label .indent::before {
    content: "\00a0 \00a0";
}
.nutrition-label .nutrition-light {
    font-weight: normal !important;
}
.nutrition-label .nutrition-no-bb {
    border-bottom: 0px !important;
}

/* ==========================================================================
   status grid
   ========================================================================== */


.status-grid {
   margin-bottom: 20px;
   margin-left: 15px;
}

.status-grid .box {
   width: 100%;

}

.status-grid__group {
   min-height: 100px;
   border: 1px solid #e2e2e2;
   border-bottom: 4px solid #0092B4;
}


.status-grid__group [class^=col-] {
   display: flex;
   padding: 0 15px;
   align-items: center;
}

.status-grid__group [class^=col-].status-grid__group-total {
   border-right: none;
}

.status-grid__sub [class^=col-].status-grid__sub-total,
.status-grid__item [class^=col-].status-grid__item-status {
   border-left: none;
}

.status-grid__item {
    display: flex;
}

.status-grid__sub,
.status-grid__item {
   margin-top: 2px;
   margin-bottom: 2px;

}

.status-grid__sub [class^=col-],
.status-grid__item [class^=col-] {
   display: flex;
   padding: 0 15px;
   align-items: center;
   border: 1px solid #e2e2e2;
}

.status-grid__sub>.status-grid__guide,
.status-grid__item>.status-grid__guide {
   border: none;
}

/*.status-grid [class^=col-].status-grid__status {*/
/*   display: flex;*/
/*}*/


.status-grid__sub-name[class^=col-],
.status-grid__item-name[class^=col-] {
   border-right: none;
}

.status-grid [class^=col-].status-grid__status [class^=col-] {
   border: none;
}

.status-grid__group .status-grid__group--expand > i {
   position: absolute;
   left: -20px;
   top: 40px;
}

.status-grid__info {
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 0;
}

@media (min-width: 768px) {
   .status-grid__group [class^=col-] {
      height: 100px;
      border-right: 1px solid #e2e2e2;
   }
   .status-grid__sub [class^=col-] {
      padding-top: 5px;
      padding-bottom: 5px;
   }
   .status-grid__item [class^=col-] {
      padding-top: 5px;
      padding-bottom: 5px;
   }
}

.status-grid__guide {
   background: url('../img/grid-guide.svg') repeat-y center right;
   background-size: 40px 40px;
   background-position-x: 100%;
}

.status-grid__guide--last {
   background: url('../img/grid-guide-last.svg') no-repeat center right;
   background-size: 40px 40px;
   background-position-x: 100%;
}


/* ==========================================================================
   file tree
   ========================================================================== */


   .files-tree ul {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   .files-tree a {
     text-decoration: none;
   }
   .files-tree button {
     background-color: transparent;
     border: none;
     padding: 0;
   }
   .files-tree button:hover, .files-tree button:focus {
     outline: none;
   }
   .files-tree .files-tree-list .toggle-subfiles {
     cursor: pointer;
   }
   .files-tree .files-tree-list .toggle-subfiles .toggle-icon .icon {
     display: inline-block;
     font-size: 17px;
     color: #424220;
     vertical-align: top;
     margin-right: 5px;
   }
   .files-tree .files-tree-list .toggle-subfiles .toggle-icon .opened {
     display: none;
   }
   .files-tree .files-tree-list .toggle-subfiles .text-holder {
     font-size: 16px;
   }
   .files-tree .files-tree-list .toggle-subfiles .text-holder .icon {
     margin-right: 5px;
   }
   .files-tree .files-tree-list .toggle-subfiles .text-holder .text {
     color: #424220;
     font-weight: 300;
   }
   .files-tree .files-tree-list .toggle-subfiles .text-holder:hover {
     color: #424220;
   }
   .files-tree .files-tree-list.active > .list-title .text-holder .text, .files-tree .files-tree-list.active > .list-title .text-holder .icon {
     color: #424220;
     font-weight: 700;
   }
   .files-tree .files-tree-list.active > .list {
     display: block;
   }
   .files-tree .files-tree-list.active > .toggle-subfiles {
     margin-bottom: 5px;
   }
   .files-tree .files-tree-list.active > .toggle-subfiles .toggle-icon .closed {
     display: none;
   }
   .files-tree .files-tree-list.active > .toggle-subfiles .toggle-icon .opened {
     display: inline-block;
   }
   .files-tree .files-tree-list .list {
     display: none;
     padding-left: 25px;
     border-left: 1px dotted #424220;
   }
   .files-tree .files-tree-list .list .file {
     margin-bottom: 5px;
   }
   .files-tree .files-tree-list .list .text-holder {
     font-size: 16px;
   }
   .files-tree .files-tree-list .list .text-holder .icon {
     color: #5F5F13;
     margin-right: 5px;
   }
   .files-tree .files-tree-list .list .text-holder .text {
     color: #5F5F13;
     font-weight: 300;
   }
   .files-tree .files-tree-list .list.active .file .text-holder .text {
     color: #424220;
   }




/* ==========================================================================
   Message/notes
   ========================================================================== */

.bottom-popup {
    background: transparent;
    -webkit-box-shadow: 0px 11px 20px 1px rgba(97, 97, 97, 0.76);
    -moz-box-shadow: 0px 11px 20px 1px rgba(97, 97, 97, 0.76);
    box-shadow: 0px 11px 20px 1px rgba(97, 97, 97, 0.76);
    position: fixed;
    bottom: 0;
    right: 20px;
    min-width: 320px;
    width: 480px;
    z-index: 101;
}

.bottom-popup .panel-body {
    height: 70vh;
    overflow-y: scroll;
}

.bottom-popup .panel {
    margin-bottom: 0;
}

.bottom-popup .notes-byline {
    display: block;
    margin-bottom: 10px;
}

.bottom-popup .media-body .fa-trash {
    padding-left: 1px;
    padding-right: 1px;
}

.media-popup-list {
    padding-left: 0;
}

@media only screen and (max-width: 767px) {
    .bottom-popup {
        right: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    .bottom-popup .panel-body {
        position: absolute;
        height: 90vh;
        overflow-y: scroll;
        background-color: #fff;
    }
    .bottom-popup .panel-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    i.fa-chevron-* {
        display: none;
    }
}


/* ==========================================================================
   Wizard
   ========================================================================== */

.step-content {
    border: 1px solid #D4D4D4;
    border-top: 0;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.wizard {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    *zoom: 1;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}

.wizard:before, .wizard:after {
    display: table;
    line-height: 0;
    content: "";
}

.wizard:after {
    clear: both;
}

.wizard ul {
    width: 4000px;
    padding: 0;
    margin: 0;
    list-style: none outside none;
}

.wizard ul.previous-disabled li.complete {
    cursor: default;
}

.wizard ul.previous-disabled li.complete:hover {
    color: #468847;
    cursor: default;
    background: #f3f4f5;
}

.wizard ul.previous-disabled li.complete:hover .chevron:before {
    border-left-color: #f3f4f5;
}

.wizard ul li {
    position: relative;
    float: left;
    height: 46px;
    padding: 0 20px 0 30px;
    margin: 0;
    font-size: 16px;
    line-height: 46px;
    color: #999999;
    cursor: default;
    background: #ededed;
}

.wizard ul li .chevron {
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 1;
    display: block;
    border: 24px solid transparent;
    border-right: 0;
    border-left: 14px solid #d4d4d4;
}

.wizard ul li .chevron:before {
    position: absolute;
    top: -24px;
    right: 1px;
    display: block;
    border: 24px solid transparent;
    border-right: 0;
    border-left: 14px solid #ededed;
    content: "";
}

.wizard ul li.complete {
    color: #1abc9c;
    background: #f3f4f5;
}

.wizard ul li.complete:hover {
    cursor: pointer;
    background: #e1f2ef;
}

.wizard ul li.complete:hover .chevron:before {
    border-left: 14px solid #e1f2ef;
}

.wizard ul li.complete .chevron:before {
    border-left: 14px solid #f3f4f5;
}

.wizard ul li.active {
    color: #1abc9c;
    background: #fff;
}

.wizard ul li.active .chevron:before {
    border-left: 14px solid #fff;
}

.wizard ul li .badge {
    margin-right: 8px;
}

.wizard ul li:first-child {
    padding-left: 20px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    -ms-border-radius: 4px 0 0 4px;
    -o-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.wizard .actions {
    position: initial;
    z-index: 1000;
    float: right;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 46px;
    vertical-align: middle;
    background-color: #e5e5e5;
    border-left: 1px solid #d4d4d4;
}

.wizard .actions a {
    margin-right: 8px;
    font-size: 12px;
    line-height: 45px;
}

.wizard .actions .btn-prev i {
    margin-right: 5px;
    color: #fff;
}

.wizard .actions .btn-next i {
    margin-left: 5px;
    color: #fff;
}

.wizard .actions .btn-prev[disabled] i {
    color: rgba(255, 255, 255, 0.75);
}

.step-content .step-pane {
    display: none;
}

.step-content .active {
    display: block;
}

.step-content .active .btn-group .active {
    display: inline-block;
}

.wizard .steps .badge.badge-info {
    background-color: #1abc9c;
}

.wizard .steps .badge.badge-success {
    background-color: #1abc9c;
}

.form-group .title {
    text-align: left;
}

.form-group.well-product {
    padding: 10px 0 5px 0;
    margin: 5px;
}

.form-group.well-product label, .form-group.well-product p {
    margin-top: 7px;
}


.pager.wizard {
   background: transparent;
   border: none;
   box-shadow: none;
}

.pager.wizard li > a {
   border-radius: 2px;
}


/* ==========================================================================
   User/Supplier profiles
   ========================================================================== */

.profile h2 {
    margin-bottom: 0;
}

.profile h2>small {
    display: block;
}

.profile-photo {
   display: inline-block;
   vertical-align: middle;
}

figure.profile-photo {
    width: 90px;
    margin-bottom: 15px;
}

.activity-feed {
    padding: 12.7px;
}

.activity-feed .feed-item {
    position: relative;
    padding-bottom: 8px;
    padding-left: 30px;
    border-left: 2px solid #e4e8eb;
}

.activity-feed .feed-item:last-child {
    border-color: transparent;
}

.activity-feed .feed-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -6px;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #f37167;
}

.activity-feed .feed-item .date {
    position: relative;
    top: -5px;
    color: #8c96a3;
    text-transform: uppercase;
    font-size: 13px;
}

.activity-feed .feed-item .text {
    position: relative;
    top: -3px;
}



.user-document-list {
    padding: 12.7px;
}

.user-document-list .document-list-item {
    position: relative;
    padding-bottom: 8px;
    padding-left: 30px;
    border-left: 2px solid #e4e8eb;
}

.user-document-list .document-list-item:last-child {
    border-color: transparent;
}

.user-document-list .document-list-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -6px;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #f37167;
}

.user-document-list .document-list-item .date {
    position: relative;
    top: -5px;
    color: #8c96a3;
    text-transform: uppercase;
    font-size: 13px;
}

.user-document-list .document-list-item .text {
    position: relative;
    top: -3px;
}



/* --user profile list-- */

.profile-list-card img {
    width: 80px;
}

@media only screen and (max-width: 991px) {
    .profile-list-card {
        text-align: center;
    }
}


/* ==========================================================================
   Scorecards
   ========================================================================== */

.scorecard-left-table {
    text-align: left;
    font-size: 11px;
    font-style: italic;
}


/* ==========================================================================
   Product Image Upload and Thumbs
   ========================================================================== */

.product-img-meta h4 {
   font-size: 12px;
   font-weight: 700;
}

.product-img-meta ul {
   padding-left: 25px;
}

.product-img-lg {
    padding: 10px;
    background-origin: content-box;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.product-img-thumbs .thumbnail {
   background-size: cover;
   background-position: center center;
   height: 150px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.product-img span.img-title {
   background-color: rgba(55, 55, 55, 0.5);
   color: #eee;
   margin-top: 5px;
   padding: 2px 5px;
   font-size: 10px;
   border-radius: 2px;
}


/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    background-color: #0092B4;
    border-color: #0092B4;
}

.pagination>li>a, .pagination>li>span {
    color: #0092B4;
}

/* ==========================================================================
   Color picker
   ========================================================================== */

.colorpicker .colorpicker-radio {
    display: none;
}

.colorpicker .colorpicker-square {
   width: 20px;
   height: 20px;
   margin: 5px;
   display: inline-block;
}

.colorpicker .colorpicker-square:hover, .colorpicker input[type="radio"]:checked+label {
    cursor: pointer;
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 2px #00000020;
}

/* ==========================================================================
   Font Awesome Icon Picker
   ========================================================================== */

.font-awesome-icon-picker .iconpicker-popover {
    width: auto;
    color: #2a2a2a;
}

.font-awesome-icon-picker .popover, .popover-title {
    background-color: #e5e5e5;
}

.font-awesome-icon-picker .iconpicker .iconpicker-items {
    max-height: 98px;
}

/* ==========================================================================
   Colors
   ========================================================================== */

.default-bg {
    background-color: #bdc3c7;
}

.primary-bg {
    background-color: #0092B4;
}

.success-bg {
    background-color: #2dcc70;
}

.warning-bg {
    background-color: #f1c40f;
}

.info-bg {
    background-color: #3598db;
}

.danger-bg {
    background-color: #FB5B3C;
}

.default-txt {
    color: #bdc3c7;
}

.primary-txt {
    color: #0092B4;
}

.success-txt {
    color: #2dcc70;
}

.warning-txt {
    color: #f1c40f;
}

.info-txt {
    color: #3598db;
}

.danger-txt {
    color: #FB5B3C;
}

.label-default {
    background-color: #bdc3c7;
}

.label-default-trans {
    color: #bdc3c7;
    background-color: transparent;
    border: solid thin #bdc3c7;
}

.label-primary {
    background-color: #0092B4;
}

.label-primary-trans {
    color: #0092B4;
    background-color: transparent;
    border: solid thin #0092B4;
}

.label-success {
    background-color: #2dcc70;
}

.label-success-trans {
    color: #2dcc70;
    background-color: transparent;
    border: solid thin #2dcc70;
}

.label-warning {
    background-color: #f1c40f;
}

.label-warning-trans {
    color: #f1c40f;
    background-color: transparent;
    border: solid thin #f1c40f;
}

.label-info {
    background-color: #3598db;
}

.label-info-trans {
    color: #3598db;
    background-color: transparent;
    border: solid thin #3598db;
}

.label-danger {
    background-color: #FB5B3C;
}

.label-danger-trans {
    color: #FB5B3C;
    background-color: transparent;
    border: solid thin #FB5B3C;
}

.label-readonly {
    background-color: #797979;
    margin-right: 5px !important;
}

.label-sm {
  font-size: 12px;
}

.label-md {
  font-size: 16px;
}

.label-lg {
  font-size: 20px;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 1279px) {
    #header-search-modal form {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1100px) {
    #header .header-search span.toggle-text {
        display: none;
    }
    .table-responsive {
        overflow-x: scroll;
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 767px) and (min-width: 480px) {
    /* Main Content */
    #main-content .h1 {
        font-size: 35px;
    }
    #header .header-search {
        padding: 15px 15px;
    }
    #header .header-search span.toggle-text {
        display: none;
    }
}

@media only screen and (max-width: 660px) {
    #header {
        height: 120px;
    }
    #header .brand {
        width: 100%;
    }
    #header .user-nav ul {
        padding-left: 0;
    }
    #header .toggle-navigation.toggle-left {
        float: left;
    }
    #header .header-search {
        padding: 15px 15px;
    }
    #header .header-search span.toggle-text {
        display: none;
    }
    #header .user-nav ul li.dropdown.settings {
        margin-right: 0px;
        padding: 0 8px 0 8px;
    }
    .sidebar {
        margin-left: -240px;
    }
    .sidebar-toggle {
        margin-left: 0;
        width: 100%;
    }
    .main-content-wrapper {
        margin-left: 0;
    }
    .main-content-toggle-left {
        margin-left: 660px;
    }
    .sidebarRight {
        top: 120px;
        width: 100%;
    }
    .user-nav ul li {
        font-size: 12px;
    }
    .input-group.tags>.input-group-addon {
        display: none;
    }
    /*--notes--*/
    .notes-container {
        right: 0;
        min-width: 320px;
        width: 100%;
    }
    .notes-container .panel-body {
        height: 55vh;
        overflow-y: scroll;
    }
    @media only screen and (max-width: 479px) {
        /* Main Content */
        #main-content .h1 {
            font-size: 22px;
        }
    }
}

@media only screen and (max-width: 359px) {
    #header .header-search {
        padding: 20px 10px;
    }
    #header .header-search h3 {
        font-size: 18px;
    }
}


/* ==========================================================================
   SFR specific
   ========================================================================== */

.sfr-modal {
    padding: 5px;
}

.sfr-modal form {
    margin: 0px 10px 0px 10px
}

.search-results {
    margin-top: 60px;
    margin-bottom: 24px;
}


/* ==========================================================================
helper classes
========================================================================== */

/*--flex helpers---*/

.d-flex              { display: flex !important; }

.flex-row            { flex-direction: row !important; }
.flex-column         { flex-direction: column !important; }
.flex-row-reverse    { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap         { flex-wrap: wrap !important; }
.flex-nowrap       { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around  { justify-content: space-around !important; }

.align-items-start    { align-items: flex-start !important; }
.align-items-end      { align-items: flex-end !important; }
.align-items-center   { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch  { align-items: stretch !important; }

.align-content-start   { align-content: flex-start !important; }
.align-content-end     { align-content: flex-end !important; }
.align-content-center  { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around  { align-content: space-around !important; }
.align-content-stretch { align-content: stretch !important; }

.align-self-auto     { align-self: auto !important; }
.align-self-start    { align-self: flex-start !important; }
.align-self-end      { align-self: flex-end !important; }
.align-self-center   { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch  { align-self: stretch !important; }

.mb {
    margin-bottom: 10px;
}

.m1 {
      margin: 5px;
}

.mb2 {
    margin-bottom: 15px;
}

.mb3 {
    margin-bottom: 20px;
}

.mb4 {
    margin-bottom: 30px;
}

.mt {
    margin-top: 10px;
}


.mt0 {
    margin-top: 0;
}

.mt1 {
    margin-top: 5px;
}

.mt4 {
    margin-top: 30px;
}

.mb0 {
    margin-bottom: 0;
}

.mn {
    margin: 0;
}

.m0 {
    margin: 0;
}

.my0 {
   margin-top: 0;
   margin-bottom: 0;
}

.my2 {
   margin-top: 15px;
   margin-bottom: 15px;
}

.px0 {
   padding-left: 0;
   padding-right: 0;
}

.py0 {
   padding-top: 0;
   padding-bottom: 0;
}

.pb0 {
    padding-bottom: 0;
}

.py {
   padding-top: 10px;
   padding-bottom: 10px;
}

.py1 {
   padding-top: 5px !important;
   padding-bottom: 5px !important;
}

.py2 {
   padding-top: 10px !important;
   padding-bottom: 10px !important;
}

.pr0 {
   padding-right: 0;
}

.p2 {
   padding: 15px;
}

.pt2 {
   padding-top: 15px;
}

.pt3 {
   padding-top: 20px;
}

.pb2 {
   padding-bottom: 15px;
}

.img-circle {
    border: 1px solid #eee;
}

.border-none {
  border: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
   position: relative;
}

.fee-selector{
   height: 40px;
}

.fee-selector:hover{
   cursor: pointer;
   background-color: #fff7dd;
}

.border-left {
    border-left: 1px solid #eff2f7;
}

.border-right {
    border-right: 1px solid #eff2f7;
}


.border-bottom {
    padding-bottom: 5px;
    border-bottom: 1px solid #eff2f7;
}

.border-none {
    border: none;
}

.border {
   border: 1px solid #eff2f7;
}

.height-auto {
   min-height: auto;
   height: auto;
}

.width-100 {
   width: 100%;
}

.font-size-xs {
   font-size: 11px;
}

.box-shadow {
   box-shadow: rgba(62, 57, 107, 0.07) 0px 1px 15px 1px;
}

.bg-light {
   background-color: #f5f5f5;
}
