html, body, div, span, a, nav, ul, li, pre {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a,
a:hover,
a:focus {
    text-decoration:none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    outline: 0;
}

*:focus {
    outline: 0;
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Source";
    src: url("../fonts/SourceCodePro-Medium.ttf");
}

/*** BODY ***/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    background: #f7f8f9;
}

body.home {
    background: #222420;
}

pre {
    display: block;
    background-color: inherit;
    border: none;
    font-family: inherit;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    word-break: normal;
}

.form-item {
    margin-bottom: 20px;
}

.form-item.required label::after {
    content: " *";
}

.form-item span.empty {
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 6px 12px;
    background-color: #fff;
}
.form-item span.empty.error {
    background-color: #ffdede;
}

.wrapper fieldset {
    border: 1px solid #eee;
    max-width: 460px;
    padding: 10px;
}
.wrapper fieldset .form-item:last-child {
    margin-bottom: 0;
}

.sweet-alert {
    width: 445px;
}
.sweet-alert h2 {
    font-size: 20px;
    margin: 5px 0;
    line-height: 30px;
}
.sweet-alert p {
    display: none !important;
}
.sweet-alert .sa-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
    width: 5px;
    height: 27px;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
    width: 7px;
    height: 7px;
}

/* LOADER */

#loader {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;

    transition: width 0.3s ease-out 0s;
    -webkit-transition: width 0.3s ease-out 0s;
    -moz-transition: width 0.3s ease-out 0s;
    -ms-transition: width 0.3s ease-out 0s;
    -o-transition: width 0.3s ease-out 0s;
}
#loader.upload {
    background-color: #ffb683;
}
#loader.hide {
    display: block !important; /* Override bootstrap */

    opacity: 0;
    transition: opacity 1s ease 0s;
    -webkit-transition: opacity 1s ease 0s;
    -moz-transition: opacity 1s ease 0s;
    -ms-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
}

/* LOADER - FULL */

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #2659a5;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
}

#loader-full{
    display: none;
    position: fixed;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,.8);
}

/* HEADER */

#header {
    background: #222420;
    border-bottom: 2px solid #222420;
    position: fixed;
    width: 100vw;
    z-index: 5;
}

/* HEADER - LOGO */


#header .logo {
    display: inline-block;
    padding: 4px 0;
    height: 64px;
    vertical-align: middle;
    width: 110px;
    cursor: pointer;
}

#header .logo {
    position: relative;
    background: url(../images/puzzle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
}

#header .logo a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* HEADER - HUB */

#header .hub {
    display: inline-block;
    padding:4px 0;
    vertical-align: middle;
}

#header .hub a {
    padding: 10px 20px;
    margin: 0 10px;
    font-weight: 900;
    border-radius: 25px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #fff;
    border: 3px solid #fff;
}

#header .hub a:hover {
    background: #fff;
    color: #aaa;
    border-color: #fff;
}

/* HEADER - SEARCH */

#header .search {
    display: inline-block;
    padding: 4px 0;
    vertical-align: middle;
    position: relative;
}

#header input[type=text] {
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 25px;
    width: 280px;
    color: #212121;
    background: #f6f6f6;
    border: 3px solid #f6f6f6;
    padding-right: 40px;
}

#header .search .oi-magnifying-glass {
    position: absolute;
    right: 10px;
    color: #ccc;
    padding: 18px 30px;
}

/* HEADER - ACCOUNT */

#header .account {
    display: inline-block;
    float: right;
    line-height: 64px;
    vertical-align: middle;
}

#header .account a {
    padding: 10px 20px;
    color: #fff;
    font-weight: 900;
    border-radius: 25px;
    text-decoration: none;
    margin-left: 10px;
}

#header .account a:hover,
#header .account a:focus {
    background: #fff;
    color: #aaa;
}

/* NOTIFICATION */

#notification {
    //margin-bottom: 10px;
    //text-align: center;
    //height:30px;
    //line-height: 30px;
}

