@charset "utf-8";

@font-face {
  font-family: 'Myriad';
  src: url('../webfonts/myriadpro-semibold-webfont.eot');
  src: url('../webfonts/myriadpro-semibold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/myriadpro-semibold-webfont.woff2') format('woff2'),
    url('../webfonts/myriadpro-semibold-webfont.woff') format('woff'),
    url('../webfonts/myriadpro-semibold-webfont.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;

}

@font-face {
  font-family: 'Myriad';
  src: url('../webfonts/myriadpro-bold-webfont.eot');
  src: url('../webfonts/myriadpro-bold-webfont.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/myriadpro-bold-webfont.woff2') format('woff2'),
    url('../webfonts/myriadpro-bold-webfont.woff') format('woff'),
    url('../webfonts/myriadpro-bold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;

}

@font-face {
  font-family: 'Avenir';
  src: url('../webfonts/avenir_next_lt_pro_regular-webfont.eot');
  src: url('../webfonts/avenir_next_lt_pro_regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/avenir_next_lt_pro_regular-webfont.woff2') format('woff2'),
    url('../webfonts/avenir_next_lt_pro_regular-webfont.woff') format('woff'),
    url('../webfonts/avenir_next_lt_pro_regular-webfont.ttf') format('truetype'),
    url('../webfonts/avenir_next_lt_pro_regular-webfont.svg#avenirnext_lt_pro_regularRg') format('svg');
  font-weight: 400;
  font-style: normal;

}

body {
  font-family: Myriad, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 500;
  background-color: #F0F5F7;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Avenir, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 400;
  line-height: 1.1em;
}
html, body {
  position: relative;
  height: 100%;
}
.badge {
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.3);
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}
button:focus {
  outline: none; 
}


/* General Layout */

.header {
  background-color: #fff;
  height: 55px;
  position: relative;
}
.header .drop-user {
  position: absolute;
  right: 0;
}
.logo a {
  display: block;
  color: #374953;
  padding: 5px 10px;
  font-size: 32px;
  font-family: Avenir, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 400;
  letter-spacing: -1px;
  position: absolute;
}
.logo a:hover {
  color: #53A4A4;
  text-decoration: none;
}
.logo .icon-dotsignal {
  opacity: .35;
  font-size: 60px;
  float: right;
  margin-left: 8px;
  margin-top: 0;
}
.header .drop-user > a {
  display: block;
  color: #666;
  font-weight: 700;
  height: 55px;
  border-left: 1px solid #eee;
  padding-left: 60px;
  padding-right: 10px;
}
.header .drop-user > a:hover,
.header .drop-user > a:focus {
  text-decoration: none;
  color: #333;
}
.header .drop-user .username {
  line-height: 53px;
}
.drop-user .imgbox {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  left: 10px;
  top: 7px;
}
.drop-user .imgbox img {
  width: 100%;
  height: auto;
}
.drop-user .dropdown-menu {
  right: 0;
  left: auto;
}

/* Content */

.content {
  margin: 0 auto;
  padding-left: 65px;
  padding-top: 0;
  min-width: 768px;
}
.content > .header {
  padding: 6px 12px;
  min-height: 55px;
  background-color: #374852;
  color: #fff;
}
.content > .header p {
  margin: 0;
}
.content > .header h2 {
  font-size: 24px;
  margin: 0;
  color: #fff;
  padding-top: 7px;
  font-weight: 400;
}
.content > .header h2 span {
  opacity: .8;
}
.content > .body {
  padding: 12px;
  padding-top: 12px;
}
.content .actions {
  position: absolute;
  right: 0;
  top:0;
}
.content .actbtn {
  float: left;
  display: block;
  padding: 17px 18px;
  color: #fff;
  margin: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.content .actbtn:hover {
  background-color: rgba(0,0,0,0.12);
}
.actions .helper {
  float: left;
  position: relative;
}
.helper p {
  font-size: 13px;
  position: absolute;
  top: 7px;
  animation: arrowbounce 1s alternate infinite;
  -moz-animation: arrowbounce 1s alternate infinite;
  -webkit-animation: arrowbounce 1s alternate infinite;
}
/* Boucing Arrow Animation */

@keyframes arrowbounce {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-moz-keyframes arrowbounce { /* Firefox */
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-webkit-keyframes arrowbounce {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}


.content .actions .btn-default {
  font-size: 14px;
  padding: 9px 10px;
  height: 34px;
}
.content .actions .btn-primary {
  background-color: #F28C37;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.content .actions .btn-primary:hover {
  background-color: #474D50;
  color: #fff;
}
.content .actions .btn-primary [class^='icon-'] {
  margin-left: 5px;
  opacity: .6;
  font-size: 11px;
}
.content .actions .btn-default [class^='icon-'] {
  margin: -2px 0;
}
.content .actions .btn-action {
  font-size: 17px;
}
.content .actions .btn-action [class^='icon-'] {
  position: relative;
  top: -2px;
}
.content .actions .dropdown-menu {
  right: 0;
  left: auto;
  margin-top: -1px;
}
.dropdown-menu {
  padding: 0;
  margin: 0;
  border: 1px solid #919BA6;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  background-clip: padding-box;
}
.dropdown-menu>li>a {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  border-top: 1px solid #E3ECEE;
  padding: 5px 15px;
}
.dropdown-menu>li:first-child>a {
  border-top: none;
}
.dropdown-menu>li>a:hover {
  background-color: #F0F1F2;
}

/* Sidemenu */

.sidemenu {
  position: fixed;
  width: 65px;
  background-color: #53A4A4;
  top: 55px;
  height: 100%;
  z-index: 20;
}
.list-menu > li a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 30px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  text-decoration: none;
  text-align: center;
  height: 70px;
  line-height: 74px;
  position: relative;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.list-menu > li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0,0,0,.07);
}
.list-menu > li a.active,
.list-menu > li a.active:hover {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0,0,0,.15);
}
.sidemenu .badge {
  border-radius: 0;
  background-color: #2A3E4A;
  color: #fff;
  border: none;
  position: absolute;
  padding: 2px 4px;
  right: 10px;
  top: 10px;
}



.avatar {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  display: inline-block;
  margin-top: 14px;
}
.avatar img {
  vertical-align: top;
}



/* Content */

.grid {
  margin-left: -7px;
  margin-right: -7px
}
.grid [class^="col-md"] {
  padding-left: 7px;
  padding-right: 7px;
}

.box {
  border: 1px solid #E3ECEE;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 14px;
}
.box > .header {
  border: 1px solid #CFDFE2;
  margin: -1px;
  min-height: 55px;
  background-color: #E3ECEE;
  position: relative;
  padding: 15px;
}
.box > .header h4 {
  font-family: Myriad, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  text-transform: uppercase;
  margin: 0;
  line-height: 1em;
  color: #374852;
  font-size: 15px;
  font-weight: 700;
  padding-top: 4px;
}
.box > .header > [class^="icon-"] {
  color: #374852;
  opacity: .6;
  margin-right: 8px;
  float: left;
  font-size: 24px;
}
.box > .body {
  min-height: 300px;
  padding: 10px;
}
.box > .body.nopadding {
  padding: 0;
}
.box-fluid > .body {
  min-height: inherit;
}
.box .inner {
  max-width: 640px;
  margin: 0 auto;
}
.box > .foot {
  padding: 12px 20px;
  text-align: right;
  border-top: 1px solid #E6EEF0;
}
.box > .foot .btn {
  line-height: 1;
  padding: 14px 18px;
}
.innerbox {
  background-color: #F3F7F8;
  padding: 15px;
  margin-bottom: 5px;
}
.innerbox .title {
  color: #728087;
  margin-bottom: 4px;
}

.row.collapsed {
  margin-left: -5px;
  margin-right: -5px;
}
.row.collapsed > [class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.list-actionbtns {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction:         row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: no-wrap;
  flex-wrap:         no-wrap;
  margin-bottom: 0;
}
.list-actionbtns li {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.list-actionbtns li a {
  display: block;
  margin: 0 1px;
  text-align: left;
  padding: 20px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1em;
  position: relative;
}
.list-actionbtns [class^="icon-"] {
  opacity: .4;
  font-size: 34px;
  display: inline-block;
  margin-bottom: 8px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.list-actionbtns .icon-arrow {
  position: absolute;
  right: 10px;
  opacity: .6;
  font-size: 16px;
  margin-top: 10px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.list-actionbtns li a:hover .icon-arrow {
  right: 16px;
}
.list-actionbtns li a:hover [class^="icon-"] {
  opacity: .65;
}


.columns {
  overflow-y: auto;
  padding: 20px 0;
  padding-bottom: 12px;
  white-space: nowrap;
}
.column {
  border: 3px solid #ddd;
  margin: 0 5px;
  width: 240px;
  display: inline-block;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.column.unmatched {
  border-color: #EEC4B9;
}
.column.unmatched p {
  color: #D56C53;
}
.column.matched {
  border-color: #dff0d8;
  position: relative;
}
.column.matched .act {
  visibility: hidden;
}
.column.matched:before {
  font-family: "icomoon";
  content: "\e605";
  color: #3c763d;
  font-size: 18px;
  position: absolute;
  right:3px;
  top: 3px;
  background-color: #dff0d8;
  padding: 7px 10px;
}
.column.matched .body li {
  color: #777;
}
.column .head {
  padding: 35px 20px;
}
.column .head p {
  margin: 0;
}
.column .head .type {
  color: #aaa;
}
.column .head .act {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.column .head .act a {
  color: #79C2DB;
}
.column .head .act a:hover {
  color: #53A4A4;
}
.column .body ul {
  margin: 0;
}
.column .body li {
  display: block;
  border-top: 1px solid #ddd;
  padding: 8px 20px;
}
.column .form-group {
  margin-top: 12px;
  margin-bottom: 0;
  display: none;
}
.column.edit .head {
  padding: 11px 20px;
}
.column.edit {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.column.edit .head p {
  color: #333;
}
.column.edit .act {
  display: none;
}
.column.edit .form-group {
  display: block;
}
.column .btn {
  font-size: 12px;
  line-height: 1em;
  padding: 10px 14px;
  margin-top: 5px;
  width: 49%;
}



.actionbar {
  padding: 12px 0;
  position: relative;
}
.list-stats li {
  display: inline-block;
  margin-right: 10px;
}
.list-stats li p {
  margin: 0;
  line-height: 1em;
  color: #9DA7AD;
  font-size: 14px;
  display: inline-block;
}
.list-stats li .item {
  color: #374852;
  font-size: 34px;
  font-family: Avenir, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 400;
  letter-spacing: -2px;
  margin-right: 3px;
}
.list-actions {
  position: absolute;
  right: 0;
  top: 5px;
  margin: 0;
}
.list-actions > li {
  display: inline-block;
  vertical-align: top;
}
.list-actions .dropdown-menu {
  left: auto;
  right: 0;
}
.list-actions .form .form-group {
  margin: 0;
}
.list-actions .form .form-control {
  height: 46px;
  border: 1px solid #E3ECEE;
}
.list-actions .form .form-control:focus {
  background-color: 1px solid #A6AFB5;
  box-shadow: 0 0 0 1px #A6AFB5;
}
.list-actions .form-group {
  position: relative;
}
.list-actions .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px 12px;
  color: #53A4A4;
  line-height: 1em;
}
.list-actions .btn-dropdown {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #9DA7AD;
  color: #929EA4;
  height: 46px;
  line-height: 44px;
  padding: 0 12px;
}
.drop-action .btn-dropdown {
  background-color: #9DA7AD;
  color: #fff;
}
.drop-action .dropdown-menu>li>a {
  background-color: #9DA7AD;
  color: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.drop-action .dropdown-menu>li>a:hover {
  background-color: #939EA4;
  color: #fff;
}
.list-actions .dropdown-menu [class^="icon-"] {
  float: right;
  opacity: .6;
  font-size: 80%;
  margin-top: 4px;
}
.list-actions>li>.btn [class^="icon-"] {
  margin-left: 8px;
  font-size: 80%;
}

.boxactions {
  position: absolute;
  right: 0;
  top: 0;
}
.boxactions .action {
  float: left;
}
.boxactions .dropdown-menu {
  margin-top: -1px;
  margin-right: -1px;
  right: 0;
  left: auto;
  border: 1px solid #CDD1D6;
}
.boxactions .dropdown-menu > li > a {
  padding-left: 38px;
  position: relative;
}
.boxactions .dropdown-menu [class^="icon-"] {
  position: absolute;
  left: 15px;
  opacity: .35;
  font-size: 13px;
  margin-top: 3px;
}
.boxactions .btn-boxaction {
  display: block;
  color: #AAB1BB;
  border-left: 1px solid #DFE4EA;
  width: 46px;
  height: 46px;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.boxactions .btn-boxaction:hover, 
.boxactions .btn-boxaction:focus {
  color: #8F99A7;
  text-decoration: none;
}


/* Table */
.table-regular {
  border-top: 1px solid #DFE4EA;
  border-bottom: 1px solid #DFE4EA;
  margin: 0;
}
.table-regular a {
  color: #333;
}
.table-regular a:hover {
  color: #53A4A4;
}
.table-regular>thead>tr>th {
  font-size: 13px;
  text-transform: uppercase;
  color: #52A4A4;
  line-height: 1.1em;
  padding: 14px;
  padding-bottom: 8px;
  border-bottom: none;
  vertical-align: top;
}
.table-regular>tbody>tr td:first-child,
.table-regular>thead>tr td:first-child {
  border-left: 3px solid transparent;
}
.table-regular>tbody>tr>td {
  color: #666;
  line-height: 1.25em;
  font-size: 15px;
  padding: 20px 14px;
  padding-bottom: 16px;
  border-top: 1px solid #F2F6F7;
}
.table-regular>tbody>tr>.date {
  color: #aaa;
  font-size: 14px;
}
.table>tbody>tr>td.tbl-right,
.table>thead>tr>th.tbl-right{
  text-align: right;
}
.table-regular .type {
  padding-right: 8px;
  color: #CAD5D6;
}
.table-regular .badge {
  margin: 0 5px;
  position: relative;
  top: -2px;
}
.table-regular tr.green td:first-child {
  border-left: 3px solid #D7E1B7;
}
.table-regular tr.orange td:first-child {
  border-left: 3px solid #F8D6AF;
}
.table-regular .green .badge {
  background-color: #D7E1B7;
}
.table-regular>tbody>tr:hover .list-tblactions {
  opacity: 1;
  visibility: visible;
}

.table-regular .badge {
  background-color: #B5BBC4;
  border: none;
  text-transform: uppercase;
  font-size: 11px;
  vertical-align: middle;
}
.table-regular>tbody>tr {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.table-regular>tbody>tr:hover {
  background-color: #FBFBFC;
}
.table-regular>tbody>tr.selected,
.table-regular>tbody>tr.selected:hover {
  background-color: #F4F4F7;
}
.table .check {
  margin-top: -2px;
}
.table-white {
  background-color: #fff;
}
.table-white>thead>tr>th {
  vertical-align: top;
}
.table-white>tbody>tr>td {
  padding: 12px 14px;
  padding-bottom: 5px;
}
.table-white .list-tblactions {
  margin-top: -3px;
}
.table-footer {
  background-color: #E3ECEE;
  padding: 8px 12px;
  text-align: right;
}
.table-footer .pagination {
  margin: 0;
  display: inline-block;
}
.table-footer .pagination>li>a {
  background-color: transparent;
  color: #929EA4;
  border: none;
  font-size: 15px;
  padding: 3px 10px;
}
.table-footer .pagination>li>a:hover {
  color: #6F7D84;
}
.table-footer .pagination>li.active>a {
  background-color: #fff;
  color: #52A4A4;
}
.table-footer .pagination>li.prev a,
.table-footer .pagination>li.next a {
  font-size: 17px;
  opacity: .6;
  padding-top: 4px;
}
.table-footer .pagination>li.prev a:hover,
.table-footer .pagination>li.next a:hover {
  opacity: 1;
}
.table-footer .pagination>li.prev .icon-arrow {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.list-tblactions {
  float: right;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  white-space: nowrap;
}
.list-tblactions li {
  display: inline-block;
}
.list-tblactions li a {
  display: block;
  background-color: #939EA4;
  color: #fff;
  padding: 4px 10px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  line-height: 1em;
}
.list-tblactions li a:hover {
  background-color: #374852;
  color: #fff;
  text-decoration: none;
}

.check {
  width: 23px;
  height: 23px;
  display: inline-block;
  background: url(../img/flat@2x.png) no-repeat;
  background-size: 206px auto;
  cursor: pointer;
}
.check.checked,
.selected .check {
  background-position: -27px 0;
}
.tblicon-type {
  margin-right: 15px;
}

/* DataTables */

.dataTables_length {
  padding: 12px;
}
.dataTables_length label {
  margin: 0;
}
.dataTables_filter {
  padding: 12px;
}
.dataTables_filter label {
  margin: 0;
}
.dataTables_wrapper {
  background-color: #E3ECEE;
}
.dataTables_wrapper .dataTables_info {
  padding: 12px 14px;
  color: #aaa;
  text-transform: uppercase;
  font-size: 13px;
}
.dataTables_wrapper .dataTables_filter {
  color: #aaa;
  text-transform: uppercase;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #BAC0C9;
  border-radius: 3px;
  padding: 5px 12px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border-color: #5B6266;
  outline: none;
}
.dataTables_wrapper .dataTables_filter label {
  font-weight: 400;
  font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate {
  padding: 12px 14px;
  padding-top: 6px;
}
.table.dataTable.no-footer {
  border-bottom: 1px solid #DFE4EA;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  padding: 1px 7px;
  background-color: #fff;
  background-image: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 4px 10px;
  margin-left: 2px;
  text-align: center;
  color: #AAA !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #AAA !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #eee;
}
table.dataTable thead .sorting_asc {
  background-image: url("../img/sort_asc.png");
}
table.dataTable thead .sorting_desc {
  background-image: url("../img/sort_desc.png");
}
table.dataTable thead .sorting {
  background-image: url("../img/sort_both.png");
}
table.dataTable tbody tr.selected {
  background-color: #F4F4F7;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 4px 10px;
  color: #929EA4 !important;
  border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #53A4A4 !important;
  border: none;
  background: transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #53A4A4 !important;
  border: none;
  background: #fff;
}


.tab-settings .nav-tabs {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.tab-settings .nav-tabs>li {
  -webkit-flex: 1 0;
  -ms-flex: 1 0;
  flex: 1 0;
}
.tab-settings .nav-tabs>li>a {
  text-align: center;
  background-color: #F0F1F2;
  color: #AAA;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0;
  border: none;
  border-top: 1px solid transparent;
  margin-right: 1px;
  text-transform: uppercase;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.tab-settings .nav-tabs {
  border-bottom: 1px solid #eee;
}
.tab-settings .nav-tabs>li>a:hover {
  color: #777;
  border: none;
  border-top: 1px solid transparent;
}
.tab-settings .nav-tabs>li.active>a, 
.tab-settings .nav-tabs>li.active>a:hover, 
.tab-settings .nav-tabs>li.active>a:focus {
  background-color: #fff;
  color: #F1921E;
  border: none;
  border-top: 1px solid #F1921E;
  border-bottom-color: transparent;
  cursor: default;
}
.tab-settings .tab-pane {
  padding: 18px;
}

.box .tabpanel {
}
.box .tabpanel .nav-tabs>li>a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  color: #777;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  border: none;
  background-color: #ddd;
  border-radius: 0;
}
.box .nav-tabs {
  border-bottom: 1px solid #DFE4EA;
  padding: 10px;
}
.box .tabpanel .nav-tabs>li>a:hover {
  background-color: transparent;
  opacity: 1;
}
.box .nav-pills {
  padding: 10px 15px;
}
.box .nav-pills>li>a {
  color: #596066;
  opacity: 1;
  font-size: 13px;
  font-weight: 700;
  color: #777;
  background-color: #ddd;
  border-radius: 0;
  text-transform: uppercase;
}
.box .nav-pills>li.active>a, 
.box .nav-pills>li.active>a:hover, 
.box .nav-pills>li.active>a:focus {
  color: #fff;
  background-color: #374852;
  opacity: 1;
  font-weight: 700;
  border-radius: 0;
  position: relative;
}
.box .nav-pills>li.active>a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #374852;
}
.box .tab-pane {
  padding: 25px 15px;
}
.nopadding .tab-pane {
  padding: 0;
}


.sblock {
  padding: 30px 45px;
  border-bottom: 1px solid #DFE4EA;
}
.sblock h3 {
  font-size: 17px;
  margin: 0;
  width: 120px;
  display: inline-block;
  vertical-align: middle;
}
.list-source {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.list-source li {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  width: 160px;
  height: 75px;
  overflow: hidden;
  border: 1px solid #ADBAC9;
  border-radius: 5px;
  margin: 4px 0;
  margin-right: 5px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  box-shadow: 0 0 0 2px transparent;
  opacity: .9;
  position: relative;
}
.list-source li:hover {
  box-shadow: 0 0 0 2px #ADBAC9;
  opacity: 1;
}
.list-source a {
  color: #5A6166;
  line-height: 1em;
}
.list-source span {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  padding-top: 22px;
}



/* Body styles */

.body > .inner {

}
.body h1 {
  color: #eee;
  padding: 45px 0;
  padding-top: 35px;
  font-size: 32px;
}
.body p {
  font-size: 15px;
  margin-bottom: .55em;
}
.body .alert p {
  margin: .15em 0;
}
.body .intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  margin-bottom: 35px;
  color: #ddd;
}
.btn-helper {
  font-family:"HelveticaNeueW01-65Medi";
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #636C76;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  display: inline-block;
  margin: 0 6px;
  font-size: 15px;
}
.btn-helper:hover, .btn-helper:focus {
  background-color: #5AA835;
  text-decoration: none;
  color: #fff;
  outline:none;
}
.btn-helper.btn-popup {
  width: 26px;
  height: 18px;
  border-radius: 6px;
  font-size: 17px;
  position: relative;
  bottom: -1px;
  z-index: 10;
}
.btn-helper.light, .btn-helper.light:hover {
  background-color: transparent;
  border: 1px solid #B1B7BC;
  color: #B1B7BC;
}
span.btn-helper.light.inline {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
  opacity: 0.4;
}
.helper {
  float: right;
}
.body header .helper {
  position: absolute;
  top: 15px;
  right: 15px;
}


.chart1, .chart2 {
  margin-top: 12px;
}

.showside .sidecontent {
  right: 0;
}
.showside .overlay {
  opacity: 1;
  visibility: visible;
}
.sidecontent {
  position: fixed;
  width: 550px;
  background-color: #fff;
  right: -550px;
  top: 0;
  height: 100%;
  z-index: 30;
  -webkit-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
  -moz-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
  -o-transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000); 
  transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.sidecontent h3 {
  margin: 0;
  padding: 12px;
  font-size: 18px;
}
.overlay {
  position: fixed;
  background-color: rgba(0,0,0,.45);
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}


.list-content {
  margin: -25px -15px;
}
.list-content dt {
  text-transform: uppercase;
  font-weight: 400;
  color: #AAA;
  font-size: 13px;
  padding: 22px 20px;
  position: absolute;
}
.list-content dd {
  border-bottom: 1px solid #DFE4EA;
  min-height: 40px;
  padding: 20px 20px;
  padding-left: 240px;
}
.list-content dd:last-child {
  border-bottom: none;
}
.list-content .btn-default {
  padding: 5px 12px;
  margin-left: 15px;
  text-transform: uppercase;
  font-size: 12px;
}
.list-content .btn-default:hover {
  color: #fff;
  background-color: #AAB1BB;
}
.list-content .btn-primary {
  background-color: #F28C37;
  text-transform: uppercase;
  color: #fff;
}
.list-content .btn-primary:hover {
  background-color: #5B6266;
  color: #fff;
}
.list-content .large {
  font-size: 24px;
  margin-top: -7px;
}
.list-content .checkbox {
  margin-top: 0px;
  margin-bottom: 5px;
}
.list-content input[type='email'],
.list-content input[type='text'] {
  box-shadow: none;
  border-radius: 3px;
  height: 42px;
}
.list-content input[type='email']:focus,
.list-content input[type='text']:focus {
  border: 1px solid #555;
}

.planbox {
  border: 1px solid #F0F1F2;
  max-width: 400px;
  padding: 8px 20px;
  overflow: hidden;
}
.planbox .btn-primary {
  float: right;
}
.planbox p {
  font-size: 17px;
  line-height: 35px;
  margin: 0;
}



.panel {
  border: 1px solid #2D3237;
  margin-bottom: 35px;
  border-radius: 4px;
}
.panel .head {
  padding: 14px 35px;
  background-color: #2D3237;
}
.panel .head h2 {
  font-family: 'HelveticaNeueW01-65Medi';
  font-size: 18px;
  margin: 0;
}
.panel .inner {
  padding: 25px 35px;
}
.panel .inner.nopadding {
  padding: 0;
}
.panel .head .btn-helper {
  float: right;
  margin: 0;
  margin-top: -2px;
  position: relative;
  z-index: 2;
}
.panel .foot {
  padding: 7px 35px;
  background-color: #33383E;
}
.panel .foot .btn {
  padding: 8px 14px;
  font-size: 14px;
}
.panel.light .head {
  background-color: transparent;
  border-bottom: 1px solid #2D3237;
}
.panel.light .head h2 {
  font-size: 16px;
  opacity: .85;
}

.sectfooter {
  clear: both;
  padding: 12px 30px;
  text-align: right;
  background-color: #33383E;
  margin-top: 35px;
}
.sectfooter.light {
  background-color: #363C41;
}
.sectfooter .form-inline .form-group {
  margin: 0 10px;
  margin-top: 5px;
}

.notifyjs-corner {
  padding-top: 40px;
  z-index: 14 !important;
}
.notifyjs-corner .notifyjs-wrapper, .notifyjs-corner .notifyjs-container {
  margin: 0px !important;
}
.notifyjs-container:before {
  font-family: 'icomoon';
  content: "\e608";
  color: #fff;
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  font-size: 16px;
}




.loginbox {
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid #2D3237;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -180px;
  -webkit-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.loginbox .head {
  padding: 40px 35px;
}
.loginbox .logo {
  float: left;
}
.loginbox h2 {
  font-size: 26px;
  text-align: right;
  margin: 0;
  color: #8D969E;
}
.loginbox .body {
  padding: 40px 35px
}
.loginbox .body p {
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 30px;
  color: #8D969E;
}



.btn-default {
  background-color: #939EA4;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
.btn-default:hover {
  background-color: #374852;
  color: #fff;
}
.open .dropdown-toggle.btn-default {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-ctrl {
  font-size: 22px;
  padding: 5px 12px;
  padding-top: 3px;
  min-width: 50px;
  text-align: center;
}
.ctrlbar {
  padding: 5px 12px;
  background-color: #363D41;
}

/* Buttons */
a {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
a:hover,
a:focus {
  text-decoration: none;
}
.btn {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  text-decoration: none;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
}
.btn:hover {
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: #53A4A4;
  color: #fff;
  line-height: 1;
  padding: 14px 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #468B8B;
  color: #fff;
}
.btn-primary .icon-arrow {
  margin-left: 8px;
  position: relative;
  top: 1px;
}
.btn-large {
  font-size: 26px;
  text-align: left;
  padding: 16px 40px;
  padding-bottom: 18px;
}
.btn-minfixed {
  min-width: 180px;
  text-align: center;
}
.btn-outline {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #939EA4;
  color: #939EA4;
}
.btn-outline:hover {
  background-color: #939EA4;
  color: #fff;
}

.btn-back {
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: 1px;
  border: none;
  display: block;
  text-align: left;
  background-color: #BAC0C9;
  color: #fff;
  margin-bottom: 5px;
}
.btn-back:hover, .btn-back:focus {
  background-color: #AAB1BB;
  color: #fff;
}


/* Form styling */

.form-control {
  -webkit-transition: all .1s linear;
  -moz-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}
.form-group.tight {
  margin-bottom: 2px;
}

.form.form-login .form-control {
  background-color: #fff;
  border: 2px solid #9DA7AD;
  height: 44px;
  box-shadow: none;
  border-radius: 0;
  font-family: Myriad, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 500;
}
.form-login .form-control:focus {
  background-color: #fff;
  color: #444;
}
.form-supergroup .form-group .form-control {
  margin-top: -1px;
}
.form-supergroup .form-group:first-child .form-control {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-supergroup .form-group:last-child .form-control {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-login .form-group {
  margin: 4px 0;
}
.form-login .form-delimited {
  margin-top: 12px;
}
.form .form-group-inline {
  display: inline-block;
  margin: 5px 0;
  margin-right: 15px;
}
.form .icheck {
  padding-left: 0;
}
.form-login .btn-primary {
  margin-top: 25px;
  margin-bottom: 7px;
  text-align: left;
  padding: 15px 20px;
}
.form-login .btn [class^="icon-"] {
  float: right;
}
.form .has-error .form-control {
  border: 2px solid #a94442;
  box-shadown: none;
}
.form .has-error .form-control:focus {
  border: 2px solid #a94442;
  box-shadow: none;
}
.has-error .error-msg {
  display: block;
}
.error-msg {
  color: #a94442;
  display: none;
}

.form .form-control {
  font-size: 15px;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
  border: 2px solid #A6AFB5;
  color: #444;
  height: 36px;
  font-family: Myriad, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 500;
}
.form .form-control:focus {
  background-color: #fff;
  border-color: #8C989F;
  box-shadow: none;
}
.form .form-control::-webkit-input-placeholder {
  color:#ccc;
}
.form .form-control:-moz-placeholder {
  color: #ccc;  
}
.form .form-control::-moz-placeholder {
  color: #ccc;  
}
.form .form-control:-ms-input-placeholder {  
  color: #ccc;  
}
.form .formblock.inline .form-group {
  display: inline-block;
  padding-right: 10px;
}
.form .form-bmessage {
  min-height: 80px;
}
.form-lined .form-control {
  border: none;
  border-bottom: 1px solid #9DA7AC;
  height: 40px;
  padding: 8px 6px;
}
.form-lined .form-control:focus {
  border-bottom-color: #728087;
}
.form-invisible,
.form-lined .form-invisible {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
  font-size: 16px;
}
.form-invisible:focus,
.form-lined .form-invisible:focus {
  box-shadow: none;
  background-color: rgba(255,255,255,.8);
}
.form-small {
  max-width: 80px;
}
.form .form-icheck {
  position: relative;
  padding-left: 30px;
}
.form .form-icheck .icheckbox_flat,
.form .form-icheck .iradio_flat {
  position: absolute;
  left: 0;
}
.form .form-icheck label {
  font-size: 15px;
  color: #D5D8DB;
  cursor: pointer;
  text-transform: none;
}
.form .nice {
  padding-left: 28px;
  position: relative;
  min-height: 22px;
}
.form .nice .iradio_flat,
.form .nice .icheckbox_flat {
  position: absolute;
  left: 0;
  margin-top: -1px;
}
.form fieldset {
  padding-top: 28px;
}
.form legend {
  color: #e5e5e5;
  font-size: 16px;
  border-bottom: 1px solid #5F6770;
  height: 12px;
  position: relative;
  top: 20px;
}
.form legend span {
  padding-right: 8px;
  background-color: #3E444A;
}
.form label {
  font-weight: normal;
  font-size: 13px;
  color: #aaa;
  line-height: 1.1em;
}
.form-horizontal .control-label {
  padding-top: 12px;
}
.form-nice label {
  margin-bottom: 7px;
}
.form-broadcast .form-group {
  margin: 4px 0;
}
.form .form-later {
  display: none;
}
.form-editprofile {
  padding: 35px 0;
}
.form-editprofile .form-control {
  font-size: 20px;
}
.form-editprofile .form-group {
  margin: 20px 0;
}

.file-upload-csv {
  margin: 8px 0;
}

.fileupload {
  border: 2px dotted #ccc;
  background-color: #f5f5f5;
  padding: 35px 30px;
  margin-bottom: 8px;
  border-radius: 4px;
  min-height: 60px;
  position: relative;
  cursor: pointer;
}
.fileupload:after {
  content: "Click here to upload CSV file";
  font-size: 18px;
  position: absolute;
  top: 22px;
  left: 80px;
  color: #B1B7BC;
  z-index: 1;
}
.fileupload:before {
  content: "\e608";
  font-family: 'icomoon';
  font-size: 32px;
  position: absolute;
  top: 12px;
  left: 25px;
  color: #ccc;
}
.fileupload input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hiddenpanel {
  display: none;
}
.help-block {
  color: #B1B7BC;
  line-height: 1.15em;
}
.subtext {
  font-size: 8px !important;
  line-height: 12px !important;
  margin-top: -9px;
  color: #008dd8;
  font-weight: 300;
  display: block;
  text-align: center;
  font-style: bold;
  font-family: academy-demiBold;
}



/* Dashboard */
.dash {
  overflow: hidden;
  margin: 0 -0.3%;
}
.dash > .tile {
  width: 24.4%;
  float: left;
  margin: 0 0.3%;
  min-height: 280px;
}
.tile.double {
  background-color: transparent;
  padding: 0;
  min-height: inherit;
}
.tile.double .tile.half {
  float: none;
  min-height: 137px;
  margin-bottom: 5px;
}
.tile.half .title {
  margin-bottom: 8px;
}
.tile {
  background-color: #2D3237;
  padding: 26px 30px;
}
.tile .title {
  color: #8D969E;
  font-size: 12px;
  font-family: 'HelveticaNeueW01-65Medi';
  font-weight: normal;
  margin: 0;
  margin-bottom: 25px;
  line-height: 1.2em;
  min-height: 30px;
}
.tilepicto {
  font-size: 35px;
  display: block;
  margin-bottom: 12px;
}
.positive .tilepicto,
.positive .hlight {
  color: #5AA835;
}
.negative .tilepicto,
.negative .hlight {
  color: #F24738;
}
.dash.wifi > .tile {
  width: 19.4%;
  margin: 0 0.3%;
  min-height: 155px;
  position: relative;
  margin-bottom: 6px;
}
.dash.wifi > .tile.full {
  width: 100%;
}
.dash.wifi > .tile [class^="icon-"] {
  margin-bottom: 30px;
}
.dash.wifi > .tile .title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
.dash.wifi > .tile.connected:after {
  content: "\e60e";
  font-family: 'icomoon';
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 40px;
  background-color: #3E444A;
  color: #2D3237;
  position: absolute;
  text-align: center;
  right: -19px;
  top: 50%;
  margin-top: -15px;
  z-index: 10;
}
.dash.wifi > .tile.disconnected:after {
  content: "\e616";
  font-family: 'icomoon';
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 40px;
  background-color: #3E444A;
  color: #F24738;
  position: absolute;
  text-align: center;
  right: -19px;
  top: 50%;
  margin-top: -15px;
  z-index: 10;
}
.dash > .tile.full .title {
  margin-bottom: 0;
  padding-top: 0;
  min-height: inherit;
  color: #8C969E;
  font-size: 12px;
}
.tile.full .status {
  color: #59A734;
  font-family:"HelveticaNeueW01-65Medi";
  margin-bottom: 35px;
}
.tile.full .status.error {
  color: #F24738;
}
.list-status li {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  margin-right: -4px;
  padding-right: 12px;
}

.statbox p {
  font-size: 15px;
  margin: 0;
  font-family: 'HelveticaNeueW01-65Medi';
  font-weight: normal;
  line-height: 1.2em;
  color: #eee;
}
.statbox .sub {
  font-size: 13px;
  font-weight: 400;
  color: #8D969E;
  margin: 15px 0;
}
.statbox .large {
  font-size: 28px;
  margin-bottom: 15px;
}
.list-battery li {
  width: 50%;
  float: left;
  position: relative;
  color: #8D969E;
  font-weight: bold;
  min-height: 22px;
}
.list-battery .no {
  position: relative;
  z-index: 5;
  font-size: 12px !important;
  padding: 0 4px;
  padding-right: 12px;
}
.list-battery li:before {
  content: "";
  position: absolute;
  font-family: 'icomoon';
  content: "\e602";
  color: #25282C;
  left: 0;
  font-size: 24px;
  top: -6px;
  z-index: 0;
}
.list-battery .negative {
  color: #F24738;
}
.list-battery .negative:before {
  color: #F24738;
}
.list-battery .negative .no {
  color: #25282C;
}
.list-battery .recharge .icon-bolt {
  color: #25282C;
  font-size: 14px;
  position: relative;
  top: 2px;
}
.list-battery .recharge:before {
  color: #8D969E;
}
.form .switchbox {
  margin-bottom: 10px;
}
.form .icheck {
  padding-left: 0;
}
.switchbox {
  position: relative;
  min-height: 30px;
  margin-bottom: 10px;
  padding-left: 60px;
}
.switchbox.padded {
  margin-bottom: 35px;
}
.switchbox .switchery {
  position: absolute;
  left: 0;
}
.switchbox .status {
  padding-top: 5px;
  font-weight: normal;
  font-size: 16px;
  color: #B6B6B6;
}
.switchbox.enabled .status {
  color: #5AA835;
}
.switchbox.enabled .switchery > small {
  background-color: #fff;
}

.tooltip-inner {
  border-radius: 0;
  color: #7A848D;
  font-weight: bold;
  background-color: #1C1F22;
}

.tooltipster-default .tooltipster-content {
  font-family: Open Sans, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  line-height: 1.2em;
}

.tooltip.top .tooltip-arrow {
  display: none;
}
.tooltipster-default {
  border: none;
  background-color: #1C1F22;
  font-size: 14px;

}



/* Modal box */

.modal-dialog {
  width: 700px;
  margin: 25px auto;
}
.modal-dialog .inner {
  max-width: 480px;
  margin: 0 auto;
}
.modal-header {
  padding: 16px 30px;
  text-align: left;
  position: relative;
}
.modal-title {
  font-weight: 700;
  color: #52A4A4;
  font-size: 15px;
  margin: 0;
  font-family: Myriad, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 500;
  text-transform: uppercase;
}
.modal-header .close {
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
  height: 100%;
  width: 50px;
}
.modal-content {
  border: none;
  border-radius: 0px;
}
.modal-body {
  padding: 30px;
}

.modal-body p {
  font-size: 15px;
}
.modal-body .intro {
  font-weight: 700;
}
.modal-footer {
  border-top: 1px solid #E6EEF0;
  padding: 12px 30px;
}
.modal-footer .btn,
.modal-footer .btn+.btn {
  padding: 15px;
  border: none;
  font-size: 14px;
  min-width: 120px;
  line-height: 1;
}
.body-short {
  max-width: 300px;
  margin: 0 auto;
}
.modal-small .modal-dialog {
  width: 380px;
}
.modal-small .modal-body {
  padding: 25px 30px;
  padding-bottom: 0;
}
.modal-small .modal-header {
  text-align: center;
}
.modal-small .modal-footer {
  border-top: none;
  text-align: center;
}


.user-header {
  background-color: #F0F5F7;
  border-bottom: 1px solid #E6EEF0;
  padding: 25px 0;
  position: relative;
}
.user-header .circle {
  position: absolute;
  margin-left: -50px;
}
.user-header .form-invisible {
  font-size: 20px;
  padding: 6px;
}
.user-header .switch {
  position: absolute;
  right: 30px;
  top: 23px;
}
.user-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.2em;
}
.user-header .date {
  float: right;
}
.user-header .message {
  margin-top: 20px;
  line-height: 1.35em;
}
.form .form-message {
  min-height: 120px;
  font-size: 24px;
}

.circle {
  width: 34px;
  height: 34px;
  background-color: rgba(0,0,0,.15);
  border-radius: 100%;
  text-align: center;
  line-height: 34px;
  color: #fff;
  display: inline-block;
}




.rel {
  position: relative;
}
.img-leftaligned {
  float: left;
  margin-right: 13px;
  margin-bottom: 8px;
  margin-top: 6px;
}
.img-side {
  margin-left: 12px;
  float:right;
  margin: 15px 20px;
  position: relative;
  z-index: 10;
}
.img-side:hover {
  text-decoration: none;
}
.vsmall {
  font-size: 13px !important;
  color: #aaa;
  text-align: center;
  padding-top: 2px;
}

.nobreak {
  white-space: nowrap;
}




.prefix {
  background-color: #DDD;
  border: 1px solid #ccc;
  border-right: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  color: #BBB;
  height: 42px;
  width: 42px;
  position: absolute;
  left: 15px;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
}

.list-selector {
  overflow: hidden;
  margin: -2px;
  padding: 2px;
}
.list-selector.list-noclip {
  overflow: visible;
}
.list-selector li {
  display: block;
  width: 140px;
  border: 2px solid #DDD;
  margin-right: 8px;
  margin-bottom: 8px;
  float: left;
  border-radius: 4px;
  text-align: center;
  color: #535353;
  font-size: 14px;
  line-height: 1.1em;
  padding: 10px 16px;
  min-height: 120px;
  cursor: pointer;
  position: relative;
}
.list-selector [class^='icon'] {
  display: block;
  margin-bottom: 8px;
  font-size: 42px;
  color: #ddd;
}
.list-selector li:hover {
  background-color: #F5F5F5;
}
.list-selector li:hover [class^='icon'] {
  color: #ccc;
}
.list-selector li.selected, .list-selector li.selected:hover {
  background-color: #eee;
  color: #000;
  border: 2px solid #ADC659;
  box-shadow: 0 0 0 2px #ADC659;
}
.list-selector li.selected [class^='icon'] {
  color: #888;
}
.list-selector .btn-helper {
  position: absolute;
  right: 0px;
  top: 6px;
}
.list-selector .tooltip {
  width: 240px;
}
.list-selector.list-moto {
  padding-bottom: 25px;
}
.list-selector.list-moto li {
  width: 48%;
  margin: 5px 1%;
  opacity: .9;
}
.list-selector.list-moto li.selected, 
.list-selector.list-moto li.selected:hover {
  background-color: #fff;
  opacity: 1;
  border-color: #ADC659;
}
.list-selector.list-moto li:hover {
  background-color: #fff;
  border-color: #aaa;
  opacity: 1;
}
.list-moto li img {
  max-width: 100%;
  height: auto;
}
.additional {
  display: none;
}


.body footer {
  background-color: #F5F5F5;
  border-top: 1px solid #ddd;
  padding: 18px 95px;
}
.btn-continue {
  float: right;
}
.btn-continue [class^='icon'] {
  font-size: 13px;
  margin-left: 8px;
}
.btn-back [class^='icon'] {
  font-size: 13px;
  margin-right: 8px;
}
.btn-continue.btn-submit {
  background-color: #E82602;
}
.btn-continue.btn-sumbit:hover {
  background-color: #DB2302;
}



.slide {
  min-height: 600px;
  position:relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.datepicker table tr td.active.active {
  background-color: #ADC659;
}
.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
  background-color: #ADC659;
  color: #fff;
}

.mobile-menu {
  overflow: hidden;
  display: none;
}
.mobile-menu img {
  float: left;
  padding-top: 10px;
}
.btn-openmenu {
  display: inline-block;
  float: left;
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 18px;
  padding-top: 6px;
  opacity: .85;
}
.btn-openmenu span {
  display: block;
  background-color: #fff;
  width: 30px;
  height: 3px;
  margin: 5px 0; 
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
}
.btn-openmenu:hover {
  opacity: 1;
}
.btn-openmenu:hover span {
  background-color: #fff;
}


.allbg {
  position: relative;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
.allbg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0,0,0,.45);
}
.formbox {
  width: 400px;
  background-color: #fff;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.formbox .logo a {
  position: static;
  display: inline-block;
  padding: 0;
  line-height: 1em;
}
.formbox .logo .icon-dotsignal {
  opacity: .35;
  font-size: 60px;
  float: right;
  margin-left: 8px;
  margin-top: -8px;
  margin-bottom: -40px;
}
.formbox .logo p {
  margin: 0;
}
.form-head {
  padding: 30px 50px;
  border-bottom: 1px solid #F0F5F7;
  text-align: center;
}
.form-body {
  padding: 30px 60px;
}
.form-body .intro {
  color: #374953;
  margin-bottom: 25px;
  opacity: .6;
  text-align: center;
}
.formbox .btn-text {
  color: #53A4A4;
  border-bottom: 1px solid transparent;
}
.formbox .btn-text:hover {
  border-bottom: 1px solid #ddd;
}
.progress {
  background-color: #ddd;
  height: 4px;
  margin-bottom: 6px;
  position: relative;
}
.progress-bar {
  background-color: #DC4655;
  height: 4px;
}
.progress-bar.green {
  background-color: #5cb85c;
}



.footer {
  padding: 15px 0;
  color: #C6C6C6;
  width: 800px;
  margin: 0 auto;
}
.footer p {
  margin: 0;
}

.transition-hover {
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
}

.transition {
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.transition2 {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag {
  background-color: #52A4A4;
}
.fs-checkbox-toggle .fs-checkbox-state_on {
  color: #52A4A4;
}


.datetimepicker table tr td.active:active, .datetimepicker table tr td.active:hover:active, .datetimepicker table tr td.active.disabled:active, .datetimepicker table tr td.active.disabled:hover:active, .datetimepicker table tr td.active.active, .datetimepicker table tr td.active:hover.active, .datetimepicker table tr td.active.disabled.active, .datetimepicker table tr td.active.disabled:hover.active {
  background: none;
  background-color: #53A4A4;
}
.datetimepicker table tr td span.active:active, .datetimepicker table tr td span.active:hover:active, .datetimepicker table tr td span.active.disabled:active, .datetimepicker table tr td span.active.disabled:hover:active, .datetimepicker table tr td span.active.active, .datetimepicker table tr td span.active:hover.active, .datetimepicker table tr td span.active.disabled.active, .datetimepicker table tr td span.active.disabled:hover.active {
  background: none;
  background-color: #53A4A4;
}


/* iCheck plugin flat skin, black
----------------------------------- */
.icheckbox_flat,
.iradio_flat {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: url(../img/flat@2x.png) no-repeat;
  background-size: 176px auto;
  border: none;
  cursor: pointer;
}

.icheckbox_flat {
  background-position: 0 0;
  margin-right: 5px;
}
.icheckbox_flat.checked {
  background-position: -22px 0;
}
.icheckbox_flat.disabled {
  background-position: -44px 0;
  cursor: default;
}
.icheckbox_flat.checked.disabled {
  background-position: -66px 0;
}

.iradio_flat {
  background-position: -88px 0;
}
.iradio_flat.checked {
  background-position: -110px 0;
}
.iradio_flat.disabled {
  background-position: -132px 0;
  cursor: default;
}
.iradio_flat.checked.disabled {
  background-position: -154px 0;
}


@font-face {
  font-family: 'icomoon';
  src:url('../webfonts/icomoon.eot?-nddtoy');
  src:url('../webfonts/icomoon.eot?#iefix-nddtoy') format('embedded-opentype'),
    url('../webfonts/icomoon.woff?-nddtoy') format('woff'),
    url('../webfonts/icomoon.ttf?-nddtoy') format('truetype'),
    url('../webfonts/icomoon.svg?-nddtoy#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-message:before {
  content: "\e62a";
}
.icon-arrow:before {
  content: "\e600";
}
.icon-arrow-alt:before {
  content: "\e601";
}
.icon-broadcast:before {
  content: "\e602";
}
.icon-broadcast-new:before {
  content: "\e603";
}
.icon-carret:before {
  content: "\e604";
}
.icon-checkmark:before {
  content: "\e605";
}
.icon-closex:before {
  content: "\e606";
}
.icon-comm:before {
  content: "\e607";
}
.icon-csv-upload:before {
  content: "\e608";
}
.icon-delete:before {
  content: "\e609";
}
.icon-dfeeds:before {
  content: "\e60a";
}
.icon-dots:before {
  content: "\e60b";
}
.icon-dotsignal:before {
  content: "\e60c";
}
.icon-edit:before {
  content: "\e60d";
}
.icon-email:before {
  content: "\e60e";
}
.icon-eye:before {
  content: "\e60f";
}
.icon-facebook:before {
  content: "\e610";
}
.icon-fatplus:before {
  content: "\e611";
}
.icon-filter:before {
  content: "\e612";
}
.icon-filter-add:before {
  content: "\e613";
}
.icon-geo:before {
  content: "\e614";
}
.icon-help:before {
  content: "\e615";
}
.icon-help-fill:before {
  content: "\e616";
}
.icon-instagram:before {
  content: "\e617";
}
.icon-linkedin:before {
  content: "\e618";
}
.icon-livechat:before {
  content: "\e619";
}
.icon-password:before {
  content: "\e61a";
}
.icon-phone:before {
  content: "\e61b";
}
.icon-play:before {
  content: "\e61c";
}
.icon-plus:before {
  content: "\e61d";
}
.icon-ramco:before {
  content: "\e61e";
}
.icon-refresh:before {
  content: "\e61f";
}
.icon-report:before {
  content: "\e620";
}
.icon-search:before {
  content: "\e621";
}
.icon-send:before {
  content: "\e622";
}
.icon-settings:before {
  content: "\e623";
}
.icon-share:before {
  content: "\e624";
}
.icon-time:before {
  content: "\e625";
}
.icon-twitter:before {
  content: "\e626";
}
.icon-user:before {
  content: "\e627";
}
.icon-users:before {
  content: "\e628";
}
.icon-youtube:before {
  content: "\e629";
}

/*
 *
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 *
 */

.switchery {
  background-color: #1C1F22;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 50px;
}

.switchery > small {
  background: #B6B6B6;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  height: 30px;
  position: absolute;
  top: 0;
  width: 30px;
}



/* 
 * Scroller v3.1.2 - 2014-12-08 
 * A jQuery plugin for replacing default browser scrollbars. Part of the Formstone Library. 
 * http://formstone.it/scroller/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */

.scroller{overflow:hidden;overflow-x:hidden;overflow-y:hidden;position:relative}.scroller,.scroller *{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.scroller,.scroller-content,.scroller-bar,.scroller-track,.scroller-handle{box-sizing:border-box}.scroller-content{position:relative;z-index:1;height:100%;overflow:auto;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scroller-content::-webkit-scrollbar,.scroller-content::-webkit-scrollbar-button,.scroller-content::-webkit-scrollbar-track,.scroller-content::-webkit-scrollbar-track-piece,.scroller-content::-webkit-scrollbar-thumb,.scroller-content::-webkit-scrollbar-corner,.scroller-content::-webkit-resizer{background:0 0;opacity:0}.scroller-bar{width: 10px;height:100%;position:absolute;right:0;top:0;z-index:2;background: transparent;/* border:1px solid #eee; *//* border-width:0 0 0 1px; */display:none}.scroller-track{width:100%;height:100%;position:relative;background: transparent;overflow:hidden}.scroller-handle{width: 8px;height:20px;position:absolute;top:0;right:3px;z-index:2;background: #1B242D;/* border:1px solid #fff; */border-radius:5px;cursor:pointer}.scroller-horizontal .scroller-content{overflow:auto;overflow-x:auto;overflow-y:hidden;padding:0 0 16px 0}.scroller-horizontal .scroller-bar{width:100%;height:16px;top:auto;bottom:0;border-width:1px 0 0 0}.scroller-horizontal .scroller-handle{width:20px;height:10px;top:auto;right:auto;bottom:3px}.scroller-setup .scroller-content,.scroller-active .scroller-content{padding-right: 0;}.scroller-setup .scroller-bar,.scroller-active .scroller-bar{display:block}


@media screen and (min-width: 992px) {
  .box-broadcasttype {
    min-height: 298px;
  }
}

@media screen and (max-width: 320px) {

}

@media screen and (max-width: 860px) {

}

@media screen and (max-width: 768px) {

}
@media screen and (min-width: 680px) {

}
@media screen and (max-width: 680px) {


}

@media screen and (max-width: 480px) {
  .formbox {
    width: 90%;
    left: 5%;
    position: relative;
    top: 15px;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }
  .form-head {
    padding: 15px 35px;
  }
  .form-body {
    padding: 25px 35px;
  }
  .form-body .intro {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .form.form-login .form-control {
    font-size: 13px;
    height: 38px;
  }
  .formbox .logo a {
    font-size: 24px;
  }
  .formbox .logo .icon-dotsignal {
    margin-left: 8px;
    margin-top: -12px;
  }

}

@media screen and (max-width: 320px) {
  .form-body {
    padding: 12px 25px;
  }
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi){ 

}

/* start of loader css */
.loadbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.85);
    z-index: 10;
}
.loadbox .loader {
    position: absolute;
    left: 50%;
    margin-left: -35px;
    top: 50%;
    margin-top: -12px;
}

.loader {
    width: 70px;
    margin: 0 auto;
    text-align: center;
}

.loader > div {
    width: 18px;
    height: 18px;
    background-color: #0084B1;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.loader .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}
/* end of loader css */

.jp-logo {
  display: inline-block;
  position: absolute;
  bottom: 55px;
}