#notification-stack {
    position:fixed;
    bottom:0;
    left: 20px;
    width: 320px;
    z-index: 1;
    font-size: 13px;
    padding-bottom: 80px;
}

#notification-stack .notification-error {
    background: #eb5424;
    color: #fff;
}

#notification-stack .notification-error a {
    display:none;
}

#notification-stack .notification-success {
    background: #12ac33;
    color: #fff;
}

#notification-stack .notification-success a {
    display:none;
}

/* CONTENT */

#content {
    padding-top: 64px;
}

.wrapper {
    border: none;
    border-radius: 2px;
    padding: 20px;
    background: #fff;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    box-shadow:  inset -1px 0 0 0 rgba(224,227,231,.6), inset 0 -1px 0 0 #e0e4e7, inset 1px 0 0 0 rgba(224,227,231,.6);
}

.wrapper input,
.wrapper select,
.wrapper textarea,
.wrapper .form-group,
.wrapper .form-item,
.wrapper .checkbox,
.wrapper .section,
.wrapper .desc {
    max-width: 460px;
}

.wrapper .section {
    border-radius: .236em;
    padding: 0.618em 1em;
    font-weight: 900;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    box-shadow: none;
    border: 2px solid #757575;
    color: #757575;
    margin-bottom: 10px;
    width: 100%;
}

.wrapper .desc {
    font-size: 14px;
    color: #757575;
    font-weight: 800;
    background: #e0e0e0;
    border-radius: .236em;
    padding: 0.618em 1em;
    margin-bottom: 20px;
}

/* INFO */

.info {
    float: right;
    max-width: 300px;
    width: 300px;
    color: #bdbdbd;
}

.info .section {
    border: 2px solid #bdbdbd;
    color: #bdbdbd;
}

.info .notification {
    text-transform: none;
    background: #FFC107;
    border-color: #FFC107;
    color: #fff;
}

.info .notification .error {
    font-weight: bold;
    text-transform: uppercase;
    color: #FFECB3;
}

.info .notification .error {

}

input[type=checkbox] {
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    margin-right: 5px;

    display: inline-block;
    width: auto;
    height: auto;
}
input[type=checkbox] ~ label {
    font-weight: normal;
    display: inline-block;
    margin: 0;
}

input,
select,
textarea {}

textarea.form-control {
    min-height: 180px;
}

input.required {/*TODO*/
    border-color: red;
}

/* ATTACHMENTS */

#upload-form {
    width: 100%;
    padding: 20px;
    color: #aaa;
    border: 2px dashed #aaa;
    border-radius: 8px;
    display: inline-block;
}

#upload-form #upload {
    margin: 0;
}

#attachment-list .category {
    opacity:0.75;
}

/* SIDEBAR */

#sidebar {
    max-width: 256px;
    width: 220px;
    float: left;
    padding-top:20px;
    position: absolute;
}

#sidebar.error,
#sidebar.auth{
    display:none;
}

/* SIDEBAR DASHBOARD */

#sidebar ul {
    list-style: none;
    margin-bottom:20px;
}

#sidebar ul li.title,
#sidebar ul.tag li.title {
    color: #aaa;
    font-weight: 900;
    margin-bottom:4px;
    text-transform: uppercase;
    padding: 0;
    display: block;
    letter-spacing: 2px;
    font-size: 1em;
}

#sidebar ul.copyright li {
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    text-align: center;
}

#sidebar ul li {
    padding:2px 0;
    font-weight: bold;
    font-size: 13px;
}

#sidebar ul li.disabled {
    opacity:0.4;
    pointer-events: none;
}

#sidebar ul li a {
    padding:10px 14px;
    border-radius:4px;
    background-color: rgba(0,0,0,.05);
    color: #888;
    letter-spacing: 1px;
    display: block;
}

#sidebar ul li a.active {
    background: #37474F; //#404040;
    color: #fff;
}

#sidebar ul li a:hover {
    background: #37474F; //#404040;
    color: #fff;
}

#sidebar ul li .notification {
    border-radius: 25px;
    padding-top:8px;
    height: 26px;
    width: 26px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    position: relative;
    top: -4px;
    right: -8px;
    text-align:center;
}

#sidebar ul li .notification.pending {
    background: #F9A825;
}

#sidebar ul li .notification.required {
    background: #E64A19;
}

#sidebar ul li .notification.complete {
    background: #689F38;
}


/* SIDEBAR - HUB */

#sidebar ul.primary li a {
    background: #ccc;
    color: #fff;
}

#sidebar ul.secondary li a {
    background: #f6f6f6;
    color: #888;
    opacity: 0.5;
}

#sidebar ul.tag li {
    display: inline;
}

#sidebar ul.tag li a {
    padding: 4px 8px;
    line-height: 28px;
    display: inline;
}

/* SIDEBAR HOME */

#sidebar.home {
    margin-top: 10vh;
    color: #f8f8f8;
    max-width: 700px;
    width: 700px;
    position: relative;
}

#sidebar.home h5 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 1.2em;
}

#sidebar.home p,
#sidebar.home ul {
    //font-size: 1.1em;
    list-style: none;
}

#sidebar.home ul li {
    font-size: 14px;
    line-height: 26px;
}

#sidebar.home ul.copyright li {
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    text-align: left;
}

#sidebar.home ul li .highlight {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    background: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 4px;
    margin: 0 2px;
    color: #0277BD;
    font-family: Source;
    display: inline-block;
    line-height: 14px;
}

#sidebar.home .widget {
    width: 320px;
    display: inline-block;
    margin:0;
    padding:0;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    vertical-align: top;
}

#sidebar.home .widget img{
    border: 6px solid rgba(255, 255,255, 0.3);
    border-radius: 4px;
    width: 320px;
    margin: 10px 0;
}

#sidebar.home .widget .highlight {
    background: #0277BD;
    padding: 4px 6px;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: Source;
    text-transform: uppercase;
    font-size: 11px;
}

#sidebar.home ul li a{
    background: none;
    padding:0;
    display: inline;
}

#sidebar.home ul li a:hover,
#sidebar.home ul li a:focus {
    color: #01579B;
}


#sidebar.home ul.footnote{
    margin-top:40px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#sidebar.home ul.footnote img{
    float: left;
    height: 40px;
    opacity: 0.4;
}

#sidebar.home ul.footnote li p{
    display: table-cell;
    width: 600px;
    padding: 2px 8px;
    font-size: 0.95em;
    opacity: 0.4;
    margin: 10px;
    font-size: 12px;
    line-height: 18px;
}

/* MAIN */

#main {
    //height: 100px;
    margin-left: 256px;
    padding-top:20px;
}

/* MAIN - HOME */

#main.home {
    width: 420px;
    height: 420px;
    float: right;
    padding-top:0;
    margin-left: 0;
}

#main.home .bg {
    background: url('../images/bg.png') no-repeat;
    background-size: 40%;
    width: 100%;
    height: 100%;
    position:fixed;
}

/* MAIN - AUTH/ERROR */

#main.error,
#main.auth {
    position: relative;
    top: 50px;
    text-align: center;
    color: #aaa;
    margin:0 auto;
}

#main.error img {
    width: 200px;
}

#main.error h4 {
    font-weight: 900;
    font-size: 23px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#main.error p {
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 2px;
}

/* MAIN - EMPTY */

#main .empty li {
    display: inline;
    list-style-type: none;
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    background: #fafafa;
    border: 2px solid #eee;
    border-radius: 4px;
}

#main .empty li.item .empty-icon {
    text-align: center;
    padding-top: 40px;
    font-size: 80px;
    color: #BDBDBD;
}

#main .empty li.item .empty-title {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #BDBDBD;
}

#main .empty li.item .empty-text {
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    margin-bottom: 20px;
    color: #757575;
}

/* MAIN - DASHBOARD */

#main a.create {
    padding: 10px 20px;
    border-radius: 4px;
    background: #eb5424;
    text-transform: uppercase;
    float: right;
    position: relative;
    top: 30px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 30px;
}

#main a.disabled {
    opacity:0.4;
    pointer-events: none;
}

#main a.createexpression {
    background: #eb5424 none repeat scroll 0 0;
    border-radius: 25px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 30px;
    padding: 10px 20px;
    position: relative;
    text-transform: uppercase;
}

#main a.create:hover {
    opacity: 0.75;
}

#main a.back {
    padding: 10px 20px;
    border-radius: 25px;
    background: #f6f6f6;
    color: #888;
    text-transform: uppercase;
    float: right;
    position: relative;
    top: 30px;
    letter-spacing: 1px;
    line-height: 30px;
    font-size: 14px;
}

#main a.back:hover {
    background: #404040;
    color: #fff;
}

#main .action:hover {
    opacity: 0.75;
}

#main .view {
    padding: 10px 20px;
    border-radius: 25px;
    background: #0277BD;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-size: 12px;
    float: right;
    margin-top: 10px;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
    font-weight: 900;
}

#main .view:hover {
    opacity: 0.75;
}

#main h3 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #37474F;
}

#main h3 small {
    display: inline-block;
    line-height: 16px;
    padding-top: 8px;
}

#main .wrapper li {
    //padding: 20px 0;
    list-style: none;
    //border-bottom: 2px solid #eee;
}

#main .button-back {
    font-size: 24px;
    padding-right: 30px;
}

#main .dim {
    color: #bdbdbd;
    border-color: #bdbdbd;
}

#main h5 {
    color: #aaa;
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
    padding: 0;
    display: inline;
    letter-spacing: 2px;
    font-size: 1em;
}

#main h5 a {
    color: #aaa;
    //font-weight : bold;
}

/* MAIN - SECONDARY */

#main .secondary {
    //margin-bottom: 20px;
    padding-bottom: 20px;
    //border-bottom: 1px solid #eee;
}

#main .secondary li {
    display: inline-block;
    list-style-type: none;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 3px;
}

#main .secondary li a {
    display: block;
    padding: 10px 14px;
    background-color: rgba(0,0,0,.05);
    color: #888;
    border-radius:4px;
}

#main .secondary li a:hover {
    background: #78909C; //#0288D1;
    color: #fff;
}

#main .secondary li a.active {
    background: #78909C; //#0288D1;
    color: #fff;
}

/* MAIN - CARD - TO BE UPDATED */

#main .card li,
#main .card li.component,
#main .card li.dashboard{
    display: inline;
    list-style-type: none;
    display: block;
    padding: 20px;
    margin-bottom: 14px;
    background: #fff;
    border: none;
    border-radius: 2px;
    box-shadow: inset -1px 0 0 0 rgba(224,227,231,.6), inset 0 -1px 0 0 #e0e4e7, inset 1px 0 0 0 rgba(224,227,231,.6);
}

#main .card li:hover{
//box-shadow: 0 2px 6px 0 #e0e4e7, inset -1px 0 0 0 rgba(224,227,231,.3), inset 0 -1px 0 0 #e0e4e7, inset 1px 0 0 0 rgba(224,227,231,.2);
}

#main .card li.component .upload{
    border: 4px dotted rgba(0,0,0,.05);
    border-radius: 4px;
}

#main .card li.component .policy{
    line-height: 22px;
    margin: 0 10px;
}

#main .card li.component.configure,
#main .card li.dashboard.configure{
    width: 540px;
    float: left;
}

#main .card li.component.policy,
#main .card li.dashboard.policy{
    width: 330px;
    float: right;
    clear: right;
}

#main .card li.details{
    color: #888;
}

#main .card li.component .title,
#main .wrapper .title{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #BDBDBD;
    line-height: 30px;
}

#main .card li.component .dashboard-title,
#main .card li.dashboard .dashboard-title{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #0288D1;
}

#main .dashboard h5{
    color: #aaa;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 16px;
}

#main .dashboard h3 small{
    color: #424242;
}

#main .dashboard h4 small,
#main .dashboard h3 small{
    color: #aaa;
}

#main .card li .author{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: normal;
    color: #8f9ea8;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 14px;
}

#main .card li.dashboard .icon{
    font-size: 3.4em;
    color: #e5e5e5;
//float: right;
    height: auto;
    margin: 0;
}

#main .card li .icon{
    font-size: 3.4em;
    color: #e5e5e5;
    float: left;
    height: 200px;
    margin-right: 20px;
}

#main .card li .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: normal;
    max-width: 540px;
}

#main .card li .meta{
    color: #bdbdbd;
    max-width: 540px;
    font-size: 14px;
    color: #8f9ea8;
    max-width: 540px;
    margin: 10px 0;
    line-height: 20px;
    letter-spacing: normal;
}

#main .card li .section{
    font-weight: bold;
    letter-spacing: 0px;

    margin-bottom: 14px;
    margin-bottom: 10px;

    background: #78909C;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    border: 0px;
}

#main .card li .key{
    margin: 10px 0;
    border: none;
}

#main .card li .key li{
    display: inline;
    color: #BDBDBD;
    font-size: 13px;
    font-weight: bold;
    border: 2px dotted #ccc;
    border-radius: 25px;
    padding:4px 8px;
    border-radius: 25px;
    margin-right: 4px;
    letter-spacing: 1px;
    background: none;
    text-transform: lowercase;
}

#main .card li .label{
    box-shadow: none;
    white-space: normal;
    display: block;
    padding: 10px 0;
    color: #757575;
    font-weight: 500;
}

#main .card li .label{
    border-bottom: 1px solid #eee;
}

#main .card li .label li{
    padding: 0;
    box-shadow: none;
}

#main .card li .empty-icon{
    text-align: center;
    padding-top: 40px;
    font-size: 80px;
    color: #BDBDBD;
}

#main .card li .empty-title{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #BDBDBD;
}

#main .card li .empty-text {
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
    margin-bottom: 20px;
}

/* CARD LAYOUT */

.wrapper .card{
    border: none;
    border-radius: 2px;
    padding: 20px;
    background: #fff;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    box-shadow:  inset -1px 0 0 0 rgba(224,227,231,.6), inset 0 -1px 0 0 #e0e4e7, inset 1px 0 0 0 rgba(224,227,231,.6);
}

.card h3{
    margin-top: 0;
    font-size: 22px;
}

.icon {
    font-size: 40px;
    color: #e5e5e5;
    padding-left: 6px;
}

.data{
    padding-left: 0;
}

.card h5 a {
    color: #337ab7;
}

/* LANGUAGE */

select.lang {
    padding: 4px 8px;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 0 #ccc, 0 -1px #fff inset;
    -moz-box-shadow: 0 2px 0 #ccc, 0 -1px #fff inset;
    box-shadow: 0 2px 0 #ccc, 0 -1px #fff inset;
    color: #888;
    //border: 1px solid #ddd;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    width: 160px;
    text-align: left;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: #fff;
}

/* ACCOUNT */

.token {
    width: 400px;
    display: none;
    margin-bottom: 0px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #C9D787;
    color: #7D8A2E;
    border: 1px solid #eee;
    font-family: Consolas, Menlo, Courier, monospace;
}

/* AUTH LOGIN/REGISTER */

.login-header {
    //background:blue;
    text-align:center;
    width:300px;
    margin: 0 auto;
}

.login-header img {
    max-width:400px;
    max-height:200px;
    margin:40px;
}

.login-header .actions {
    margin:20px 0;
    text-align: left;
    color:#f8f8f8;
}

.login-body .actions {
    text-align: center;
    outline:none;
    border:0;
}

.login-third-part-icon {
    width: 18px;
    height: 18px;
}

.btn-back,
.btn-fwd {
    border-radius: 50px;
    border: 3px solid #f6f6f6;

    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    margin: 0 10px;
    color: #aaa;
    outline: none;
    position: relative;

    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #ccc;
}

.btn-back:hover,
.btn-fwd:hover {
    background: #f6f6f6;
    color:#aaa;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

.btn-back-arrow,
.btn-fwd-arrow {
    display: inline-block;
    //position: relative;
    //left: -6px;
    //width: 0;
}

.btn-back-text {
    text-transform: uppercase;
    //letter-spacing: 1px;
    font-weight: 800;
    color: #ccc;
}

.login-body hr {
    margin:40px;
}

.login-body {
    padding: 10px 10px 30px 10px;
    margin: 0 1rem 1rem;
    border-radius: 10px;
    position:relative;
}

.login-body .title {
    margin:20px 50px;
    text-align:center;
    font-weight:400;
    color: #787878;
    text-transform: uppercase;
    font-size:13px;
    opacity:0.8;
}

.login-body .form-group {
    margin-top:10px;
    font-weight:400;
    font-size:12px;
    position:relative;
}

.login-body input[type=text]:focus,
.login-body input[type=password]:focus {
    background: #eee;
}

.login-body input[type=text],
.login-body input[type=password],
.login-body input[type=email],
.login-body input[type=date],
.login-body select {
    border: 0;
    width: 280px;
    height:60px;
    background: #f8f8f8;
    padding-left: 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    margin:0 auto;
    margin-bottom: 10px;
}

.login-body label {
    padding-left: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-body .checkbox {
   margin:20px 0 0 100px;
   //width: 280px;
   margin-left:50px;
}

.login-body .btn-block {
    font-weight:800;
    display: block;
    position: relative;
    width: 280px;
    padding: 20px;
    border-radius: 50px;
    border: 0;
    font-size: 14px;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,.1);
    margin: 20px auto;
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 10px solid #eee;
}

.login-body .btn-block:hover {
    //top:1px;
}

.login-body .btn-login {
    background: #eb5424;
    //box-shadow: 0 3px 0 #D92702;
}

.login-body .btn-login:hover {
    background: #C0370C;
    //box-shadow: 0 3px 0 #D92702;
}

.login-body .level-a {
    background: #f26964;
    box-shadow: 0 3px 0 #D92702;
}

.login-body .level-kos {
    background: #F2A664;
    box-shadow: 0 3px 0 #D4833E;
}

.login-body .level-s {
    background: #3D8E92;
    box-shadow: 0 3px 0 #267C80;
}

.login-body .level-l {
    background: #4FBE56;
    box-shadow: 0 3px 0 #30A738;
}

.login-body .icon-a {
    position:absolute;
    top:-4px;
    left:-120px;
    opacity:0.4;
}

.login-body .icon-kos {
    position:absolute;
    top:-4px;
    left:-120px;
    opacity:0.4;
}

.login-body .icon-s {
    position:absolute;
    top:4px;
    left:-120px;
    opacity:0.4;
}

.login-body .icon-l {
    position:absolute;
    top:4px;
    left:-120px;
    opacity:0.4;
}

.login-body .btn-restore {
    font-weight:400;
    display: block;
    position: relative;
    width: 280px;
    //padding: 0 0 0 50px;
    margin:0 auto;
    font-size: 1em;
    opacity:0.4;
}

.login-body .btn:focus,
.login-body .btn-block:focus,
input[type=file] {
    outline: none !important;
}

.login-body .form-group .disabled {
    background: #eee;
}

.login-footer {
    text-align:center;
    font-size: 12px;
    color: #b3b3b3;
    opacity: 0.8;
    padding: 2em;
}

.login-body select {
    width: 270px;
    height: 30px;
}

.login-body fieldset {
    width: 270px;
    margin: 0 auto;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.login-body fieldset .hide-field {
    display: none;
}
.login-body fieldset.add-org .hide-field {
    display: block;
}
.login-body fieldset.add-org {
    border: 1px solid #eee;
    padding: 10px;
    width: 300px;
}
.login-body textarea {
    background-color: #f8f8f8;
}

.login-body .select2-container {
    font-size: 14px;
}
.login-body .select2-container--default .select2-selection--single {
    text-align: left;
    height: 30px;
    border-color: #eee;
    background-color: #f8f8f8;
}
.select2-container .select2-dropdown {
    border-color: #eee;
}

select.error ~ .select2 {
    border: 1px solid #eb5424;
}

.login-body span[title="- Select or add organisation -"] {
    color: #a0a0a0 !important;
}

.login-body span[title="- How did you hear about us? -"] {
    color: #a0a0a0 !important;
}

/* OI */

#sidebar .oi,
#header .oi {
    width:20px;
    //margin: 0 10px;
}

.secondary .oi {
    //width: 10px;
}

.oi:hover {
    //opacity:0.5;
    cursor: pointer;
}

/* BOOTSTRAP OVERRIDE */

.form-control,
.form-control:focus {
    border-color: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.4;
}

label {
    font-weight: 900;
    color: #757575;
    letter-spacing: 1px;
    max-width: 460px;
    display: block;
    padding-left: 20px;
    text-indent: -20px;
}

label.heading{
    display: inline-block;
    background: #eee;
    padding: 4px 6px;
    text-transform: uppercase;
    position: relative;
    text-indent: 0;
    left: -20px;
    margin: 10px 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

label.multiline {
    padding-left: 0;
    text-indent: 0;
}

label.lang {
    color: #fff;
}

.label { 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alert {
    background: #404040;
    color: #eee;
    font-weight: bold;
    border: none;
}

.alert a {
    color: #a1c2fa;
}

.alert .close {
    color: #eee;
}

.form-control {
    border-color: #eee;
}
.form-control.stored {
    background-color: #ffffcb;
}
.form-control.error {
    border-color: #eb5424;
}
.form-item .select2-selection {
    border-color: #eee;
}
.form-item .select2-container--focus .select2-selection {
    border-color: #ccc;
}

.table {
    margin-bottom: 0;
}

th, td {
    padding: 5px;
}

.wrapper .table > tbody > tr > td:last-child {
    //vertical-align: middle;
    text-align: right;
}
.table > tbody > tr.try-delete {
    background-color: #f1c0c0;
}
.table > tbody > tr.try-delete td {
    text-decoration: line-through;
}
.table > tbody > tr.try-delete td:last-child {
    text-decoration: none;
}

.nav-pills {
    margin-bottom: 20px;
}

/* MAp style */

.map-leaflet{
	height: 360px;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 2;
}

.leaflet-pane {
    z-index: 1;
}

.height-inherit{
	height: inherit;
}

#main .empty li.component .dashboard-title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #0288D1;
}
#main .empty li.component .desc {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    color: #666;
    max-width: 540px;
}
#main .empty li.component .icon {
    font-size: 40px;
    line-height: 100%;
    color: #bdbdbd;
    padding: 10px;
}

.img-caption{
    height: 100px;
    width: 100px
}

.iscommission {
    opacity: 0.7;
}

.center {
    margin: auto;
    width: 50%;
    padding: 10px;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 320px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.service {
    padding-bottom: 15px;
    padding-top: 15px;
    margin: 0px 2px 0px 2px;
    background-color: rgba(0,0,0,.05);
    cursor: pointer;
}

.service:hover {
    box-shadow: 0px 0px 20px 0px rgba(150,150,150,0.75);
}

.affiliations-image {
    height: 80px;
}

.affiliations-image img {
    max-height: 50px;
}

#solutions .row {
    cursor: pointer;
}

#solutions .row:hover {
    box-shadow: 0px 0px 20px 0px rgba(150,150,150,0.75);
}

span.cursor-pointer {
    cursor: pointer;
}