#LoginArea {
  max-width: 400px;
  margin: 120px auto 10px auto;
}
/* MAIN */
/* =============================================== */
.box-radio-btn {
    margin-bottom: 20px;
    text-align: center;
}

    .box-radio-btn .rad-label {
        display: inline-flex;
        align-items: center;
        border-radius: 100px;
        padding: 10px 16px;
        cursor: pointer;
        transition: 0.3s;
        margin-left: 8px;
    }

        .box-radio-btn .rad-label:last-of-type {
            margin-left: 0px;
        }

        .box-radio-btn .rad-label:hover,
        .box-radio-btn .rad-label:focus-within {
            background: hsla(0, 0%, 80%, 0.14);
        }

    .box-radio-btn .rad-input {
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
        z-index: -1;
    }

    .box-radio-btn .rad-design {
        width: 16px;
        height: 16px;
        border-radius: 100px;
        background: linear-gradient(to left bottom, #19499f, #0b224f);
        position: relative;
        margin-left: 10px;
        vertical-align: middle;
        display: inline-block;
    }

        .box-radio-btn .rad-design::before {
            content: "";
            display: inline-block;
            width: inherit;
            height: inherit;
            border-radius: inherit;
            background: hsl(0, 0%, 90%);
            transform: scale(1.1);
            transition: 0.3s;
        }

    .box-radio-btn .rad-input:checked + .rad-design::before {
        transform: scale(0);
    }

    .box-radio-btn .rad-text {
        color: hsl(0, 0%, 60%);
        margin-right: 14px;
        letter-spacing: 0px;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 900;
        display: inline-block;
        vertical-align: middle;
        margin: 0;
        transition: 0.3s;
    }

    .box-radio-btn .rad-input:checked ~ .rad-text {
        color: var(--main-color1);
    }

.box-radio-btn {
    margin-bottom: 20px;
    text-align: center;
}
    .box-radio-btn .rad-label:has(input:checked) {
        background: hsla(0, 0%, 80%, 0.14);
    }
.login-form-signup .form-group label a {
    color: #0b276b;
}
    .login-form-signup .form-group label a:hover {
        color: #ec3665;
    }


.login-content .btn-theme.btn:hover {
    color: #fdfdfd;
}
    /*# sourceMappingURL=Login.css.map */


/**
 * Variables declared here can be overridden by consuming applications, with
 * the help of the `!default` flag.
 *
 * @example
 *     // overriding $hoverColor
 *     $hoverColor: rgba(red, 0.05);
 *
 *     // overriding image path
 *     $flagsImagePath: "images/";
 *
 *     // import the scss file after the overrides
 *     @import "bower_component/intl-tel-input/src/css/intlTelInput";
 */
.intl-tel-input {
  position: relative;
  display: inline-block;
  direction: ltr;
}

  .intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }

  .intl-tel-input .hide {
    display: none;
  }

  .intl-tel-input .v-hide {
    visibility: hidden;
  }

  .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0;
  }

  .intl-tel-input .fg-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
  }

  .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 32px;
    padding: 0 0 0 8px;
  }

    .intl-tel-input .selected-flag .iti-flag {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
    }

    .intl-tel-input .selected-flag .iti-arrow {
      position: absolute;
      top: 50%;
      margin-top: -2px;
      right: 6px;
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #555;
    }

      .intl-tel-input .selected-flag .iti-arrow.up {
        border-top: none;
        border-bottom: 4px solid #555;
      }

  .intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
  }

    .intl-tel-input .country-list.dropup {
      bottom: 100%;
      margin-bottom: -1px;
    }

    .intl-tel-input .country-list .flag-box {
      display: inline-block;
      width: 20px;
    }

@media (max-width: 500px) {
  .intl-tel-input .country-list {
    white-space: normal;
  }
}

.intl-tel-input .country-list .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.intl-tel-input .country-list .country {
  padding: 5px 10px;
}

  .intl-tel-input .country-list .country .dial-code {
    color: #999;
  }

  .intl-tel-input .country-list .country.highlight {
    background-color: rgba(0, 0, 0, 0.05);
  }

.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
  vertical-align: middle;
}

.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  margin-right: 6px;
}

.intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.intl-tel-input.allow-dropdown .fg-container, .intl-tel-input.separate-dial-code .fg-container {
  right: auto;
  left: 0;
}

.intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
  width: 46px;
}

.intl-tel-input.allow-dropdown .fg-container:hover {
  cursor: pointer;
}

  .intl-tel-input.allow-dropdown .fg-container:hover .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
  }

.intl-tel-input.allow-dropdown input[disabled] + .fg-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .fg-container:hover {
  cursor: default;
}

  .intl-tel-input.allow-dropdown input[disabled] + .fg-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .fg-container:hover .selected-flag {
    background-color: transparent;
  }

.intl-tel-input.separate-dial-code .selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
  padding-left: 66px;
}

.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
  width: 60px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
  padding-left: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  width: 70px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
  padding-left: 74px;
}

.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  width: 68px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  padding-left: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  width: 78px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
  padding-left: 82px;
}

.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
  width: 76px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
  padding-left: 92px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  width: 86px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
  padding-left: 90px;
}

.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
  width: 84px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
  padding-left: 100px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  width: 94px;
}

.intl-tel-input.iti-container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

  .intl-tel-input.iti-container:hover {
    cursor: pointer;
  }

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%;
}

  .iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em;
  }

.iti-flag {
  width: 20px;
}

  .iti-flag.be {
    width: 18px;
  }

  .iti-flag.ch {
    width: 15px;
  }

  .iti-flag.mc {
    width: 19px;
  }

  .iti-flag.ne {
    width: 18px;
  }

  .iti-flag.np {
    width: 13px;
  }

  .iti-flag.va {
    width: 15px;
  }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-size: 5630px 15px;
  }
}

.iti-flag.ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti-flag.ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti-flag.ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti-flag.af {
  height: 14px;
  background-position: -66px 0px;
}

.iti-flag.ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti-flag.ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti-flag.al {
  height: 15px;
  background-position: -132px 0px;
}

.iti-flag.am {
  height: 10px;
  background-position: -154px 0px;
}

.iti-flag.ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti-flag.aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti-flag.ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti-flag.as {
  height: 10px;
  background-position: -242px 0px;
}

.iti-flag.at {
  height: 14px;
  background-position: -264px 0px;
}

.iti-flag.au {
  height: 10px;
  background-position: -286px 0px;
}

.iti-flag.aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti-flag.ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti-flag.az {
  height: 10px;
  background-position: -352px 0px;
}

.iti-flag.ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti-flag.bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti-flag.bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti-flag.be {
  height: 15px;
  background-position: -440px 0px;
}

.iti-flag.bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti-flag.bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti-flag.bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti-flag.bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti-flag.bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti-flag.bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti-flag.bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti-flag.bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti-flag.bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti-flag.bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti-flag.br {
  height: 14px;
  background-position: -680px 0px;
}

.iti-flag.bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti-flag.bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti-flag.bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti-flag.bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti-flag.by {
  height: 10px;
  background-position: -790px 0px;
}

.iti-flag.bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti-flag.ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti-flag.cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti-flag.cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti-flag.cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti-flag.cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti-flag.ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti-flag.ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti-flag.ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti-flag.cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti-flag.cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti-flag.cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti-flag.co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti-flag.cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti-flag.cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti-flag.cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti-flag.cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti-flag.cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti-flag.cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti-flag.cy {
  height: 13px;
  background-position: -1225px 0px;
}

.iti-flag.cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti-flag.de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti-flag.dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti-flag.dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti-flag.dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti-flag.dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti-flag.do {
  height: 13px;
  background-position: -1379px 0px;
}

.iti-flag.dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti-flag.ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti-flag.ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti-flag.ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti-flag.eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti-flag.eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti-flag.er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti-flag.es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti-flag.et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti-flag.eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti-flag.fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti-flag.fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti-flag.fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti-flag.fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti-flag.fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti-flag.fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti-flag.ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti-flag.gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti-flag.gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti-flag.ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti-flag.gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti-flag.gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti-flag.gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti-flag.gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti-flag.gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti-flag.gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti-flag.gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti-flag.gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti-flag.gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti-flag.gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti-flag.gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti-flag.gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti-flag.gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti-flag.gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti-flag.gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti-flag.hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti-flag.hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti-flag.hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti-flag.hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti-flag.ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti-flag.hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti-flag.ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti-flag.id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti-flag.ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti-flag.il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti-flag.im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti-flag.in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti-flag.io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti-flag.iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti-flag.ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti-flag.is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti-flag.it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti-flag.je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti-flag.jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti-flag.jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti-flag.jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti-flag.ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti-flag.kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti-flag.kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti-flag.ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti-flag.km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti-flag.kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti-flag.kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti-flag.kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti-flag.kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti-flag.ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti-flag.kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti-flag.la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti-flag.lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti-flag.lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti-flag.li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti-flag.lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti-flag.lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti-flag.ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti-flag.lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti-flag.lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti-flag.lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti-flag.ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti-flag.ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti-flag.mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti-flag.md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti-flag.me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti-flag.mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti-flag.mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti-flag.mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti-flag.mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti-flag.ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti-flag.mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti-flag.mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti-flag.mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti-flag.mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti-flag.mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti-flag.mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti-flag.ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti-flag.mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti-flag.mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti-flag.mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti-flag.mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti-flag.mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti-flag.my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti-flag.mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti-flag.na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti-flag.nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti-flag.ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti-flag.nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti-flag.ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti-flag.ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti-flag.nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti-flag.no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti-flag.np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti-flag.nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti-flag.nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti-flag.nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti-flag.om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti-flag.pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti-flag.pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti-flag.pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti-flag.pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti-flag.ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti-flag.pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti-flag.pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti-flag.pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti-flag.pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti-flag.pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti-flag.ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti-flag.pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti-flag.pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti-flag.py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti-flag.qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti-flag.re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti-flag.ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti-flag.rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti-flag.ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti-flag.rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti-flag.sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti-flag.sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti-flag.sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti-flag.sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti-flag.se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti-flag.sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti-flag.sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti-flag.si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti-flag.sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti-flag.sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti-flag.sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti-flag.sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti-flag.sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti-flag.so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti-flag.sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti-flag.ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti-flag.st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti-flag.sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti-flag.sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti-flag.sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti-flag.sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti-flag.ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti-flag.tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti-flag.td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti-flag.tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti-flag.tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti-flag.th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti-flag.tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti-flag.tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti-flag.tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti-flag.tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti-flag.tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti-flag.to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti-flag.tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti-flag.tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti-flag.tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti-flag.tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti-flag.tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti-flag.ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti-flag.ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti-flag.um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti-flag.us {
  height: 11px;
  background-position: -5241px 0px;
}

.iti-flag.uy {
  height: 14px;
  background-position: -5263px 0px;
}

.iti-flag.uz {
  height: 10px;
  background-position: -5285px 0px;
}

.iti-flag.va {
  height: 15px;
  background-position: -5307px 0px;
}

.iti-flag.vc {
  height: 14px;
  background-position: -5324px 0px;
}

.iti-flag.ve {
  height: 14px;
  background-position: -5346px 0px;
}

.iti-flag.vg {
  height: 10px;
  background-position: -5368px 0px;
}

.iti-flag.vi {
  height: 14px;
  background-position: -5390px 0px;
}

.iti-flag.vn {
  height: 14px;
  background-position: -5412px 0px;
}

.iti-flag.vu {
  height: 12px;
  background-position: -5434px 0px;
}

.iti-flag.wf {
  height: 14px;
  background-position: -5456px 0px;
}

.iti-flag.ws {
  height: 10px;
  background-position: -5478px 0px;
}

.iti-flag.xk {
  height: 15px;
  background-position: -5500px 0px;
}

.iti-flag.ye {
  height: 14px;
  background-position: -5522px 0px;
}

.iti-flag.yt {
  height: 14px;
  background-position: -5544px 0px;
}

.iti-flag.za {
  height: 14px;
  background-position: -5566px 0px;
}

.iti-flag.zm {
  height: 14px;
  background-position: -5588px 0px;
}

.iti-flag.zw {
  height: 10px;
  background-position: -5610px 0px;
}

.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../../../../Scripts/plugins/ng-intl-tel-input/img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("../../../../Scripts/plugins/ng-intl-tel-input/img/flags@2x.png");
  }
}

.iti-flag.np {
  background-color: transparent;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.eot");
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.woff2") format("woff2"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.woff") format("woff"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.ttf") format("truetype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.eot");
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.woff2") format("woff2"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.woff") format("woff"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.ttf") format("truetype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.eot");
  src: url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.woff2") format("woff2"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.woff") format("woff"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.ttf") format("truetype"), url("../../../../Scripts/plugins/fontawesome-5.15.4/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900 !important; }

/* http://graphicburger.com/simple-line-icons-webfont/ */
@font-face{font-family:Simple-Line-Icons;src:url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.eot);src:url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.eot?#iefix) format('embedded-opentype'),url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.woff) format('woff'),url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.ttf) format('truetype'),url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.svg#Simple-Line-Icons) format('svg');font-weight:400;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio:0){@font-face{font-family:Simple-Line-Icons;src:url(../../../../Scripts/plugins/simple-line-icons/fonts/Simple-Line-Icons.svg#Simple-Line-Icons) format('svg')}}[data-icon]:before{font-family:Simple-Line-Icons;content:attr(data-icon);speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-action-redo,.icon-action-undo,.icon-anchor,.icon-arrow-down,.icon-arrow-left,.icon-arrow-right,.icon-arrow-up,.icon-badge,.icon-bag,.icon-ban,.icon-bar-chart,.icon-basket,.icon-basket-loaded,.icon-bell,.icon-book-open,.icon-briefcase,.icon-bubble,.icon-bubbles,.icon-bulb,.icon-calculator,.icon-calendar,.icon-call-end,.icon-call-in,.icon-call-out,.icon-camcorder,.icon-camera,.icon-check,.icon-chemistry,.icon-clock,.icon-close,.icon-cloud-download,.icon-cloud-upload,.icon-compass,.icon-control-end,.icon-control-forward,.icon-control-pause,.icon-control-play,.icon-control-rewind,.icon-control-start,.icon-credit-card,.icon-crop,.icon-cup,.icon-cursor,.icon-cursor-move,.icon-diamond,.icon-direction,.icon-directions,.icon-disc,.icon-dislike,.icon-doc,.icon-docs,.icon-drawer,.icon-drop,.icon-earphones,.icon-earphones-alt,.icon-emoticon-smile,.icon-energy,.icon-envelope,.icon-envelope-letter,.icon-envelope-open,.icon-equalizer,.icon-eye,.icon-eyeglasses,.icon-feed,.icon-film,.icon-fire,.icon-flag,.icon-folder,.icon-folder-alt,.icon-frame,.icon-game-controller,.icon-ghost,.icon-globe,.icon-globe-alt,.icon-graduation,.icon-graph,.icon-grid,.icon-handbag,.icon-heart,.icon-home,.icon-hourglass,.icon-info,.icon-key,.icon-layers,.icon-like,.icon-link,.icon-list,.icon-lock,.icon-lock-open,.icon-login,.icon-logout,.icon-loop,.icon-magic-wand,.icon-magnet,.icon-magnifier,.icon-magnifier-add,.icon-magnifier-remove,.icon-map,.icon-microphone,.icon-mouse,.icon-moustache,.icon-music-tone,.icon-music-tone-alt,.icon-note,.icon-notebook,.icon-paper-clip,.icon-paper-plane,.icon-pencil,.icon-picture,.icon-pie-chart,.icon-pin,.icon-plane,.icon-playlist,.icon-plus,.icon-pointer,.icon-power,.icon-present,.icon-printer,.icon-puzzle,.icon-question,.icon-refresh,.icon-reload,.icon-rocket,.icon-screen-desktop,.icon-screen-smartphone,.icon-screen-tablet,.icon-settings,.icon-share,.icon-share-alt,.icon-shield,.icon-shuffle,.icon-size-actual,.icon-size-fullscreen,.icon-social-dribbble,.icon-social-dropbox,.icon-social-facebook,.icon-social-tumblr,.icon-social-twitter,.icon-social-youtube,.icon-speech,.icon-speedometer,.icon-star,.icon-support,.icon-symbol-female,.icon-symbol-male,.icon-tag,.icon-target,.icon-trash,.icon-trophy,.icon-umbrella,.icon-user,.icon-user-female,.icon-user-follow,.icon-user-following,.icon-user-unfollow,.icon-users,.icon-vector,.icon-volume-1,.icon-volume-2,.icon-volume-off,.icon-wallet,.icon-wrench{font-family:Simple-Line-Icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-user-female:before{content:"\e000"}.icon-user-follow:before{content:"\e002"}.icon-user-following:before{content:"\e003"}.icon-user-unfollow:before{content:"\e004"}.icon-trophy:before{content:"\e006"}.icon-screen-smartphone:before{content:"\e010"}.icon-screen-desktop:before{content:"\e011"}.icon-plane:before{content:"\e012"}.icon-notebook:before{content:"\e013"}.icon-moustache:before{content:"\e014"}.icon-mouse:before{content:"\e015"}.icon-magnet:before{content:"\e016"}.icon-energy:before{content:"\e020"}.icon-emoticon-smile:before{content:"\e021"}.icon-disc:before{content:"\e022"}.icon-cursor-move:before{content:"\e023"}.icon-crop:before{content:"\e024"}.icon-credit-card:before{content:"\e025"}.icon-chemistry:before{content:"\e026"}.icon-user:before{content:"\e005"}.icon-speedometer:before{content:"\e007"}.icon-social-youtube:before{content:"\e008"}.icon-social-twitter:before{content:"\e009"}.icon-social-tumblr:before{content:"\e00a"}.icon-social-facebook:before{content:"\e00b"}.icon-social-dropbox:before{content:"\e00c"}.icon-social-dribbble:before{content:"\e00d"}.icon-shield:before{content:"\e00e"}.icon-screen-tablet:before{content:"\e00f"}.icon-magic-wand:before{content:"\e017"}.icon-hourglass:before{content:"\e018"}.icon-graduation:before{content:"\e019"}.icon-ghost:before{content:"\e01a"}.icon-game-controller:before{content:"\e01b"}.icon-fire:before{content:"\e01c"}.icon-eyeglasses:before{content:"\e01d"}.icon-envelope-open:before{content:"\e01e"}.icon-envelope-letter:before{content:"\e01f"}.icon-bell:before{content:"\e027"}.icon-badge:before{content:"\e028"}.icon-anchor:before{content:"\e029"}.icon-wallet:before{content:"\e02a"}.icon-vector:before{content:"\e02b"}.icon-speech:before{content:"\e02c"}.icon-puzzle:before{content:"\e02d"}.icon-printer:before{content:"\e02e"}.icon-present:before{content:"\e02f"}.icon-playlist:before{content:"\e030"}.icon-pin:before{content:"\e031"}.icon-picture:before{content:"\e032"}.icon-map:before{content:"\e033"}.icon-layers:before{content:"\e034"}.icon-handbag:before{content:"\e035"}.icon-globe-alt:before{content:"\e036"}.icon-globe:before{content:"\e037"}.icon-frame:before{content:"\e038"}.icon-folder-alt:before{content:"\e039"}.icon-film:before{content:"\e03a"}.icon-feed:before{content:"\e03b"}.icon-earphones-alt:before{content:"\e03c"}.icon-earphones:before{content:"\e03d"}.icon-drop:before{content:"\e03e"}.icon-drawer:before{content:"\e03f"}.icon-docs:before{content:"\e040"}.icon-directions:before{content:"\e041"}.icon-direction:before{content:"\e042"}.icon-diamond:before{content:"\e043"}.icon-cup:before{content:"\e044"}.icon-compass:before{content:"\e045"}.icon-call-out:before{content:"\e046"}.icon-call-in:before{content:"\e047"}.icon-call-end:before{content:"\e048"}.icon-calculator:before{content:"\e049"}.icon-bubbles:before{content:"\e04a"}.icon-briefcase:before{content:"\e04b"}.icon-book-open:before{content:"\e04c"}.icon-basket-loaded:before{content:"\e04d"}.icon-basket:before{content:"\e04e"}.icon-bag:before{content:"\e04f"}.icon-action-undo:before{content:"\e050"}.icon-action-redo:before{content:"\e051"}.icon-wrench:before{content:"\e052"}.icon-umbrella:before{content:"\e053"}.icon-trash:before{content:"\e054"}.icon-tag:before{content:"\e055"}.icon-support:before{content:"\e056"}.icon-size-fullscreen:before{content:"\e057"}.icon-size-actual:before{content:"\e058"}.icon-shuffle:before{content:"\e059"}.icon-share-alt:before{content:"\e05a"}.icon-share:before{content:"\e05b"}.icon-rocket:before{content:"\e05c"}.icon-question:before{content:"\e05d"}.icon-pie-chart:before{content:"\e05e"}.icon-pencil:before{content:"\e05f"}.icon-note:before{content:"\e060"}.icon-music-tone-alt:before{content:"\e061"}.icon-music-tone:before{content:"\e062"}.icon-microphone:before{content:"\e063"}.icon-loop:before{content:"\e064"}.icon-logout:before{content:"\e065"}.icon-login:before{content:"\e066"}.icon-list:before{content:"\e067"}.icon-like:before{content:"\e068"}.icon-home:before{content:"\e069"}.icon-grid:before{content:"\e06a"}.icon-graph:before{content:"\e06b"}.icon-equalizer:before{content:"\e06c"}.icon-dislike:before{content:"\e06d"}.icon-cursor:before{content:"\e06e"}.icon-control-start:before{content:"\e06f"}.icon-control-rewind:before{content:"\e070"}.icon-control-play:before{content:"\e071"}.icon-control-pause:before{content:"\e072"}.icon-control-forward:before{content:"\e073"}.icon-control-end:before{content:"\e074"}.icon-calendar:before{content:"\e075"}.icon-bulb:before{content:"\e076"}.icon-bar-chart:before{content:"\e077"}.icon-arrow-up:before{content:"\e078"}.icon-arrow-right:before{content:"\e079"}.icon-arrow-left:before{content:"\e07a"}.icon-arrow-down:before{content:"\e07b"}.icon-ban:before{content:"\e07c"}.icon-bubble:before{content:"\e07d"}.icon-camcorder:before{content:"\e07e"}.icon-camera:before{content:"\e07f"}.icon-check:before{content:"\e080"}.icon-clock:before{content:"\e081"}.icon-close:before{content:"\e082"}.icon-cloud-download:before{content:"\e083"}.icon-cloud-upload:before{content:"\e084"}.icon-doc:before{content:"\e085"}.icon-envelope:before{content:"\e086"}.icon-eye:before{content:"\e087"}.icon-flag:before{content:"\e088"}.icon-folder:before{content:"\e089"}.icon-heart:before{content:"\e08a"}.icon-info:before{content:"\e08b"}.icon-key:before{content:"\e08c"}.icon-link:before{content:"\e08d"}.icon-lock:before{content:"\e08e"}.icon-lock-open:before{content:"\e08f"}.icon-magnifier:before{content:"\e090"}.icon-magnifier-add:before{content:"\e091"}.icon-magnifier-remove:before{content:"\e092"}.icon-paper-clip:before{content:"\e093"}.icon-paper-plane:before{content:"\e094"}.icon-plus:before{content:"\e095"}.icon-pointer:before{content:"\e096"}.icon-power:before{content:"\e097"}.icon-refresh:before{content:"\e098"}.icon-reload:before{content:"\e099"}.icon-settings:before{content:"\e09a"}.icon-star:before{content:"\e09b"}.icon-symbol-female:before{content:"\e09c"}.icon-symbol-male:before{content:"\e09d"}.icon-target:before{content:"\e09e"}.icon-volume-1:before{content:"\e09f"}.icon-volume-2:before{content:"\e0a0"}.icon-volume-off:before{content:"\e0a1"}.icon-users:before{content:"\e001"}
/*!
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden], template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active, a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b, strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code, kbd, pre, samp {
    font-family: monospace,monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input {
    line-height: normal;
}

    input[type=checkbox], input[type=radio] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type=search] {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-appearance: textfield;
    }

        input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid silver;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td, th {
    padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *, :before, :after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    select {
        background: #fff !important;
    }

    .navbar {
        display: none;
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td, .table th {
            background-color: #fff !important;
        }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../../../../Scripts/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot);
    src: url(../../../../Scripts/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../../../../Scripts/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff) format('woff'),url(../../../../Scripts/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../../../../Scripts/plugins/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
    content: "\2a";
}

.glyphicon-plus:before {
    content: "\2b";
}

.glyphicon-euro:before, .glyphicon-eur:before {
    content: "\20ac";
}

.glyphicon-minus:before {
    content: "\2212";
}

.glyphicon-cloud:before {
    content: "\2601";
}

.glyphicon-envelope:before {
    content: "\2709";
}

.glyphicon-pencil:before {
    content: "\270f";
}

.glyphicon-glass:before {
    content: "\e001";
}

.glyphicon-music:before {
    content: "\e002";
}

.glyphicon-search:before {
    content: "\e003";
}

.glyphicon-heart:before {
    content: "\e005";
}

.glyphicon-star:before {
    content: "\e006";
}

.glyphicon-star-empty:before {
    content: "\e007";
}

.glyphicon-user:before {
    content: "\e008";
}

.glyphicon-film:before {
    content: "\e009";
}

.glyphicon-th-large:before {
    content: "\e010";
}

.glyphicon-th:before {
    content: "\e011";
}

.glyphicon-th-list:before {
    content: "\e012";
}

.glyphicon-ok:before {
    content: "\e013";
}

.glyphicon-remove:before {
    content: "\e014";
}

.glyphicon-zoom-in:before {
    content: "\e015";
}

.glyphicon-zoom-out:before {
    content: "\e016";
}

.glyphicon-off:before {
    content: "\e017";
}

.glyphicon-signal:before {
    content: "\e018";
}

.glyphicon-cog:before {
    content: "\e019";
}

.glyphicon-trash:before {
    content: "\e020";
}

.glyphicon-home:before {
    content: "\e021";
}

.glyphicon-file:before {
    content: "\e022";
}

.glyphicon-time:before {
    content: "\e023";
}

.glyphicon-road:before {
    content: "\e024";
}

.glyphicon-download-alt:before {
    content: "\e025";
}

.glyphicon-download:before {
    content: "\e026";
}

.glyphicon-upload:before {
    content: "\e027";
}

.glyphicon-inbox:before {
    content: "\e028";
}

.glyphicon-play-circle:before {
    content: "\e029";
}

.glyphicon-repeat:before {
    content: "\e030";
}

.glyphicon-refresh:before {
    content: "\e031";
}

.glyphicon-list-alt:before {
    content: "\e032";
}

.glyphicon-lock:before {
    content: "\e033";
}

.glyphicon-flag:before {
    content: "\e034";
}

.glyphicon-headphones:before {
    content: "\e035";
}

.glyphicon-volume-off:before {
    content: "\e036";
}

.glyphicon-volume-down:before {
    content: "\e037";
}

.glyphicon-volume-up:before {
    content: "\e038";
}

.glyphicon-qrcode:before {
    content: "\e039";
}

.glyphicon-barcode:before {
    content: "\e040";
}

.glyphicon-tag:before {
    content: "\e041";
}

.glyphicon-tags:before {
    content: "\e042";
}

.glyphicon-book:before {
    content: "\e043";
}

.glyphicon-bookmark:before {
    content: "\e044";
}

.glyphicon-print:before {
    content: "\e045";
}

.glyphicon-camera:before {
    content: "\e046";
}

.glyphicon-font:before {
    content: "\e047";
}

.glyphicon-bold:before {
    content: "\e048";
}

.glyphicon-italic:before {
    content: "\e049";
}

.glyphicon-text-height:before {
    content: "\e050";
}

.glyphicon-text-width:before {
    content: "\e051";
}

.glyphicon-align-left:before {
    content: "\e052";
}

.glyphicon-align-center:before {
    content: "\e053";
}

.glyphicon-align-right:before {
    content: "\e054";
}

.glyphicon-align-justify:before {
    content: "\e055";
}

.glyphicon-list:before {
    content: "\e056";
}

.glyphicon-indent-left:before {
    content: "\e057";
}

.glyphicon-indent-right:before {
    content: "\e058";
}

.glyphicon-facetime-video:before {
    content: "\e059";
}

.glyphicon-picture:before {
    content: "\e060";
}

.glyphicon-map-marker:before {
    content: "\e062";
}

.glyphicon-adjust:before {
    content: "\e063";
}

.glyphicon-tint:before {
    content: "\e064";
}

.glyphicon-edit:before {
    content: "\e065";
}

.glyphicon-share:before {
    content: "\e066";
}

.glyphicon-check:before {
    content: "\e067";
}

.glyphicon-move:before {
    content: "\e068";
}

.glyphicon-step-backward:before {
    content: "\e069";
}

.glyphicon-fast-backward:before {
    content: "\e070";
}

.glyphicon-backward:before {
    content: "\e071";
}

.glyphicon-play:before {
    content: "\e072";
}

.glyphicon-pause:before {
    content: "\e073";
}

.glyphicon-stop:before {
    content: "\e074";
}

.glyphicon-forward:before {
    content: "\e075";
}

.glyphicon-fast-forward:before {
    content: "\e076";
}

.glyphicon-step-forward:before {
    content: "\e077";
}

.glyphicon-eject:before {
    content: "\e078";
}

.glyphicon-chevron-left:before {
    content: "\e079";
}

.glyphicon-chevron-right:before {
    content: "\e080";
}

.glyphicon-plus-sign:before {
    content: "\e081";
}

.glyphicon-minus-sign:before {
    content: "\e082";
}

.glyphicon-remove-sign:before {
    content: "\e083";
}

.glyphicon-ok-sign:before {
    content: "\e084";
}

.glyphicon-question-sign:before {
    content: "\e085";
}

.glyphicon-info-sign:before {
    content: "\e086";
}

.glyphicon-screenshot:before {
    content: "\e087";
}

.glyphicon-remove-circle:before {
    content: "\e088";
}

.glyphicon-ok-circle:before {
    content: "\e089";
}

.glyphicon-ban-circle:before {
    content: "\e090";
}

.glyphicon-arrow-left:before {
    content: "\e091";
}

.glyphicon-arrow-right:before {
    content: "\e092";
}

.glyphicon-arrow-up:before {
    content: "\e093";
}

.glyphicon-arrow-down:before {
    content: "\e094";
}

.glyphicon-share-alt:before {
    content: "\e095";
}

.glyphicon-resize-full:before {
    content: "\e096";
}

.glyphicon-resize-small:before {
    content: "\e097";
}

.glyphicon-exclamation-sign:before {
    content: "\e101";
}

.glyphicon-gift:before {
    content: "\e102";
}

.glyphicon-leaf:before {
    content: "\e103";
}

.glyphicon-fire:before {
    content: "\e104";
}

.glyphicon-eye-open:before {
    content: "\e105";
}

.glyphicon-eye-close:before {
    content: "\e106";
}

.glyphicon-warning-sign:before {
    content: "\e107";
}

.glyphicon-plane:before {
    content: "\e108";
}

.glyphicon-calendar:before {
    content: "\e109";
}

.glyphicon-random:before {
    content: "\e110";
}

.glyphicon-comment:before {
    content: "\e111";
}

.glyphicon-magnet:before {
    content: "\e112";
}

.glyphicon-chevron-up:before {
    content: "\e113";
}

.glyphicon-chevron-down:before {
    content: "\e114";
}

.glyphicon-retweet:before {
    content: "\e115";
}

.glyphicon-shopping-cart:before {
    content: "\e116";
}

.glyphicon-folder-close:before {
    content: "\e117";
}

.glyphicon-folder-open:before {
    content: "\e118";
}

.glyphicon-resize-vertical:before {
    content: "\e119";
}

.glyphicon-resize-horizontal:before {
    content: "\e120";
}

.glyphicon-hdd:before {
    content: "\e121";
}

.glyphicon-bullhorn:before {
    content: "\e122";
}

.glyphicon-bell:before {
    content: "\e123";
}

.glyphicon-certificate:before {
    content: "\e124";
}

.glyphicon-thumbs-up:before {
    content: "\e125";
}

.glyphicon-thumbs-down:before {
    content: "\e126";
}

.glyphicon-hand-right:before {
    content: "\e127";
}

.glyphicon-hand-left:before {
    content: "\e128";
}

.glyphicon-hand-up:before {
    content: "\e129";
}

.glyphicon-hand-down:before {
    content: "\e130";
}

.glyphicon-circle-arrow-right:before {
    content: "\e131";
}

.glyphicon-circle-arrow-left:before {
    content: "\e132";
}

.glyphicon-circle-arrow-up:before {
    content: "\e133";
}

.glyphicon-circle-arrow-down:before {
    content: "\e134";
}

.glyphicon-globe:before {
    content: "\e135";
}

.glyphicon-wrench:before {
    content: "\e136";
}

.glyphicon-tasks:before {
    content: "\e137";
}

.glyphicon-filter:before {
    content: "\e138";
}

.glyphicon-briefcase:before {
    content: "\e139";
}

.glyphicon-fullscreen:before {
    content: "\e140";
}

.glyphicon-dashboard:before {
    content: "\e141";
}

.glyphicon-paperclip:before {
    content: "\e142";
}

.glyphicon-heart-empty:before {
    content: "\e143";
}

.glyphicon-link:before {
    content: "\e144";
}

.glyphicon-phone:before {
    content: "\e145";
}

.glyphicon-pushpin:before {
    content: "\e146";
}

.glyphicon-usd:before {
    content: "\e148";
}

.glyphicon-gbp:before {
    content: "\e149";
}

.glyphicon-sort:before {
    content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
}

.glyphicon-sort-by-order:before {
    content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154";
}

.glyphicon-sort-by-attributes:before {
    content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
}

.glyphicon-unchecked:before {
    content: "\e157";
}

.glyphicon-expand:before {
    content: "\e158";
}

.glyphicon-collapse-down:before {
    content: "\e159";
}

.glyphicon-collapse-up:before {
    content: "\e160";
}

.glyphicon-log-in:before {
    content: "\e161";
}

.glyphicon-flash:before {
    content: "\e162";
}

.glyphicon-log-out:before {
    content: "\e163";
}

.glyphicon-new-window:before {
    content: "\e164";
}

.glyphicon-record:before {
    content: "\e165";
}

.glyphicon-save:before {
    content: "\e166";
}

.glyphicon-open:before {
    content: "\e167";
}

.glyphicon-saved:before {
    content: "\e168";
}

.glyphicon-import:before {
    content: "\e169";
}

.glyphicon-export:before {
    content: "\e170";
}

.glyphicon-send:before {
    content: "\e171";
}

.glyphicon-floppy-disk:before {
    content: "\e172";
}

.glyphicon-floppy-saved:before {
    content: "\e173";
}

.glyphicon-floppy-remove:before {
    content: "\e174";
}

.glyphicon-floppy-save:before {
    content: "\e175";
}

.glyphicon-floppy-open:before {
    content: "\e176";
}

.glyphicon-credit-card:before {
    content: "\e177";
}

.glyphicon-transfer:before {
    content: "\e178";
}

.glyphicon-cutlery:before {
    content: "\e179";
}

.glyphicon-header:before {
    content: "\e180";
}

.glyphicon-compressed:before {
    content: "\e181";
}

.glyphicon-earphone:before {
    content: "\e182";
}

.glyphicon-phone-alt:before {
    content: "\e183";
}

.glyphicon-tower:before {
    content: "\e184";
}

.glyphicon-stats:before {
    content: "\e185";
}

.glyphicon-sd-video:before {
    content: "\e186";
}

.glyphicon-hd-video:before {
    content: "\e187";
}

.glyphicon-subtitles:before {
    content: "\e188";
}

.glyphicon-sound-stereo:before {
    content: "\e189";
}

.glyphicon-sound-dolby:before {
    content: "\e190";
}

.glyphicon-sound-5-1:before {
    content: "\e191";
}

.glyphicon-sound-6-1:before {
    content: "\e192";
}

.glyphicon-sound-7-1:before {
    content: "\e193";
}

.glyphicon-copyright-mark:before {
    content: "\e194";
}

.glyphicon-registration-mark:before {
    content: "\e195";
}

.glyphicon-cloud-download:before {
    content: "\e197";
}

.glyphicon-cloud-upload:before {
    content: "\e198";
}

.glyphicon-tree-conifer:before {
    content: "\e199";
}

.glyphicon-tree-deciduous:before {
    content: "\e200";
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #337ab7;
    text-decoration: none;
}

    a:hover, a:focus {
        color: #23527c;
        text-decoration: underline;
    }

    a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
        font-weight: 400;
        line-height: 1;
        color: #777;
    }

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
        font-size: 65%;
    }

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
        font-size: 75%;
    }

h1, .h1 {
    font-size: 36px;
}

h2, .h2 {
    font-size: 30px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 18px;
}

h5, .h5 {
    font-size: 14px;
}

h6, .h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width:768px) {
    .lead {
        font-size: 21px;
    }
}

small, .small {
    font-size: 85%;
}

mark, .mark {
    padding: .2em;
    background-color: #fcf8e3;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777;
}

.text-primary {
    color: #337ab7;
}

a.text-primary:hover {
    color: #286090;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover {
    color: #843534;
}

.bg-primary {
    color: #fff;
    background-color: #337ab7;
}

a.bg-primary:hover {
    background-color: #286090;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    ul ul, ol ul, ul ol, ol ol {
        margin-bottom: 0;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt, dd {
    line-height: 1.42857143;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

    blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
        margin-bottom: 0;
    }

    blockquote footer, blockquote small, blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857143;
        color: #777;
    }

        blockquote footer:before, blockquote small:before, blockquote .small:before {
            content: '\2014 \00A0';
        }

    .blockquote-reverse, blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        text-align: right;
        border-right: 5px solid #eee;
        border-left: 0;
    }

        .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
            content: '';
        }

        .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
            content: '\00A0 \2014';
        }

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

code, kbd, pre, samp {
    font-family: Menlo,Monaco,Consolas,"TasweekSystem New",monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width:768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width:1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

    .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*=col-] {
    position: static;
    display: table-column;
    float: none;
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none;
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type=file] {
    display: block;
}

input[type=range] {
    display: block;
    width: 100%;
}

select[multiple], select[size] {
    height: auto;
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eee;
        opacity: 1;
    }

textarea.form-control {
    height: auto;
}

input[type=search] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
        line-height: 34px;
    }

        input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm {
            line-height: 30px;
        }

        input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg {
            line-height: 46px;
        }
}

.form-group {
    margin-bottom: 15px;
}

.radio, .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .radio label, .checkbox label {
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
    }

    .radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
        position: absolute;
        margin-top: 4px \9;
        margin-left: -20px;
    }

    .radio + .radio, .checkbox + .checkbox {
        margin-top: -5px;
    }

.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

    .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px;
    }

input[type=radio][disabled], input[type=checkbox][disabled], input[type=radio].disabled, input[type=checkbox].disabled, fieldset[disabled] input[type=radio], fieldset[disabled] input[type=checkbox] {
    cursor: not-allowed;
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

    .form-control-static.input-lg, .form-control-static.input-sm {
        padding-right: 0;
        padding-left: 0;
    }

.input-sm, .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm, select.form-group-sm .form-control {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm, textarea.form-group-sm .form-control, select[multiple].input-sm, select[multiple].form-group-sm .form-control {
    height: auto;
}

.input-lg, .form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-lg, select.form-group-lg .form-control {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg, textarea.form-group-lg .form-control, select[multiple].input-lg, select[multiple].form-group-lg .form-control {
    height: auto;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.input-sm + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-success .form-control:focus {
        border-color: #2b542c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
    }

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-warning .form-control:focus {
        border-color: #66512c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-error .form-control:focus {
        border-color: #843534;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
    }

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}

.has-error .form-control-feedback {
    color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
    top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%;
        }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .radio label, .form-inline .checkbox label {
            padding-left: 0;
        }

        .form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] {
            position: relative;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px;
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:hover, .btn:focus, .btn.focus {
        color: #333;
        text-decoration: none;
    }

    .btn:active, .btn.active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
        box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    }

    .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
        pointer-events: none;
        cursor: not-allowed;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: .65;
    }

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
        background-color: #fff;
        border-color: #ccc;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #286090;
        border-color: #204d74;
    }

    .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #337ab7;
        border-color: #2e6da4;
    }

    .btn-primary .badge {
        color: #337ab7;
        background-color: #fff;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

    .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
        background-image: none;
    }

    .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
        background-color: #5cb85c;
        border-color: #4cae4c;
    }

    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

    .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

    .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

    .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
        background-color: #d9534f;
        border-color: #d43f3a;
    }

    .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
}

    .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
            border-color: transparent;
        }

            .btn-link:hover, .btn-link:focus {
                color: #23527c;
                text-decoration: underline;
                background-color: transparent;
            }

            .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
                color: #777;
                text-decoration: none;
            }

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
    visibility: hidden;
}

    .collapse.in {
        display: block;
        visibility: visible;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height,visibility;
    -o-transition-property: height,visibility;
    transition-property: height,visibility;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            color: #262626;
            text-decoration: none;
            background-color: #f5f5f5;
        }

    .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: #337ab7;
        outline: 0;
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
        color: #777;
    }

        .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
            text-decoration: none;
            cursor: not-allowed;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px solid;
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .btn-group > .btn, .btn-group-vertical > .btn {
        position: relative;
        float: left;
    }

        .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
            z-index: 2;
        }

    .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -5px;
}

    .btn-toolbar .btn-group, .btn-toolbar .input-group {
        float: left;
    }

    .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
        margin-left: 5px;
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn-group:last-child > .btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

    .btn-group.open .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 4px;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    .btn-group-justified > .btn, .btn-group-justified > .btn-group {
        display: table-cell;
        float: none;
        width: 1%;
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%;
        }

        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto;
        }

[data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=radio], [data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group[class*=col-] {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px;
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto;
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell;
}

    .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 3px;
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px;
    }

    .input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
        margin-top: 0;
    }

    .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group-addon:first-child {
        border-right: 0;
    }

    .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
            z-index: 2;
        }

    .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
        margin-left: -1px;
    }

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav > li > a:hover, .nav > li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

        .nav > li.disabled > a {
            color: #777;
        }

            .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            }

    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        background-color: #eee;
        border-color: #337ab7;
    }

    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
            color: #555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        .nav-tabs.nav-justified > li {
            float: none;
        }

            .nav-tabs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center;
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width:768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media (min-width:768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 4px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #337ab7;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified {
    width: 100%;
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media (min-width:768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px;
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd;
    }

@media (min-width:768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
    visibility: hidden;
}

.tab-content > .active {
    display: block;
    visibility: visible;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

@media (min-width:768px) {
    .navbar {
        border-radius: 4px;
    }
}

@media (min-width:768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

    .navbar-collapse.in {
        overflow-y: auto;
    }

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
            visibility: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width:768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width:768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

    .navbar-brand:hover, .navbar-brand:focus {
        text-decoration: none;
    }

    .navbar-brand > img {
        display: block;
    }

@media (min-width:768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .navbar-toggle:focus {
        outline: 0;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media (min-width:768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.5px -15px;
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }

@media (max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px;
            }
}

.navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .form-control-static {
        display: inline-block;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
            width: auto;
        }

        .navbar-form .input-group > .form-control {
            width: 100%;
        }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio, .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .navbar-form .radio label, .navbar-form .checkbox label {
            padding-left: 0;
        }

        .navbar-form .radio input[type=radio], .navbar-form .checkbox input[type=checkbox] {
            position: relative;
            margin-left: 0;
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

        .navbar-form .form-group:last-child {
            margin-bottom: 0;
        }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (min-width:768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }

        .navbar-right ~ .navbar-right {
            margin-right: 0;
        }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

    .navbar-default .navbar-brand {
        color: #777;
    }

        .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
            background-color: transparent;
        }

    .navbar-default .navbar-text {
        color: #777;
    }

    .navbar-default .navbar-nav > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }

    .navbar-default .navbar-toggle {
        border-color: #ddd;
    }

        .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
            background-color: #ddd;
        }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #888;
        }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #777;
}

    .navbar-default .navbar-link:hover {
        color: #333;
    }

.navbar-default .btn-link {
    color: #777;
}

    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
        color: #333;
    }

    .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc;
    }

.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

    .navbar-inverse .navbar-brand {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-text {
        color: #9d9d9d;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #333;
    }

        .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
            background-color: #333;
        }

        .navbar-inverse .navbar-toggle .icon-bar {
            background-color: #fff;
        }

    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        border-color: #101010;
    }

    .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
        color: #fff;
        background-color: #080808;
    }

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

.navbar-inverse .btn-link {
    color: #9d9d9d;
}

    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
        color: #fff;
    }

    .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
        color: #444;
    }

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            padding: 0 5px;
            color: #ccc;
            content: "/\00a0";
        }

    .breadcrumb > .active {
        color: #777;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a, .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a, .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a, .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
            color: #23527c;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    .pager li {
        display: inline;
    }

        .pager li > a, .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:hover, .pager li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a, .pager .next > span {
        float: right;
    }

    .pager .previous > a, .pager .previous > span {
        float: left;
    }

    .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
    }

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #777;
}

    .label-default[href]:hover, .label-default[href]:focus {
        background-color: #5e5e5e;
    }

.label-primary {
    background-color: #337ab7;
}

    .label-primary[href]:hover, .label-primary[href]:focus {
        background-color: #286090;
    }

.label-success {
    background-color: #5cb85c;
}

    .label-success[href]:hover, .label-success[href]:focus {
        background-color: #449d44;
    }

.label-info {
    background-color: #5bc0de;
}

    .label-info[href]:hover, .label-info[href]:focus {
        background-color: #31b0d5;
    }

.label-warning {
    background-color: #f0ad4e;
}

    .label-warning[href]:hover, .label-warning[href]:focus {
        background-color: #ec971f;
    }

.label-danger {
    background-color: #d9534f;
}

    .label-danger[href]:hover, .label-danger[href]:focus {
        background-color: #c9302c;
    }

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #777;
    border-radius: 10px;
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff;
}

.list-group-item > .badge {
    float: right;
}

    .list-group-item > .badge + .badge {
        margin-right: 5px;
    }

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

.jumbotron {
    padding: 30px 15px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee;
}

    .jumbotron h1, .jumbotron .h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200;
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

.container .jumbotron, .container-fluid .jumbotron {
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding: 48px 0;
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

    .thumbnail > img, .thumbnail a > img {
        margin-right: auto;
        margin-left: auto;
    }

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #337ab7;
}

.thumbnail .caption {
    padding: 9px;
    color: #333;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: 700;
    }

    .alert > p, .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable, .alert-dismissible {
    padding-right: 35px;
}

    .alert-dismissable .close, .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-danger {
    background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.media {
    margin-top: 15px;
}

    .media:first-child {
        margin-top: 0;
    }

    .media-right, .media > .pull-right {
        padding-left: 10px;
    }

    .media-left, .media > .pull-left {
        padding-right: 10px;
    }

.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .list-group-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

a.list-group-item {
    color: #555;
}

    a.list-group-item .list-group-item-heading {
        color: #333;
    }

    a.list-group-item:hover, a.list-group-item:focus {
        color: #555;
        text-decoration: none;
        background-color: #f5f5f5;
    }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #eee;
}

    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
        color: inherit;
    }

    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
        color: #777;
    }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

    .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
        color: inherit;
    }

    .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
        color: #c7ddef;
    }

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success {
    color: #3c763d;
}

    a.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-success:hover, a.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info {
    color: #31708f;
}

    a.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-info:hover, a.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3;
    }

    a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning {
    color: #8a6d3b;
}

    a.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-warning:hover, a.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

a.list-group-item-danger {
    color: #a94442;
}

    a.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-danger:hover, a.list-group-item-danger:focus {
        color: #a94442;
        background-color: #ebcccc;
    }

    a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442;
    }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

    .panel-title > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

    .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0;
    }

    .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
        border-bottom: 0;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0;
}

    .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
        padding-right: 15px;
        padding-left: 15px;
    }

    .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

        .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

            .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
                border-top-left-radius: 3px;
            }

            .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
                border-top-right-radius: 3px;
            }

    .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

        .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
        }

            .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
                border-bottom-left-radius: 3px;
            }

            .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
                border-bottom-right-radius: 3px;
            }

    .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
        border-top: 1px solid #ddd;
    }

    .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
        border-top: 0;
    }

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0;
}

    .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0;
    }

    .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}

.panel-group {
    margin-bottom: 20px;
}

    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 4px;
    }

        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    .panel-group .panel-heading {
        border-bottom: 0;
    }

        .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
            border-top: 1px solid #ddd;
        }

    .panel-group .panel-footer {
        border-top: 0;
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd;
        }

.panel-default {
    border-color: #ddd;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ddd;
        }

        .panel-default > .panel-heading .badge {
            color: #f5f5f5;
            background-color: #333;
        }

    .panel-default > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ddd;
    }

.panel-primary {
    border-color: #337ab7;
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #337ab7;
        border-color: #337ab7;
    }

        .panel-primary > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #337ab7;
        }

        .panel-primary > .panel-heading .badge {
            color: #337ab7;
            background-color: #fff;
        }

    .panel-primary > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #337ab7;
    }

.panel-success {
    border-color: #d6e9c6;
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        .panel-success > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #d6e9c6;
        }

        .panel-success > .panel-heading .badge {
            color: #dff0d8;
            background-color: #3c763d;
        }

    .panel-success > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #d6e9c6;
    }

.panel-info {
    border-color: #bce8f1;
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        .panel-info > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #bce8f1;
        }

        .panel-info > .panel-heading .badge {
            color: #d9edf7;
            background-color: #31708f;
        }

    .panel-info > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #bce8f1;
    }

.panel-warning {
    border-color: #faebcc;
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
    }

        .panel-warning > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #faebcc;
        }

        .panel-warning > .panel-heading .badge {
            color: #fcf8e3;
            background-color: #8a6d3b;
        }

    .panel-warning > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #faebcc;
    }

.panel-danger {
    border-color: #ebccd1;
}

    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

        .panel-danger > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ebccd1;
        }

        .panel-danger > .panel-heading .badge {
            color: #f2dede;
            background-color: #a94442;
        }

    .panel-danger > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ebccd1;
    }

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .embed-responsive.embed-responsive-16by9 {
        padding-bottom: 56.25%;
    }

    .embed-responsive.embed-responsive-4by3 {
        padding-bottom: 75%;
    }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0,0,0,.15);
    }

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

    .close:hover, .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate(0,-25%);
        -ms-transform: translate(0,-25%);
        -o-transform: translate(0,-25%);
        transform: translate(0,-25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
        transform: translate(0,0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}

    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9;
    }

    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }

    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px;
    }

    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

    .popover.top {
        margin-top: -10px;
    }

    .popover.right {
        margin-left: 10px;
    }

    .popover.bottom {
        margin-top: 10px;
    }

    .popover.left {
        margin-left: -10px;
    }

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

    .popover > .arrow:after {
        content: "";
        border-width: 10px;
    }

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0,0,0,.25);
    border-bottom-width: 0;
}

    .popover.top > .arrow:after {
        bottom: 1px;
        margin-left: -10px;
        content: " ";
        border-top-color: #fff;
        border-bottom-width: 0;
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0,0,0,.25);
    border-left-width: 0;
}

    .popover.right > .arrow:after {
        bottom: -10px;
        left: 1px;
        content: " ";
        border-right-color: #fff;
        border-left-width: 0;
    }

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0,0,0,.25);
}

    .popover.bottom > .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff;
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0,0,0,.25);
}

    .popover.left > .arrow:after {
        right: 1px;
        bottom: -10px;
        content: " ";
        border-right-width: 0;
        border-left-color: #fff;
    }

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
    }

        .carousel-inner > .item > img, .carousel-inner > .item > a > img {
            line-height: 1;
        }

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }

        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
            left: 0;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
        }

        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
            left: 0;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
        }

            .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
                left: 0;
                -webkit-transform: translate3d(0,0,0);
                transform: translate3d(0,0,0);
            }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

    .carousel-inner > .next.left, .carousel-inner > .prev.right {
        left: 0;
    }

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
}

    .carousel-control.left {
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
        background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
        background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control:hover, .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        filter: alpha(opacity=90);
        outline: 0;
        opacity: .9;
    }

    .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
    }

    .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        font-family: serif;
    }

        .carousel-control .icon-prev:before {
            content: '\2039';
        }

        .carousel-control .icon-next:before {
            content: '\203a';
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0,0,0,0);
        border: 1px solid #fff;
        border-radius: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff;
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width:768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -15px;
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -15px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important;
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width:767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md, td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width:1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width:1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print, td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/*

Uniform Theme: Uniform Default
Version: 1.8
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://uniformjs.com/

*/
/* General settings */
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
  background-image: url("../../../../Scripts/plugins/uniform/images/sprite.png");
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased; }
div.selector, div.checker, div.button, div.radio, div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  /* Keeping this as :focus to remove browser styles */ }
  div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
    outline: 0; }
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
  margin: 0;
  padding: 0; }

.highContrastDetect {
  background: url("../../../../Scripts/plugins/uniform/images/bg-input.png") repeat-x 0 0;
  width: 0px;
  height: 0px; }

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  background: url("../../../../Scripts/plugins/uniform/images/bg-input.png") repeat-x 0 0;
  outline: 0; }
  input.uniform-input.active,
  select.uniform-multiselect.active,
  textarea.uniform.active {
    background: url("../../../../Scripts/plugins/uniform/images/bg-input-focus.png") repeat-x 0 0; }

/* Remove default webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
  -moz-appearance: none;
  -webkit-appearance: none; }

/* Select */
div.selector {
  background-position: 0 -130px;
  line-height: 26px;
  height: 26px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden; }
  div.selector span {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    background-position: right 0;
    height: 26px;
    line-height: 26px;
    padding-right: 25px;
    cursor: pointer;
    width: 100%;
    display: block; }
  div.selector.fixedWidth {
    width: 190px; }
    div.selector.fixedWidth span {
      width: 155px; }
  div.selector select {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    height: 22px;
    top: 2px;
    left: 0px;
    width: 100%; }
  div.selector.active {
    background-position: 0 -156px; }
    div.selector.active span {
      background-position: right -26px; }
  div.selector.hover, div.selector.focus {
    background-position: 0 -182px; }
    div.selector.hover span, div.selector.focus span {
      background-position: right -52px; }
    div.selector.hover.active, div.selector.focus.active {
      background-position: 0 -208px; }
      div.selector.hover.active span, div.selector.focus.active span {
        background-position: right -78px; }
  div.selector.disabled, div.selector.disabled.active {
    background-position: 0 -234px; }
    div.selector.disabled span, div.selector.disabled.active span {
      background-position: right -104px; }

/* Checkbox */
div.checker {
  position: relative; }
  div.checker, div.checker span, div.checker input {
    width: 19px;
    height: 19px; }
  div.checker span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -260px; }
    div.checker span.checked {
      background-position: -76px -260px; }
  div.checker input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1; }
  div.checker.active span {
    background-position: -19px -260px; }
    div.checker.active span.checked {
      background-position: -95px -260px; }
  div.checker.hover span, div.checker.focus span {
    background-position: -38px -260px; }
    div.checker.hover span.checked, div.checker.focus span.checked {
      background-position: -114px -260px; }
  div.checker.hover.active span, div.checker.focus.active span {
    background-position: -57px -260px; }
    div.checker.hover.active span.checked, div.checker.focus.active span.checked {
      background-position: -133px -260px; }
  div.checker.disabled, div.checker.disabled.active {
    background-position: -152px -260px; }
    div.checker.disabled span.checked, div.checker.disabled.active span.checked {
      background-position: -171px -260px; }

/* Radio */
div.radio {
  position: relative; }
  div.radio, div.radio span, div.radio input {
    width: 18px;
    height: 18px; }
  div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: 0 -279px; }
    div.radio span.checked {
      background-position: -72px -279px; }
  div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  div.radio.active span {
    background-position: -18px -18px -279px; }
    div.radio.active span.checked {
      background-position: -90px -279px; }
  div.radio.hover span, div.radio.focus span {
    background-position: -36px -36px -279px; }
    div.radio.hover span.checked, div.radio.focus span.checked {
      background-position: -108px -279px; }
  div.radio.hover.active span, div.radio.focus.active span {
    background-position: -54px -279px; }
    div.radio.hover.active span.checked, div.radio.focus.active span.checked {
      background-position: -126px -279px; }
  div.radio.disabled span, div.radio.disabled.active span {
    background-position: -144px -279px; }
    div.radio.disabled span.checked, div.radio.disabled.active span.checked {
      background-position: -162px -279px; }

/* Uploader */
div.uploader {
  background-position: 0 -297px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  position: relative;
  overflow: hidden; }
  div.uploader span.action {
    background-position: right -409px;
    height: 28px;
    line-height: 28px;
    width: 82px;
    text-align: center;
    float: left;
    display: inline;
    overflow: hidden;
    cursor: pointer; }
  div.uploader span.filename {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    float: left;
    cursor: default;
    height: 24px;
    margin: 2px 0 2px 2px;
    line-height: 24px;
    width: 85px;
    padding: 0 10px; }
  div.uploader input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    float: right;
    cursor: default;
    width: 100%;
    height: 100%; }
  div.uploader.active span.action {
    background-position: right -465px; }
  div.uploader.hover, div.uploader.focus {
    background-position: 0 -353px; }
    div.uploader.hover span.action, div.uploader.focus span.action {
      background-position: right -437px; }
    div.uploader.hover.active span.action, div.uploader.focus.active span.action {
      background-position: right -493px; }
  div.uploader.disabled, div.uploader.disabled.active {
    background-position: 0 -325px; }
    div.uploader.disabled span.action, div.uploader.disabled.active span.action {
      background-position: right -381px; }

/* Buttons */
div.button {
  background-position: 0 -641px;
  height: 30px;
  cursor: pointer;
  position: relative;
  /* Keep buttons barely visible so they can get focus */ }
  div.button a, div.button button, div.button input {
    opacity: 0.01;
    filter: alpha(opacity=1);
    -moz-opacity: 0.01;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  div.button span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 22px;
    text-align: center;
    background-position: right -521px;
    height: 22px;
    margin-left: 13px;
    padding: 8px 15px 0 2px; }
  div.button.active {
    background-position: 0 -671px; }
    div.button.active span {
      background-position: right -551px;
      cursor: default; }
  div.button.hover, div.button.focus {
    background-position: 0 -701px; }
    div.button.hover span, div.button.focus span {
      background-position: right -581px; }
  div.button.disabled, div.button.disabled.active {
    background-position: 0 -731px; }
    div.button.disabled span, div.button.disabled.active span {
      background-position: right -611px;
      cursor: default; }

/* INPUT & TEXTAREA */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  font-size: 12px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #777;
  border-top: solid 1px #aaaaaa;
  border-left: solid 1px #aaaaaa;
  border-bottom: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  input.uniform-input.hover, input.uniform-input.focus,
  select.uniform-multiselect.hover,
  select.uniform-multiselect.focus,
  textarea.uniform.hover,
  textarea.uniform.focus {
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    border-color: #999; }

/* PRESENTATION */
/* Buttons */
div.button span {
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; }
div.button.hover span, div.button.focus span {
  color: #555; }
div.button.disabled span, div.button.disabled.active span {
  color: #bbb; }

/* Select */
div.selector {
  font-size: 12px; }
  div.selector span {
    color: #666;
    text-shadow: 0 1px 0 white; }
  div.selector select {
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 12px; }
  div.selector.disabled span, div.selector.disabled.active span {
    color: #bbb; }

/* Checker */
div.checker {
  margin-right: 5px; }

/* Radio */
div.radio {
  margin-right: 3px; }

/* Uploader */
div.uploader span.action {
  text-shadow: white 0px 1px 0px;
  background-color: #fff;
  font-size: 11px;
  font-weight: bold; }
div.uploader span.filename {
  color: #777;
  border-right: solid 1px #bbbbbb;
  font-size: 11px; }
div.uploader.disabled span.action, div.uploader.disabled.active span.action {
  color: #aaa; }
div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
  border-color: #ddd;
  color: #aaa; }

input.uniform-input, input.uniform-input:focus {
  background-color: #fff; }

/* ========================================================================
 * bootstrap-switch - v3.0.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.bootstrap-switch{display:inline-block;cursor:pointer;border-radius:4px;border:1px solid;border-color:#ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;min-width:100px;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch.bootstrap-switch-mini{min-width:71px}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding-bottom:4px;padding-top:4px;font-size:10px;line-height:9px}.bootstrap-switch.bootstrap-switch-small{min-width:79px}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding-bottom:3px;padding-top:3px;font-size:12px;line-height:18px}.bootstrap-switch.bootstrap-switch-large{min-width:120px}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding-bottom:9px;padding-top:9px;font-size:16px;line-height:normal}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container{margin-left:0}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container{margin-left:-50%}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-container{margin-left:-25%}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-readonly,.bootstrap-switch.bootstrap-switch-indeterminate{opacity:.5;filter:alpha(opacity=50);cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label{cursor:default!important}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.bootstrap-switch .bootstrap-switch-container{display:inline-block;width:150%;top:0;border-radius:4px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block!important;height:100%;padding-bottom:4px;padding-top:4px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off{text-align:center;z-index:1;width:33.33333333%}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff;background:#428bca}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info{color:#fff;background:#5bc0de}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success{color:#fff;background:#5cb85c}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{background:#f0ad4e;color:#fff}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger{color:#fff;background:#d9534f}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default{color:#000;background:#eee}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;width:33.33333333%;color:#333;background:#fff}.bootstrap-switch input[type=radio],.bootstrap-switch input[type=checkbox]{position:absolute!important;top:0;left:0;opacity:0;filter:alpha(opacity=0);z-index:-1}.bootstrap-switch input[type=radio].form-control,.bootstrap-switch input[type=checkbox].form-control{height:auto}
/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
    /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
    -webkit-box-sizing: border-box; /* webkit */
    -moz-box-sizing: border-box; /* firefox */
    box-sizing: border-box; /* css3 */
}

    .select2-container .select2-choice {
        display: block;
        height: 26px;
        padding: 0 0 0 8px;
        overflow: hidden;
        position: relative;
        border: 1px solid #aaa;
        white-space: nowrap;
        line-height: 26px;
        color: #B3B3B3;
        text-decoration: none;
        border-radius: 4px;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #fff;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
        background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
        background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
        background-image: linear-gradient(to top, #eee 0%, #fff 50%);
    }

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;
    border-radius: 0 0 4px 4px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
    margin-top: 3px;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;
    font-size: 1px;
    text-decoration: none;
    border: 0;
    background: url('../../../../Scripts/plugins/select2/select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

    .select2-drop.select2-drop-above {
        margin-top: 1px;
        border-top: 1px solid #aaa;
        border-bottom: 0;
        border-radius: 4px 4px 0 0;
        -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    }

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

    .select2-drop-auto-width .select2-search {
        padding-top: 4px;
    }

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
    background-clip: padding-box;
    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;
    border-left: none;
    border-right: 1px solid #e5e5e5;
    border-radius: 4px 0 0 4px;
    padding-right: 2px;
}


.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 0px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
    z-index: 10000;
    white-space: nowrap;
}

    .select2-search input {
        width: 100%;
        height: auto !important;
        min-height: 26px;
        padding: 4px 20px 4px 5px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat -35px -22px;
    }

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;
    background: #fff url('../../../../Scripts/plugins/select2/select2.png') no-repeat -37px -22px;
    background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat -37px -22px;
    background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat -37px -22px;
    background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat -37px -22px;
    background: url('../../../../Scripts/plugins/select2/select2.png') no-repeat -37px -22px;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
    background: url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
    background: url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
    background: url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
    background: url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

    .select2-results li.select2-result-with-children > .select2-result-label {
        font-weight: bold;
    }

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;
    min-height: 1em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select2-results-dept-1 .select2-result-label {
    padding-left: 20px;
}

.select2-results-dept-2 .select2-result-label {
    padding-left: 40px;
}

.select2-results-dept-3 .select2-result-label {
    padding-left: 60px;
}

.select2-results-dept-4 .select2-result-label {
    padding-left: 80px;
}

.select2-results-dept-5 .select2-result-label {
    padding-left: 100px;
}

.select2-results-dept-6 .select2-result-label {
    padding-left: 110px;
}

.select2-results-dept-7 .select2-result-label {
    padding-left: 120px;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-disabled {
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container.select2-container-disabled .select2-choice .select2-arrow {
        background-color: #f4f4f4;
        background-image: none;
        border-left: 0;
    }

    .select2-container.select2-container-disabled .select2-choice abbr {
        display: none;
    }


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;
    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;
    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
    padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}

html[dir="rtl"] .select2-container-multi .select2-choices li {
    float: right;
}

.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .select2-container-multi .select2-choices .select2-search-field input {
        padding: 5px;
        margin: 1px 0;
        font-family: sans-serif;
        font-size: 100%;
        color: #666;
        outline: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent !important;
    }

        .select2-container-multi .select2-choices .select2-search-field input.select2-active {
            background: #fff url('../../../../Scripts/plugins/select2/select2-spinner.gif') no-repeat 100% !important;
        }

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;
    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
    margin: 6px 5px 0px 0;
    padding: 3px 18px 3px 5px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}

.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;
    font-size: 1px;
    outline: none;
    background: url('../../../../Scripts/plugins/select2/select2.png') right top no-repeat;
}

html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
    background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
        padding: 3px 5px 3px 5px;
        border: 1px solid #ddd;
        background-image: none;
        background-color: #f4f4f4;
    }

        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
            display: none;
            background: none;
        }
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('../../../../Scripts/plugins/select2/select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}


.select2-result-single {
    padding-left: 0;
    padding-right: 5px;
}
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.7 - 2017-04-15T14:28:36.790Z
 * License: MIT
 */.ui-select-highlight{font-weight:700}.ui-select-offscreen{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.selectize-control.single>.selectize-input>input,.selectize-control>.selectize-dropdown{width:100%}.ui-select-choices-row:hover{background-color:#f5f5f5}.ng-dirty.ng-invalid>a.select2-choice{border-color:#D44950}.select2-result-single{padding-left:0}.select-locked>.ui-select-match-close,.select2-locked>.select2-search-choice-close{display:none}body>.select2-container.open{z-index:9999}.ui-select-container.select2.direction-up .ui-select-match,.ui-select-container[theme=select2].direction-up .ui-select-match{border-radius:0 0 4px 4px}.ui-select-container.select2.direction-up .ui-select-dropdown,.ui-select-container[theme=select2].direction-up .ui-select-dropdown{border-radius:4px 4px 0 0;border-top-width:1px;border-top-style:solid;box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-4px}.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search,.ui-select-container[theme=select2].direction-up .ui-select-dropdown .select2-search{margin-top:4px}.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match,.ui-select-container[theme=select2].direction-up.select2-dropdown-open .ui-select-match{border-bottom-color:#5897fb}.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden,.ui-select-container[theme=select2] .ui-select-dropdown .ui-select-search-hidden input{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}.selectize-input.selectize-focus{border-color:#007FBB!important}.selectize-control.multi>.selectize-input>input{margin:0!important}.ng-dirty.ng-invalid>div.selectize-input{border-color:#D44950}.ui-select-container[theme=selectize].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25);margin-top:-2px}.ui-select-container[theme=selectize] input.ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0;width:0}.btn-default-focus{color:#333;background-color:#EBEBEB;border-color:#ADADAD;text-decoration:none;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.ui-select-bootstrap .ui-select-toggle{position:relative}.ui-select-bootstrap .ui-select-toggle>.caret{position:absolute;height:10px;top:50%;right:10px;margin-top:-2px}.input-group>.ui-select-bootstrap.dropdown{position:static}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control{border-radius:4px 0 0 4px}.input-group>.ui-select-bootstrap>input.ui-select-search.form-control.direction-up{border-radius:4px 0 0 4px!important}.ui-select-bootstrap .ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}.ui-select-bootstrap>.ui-select-match>.btn{text-align:left!important}.ui-select-bootstrap>.ui-select-match>.caret{position:absolute;top:45%;right:15px}.ui-select-bootstrap>.ui-select-choices,.ui-select-bootstrap>.ui-select-no-choice{width:100%;height:auto;max-height:200px;overflow-x:hidden;margin-top:-1px}body>.ui-select-bootstrap.open{z-index:1000}.ui-select-multiple.ui-select-bootstrap{height:auto;padding:3px 3px 0}.ui-select-multiple.ui-select-bootstrap input.ui-select-search{background-color:transparent!important;border:none;outline:0;height:1.666666em;margin-bottom:3px}.ui-select-multiple.ui-select-bootstrap .ui-select-match .close{font-size:1.6em;line-height:.75}.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{outline:0;margin:0 3px 3px 0}.ui-select-multiple .ui-select-match-item{position:relative}.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close{pointer-events:none}.ui-select-multiple:hover .ui-select-match-item.dropping-before:before{content:"";position:absolute;top:0;right:100%;height:100%;margin-right:2px;border-left:1px solid #428bca}.ui-select-multiple:hover .ui-select-match-item.dropping-after:after{content:"";position:absolute;top:0;left:100%;height:100%;margin-left:2px;border-right:1px solid #428bca}.ui-select-bootstrap .ui-select-choices-row>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.ui-select-bootstrap .ui-select-choices-row.active>span{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.ui-select-bootstrap .ui-select-choices-row.active.disabled>span,.ui-select-bootstrap .ui-select-choices-row.disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.ui-select-match.ng-hide-add,.ui-select-search.ng-hide-add{display:none!important}.ui-select-bootstrap.ng-dirty.ng-invalid>button.btn.ui-select-match{border-color:#D44950}.ui-select-container[theme=bootstrap].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25)}.ui-select-bootstrap .ui-select-match-text{width:100%;padding-right:1em}.ui-select-bootstrap .ui-select-match-text span{display:inline-block;width:100%;overflow:hidden}.ui-select-bootstrap .ui-select-toggle>a.btn{position:absolute;height:10px;right:10px;margin-top:-2px}.ui-select-refreshing.glyphicon{position:absolute;right:0;padding:8px 27px}@-webkit-keyframes ui-select-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ui-select-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.ui-select-spin{-webkit-animation:ui-select-spin 2s infinite linear;animation:ui-select-spin 2s infinite linear}.ui-select-refreshing.ng-animate{-webkit-animation:none 0s}
/*# sourceMappingURL=select.min.css.map */

.toast-title{font-weight:bold}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-close-button{position:relative;right:-0.3em;top:-0.3em;float:right;font-size:20px;font-weight:bold;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80)}.toast-close-button:hover,.toast-close-button:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:alpha(opacity=40);filter:alpha(opacity=40)}button.toast-close-button{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;border-radius:3px 3px 3px 3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80)}#toast-container>:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:alpha(opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important}#toast-container>.toast-error{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important}#toast-container>.toast-success{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important}#toast-container>.toast-warning{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important}#toast-container.toast-top-center>div,#toast-container.toast-bottom-center>div{width:300px;margin:auto}#toast-container.toast-top-full-width>div,#toast-container.toast-bottom-full-width>div{width:96%;margin:auto}.toast{background-color:#030303}.toast-success{background-color:#51a351}.toast-error{background-color:#bd362f}.toast-info{background-color:#2f96b4}.toast-warning{background-color:#f89406}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}}

/* Redmond styling for jQuery Calendars Picker v2.0.0. */
.calendars {
	background-color: #fff;
	color: #222;
	border: 1px solid #4297d7;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
	font-family: Arial,Helvetica,Sans-serif;
	font-size: 90%;
}
.calendars-rtl {
	direction: rtl;
}
.calendars-popup {
	z-index: 1060;
}
.calendars-disable {
	position: absolute;
	z-index: 100;
	background-color: white;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.calendars a {
	color: #222;
	text-decoration: none;
}
.calendars a.calendars-disabled {
	color: #888;
	cursor: auto;
}
.calendars button {
    margin: 0.25em;
    padding: 0.125em 0em;
	background-color: #5c9ccc;
	color: #fff;
    border: none;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
    border-radius: 0.25em;
    font-weight: bold;
}
.calendars-nav, .calendars-ctrl {
	float: left;
	width: 100%;
	background-color: #fff;
	font-size: 90%;
	font-weight: bold;
}
.calendars-ctrl {
	background-color: #d0e5f5;
}
.calendars-cmd {
	width: 30%;
}
.calendars-cmd:hover {
	background-color: #dfeffc;
}
button.calendars-cmd:hover {
	background-color: #79b7e7;
}
.calendars-cmd-prevJump, .calendars-cmd-nextJump {
	width: 8%;
}
a.calendars-cmd {
	height: 1.5em;
}
button.calendars-cmd {
	text-align: center;
}
.calendars-cmd-prev, .calendars-cmd-prevJump, .calendars-cmd-clear {
	float: left;
	padding-left: 2%;
}
.calendars-cmd-current, .calendars-cmd-today {
	float: left;
	width: 35%;
	text-align: center;
}
.calendars-cmd-next, .calendars-cmd-nextJump, .calendars-cmd-close {
	float: right;
	padding-right: 2%;
	text-align: right;
}
.calendars-rtl .calendars-cmd-prev, .calendars-rtl .calendars-cmd-prevJump,
.calendars-rtl .calendars-cmd-clear {
	float: right;
	padding-left: 0%;
	padding-right: 2%;
	text-align: right;
}
.calendars-rtl .calendars-cmd-current, .calendars-rtl .calendars-cmd-today {
	float: right;
}
.calendars-rtl .calendars-cmd-next, .calendars-rtl .calendars-cmd-nextJump,
.calendars-rtl .calendars-cmd-close {
	float: left;
	padding-left: 2%;
	padding-right: 0%;
	text-align: left;
}
.calendars-month-nav {
	float: left;
	text-align: center;
}
.calendars-month-nav div {
	float: left;
	width: 12.5%;
	margin: 1%;
	padding: 1%;
}
.calendars-month-nav span {
	color: #888;
}
.calendars-month-row {
	clear: left;
}
.calendars-month {
	float: left;
	width: 15em;
	border: 1px solid #5c9ccc;
	text-align: center;
}
.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
	height: 1.5em;
	background-color: #5c9ccc;
	color: #fff;
	font-weight: bold;
}
.calendars-month-header select, .calendars-month-header input {
	height: 1.4em;
	border: none;
}
.calendars-month-header input {
	position: absolute;
	display: none;
}
.calendars-month table {
	width: 100%;
	border-collapse: collapse;
}
.calendars-month thead {
	border-bottom: 1px solid #aaa;
}
.calendars-month th, .calendars-month td {
	margin: 0em;
	padding: 0em;
	font-weight: normal;
	text-align: center;
}
.calendars-month th {
	border: 1px solid #fff;
	border-bottom: 1px solid #c5dbec;
}
.calendars-month td {
	border: 1px solid #c5dbec;
}
.calendars-month td.calendars-week * {
	background-color: #d0e5f5;
	color: #222;
	border: none;
}
.calendars-month a {
	display: block;
	width: 100%;
	padding: 0.125em 0em;
	background-color: #dfeffc;
	color: #000;
	text-decoration: none;
}
.calendars-month span {
	display: block;
	width: 100%;
	padding: 0.125em 0em;
}
.calendars-month td span {
	color: #888;
}
.calendars-month td .calendars-other-month {
	background-color: #fff;
}
.calendars-month td .calendars-today {
	background-color: #fad42e;
}
.calendars-month td .calendars-highlight {
	background-color: #79b7e7;
}
.calendars-month td .calendars-selected {
	background-color: #4297d7;
	color: #fff;
}
.calendars-status {
	clear: both;
	text-align: center;
}
.calendars-clear-fix {
	clear: both;
}

.ta-hidden-input {
    width: 1px;
    height: 1px;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -10000px;
    left: -10000px;
    opacity: 0;
    overflow: hidden;
}

/* add generic styling for the editor */
.ta-root.focussed > .ta-scroll-window.form-control {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ta-editor.ta-html, .ta-scroll-window.form-control {
    min-height: 300px;
    height: auto;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
}

.ta-scroll-window.form-control {
    position: relative;
    padding: 0;
}

.ta-scroll-window > .ta-bind {
    height: auto;
    min-height: 300px;
    padding: 6px 12px;
}

.ta-editor:focus {
    user-select: text;
}

/* add the styling for the awesomness of the resizer */
.ta-resizer-handle-overlay {
    z-index: 100;
    position: absolute;
    display: none;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-info {
    position: absolute;
    bottom: 16px;
    right: 16px;
    border: 1px solid black;
    background-color: #FFF;
    padding: 0 4px;
    opacity: 0.7;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-background {
    position: absolute;
    bottom: 5px;
    right: 5px;
    left: 5px;
    top: 5px;
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 0.2);
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner {
    width: 10px;
    height: 10px;
    position: absolute;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tl{
    top: 0;
    left: 0;
    border-left: 1px solid black;
    border-top: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tr{
    top: 0;
    right: 0;
    border-right: 1px solid black;
    border-top: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-bl{
    bottom: 0;
    left: 0;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-br{
    bottom: 0;
    right: 0;
    border: 1px solid black;
    cursor: se-resize;
    background-color: white;
}

/* copy the popover code from bootstrap so this will work even without it */
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
    margin-top: -10px;
}
.popover.bottom {
    margin-top: 10px;
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.popover-content {
    padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover > .arrow {
    border-width: 11px;
}
.popover > .arrow:after {
    content: "";
    border-width: 10px;
}
.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0;
}
.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0;
}
.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}

.ngrateit-rating {
    display: inline-block;
    overflow: hidden
}

.ngrateit-reset {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjMycHgiIHZpZXdCb3g9IjAgMCAxNiAzMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMzIiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0IzQjNCMyIgZD0iTTgsMi4xNzRjLTMuMjE5LDAtNS44MjcsMi42MDktNS44MjcsNS44MjdTNC43ODMsMTMuODI2LDgsMTMuODI2YzMuMjE4LDAsNS44MjYtMi42MDcsNS44MjYtNS44MjUNCglTMTEuMjE5LDIuMTc0LDgsMi4xNzR6IE0xMS40MzgsOUg0LjU2M1Y3aDYuODc0Vjl6Ii8+DQo8bGluZWFyR3JhZGllbnQgaWQ9IlNWR0lEXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9Ii0xMjIuMzI2NyIgeTE9IjgwMCIgeDI9Ii0xMTAuNjczOCIgeTI9IjgwMCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAxIDEyNC41IC03NzYpIj4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRkYxRDI1Ii8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q3MDAyRSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGZpbGw9InVybCgjU1ZHSURfMV8pIiBkPSJNOCwxOC4xNzRjLTMuMjE5LDAtNS44MjcsMi42MDktNS44MjcsNS44MjdTNC43ODMsMjkuODI2LDgsMjkuODI2YzMuMjE4LDAsNS44MjYtMi42MDcsNS44MjYtNS44MjUNCglTMTEuMjE5LDE4LjE3NCw4LDE4LjE3NHogTTExLjQzOCwyNUg0LjU2M3YtMmg2Ljg3NFYyNXoiLz4NCjwvc3ZnPg0K);
    display: inline-block;
    background-position: 0 0
}

    .ngrateit-reset:hover {
        background-position: 0 100%
    }

.ngrateit-star {
    display: block;
    float: left;
    overflow: hidden;
    background-repeat: repeat-x
}

.ngrateit-bg-star {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8zXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwLjIwNyIgeTE9IjgiIHgyPSIxNS43OTIiIHkyPSI4Ij4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0NDQ0NDIi8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U2RTZFNiIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGZpbGw9InVybCgjU1ZHSURfM18pIiBkPSJNOC4zNjcsMC44MTRsMS45ODQsNC42OTFsNS4wNzQsMC40MzRjMC4zNTIsMC4wMzEsMC40OTYsMC40NzMsMC4yMjcsMC43MDNsLTMuODQ4LDMuMzM2bDEuMTUyLDQuOTYxDQoJYzAuMDgyLDAuMzQ0LTAuMjkzLDAuNjE3LTAuNTk0LDAuNDM0TDgsMTIuNzRsLTQuMzYzLDIuNjMzYy0wLjMwMSwwLjE4LTAuNjc2LTAuMDktMC41OTQtMC40MzRsMS4xNTItNC45NjFMMC4zNDQsNi42NDINCglDMC4wNzgsNi40MDgsMC4yMjMsNS45NywwLjU3NCw1LjkzOWw1LjA3NC0wLjQzNGwxLjk4NS00LjY5MUM3Ljc2OSwwLjQ4Niw4LjIzLDAuNDg2LDguMzY3LDAuODE0TDguMzY3LDAuODE0eiBNOC4zNjcsMC44MTQiLz4NCjwvc3ZnPg0K)
}

.ngrateit-selected {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8zXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwLjIwNyIgeTE9IjgiIHgyPSIxNS43OTIiIHkyPSI4Ij4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRkJCMDNCIi8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0ZGOTQyRCIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGZpbGw9InVybCgjU1ZHSURfM18pIiBkPSJNOC4zNjcsMC44MTRsMS45ODQsNC42OTFsNS4wNzQsMC40MzRjMC4zNTIsMC4wMzEsMC40OTYsMC40NzMsMC4yMjcsMC43MDNsLTMuODQ4LDMuMzM2bDEuMTUyLDQuOTYxDQoJYzAuMDgyLDAuMzQ0LTAuMjkzLDAuNjE3LTAuNTk0LDAuNDM0TDgsMTIuNzRsLTQuMzYzLDIuNjMzYy0wLjMwMSwwLjE4LTAuNjc2LTAuMDktMC41OTQtMC40MzRsMS4xNTItNC45NjFMMC4zNDQsNi42NDINCglDMC4wNzgsNi40MDgsMC4yMjMsNS45NywwLjU3NCw1LjkzOWw1LjA3NC0wLjQzNGwxLjk4NS00LjY5MUM3Ljc2OSwwLjQ4Niw4LjIzLDAuNDg2LDguMzY3LDAuODE0TDguMzY3LDAuODE0eiBNOC4zNjcsMC44MTQiLz4NCjwvc3ZnPg0K)
}

.ngrateit:not(.ngrateit-readonly) .ngrateit-hashover.ngrateit-rating span:hover ~ span {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8zXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwLjIwNyIgeTE9IjgiIHgyPSIxNS43OTIiIHkyPSI4Ij4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0NDQ0NDIi8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U2RTZFNiIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGZpbGw9InVybCgjU1ZHSURfM18pIiBkPSJNOC4zNjcsMC44MTRsMS45ODQsNC42OTFsNS4wNzQsMC40MzRjMC4zNTIsMC4wMzEsMC40OTYsMC40NzMsMC4yMjcsMC43MDNsLTMuODQ4LDMuMzM2bDEuMTUyLDQuOTYxDQoJYzAuMDgyLDAuMzQ0LTAuMjkzLDAuNjE3LTAuNTk0LDAuNDM0TDgsMTIuNzRsLTQuMzYzLDIuNjMzYy0wLjMwMSwwLjE4LTAuNjc2LTAuMDktMC41OTQtMC40MzRsMS4xNTItNC45NjFMMC4zNDQsNi42NDINCglDMC4wNzgsNi40MDgsMC4yMjMsNS45NywwLjU3NCw1LjkzOWw1LjA3NC0wLjQzNGwxLjk4NS00LjY5MUM3Ljc2OSwwLjQ4Niw4LjIzLDAuNDg2LDguMzY3LDAuODE0TDguMzY3LDAuODE0eiBNOC4zNjcsMC44MTQiLz4NCjwvc3ZnPg0K)
}

.ngrateit:not(.ngrateit-readonly) .ngrateit-hashover.ngrateit-rating:hover span {
    cursor: pointer;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8zXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwLjIwNyIgeTE9IjgiIHgyPSIxNS43OTIiIHkyPSI4Ij4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRkYxRDI1Ii8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q3MDAyRSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGZpbGw9InVybCgjU1ZHSURfM18pIiBkPSJNOC4zNjcsMC44MTRsMS45ODQsNC42OTFsNS4wNzQsMC40MzRjMC4zNTIsMC4wMzEsMC40OTYsMC40NzMsMC4yMjcsMC43MDNsLTMuODQ4LDMuMzM2bDEuMTUyLDQuOTYxDQoJYzAuMDgyLDAuMzQ0LTAuMjkzLDAuNjE3LTAuNTk0LDAuNDM0TDgsMTIuNzRsLTQuMzYzLDIuNjMzYy0wLjMwMSwwLjE4LTAuNjc2LTAuMDktMC41OTQtMC40MzRsMS4xNTItNC45NjFMMC4zNDQsNi42NDINCglDMC4wNzgsNi40MDgsMC4yMjMsNS45NywwLjU3NCw1LjkzOWw1LjA3NC0wLjQzNGwxLjk4NS00LjY5MUM3Ljc2OSwwLjQ4Niw4LjIzLDAuNDg2LDguMzY3LDAuODE0TDguMzY3LDAuODE0eiBNOC4zNjcsMC44MTQiLz4NCjwvc3ZnPg0K)
}

/**
 * FAMFAMFAM flag icons CSS.
 *
 * Examples:
 * <i class="famfamfam-flag-fr"> France</i>
 * <i class="famfamfam-flag-us"> United States</i>
 */

[class^="famfamfam-flag"] {
  display: inline-block;
  width: 16px;
  height: 11px;
  line-height: 11px;
  /* vertical-align: text-top; */
  background-image: url("../../../../Scripts/layout/css/flags/famfamfam-flags.png");
  background-position: 0 0;
  background-repeat: no-repeat;
}

.famfamfam-flag-zw { background-position: 0px 0px; width: 16px; height: 11px; }
.famfamfam-flag-zm { background-position: -16px 0px; width: 16px; height: 11px; }
.famfamfam-flag-za { background-position: 0px -11px; width: 16px; height: 11px; }
.famfamfam-flag-yt { background-position: -16px -11px; width: 16px; height: 11px; }
.famfamfam-flag-ye { background-position: -32px 0px; width: 16px; height: 11px; }
.famfamfam-flag-ws { background-position: -32px -11px; width: 16px; height: 11px; }
.famfamfam-flag-wf { background-position: 0px -22px; width: 16px; height: 11px; }
.famfamfam-flag-wales { background-position: -16px -22px; width: 16px; height: 11px; }
.famfamfam-flag-vu { background-position: -32px -22px; width: 16px; height: 11px; }
.famfamfam-flag-vn { background-position: 0px -33px; width: 16px; height: 11px; }
.famfamfam-flag-vi { background-position: -16px -33px; width: 16px; height: 11px; }
.famfamfam-flag-vg { background-position: -32px -33px; width: 16px; height: 11px; }
.famfamfam-flag-ve { background-position: -48px 0px; width: 16px; height: 11px; }
.famfamfam-flag-vc { background-position: -48px -11px; width: 16px; height: 11px; }
.famfamfam-flag-va { background-position: -48px -22px; width: 16px; height: 11px; }
.famfamfam-flag-uz { background-position: -48px -33px; width: 16px; height: 11px; }
.famfamfam-flag-uy { background-position: 0px -44px; width: 16px; height: 11px; }
.famfamfam-flag-us { background-position: -16px -44px; width: 16px; height: 11px; }
.famfamfam-flag-um { background-position: -16px -44px; width: 16px; height: 11px; }
.famfamfam-flag-ug { background-position: -32px -44px; width: 16px; height: 11px; }
.famfamfam-flag-ua { background-position: -48px -44px; width: 16px; height: 11px; }
.famfamfam-flag-tz { background-position: -64px 0px; width: 16px; height: 11px; }
.famfamfam-flag-tw { background-position: -64px -11px; width: 16px; height: 11px; }
.famfamfam-flag-tv { background-position: -64px -22px; width: 16px; height: 11px; }
.famfamfam-flag-tt { background-position: -64px -33px; width: 16px; height: 11px; }
.famfamfam-flag-tr { background-position: -64px -44px; width: 16px; height: 11px; }
.famfamfam-flag-to { background-position: 0px -55px; width: 16px; height: 11px; }
.famfamfam-flag-tn { background-position: -16px -55px; width: 16px; height: 11px; }
.famfamfam-flag-tm { background-position: -32px -55px; width: 16px; height: 11px; }
.famfamfam-flag-tl { background-position: -48px -55px; width: 16px; height: 11px; }
.famfamfam-flag-tk { background-position: -64px -55px; width: 16px; height: 11px; }
.famfamfam-flag-tj { background-position: 0px -66px; width: 16px; height: 11px; }
.famfamfam-flag-th { background-position: -16px -66px; width: 16px; height: 11px; }
.famfamfam-flag-tg { background-position: -32px -66px; width: 16px; height: 11px; }
.famfamfam-flag-tf { background-position: -48px -66px; width: 16px; height: 11px; }
.famfamfam-flag-td { background-position: -64px -66px; width: 16px; height: 11px; }
.famfamfam-flag-tc { background-position: -80px 0px; width: 16px; height: 11px; }
.famfamfam-flag-sz { background-position: -80px -11px; width: 16px; height: 11px; }
.famfamfam-flag-sy { background-position: -80px -22px; width: 16px; height: 11px; }
.famfamfam-flag-sx { background-position: -80px -33px; width: 16px; height: 11px; }
.famfamfam-flag-sv { background-position: -80px -44px; width: 16px; height: 11px; }
.famfamfam-flag-st { background-position: -80px -55px; width: 16px; height: 11px; }
.famfamfam-flag-ss { background-position: -80px -66px; width: 16px; height: 11px; }
.famfamfam-flag-sr { background-position: 0px -77px; width: 16px; height: 11px; }
.famfamfam-flag-so { background-position: -16px -77px; width: 16px; height: 11px; }
.famfamfam-flag-sn { background-position: -32px -77px; width: 16px; height: 11px; }
.famfamfam-flag-sm { background-position: -48px -77px; width: 16px; height: 11px; }
.famfamfam-flag-sl { background-position: -64px -77px; width: 16px; height: 11px; }
.famfamfam-flag-sk { background-position: -80px -77px; width: 16px; height: 11px; }
.famfamfam-flag-si { background-position: -96px 0px; width: 16px; height: 11px; }
.famfamfam-flag-sh { background-position: -96px -11px; width: 16px; height: 11px; }
.famfamfam-flag-sg { background-position: -96px -22px; width: 16px; height: 11px; }
.famfamfam-flag-se { background-position: -96px -33px; width: 16px; height: 11px; }
.famfamfam-flag-sd { background-position: -96px -44px; width: 16px; height: 11px; }
.famfamfam-flag-scotland { background-position: -96px -55px; width: 16px; height: 11px; }
.famfamfam-flag-sc { background-position: -96px -66px; width: 16px; height: 11px; }
.famfamfam-flag-sb { background-position: -96px -77px; width: 16px; height: 11px; }
.famfamfam-flag-sa { background-position: 0px -88px; width: 16px; height: 11px; }
.famfamfam-flag-rw { background-position: -16px -88px; width: 16px; height: 11px; }
.famfamfam-flag-ru { background-position: -32px -88px; width: 16px; height: 11px; }
.famfamfam-flag-rs { background-position: -48px -88px; width: 16px; height: 11px; }
.famfamfam-flag-ro { background-position: -64px -88px; width: 16px; height: 11px; }
.famfamfam-flag-qa { background-position: -80px -88px; width: 16px; height: 11px; }
.famfamfam-flag-py { background-position: -96px -88px; width: 16px; height: 11px; }
.famfamfam-flag-pw { background-position: 0px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pt { background-position: -16px -99px; width: 16px; height: 11px; }
.famfamfam-flag-ps { background-position: -32px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pr { background-position: -48px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pn { background-position: -64px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pm { background-position: -80px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pl { background-position: -96px -99px; width: 16px; height: 11px; }
.famfamfam-flag-pk { background-position: -112px 0px; width: 16px; height: 11px; }
.famfamfam-flag-ph { background-position: -112px -11px; width: 16px; height: 11px; }
.famfamfam-flag-pg { background-position: -112px -22px; width: 16px; height: 11px; }
.famfamfam-flag-pf { background-position: -112px -33px; width: 16px; height: 11px; }
.famfamfam-flag-pe { background-position: -112px -44px; width: 16px; height: 11px; }
.famfamfam-flag-pa { background-position: -112px -55px; width: 16px; height: 11px; }
.famfamfam-flag-om { background-position: -112px -66px; width: 16px; height: 11px; }
.famfamfam-flag-nz { background-position: -112px -77px; width: 16px; height: 11px; }
.famfamfam-flag-nu { background-position: -112px -88px; width: 16px; height: 11px; }
.famfamfam-flag-nr { background-position: -112px -99px; width: 16px; height: 11px; }
.famfamfam-flag-no { background-position: 0px -110px; width: 16px; height: 11px; }
.famfamfam-flag-bv { background-position: 0px -110px; width: 16px; height: 11px; }
.famfamfam-flag-sj { background-position: 0px -110px; width: 16px; height: 11px; }
.famfamfam-flag-nl { background-position: -16px -110px; width: 16px; height: 11px; }
.famfamfam-flag-ni { background-position: -32px -110px; width: 16px; height: 11px; }
.famfamfam-flag-ng { background-position: -48px -110px; width: 16px; height: 11px; }
.famfamfam-flag-nf { background-position: -64px -110px; width: 16px; height: 11px; }
.famfamfam-flag-ne { background-position: -80px -110px; width: 16px; height: 11px; }
.famfamfam-flag-nc { background-position: -96px -110px; width: 16px; height: 11px; }
.famfamfam-flag-na { background-position: -112px -110px; width: 16px; height: 11px; }
.famfamfam-flag-mz { background-position: -128px 0px; width: 16px; height: 11px; }
.famfamfam-flag-my { background-position: -128px -11px; width: 16px; height: 11px; }
.famfamfam-flag-mx { background-position: -128px -22px; width: 16px; height: 11px; }
.famfamfam-flag-mw { background-position: -128px -33px; width: 16px; height: 11px; }
.famfamfam-flag-mv { background-position: -128px -44px; width: 16px; height: 11px; }
.famfamfam-flag-mu { background-position: -128px -55px; width: 16px; height: 11px; }
.famfamfam-flag-mt { background-position: -128px -66px; width: 16px; height: 11px; }
.famfamfam-flag-ms { background-position: -128px -77px; width: 16px; height: 11px; }
.famfamfam-flag-mr { background-position: -128px -88px; width: 16px; height: 11px; }
.famfamfam-flag-mq { background-position: -128px -99px; width: 16px; height: 11px; }
.famfamfam-flag-mp { background-position: -128px -110px; width: 16px; height: 11px; }
.famfamfam-flag-mo { background-position: 0px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mn { background-position: -16px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mm { background-position: -32px -121px; width: 16px; height: 11px; }
.famfamfam-flag-ml { background-position: -48px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mk { background-position: -64px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mh { background-position: -80px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mg { background-position: -96px -121px; width: 16px; height: 11px; }
.famfamfam-flag-me { background-position: 0px -132px; width: 16px; height: 12px; }
.famfamfam-flag-md { background-position: -112px -121px; width: 16px; height: 11px; }
.famfamfam-flag-mc { background-position: -128px -121px; width: 16px; height: 11px; }
.famfamfam-flag-ma { background-position: -16px -132px; width: 16px; height: 11px; }
.famfamfam-flag-ly { background-position: -32px -132px; width: 16px; height: 11px; }
.famfamfam-flag-lv { background-position: -48px -132px; width: 16px; height: 11px; }
.famfamfam-flag-lu { background-position: -64px -132px; width: 16px; height: 11px; }
.famfamfam-flag-lt { background-position: -80px -132px; width: 16px; height: 11px; }
.famfamfam-flag-ls { background-position: -96px -132px; width: 16px; height: 11px; }
.famfamfam-flag-lr { background-position: -112px -132px; width: 16px; height: 11px; }
.famfamfam-flag-lk { background-position: -128px -132px; width: 16px; height: 11px; }
.famfamfam-flag-li { background-position: -144px 0px; width: 16px; height: 11px; }
.famfamfam-flag-lc { background-position: -144px -11px; width: 16px; height: 11px; }
.famfamfam-flag-lb { background-position: -144px -22px; width: 16px; height: 11px; }
.famfamfam-flag-la { background-position: -144px -33px; width: 16px; height: 11px; }
.famfamfam-flag-kz { background-position: -144px -44px; width: 16px; height: 11px; }
.famfamfam-flag-ky { background-position: -144px -55px; width: 16px; height: 11px; }
.famfamfam-flag-kw { background-position: -144px -66px; width: 16px; height: 11px; }
.famfamfam-flag-kr { background-position: -144px -77px; width: 16px; height: 11px; }
.famfamfam-flag-kp { background-position: -144px -88px; width: 16px; height: 11px; }
.famfamfam-flag-kn { background-position: -144px -99px; width: 16px; height: 11px; }
.famfamfam-flag-km { background-position: -144px -110px; width: 16px; height: 11px; }
.famfamfam-flag-ki { background-position: -144px -121px; width: 16px; height: 11px; }
.famfamfam-flag-kh { background-position: -144px -132px; width: 16px; height: 11px; }
.famfamfam-flag-kg { background-position: 0px -144px; width: 16px; height: 11px; }
.famfamfam-flag-ke { background-position: -16px -144px; width: 16px; height: 11px; }
.famfamfam-flag-jp { background-position: -32px -144px; width: 16px; height: 11px; }
.famfamfam-flag-jo { background-position: -48px -144px; width: 16px; height: 11px; }
.famfamfam-flag-jm { background-position: -64px -144px; width: 16px; height: 11px; }
.famfamfam-flag-je { background-position: -80px -144px; width: 16px; height: 11px; }
.famfamfam-flag-it { background-position: -96px -144px; width: 16px; height: 11px; }
.famfamfam-flag-is { background-position: -112px -144px; width: 16px; height: 11px; }
.famfamfam-flag-ir { background-position: -128px -144px; width: 16px; height: 11px; }
.famfamfam-flag-iq { background-position: -144px -144px; width: 16px; height: 11px; }
.famfamfam-flag-io { background-position: -160px 0px; width: 16px; height: 11px; }
.famfamfam-flag-in { background-position: -160px -11px; width: 16px; height: 11px; }
.famfamfam-flag-im { background-position: -160px -22px; width: 16px; height: 9px; }
.famfamfam-flag-il { background-position: -160px -31px; width: 16px; height: 11px; }
.famfamfam-flag-ie { background-position: -160px -42px; width: 16px; height: 11px; }
.famfamfam-flag-id { background-position: -160px -53px; width: 16px; height: 11px; }
.famfamfam-flag-hu { background-position: -160px -64px; width: 16px; height: 11px; }
.famfamfam-flag-ht { background-position: -160px -75px; width: 16px; height: 11px; }
.famfamfam-flag-hr { background-position: -160px -86px; width: 16px; height: 11px; }
.famfamfam-flag-hn { background-position: -160px -97px; width: 16px; height: 11px; }
.famfamfam-flag-hk { background-position: -160px -108px; width: 16px; height: 11px; }
.famfamfam-flag-gy { background-position: -160px -119px; width: 16px; height: 11px; }
.famfamfam-flag-gw { background-position: -160px -130px; width: 16px; height: 11px; }
.famfamfam-flag-gu { background-position: -160px -141px; width: 16px; height: 11px; }
.famfamfam-flag-gt { background-position: 0px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gs { background-position: -16px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gr { background-position: -32px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gq { background-position: -48px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gp { background-position: -64px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gn { background-position: -80px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gm { background-position: -96px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gl { background-position: -112px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gi { background-position: -128px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gh { background-position: -144px -155px; width: 16px; height: 11px; }
.famfamfam-flag-gg { background-position: -160px -155px; width: 16px; height: 11px; }
.famfamfam-flag-ge { background-position: -176px 0px; width: 16px; height: 11px; }
.famfamfam-flag-gd { background-position: -176px -11px; width: 16px; height: 11px; }
.famfamfam-flag-gb { background-position: -176px -22px; width: 16px; height: 11px; }
.famfamfam-flag-ga { background-position: -176px -33px; width: 16px; height: 11px; }
.famfamfam-flag-fr { background-position: -176px -44px; width: 16px; height: 11px; }
.famfamfam-flag-gf { background-position: -176px -44px; width: 16px; height: 11px; }
.famfamfam-flag-re { background-position: -176px -44px; width: 16px; height: 11px; }
.famfamfam-flag-mf { background-position: -176px -44px; width: 16px; height: 11px; }
.famfamfam-flag-bl { background-position: -176px -44px; width: 16px; height: 11px; }
.famfamfam-flag-fo { background-position: -176px -55px; width: 16px; height: 11px; }
.famfamfam-flag-fm { background-position: -176px -66px; width: 16px; height: 11px; }
.famfamfam-flag-fk { background-position: -176px -77px; width: 16px; height: 11px; }
.famfamfam-flag-fj { background-position: -176px -88px; width: 16px; height: 11px; }
.famfamfam-flag-fi { background-position: -176px -99px; width: 16px; height: 11px; }
.famfamfam-flag-fam { background-position: -176px -110px; width: 16px; height: 11px; }
.famfamfam-flag-eu { background-position: -176px -121px; width: 16px; height: 11px; }
.famfamfam-flag-et { background-position: -176px -132px; width: 16px; height: 11px; }
.famfamfam-flag-es { background-position: -176px -143px; width: 16px; height: 11px; }
.famfamfam-flag-er { background-position: -176px -154px; width: 16px; height: 11px; }
.famfamfam-flag-england { background-position: 0px -166px; width: 16px; height: 11px; }
.famfamfam-flag-eh { background-position: -16px -166px; width: 16px; height: 11px; }
.famfamfam-flag-eg { background-position: -32px -166px; width: 16px; height: 11px; }
.famfamfam-flag-ee { background-position: -48px -166px; width: 16px; height: 11px; }
.famfamfam-flag-ec { background-position: -64px -166px; width: 16px; height: 11px; }
.famfamfam-flag-dz { background-position: -80px -166px; width: 16px; height: 11px; }
.famfamfam-flag-do { background-position: -96px -166px; width: 16px; height: 11px; }
.famfamfam-flag-dm { background-position: -112px -166px; width: 16px; height: 11px; }
.famfamfam-flag-dk { background-position: -128px -166px; width: 16px; height: 11px; }
.famfamfam-flag-dj { background-position: -144px -166px; width: 16px; height: 11px; }
.famfamfam-flag-de { background-position: -160px -166px; width: 16px; height: 11px; }
.famfamfam-flag-cz { background-position: -176px -166px; width: 16px; height: 11px; }
.famfamfam-flag-cy { background-position: 0px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cx { background-position: -16px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cw { background-position: -32px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cv { background-position: -48px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cu { background-position: -64px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cs { background-position: -80px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cr { background-position: -96px -177px; width: 16px; height: 11px; }
.famfamfam-flag-co { background-position: -112px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cn { background-position: -128px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cm { background-position: -144px -177px; width: 16px; height: 11px; }
.famfamfam-flag-cl { background-position: -160px -177px; width: 16px; height: 11px; }
.famfamfam-flag-ck { background-position: -176px -177px; width: 16px; height: 11px; }
.famfamfam-flag-ci { background-position: -192px 0px; width: 16px; height: 11px; }
.famfamfam-flag-cg { background-position: -192px -11px; width: 16px; height: 11px; }
.famfamfam-flag-cf { background-position: -192px -22px; width: 16px; height: 11px; }
.famfamfam-flag-cd { background-position: -192px -33px; width: 16px; height: 11px; }
.famfamfam-flag-cc { background-position: -192px -44px; width: 16px; height: 11px; }
.famfamfam-flag-catalonia { background-position: -192px -55px; width: 16px; height: 11px; }
.famfamfam-flag-ca { background-position: -192px -66px; width: 16px; height: 11px; }
.famfamfam-flag-bz { background-position: -192px -77px; width: 16px; height: 11px; }
.famfamfam-flag-by { background-position: -192px -88px; width: 16px; height: 11px; }
.famfamfam-flag-bw { background-position: -192px -99px; width: 16px; height: 11px; }
.famfamfam-flag-bt { background-position: -192px -110px; width: 16px; height: 11px; }
.famfamfam-flag-bs { background-position: -192px -121px; width: 16px; height: 11px; }
.famfamfam-flag-br { background-position: -192px -132px; width: 16px; height: 11px; }
.famfamfam-flag-bq { background-position: -192px -143px; width: 16px; height: 11px; }
.famfamfam-flag-bo { background-position: -192px -154px; width: 16px; height: 11px; }
.famfamfam-flag-bn { background-position: -192px -165px; width: 16px; height: 11px; }
.famfamfam-flag-bm { background-position: -192px -176px; width: 16px; height: 11px; }
.famfamfam-flag-bj { background-position: 0px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bi { background-position: -16px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bh { background-position: -32px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bg { background-position: -48px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bf { background-position: -64px -188px; width: 16px; height: 11px; }
.famfamfam-flag-be { background-position: -80px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bd { background-position: -96px -188px; width: 16px; height: 11px; }
.famfamfam-flag-bb { background-position: -112px -188px; width: 16px; height: 11px; }
.famfamfam-flag-ba { background-position: -128px -188px; width: 16px; height: 11px; }
.famfamfam-flag-az { background-position: -144px -188px; width: 16px; height: 11px; }
.famfamfam-flag-ax { background-position: -160px -188px; width: 16px; height: 11px; }
.famfamfam-flag-aw { background-position: -176px -188px; width: 16px; height: 11px; }
.famfamfam-flag-au { background-position: -192px -188px; width: 16px; height: 11px; }
.famfamfam-flag-hm { background-position: -192px -188px; width: 16px; height: 11px; }
.famfamfam-flag-at { background-position: -208px 0px; width: 16px; height: 11px; }
.famfamfam-flag-as { background-position: -208px -11px; width: 16px; height: 11px; }
.famfamfam-flag-ar { background-position: -208px -22px; width: 16px; height: 11px; }
.famfamfam-flag-ao { background-position: -208px -33px; width: 16px; height: 11px; }
.famfamfam-flag-an { background-position: -208px -44px; width: 16px; height: 11px; }
.famfamfam-flag-am { background-position: -208px -55px; width: 16px; height: 11px; }
.famfamfam-flag-al { background-position: -208px -66px; width: 16px; height: 11px; }
.famfamfam-flag-ai { background-position: -208px -77px; width: 16px; height: 11px; }
.famfamfam-flag-ag { background-position: -208px -88px; width: 16px; height: 11px; }
.famfamfam-flag-af { background-position: -208px -99px; width: 16px; height: 11px; }
.famfamfam-flag-ae { background-position: -208px -110px; width: 16px; height: 11px; }
.famfamfam-flag-ad { background-position: -208px -121px; width: 16px; height: 11px; }
.famfamfam-flag-np { background-position: -208px -132px; width: 9px; height: 11px; }
.famfamfam-flag-ch { background-position: -208px -143px; width: 11px; height: 11px; }

/******************************
 3RD PARTY PLUGIN CUSTOMIZATION 
******************************/
/*--------------------------------------------------
    [TRANSITION]
----------------------------------------------------*/
/* Cubic Bezier Transition */
/*--------------------------------------------------
    [RGBA Opacity]
----------------------------------------------------*/
/***
Bootstrap Colorpicker
***/
.input-group.color .input-group-btn i {
  position: absolute;
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  right: 6px;
}

.colorpicker.dropdown-menu {
  padding: 5px;
}

/* change z-index when opened in modal */
.modal-open .colorpicker {
  z-index: 10055 !important;
}

/***
Bootstrap Datepaginator
***/
.datepaginator a {
  font-family: 'Open Sans';
  font-size: 13px;
  font-weight: 300;
}

.datepicker .today {
  background-image: none !important;
  filter: none !important;
}

#dp-calendar {
  right: 4px !important;
}

.datepaginator .fa-angle-right:before {
  content: "\f105";
}

.datepaginator .fa-angle-left:before {
  content: "\f104";
}

/***
Bootstrap Datepicker
***/
.datepicker.dropdown-menu {
  padding: 5px;
}

.datepicker .selected {
  background-color: #909090 !important;
  background-image: none !important;
  filter: none !important;
}

.datepicker .active {
  background-color: #4b8df8 !important;
  background-image: none !important;
  filter: none !important;
}

.datepicker .active:hover {
  background-color: #2678FC !important;
  background-image: none !important;
  filter: none !important;
}

.datepicker .input-daterange input {
  text-align: left;
}

/* change z-index when opened in modal */
.modal-open .datepicker {
  z-index: 10055 !important;
}

.datepicker table td {
  color: #000;
  font-weight: 300  !important;
  font-family: 'Open Sans' !important;
}

.datepicker table th {
  color: #333;
  font-family: 'Open Sans' !important;
  font-weight: 400  !important;
}

.datepicker.dropdown-menu {
  box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
  border: 1px solid #efefef;
}

/***
Bootstrap Daterangepicker
***/
.modal-open .daterangepicker {
  z-index: 10055 !important;
}

.daterangepicker {
  margin-top: 4px;
}

.daterangepicker td {
  text-shadow: none;
}

.daterangepicker td.active {
  background-color: #4b8df8;
  background-image: none;
  filter: none;
}

.daterangepicker th {
  font-weight: 400;
  font-size: 14px;
}

.daterangepicker .ranges input[type="text"] {
  width: 70px !important;
  font-size: 11px;
  vertical-align: middle;
}

.daterangepicker .ranges label {
  font-weight: 300;
  display: block;
}

.daterangepicker .ranges {
  width: 170px;
}
.daterangepicker .ranges ul > li.active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.daterangepicker .ranges .btn {
  margin-top: 10px;
}

.daterangepicker.dropdown-menu {
  padding: 5px;
}

.daterangepicker .ranges li {
  color: #333;
}

.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
  background: #4b8df8 !important;
  border: 1px solid #4b8df8 !important;
  color: #fff;
}

.daterangepicker .range_inputs input {
  margin-bottom: 0 !important;
}

.daterangepicker .fa-angle-right:before {
  content: "\f105";
}

.daterangepicker .fa-angle-left:before {
  content: "\f104";
}

/***
Bootstrap  Datetimepicker
***/
.datetimepicker table td {
  color: #000;
  font-weight: 300  !important;
  font-family: 'Open Sans' !important;
}

.datetimepicker table th {
  font-family: 'Open Sans' !important;
  font-weight: 400  !important;
}

.datetimepicker.dropdown-menu {
  padding: 5px;
}

.datetimepicker .active {
  background-color: #4b8df8 !important;
  background-image: none !important;
  filter: none !important;
}

.datetimepicker .active:hover {
  background-color: #2678FC !important;
  background-image: none !important;
  filter: none !important;
}

.datetimepicker .fa-angle-left:before {
  content: "\f104";
}

.datetimepicker .fa-angle-right:before {
  content: "\f105";
}

/* change z-index when opened in modal */
.modal-open .datetimepicker {
  z-index: 10055;
}

/***
Bootstrap Editable
***/
.editable-input table,
.editable-input table th,
.editable-input table td,
.editable-input table tr {
  border: 0 !important;
}

.editable-input .combodate select {
  margin-bottom: 5px;
}

/***
Jansy File Input plugin css changes
***/
.fileinput {
  margin-bottom: 0;
}
.fileinput .close {
  float: none;
}
.fileinput .input-group {
  white-space: nowrap;
  overflow: hidden;
}

/***
Bootstrap Markdown
***/
.md-input {
  padding: 5px !important;
  border-bottom: 0 !important;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.md-editor {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.md-editor .btn-toolbar {
  margin-left: 0px;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.md-editor .btn-toolbar .btn-group .btn-sm.btn {
  padding-bottom: 3px;
}
.md-editor .btn-toolbar .btn-group .btn-primary {
  padding-top: 5px;
  padding-bottom: 7px;
}

.md-editor.active {
  border: 1px solid #999999;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

/***
Error state for WYSIWYG Editors
***/
.has-error .md-editor {
  border: 1px solid #ebccd1 !important;
}

.has-success .md-editor {
  border: 1px solid #d6e9c6 !important;
}

.has-warning .md-editor {
  border: 1px solid #faebcc !important;
}

/***
Bootstrap Modal
***/
/* fix: content shifting to the right on modal open */
.modal-open.page-overflow .page-container,
.modal-open.page-overflow .page-container .navbar-fixed-top,
.modal-open.page-overflow .page-container .navbar-fixed-bottom,
.modal-open.page-overflow .modal-scrollable {
  overflow-y: auto !important;
}

.modal-scrollable {
  overflow: hidden !important;
}

/* BS 3.3.1 fix */
.modal-backdrop {
  position: fixed;
  bottom: 0;
}

.modal-scrollable {
  overflow: hidden !important;
  z-index: 10051;
  overflow-y: scroll !important;
}

/***
Bootstrap Select
***/
.bootstrap-select .btn {
  border-color: #e5e5e5;
}

.has-error .bootstrap-select .btn {
  border-color: #ebccd1;
}

.has-success .bootstrap-select .btn {
  border-color: #d6e9c6;
}

.has-warning .bootstrap-select .btn {
  border-color: #faebcc;
}

.bootstrap-select.open .btn {
  border-color: #999;
}

.bootstrap-select.open.dropup .btn {
  border-color: #999;
}

.bootstrap-select .btn:focus {
  outline: none !important;
  outline-offset: 0;
}

.bootstrap-select.btn-group .dropdown-menu {
  margin-top: 1px;
}

.bootstrap-select.btn-group .dropdown-menu > li > dt > .text {
  font-weight: 600;
  font-family: 'Open Sans';
  font-size: 14px;
}

.bootstrap-select.btn-group .dropdown-menu .text-muted {
  color: #999 !important;
}

.bootstrap-select .caret {
  border: 0;
  width: auto;
  height: auto;
  margin-top: -10px !important;
}

.bootstrap-select .caret:before {
  content: "\f107";
  display: inline-block;
  border: 0;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.bootstrap-select .selected i {
  color: #aaa;
}

.bootstrap-select .dropdown-menu {
  z-index: 9999 !important;
}

/***
Bootstrap Switch 
***/
.bootstrap-switch {
  border-color: #e5e5e5;
}
.bootstrap-switch.bootstrap-switch-focused {
  box-shadow: none;
  border-color: #e5e5e5;
}

/***
Color variants
***/
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #428bca;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #89C4F4;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #45B6AF;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  color: #fff;
  background: #dfba49;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #F3565D;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #444;
  background: #ececec;
}

/* Bootstrap switch on portlet headers */
.portlet > .portlet-title > .actions > .bootstrap-switch {
  border-color: transparent;
  margin-top: 0px;
}

/***
Bootstrap Time Picker
***/
.bootstrap-timepicker-widget table td a {
  padding: 4px 0;
}

.bootstrap-timepicker-widget input,
.bootstrap-timepicker-widget input:focus {
  outline: none !important;
  border: 0;
}

.modal-open .bootstrap-timepicker-widget {
  z-index: 10055 !important;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:before,
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  top: auto;
}

/***
Toastr Notifications
***/
.toast {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast .toast-close-button {
  display: inline-block;
  margin-top: 0px;
  margin-right: 0px;
  text-indent: -100000px;
  width: 11px;
  height: 16px;
  background-repeat: no-repeat !important;
  background-image: url("../../../../Scripts/layout/global/img/portlet-remove-icon-white.png") !important;
}

.toast-top-center {
  top: 12px;
  margin: 0 auto;
  left: 50%;
  margin-left: -150px;
}
.toast-top-center .toast {
  margin: 0 !important;
}

.toast-bottom-center {
  bottom: 12px;
  margin: 0 auto;
  left: 50%;
  margin-left: -150px;
}
.toast-bottom-center .toast {
  margin: 0 !important;
}

/***
Bootstrap Wizard
***/
.form-wizard .progress {
  margin-bottom: 30px;
}
.form-wizard .steps {
  padding: 10px 0;
  margin-bottom: 15px;
  background-color: #fff;
  background-image: none;
  filter: none;
  border: 0px;
  box-shadow: none;
}
.form-wizard .steps > li > a.step {
  background-color: #fff;
  background-image: none;
  filter: none;
  border: 0px;
  box-shadow: none;
}
.form-wizard .steps > li > a.step:hover {
  background: none;
}
.form-wizard .steps > li > a.step > .number {
  background-color: #eee;
  display: inline-block;
  text-align: center !important;
  font-size: 16px;
  font-weight: 300;
  padding: 11px 15px 13px 15px;
  margin-right: 10px;
  height: 45px;
  width: 45px;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
}
.form-wizard .steps > li > a.step > .desc {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
}
.form-wizard .steps > li > a.step > .desc > i {
  display: none;
}
.form-wizard .steps > li.active > a.step .number {
  background-color: #45B6AF;
  color: #fff;
}
.form-wizard .steps > li.active > a.step .desc {
  color: #333;
}
.form-wizard .steps > li.done > a.step .number {
  background-color: #dfba49;
  color: #fff;
}
.form-wizard .steps > li.done > a.step .desc {
  color: #333;
}
.form-wizard .steps > li.done > a.step .desc i {
  font-size: 12px;
  font-weight: normal;
  color: #999;
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 1200px) {
  /* 768px & 1200px */
  .form-wizard .step .desc {
    margin-top: 10px;
    display: block;
  }
}
@media (max-width: 768px) {
  /* 768px */
  .form-wizard .steps > li > a {
    text-align: left;
  }
}
/*!
 * Tab drop for Bootstrap
 */
.tabbable-tabdrop .nav-tabs,
.tabbable-tabdrop .nav-pills {
  position: relative;
}
.tabbable-tabdrop .nav-tabs .caret,
.tabbable-tabdrop .nav-pills .caret {
  display: none;
}
.tabbable-tabdrop .nav-tabs .tabdrop .dropdown-toggle i,
.tabbable-tabdrop .nav-pills .tabdrop .dropdown-toggle i {
  font-size: 14px;
}
.tabbable-tabdrop .dropdown-menu:after {
  right: 10px;
  left: auto;
}
.tabbable-tabdrop .dropdown-menu:before {
  right: 9px;
  left: auto;
}

/***
wysihtml5
***/
.wysihtml5-sandbox {
  width: 100% !important;
}

.wysihtml5-toolbar li {
  margin: 0px;
  height: 29px;
}

.wysihtml5-toolbar li .dropdown-menu {
  margin-top: 5px;
}

/***
Error state for WYSIWYG Editors
***/
.has-error .wysihtml5-sandbox {
  border: 1px solid #ebccd1 !important;
}

.has-success .wysihtml5-sandbox {
  border: 1px solid #d6e9c6 !important;
}

.has-warning .wysihtml5-sandbox {
  border: 1px solid #faebcc !important;
}

/***
Error state for WYSIWYG Editors
***/
.note-editor {
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.note-editor .note-toolbar {
  border-bottom: 1px solid #e5e5e5;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.note-editor .note-statusbar {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.note-editor .note-statusbar .note-resizebar {
  border-top: 1px solid #e5e5e5;
}
.note-editor.fullscreen {
  z-index: 11000;
  width: 100% !important;
}
.note-editor .dropdown-menu:before {
  left: 9px;
  right: auto;
}
.note-editor .dropdown-menu:after {
  left: 10px;
  right: auto;
}

.note-link-dialog .checkbox {
  margin-left: 20px;
}

.has-error .note-editor {
  border: 1px solid #ebccd1 !important;
}

.has-success .note-editor {
  border: 1px solid #d6e9c6 !important;
}

.has-warning .note-editor {
  border: 1px solid #faebcc !important;
}

/***
Bootstrap GtreeTable
***/
.gtreetable .dropdown-menu {
  margin-top: 0px;
}
.gtreetable .dropdown-menu:after, .gtreetable .dropdown-menu:before {
  display: none !important;
}
.gtreetable .node-action .form-control {
  position: relative;
  top: 2px;
  display: inline-block;
}
.gtreetable .node-icon-selected,
.gtreetable .node-icon-handle,
.gtreetable .node-icon-ce,
.gtreetable .node-icon-type {
  opacity: 0.6 ;
  filter: alpha(opacity=60) ;
}

/***
Bootbox
***/
.bootbox .bootbox-close-button {
  margin-top: 0px !important;
}

/*--------------------------------------------------
    [CSS Animation Amchart]
----------------------------------------------------*/
.CSSAnimationChart {
  width: 100%;
  height: 500px;
}
.CSSAnimationChart a {
  color: #bbb !important;
  font-size: 12px !important;
}

.amcharts-graph-g2 .amcharts-graph-stroke {
  stroke-dasharray: 3px 3px;
  stroke-linejoin: round;
  stroke-linecap: round;
  -webkit-animation: am-moving-dashes 1s linear infinite;
  animation: am-moving-dashes 1s linear infinite;
}

@-webkit-keyframes am-moving-dashes {
  100% {
    stroke-dashoffset: -31px;
  }
}
@keyframes am-moving-dashes {
  100% {
    stroke-dashoffset: -31px;
  }
}
.lastBullet {
  -webkit-animation: am-pulsating 1s ease-out infinite;
  animation: am-pulsating 1s ease-out infinite;
}

@-webkit-keyframes am-pulsating {
  0% {
    stroke-opacity: 1;
    stroke-width: 0px;
  }
  100% {
    stroke-opacity: 0;
    stroke-width: 50px;
  }
}
@keyframes am-pulsating {
  0% {
    stroke-opacity: 1;
    stroke-width: 0px;
  }
  100% {
    stroke-opacity: 0;
    stroke-width: 50px;
  }
}
.amcharts-graph-column-front {
  -webkit-transition: all .3s .3s ease-out;
  transition: all .3s .3s ease-out;
}

.amcharts-graph-column-front:hover {
  fill: #496375;
  stroke: #496375;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.amcharts-graph-g3 {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 500%;
  stroke-dasharray: 0 \0;
  /* fixes IE prob */
  stroke-dashoffset: 0 \0;
  /* fixes IE prob */
  -webkit-animation: am-draw 40s;
  animation: am-draw 40s;
}

@-webkit-keyframes am-draw {
  0% {
    stroke-dashoffset: 500%;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
@keyframes am-draw {
  0% {
    stroke-dashoffset: 500%;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
/*--------------------------------------------------
    [Mao Amchart]
----------------------------------------------------*/
.mapChart {
  width: 100%;
  height: 500px;
}
.mapChart a {
  color: #bbb !important;
  font-size: 12px !important;
}

/*--------------------------------------------------
    [Column Line]
----------------------------------------------------*/
.columnLine {
  width: 100%;
  height: 350px;
  font-size: 11px;
}

.amcharts-graph-graph2 .amcharts-graph-stroke {
  stroke-dasharray: 4px 5px;
  stroke-linejoin: round;
  stroke-linecap: round;
  -webkit-animation: am-moving-dashes 1s linear infinite;
  animation: am-moving-dashes 1s linear infinite;
}

@-webkit-keyframes am-moving-dashes {
  100% {
    stroke-dashoffset: -28px;
  }
}
@keyframes am-moving-dashes {
  100% {
    stroke-dashoffset: -28px;
  }
}
/*--------------------------------------------------
    [Animated Pie Chart]
----------------------------------------------------*/
.animated-pie-chart {
  width: 100%;
  height: 350px;
  font-size: 11px;
}

/***
CKEditor css changes
***/
.cke {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.cke .cke-top {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.cke .cke-bottom {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.cke_bottom,
.cke_inner,
.cke_top,
.cke_reset,
.cke_dialog_title,
.cke_dialog_footer,
.cke_dialog {
  background-image: none !important;
  filter: none;
  border-top: 0;
  border-bottom: 0;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none;
}

.cke_dialog_ui_button,
.cke_dialog_tab {
  background-image: none !important;
  filter: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.cke_dialog_ui_button:hover,
.cke_dialog_tab:hover {
  text-decoration: none;
  text-shadow: none;
}

.cke_dialog_ui_input_text {
  background-image: none !important;
  filter: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.cke_combo_button,
.cke_button,
.cke_toolbar,
.cke_toolgroup {
  background-image: none !important;
  filter: none !important;
  border: 0;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.cke_button,
.cke_combo_button,
.cke_panel_grouptitle,
.cke_hc.cke_panel_listItem a {
  background-image: none !important;
  filter: none;
  text-shadow: none;
}

.cke_button:hover,
.cke_combo_button:hover {
  background-color: #ddd;
}

.cke_toolbar_break {
  background-image: none !important;
  filter: none !important;
  border: 0;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
}

/***
Error state for WYSIWYG Editors
***/
.has-error .cke {
  border: 1px solid #ebccd1 !important;
}

.has-success .cke {
  border: 1px solid #d6e9c6 !important;
}

.has-warning .cke {
  border: 1px solid #faebcc !important;
}

/***
Clockface
***/
.modal-open .clockface {
  z-index: 10055 !important;
}

.clockface .cell .inner.active,
.clockface .cell .outer.active {
  background-color: #4b8df8 !important;
  background-image: none;
  filter: none;
}

/***
Datatables Plugin(in v1.3)
***/
.dataTable {
  width: 100%;
  clear: both;
  margin-top: 5px;
}

.dataTables_filter .form-control {
  margin-left: 4px;
}
.dataTables_filter label {
  line-height: 32px;
}

.dataTable .row-details {
  margin-top: 3px;
  display: inline-block;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.dataTable .row-details.row-details-close {
  background: url("../../../../Scripts/layout/global/img/datatable-row-openclose.png") no-repeat 0 0;
}

.dataTable .row-details.row-details-open {
  background: url("../../../../Scripts/layout/global/img/datatable-row-openclose.png") no-repeat 0 -23px;
}

.dataTable .details {
  background-color: #eee;
}

.dataTable .details td,
.dataTable .details th {
  padding: 4px;
  background: none;
  border: 0;
}

.dataTable .details tr:hover td,
.dataTable .details tr:hover th {
  background: none;
}

.dataTable .details tr:nth-child(odd) td,
.dataTable .details tr:nth-child(odd) th {
  background-color: #eee;
}

.dataTable .details tr:nth-child(even) td,
.dataTable .details tr:nth-child(even) th {
  background-color: #eee;
}

.dataTable > thead > tr > th.sorting,
.dataTable > thead > tr > th.sorting_asc,
.dataTable > thead > tr > th.sorting_desc {
  padding-right: 18px;
}

.dataTable .table-checkbox {
  width: 8px !important;
}

@media (max-width: 768px) {
  .dataTables_wrapper .dataTables_length .form-control,
  .dataTables_wrapper .dataTables_filter .form-control {
    display: inline-block;
  }

  .dataTables_wrapper .dataTables_info {
    top: 17px;
  }

  .dataTables_wrapper .dataTables_paginate {
    margin-top: -15px;
  }
}
@media (max-width: 480px) {
  .dataTables_wrapper .dataTables_filter .form-control {
    width: 175px !important;
  }

  .dataTables_wrapper .dataTables_paginate {
    float: left;
    margin-top: 20px;
  }
}
.dataTables_processing {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 125px;
  margin-left: 0;
  padding: 7px;
  text-align: center;
  color: #333;
  font-size: 13px;
  border: 1px solid #ddd;
  background-color: #eee;
  vertical-align: middle;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.dataTables_processing span {
  line-height: 15px;
  vertical-align: middle;
}

.dataTables_empty {
  text-align: center;
}

/***
TableTools
***/
.tabletools-btn-group {
  margin: 0 0 10px 0;
}
.tabletools-btn-group > .btn {
  margin-right: 5px;
}
.tabletools-btn-group > .btn:last-child {
  margin-right: 0;
}

.tabletools-dropdown-on-portlet {
  margin-top: -45px;
  float: right;
}
.tabletools-dropdown-on-portlet > .btn {
  margin-right: 5px;
}
.tabletools-dropdown-on-portlet > .btn:last-child {
  margin-right: 0;
}

.DTTT_Print {
  background-color: #fff;
}
.DTTT_Print .DTTT_PrintMessage {
  display: none;
}
@media print {
  .DTTT_Print .DTTT_PrintMessage {
    display: inline-block;
  }
}
.DTTT_Print .DTTT_Print_Info {
  display: block;
  position: fixed;
  top: 35px;
  font-size: 18px;
  width: 700px;
  left: 50%;
  margin-left: -350px;
  text-align: center;
}
.DTTT_Print .page-sidebar,
.DTTT_Print .page-header,
.DTTT_Print .page-footer {
  display: none;
}
.DTTT_Print .page-content-wrapper {
  float: none;
}
.DTTT_Print .row,
.DTTT_Print [class*="col-"] {
  padding: 0;
  margin: 0;
}
.DTTT_Print .page-content {
  margin: 50px auto !important;
  border: 0 !important;
  width: 800px !important;
  padding: 0 !important;
}
.DTTT_Print .page-content .portlet {
  border: 0;
  padding: 0;
}
.DTTT_Print .page-content .portlet .portlet-body {
  padding: 0;
}
.DTTT_Print .page-content .dataTables_wrapper {
  padding: 0;
  margin: 0;
  box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
}
@media print {
  .DTTT_Print .page-content .dataTables_wrapper {
    box-shadow: none;
  }
}

/***
Extended pagination
***/
.paging_bootstrap_extended {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  font-size: 13px;
}

.dataTables_extended_wrapper .seperator {
  padding: 0 2px;
}

.dataTables_extended_wrapper div.dataTables_paginate,
.dataTables_extended_wrapper div.dataTables_length,
.dataTables_extended_wrapper div.dataTables_info {
  display: inline-block;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
}

@media (max-width: 480px) {
  .dataTables_extended_wrapper div.dataTables_paginate,
  .dataTables_extended_wrapper div.dataTables_length,
  .dataTables_extended_wrapper div.dataTables_info {
    display: block;
    margin-bottom: 10px !important;
  }

  .dataTables_extended_wrapper .seperator {
    display: none !important;
  }
}
.dataTables_extended_wrapper div.dataTables_length label {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px;
  float: none !important;
  display: inline-block !important;
}

.table-container .table-actions-wrapper {
  display: none;
}

/***
Scroller Extension
***/
.dataTables_scroll {
  margin-bottom: 10px;
}

.dataTables_scrollHead {
  border-bottom: 2px solid #ddd !important;
}
.dataTables_scrollHead thead th {
  border-bottom: 0 !important;
}

.dataTables_scrollBody {
  border-bottom: 1px solid #ddd !important;
}

.DTTT_Print_Info {
  width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -150px;
  background: #eee;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.DTTT_Print_Info > h6 {
  font-size: 16px;
  font-weight: 400;
}

/***
Dropzone css changes(new in v1.1.1)
***/
.dropzone {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/***
Fancy box fix overlay fix
***/
.fancybox-overlay {
  z-index: 100000;
}

.fancybox-opened {
  z-index: 100001;
}

/***
FuelUX Spinners
***/
.spinner-buttons.btn-group-vertical .btn {
  text-align: center;
  margin: 0;
  height: 17px;
  width: 22px;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 0px;
}
.page-style-rounded .spinner-buttons.btn-group-vertical .btn.spinner-up {
  border-radius: 0;
  border-top-right-radius: 4px !important;
}
.page-style-rounded .spinner-buttons.btn-group-vertical .btn.spinner-down {
  border-radius: 0;
  border-bottom-right-radius: 4px;
}

/***
Fullcalendar
***/
/* External events */
.external-event {
  display: inline-block;
  cursor: move;
  margin-bottom: 5px;
  margin-left: 5px;
}

.fc-scroller {
  overflow-y: auto;
  overflow-x: hidden;
}

.fc-month-view .fc-scroller {
  height: auto !important;
}

.portlet .event-form-title {
  font-size: 14px;
  margin-top: 4px;
  font-weight: 400;
  margin-bottom: 10px;
}
.portlet.calendar .fc-button {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  border: 0;
  height: 35px;
  padding: 6px 8px 7px 8px;
  margin-left: 2px;
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: solid;
  border-left-style: solid;
  border-color: #ddd;
  background: transparent;
  color: #fff;
  top: -45px;
  outline: none !important;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.portlet.calendar .fc-toolbar {
  margin-bottom: 0px;
}
.portlet.calendar .fc-toolbar h2 {
  margin-top: 3px;
  font-size: 17px;
}
.portlet.calendar .fc-header {
  margin-bottom: -21px;
}
.portlet.calendar .fc-button-prev {
  padding-right: 10px;
  padding-left: 8px;
}
.portlet.calendar .fc-button-next {
  padding-right: 8px;
  padding-left: 10px;
}
.portlet.calendar .fc-button.fc-state-active, .portlet.calendar .fc-button.fc-state-hover {
  color: #666;
  background-color: #fff;
}
.portlet.calendar .fc-button.fc-state-disabled {
  color: #ddd;
}
.portlet.calendar .fc-button .fc-icon-left-single-arrow {
  font-family: FontAwesome;
  font-size: 16px;
}
.portlet.calendar .fc-button .fc-icon-left-single-arrow:after {
  content: "";
}
.portlet.calendar .fc-button .fc-icon-left-single-arrow:before {
  content: "\f104";
}
.portlet.calendar .fc-button .fc-icon-right-single-arrow {
  font-family: FontAwesome;
  font-size: 16px;
}
.portlet.calendar .fc-button .fc-icon-right-single-arrow:after {
  content: "";
}
.portlet.calendar .fc-button .fc-icon-right-single-arrow:before {
  content: "\f105";
}
.portlet.calendar .fc-text-arrow {
  font-size: 22px;
  font-family: "Courier New", Courier, monospace;
  vertical-align: baseline;
}
.portlet.calendar .fc-event {
  border: 0px;
  background-color: #69a4e0;
  color: #fff;
}
.portlet.calendar .fc-event .fc-content {
  border: 0px;
}
.portlet.calendar .fc-event .fc-time {
  float: left;
  text-align: left;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
.portlet.calendar .fc-event .fc-title {
  text-align: left;
  float: left;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
.portlet.calendar .fc-header-title h2 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #111;
}
.portlet.calendar .fc-widget-header {
  background-image: none;
  filter: none;
  background-color: #eee;
  text-transform: uppercase;
  font-weight: 300;
}
.portlet.calendar.light .fc-button {
  top: -60px;
  color: #666;
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 35px;
}
.portlet.calendar.light .fc-button .fc-text-arrow {
  margin-top: -6px;
  display: inline-block;
}
.portlet.calendar.light .fc-button.fc-state-active, .portlet.calendar.light .fc-button.fc-state-hover {
  color: #333;
  border-bottom: 2px solid #45B6AF;
}
.portlet.calendar.light .fc-button.fc-state-disabled {
  color: #aaa;
}
.portlet.calendar .mobile .fc-button {
  padding: 0px 6px 20px 6px;
  margin-left: 2px;
  border: 0;
  background-color: #ddd;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #000;
  text-shadow: none;
  text-align: center;
}
.portlet.calendar .mobile .fc-button.fc-state-hover, .portlet.calendar .mobile .fc-button.fc-state-active {
  background-color: #eee;
}
.portlet.calendar .mobile .fc-button.fc-state-disabled {
  color: #bbb;
}
.portlet.calendar .mobile .fc-button-prev {
  margin-right: 5px;
  margin-top: -2px;
}
.portlet.calendar .mobile .fc-button-next {
  margin-right: -0px;
  margin-top: -2px;
}
.portlet.calendar .mobile .fc-header-space {
  margin: 0px;
  padding: 0px;
  width: 0px;
}
.portlet.calendar .mobile .fc-header-left {
  position: absolute;
  z-index: 10;
}
.portlet.calendar .mobile .fc-header-left .fc-button {
  top: -2px;
}
.portlet.calendar .mobile .fc-header-right {
  position: relative;
  right: 0;
}
.portlet.calendar .mobile .fc-header-right .fc-button {
  top: 35px;
}
.portlet.calendar .mobile .fc-content {
  margin-top: 53px;
}

/***
Google Maps
***/
.gmaps {
  height: 300px;
  width: 100%;
  /* important!  bootstrap sets max-width on img to 100% which conflicts with google map canvas*/
}
.gmaps img {
  max-width: none;
}

#gmap_static div {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 100%;
  display: block;
  height: 300px;
}

#gmap_routes_instructions {
  margin-top: 10px;
  margin-bottom: 0px;
}

/***
Gritter notification modify
***/
#gritter-notice-wrapper {
  right: 1px !important;
}

.gritter-close {
  left: auto !important;
  right: 3px !important;
}

.gritter-title {
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
}

/***
Dashboard Charts(new in v1.2.1)
***/
.easy-pie-chart,
.sparkline-chart {
  text-align: center;
}

.sparkline-chart {
  margin-top: 15px;
  position: relative;
}

.easy-pie-chart .number {
  font-size: 14px !important;
  font-weight: 300;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
}
.easy-pie-chart .number canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.sparkline-chart .number {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.sparkline-chart .title,
.easy-pie-chart .title {
  display: block;
  text-align: center;
  color: #333;
  font-weight: 300;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.sparkline-chart .title:hover,
.easy-pie-chart .title:hover {
  color: #666;
  text-decoration: none;
}

.sparkline-chart .title > i,
.easy-pie-chart .title > i {
  margin-top: 5px;
}

/***
jQuery File Upload
***/
.blueimp-gallery .close {
  background-image: url("../../../../Scripts/layout/global/img/portlet-remove-icon-white.png") !important;
  margin-top: -2px;
}

.blueimp-gallery .prev,
.blueimp-gallery .next {
  border-radius: 23px !important;
}

/***
jQuery Multi Select
***/
.ms-container .ms-list {
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ms-container .ms-optgroup-label {
  font-size: 14px;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
  font-size: 13px;
}

.ms-container .ms-list.ms-focus {
  border-color: #999999;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
  color: #333;
  background-color: #eee;
}

.ms-container .form-control {
  margin-bottom: 5px;
}

/***
jQuery Notific8 Plugin
***/
.jquery-notific8-message {
  font-size: 13px;
}

[class*="jquery-notific8"],
[class*="jquery-notific8"]:after,
[class*="jquery-notific8"]:before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.right .jquery-notific8-close-sticky span,
.left .jquery-notific8-close-sticky span {
  font-size: 10px;
}

.jquery-notific8-heading {
  font-weight: 300;
  font-size: 16px;
}

/***
Password Strength(in v1.4)
***/
.password-strength .password-verdict {
  display: inline-block;
  margin-top: 6px;
  margin-left: 5px;
}

.password-strength .progress {
  margin-top: 5px;
  margin-bottom: 0;
}

.password-strength .progress-bar {
  padding: 2px;
}

/***
jQuery Slimscroll
***/
.scroller {
  padding: 0px;
  margin: 0px;
  padding-right: 12px;
  overflow: hidden;
}

.scroller-footer {
  margin-top: 10px;
}
.scroller-footer:before, .scroller-footer:after {
  content: " ";
  display: table;
}
.scroller-footer:after {
  clear: both;
}

.portlet-body .slimScrollBar {
  margin-right: 0px;
}

/***
jQuery Sparkline
***/
.jqstooltip {
  width: auto !important;
  height: auto !important;
}

.easy-pie-chart,
.sparkline-chart {
  text-align: center;
}

.sparkline-chart {
  margin-top: 15px;
  position: relative;
}

.easy-pie-chart .number {
  font-size: 16px;
  font-weight: 300;
  width: 85px;
  margin: 0 auto;
}

.sparkline-chart .number {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.sparkline-chart .title,
.easy-pie-chart .title {
  display: block;
  text-align: center;
  color: #333;
  font-weight: 300;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.sparkline-chart .title:hover,
.easy-pie-chart .title:hover {
  color: #666;
  text-decoration: none;
}

.sparkline-chart .title > i,
.easy-pie-chart .title > i {
  margin-top: 5px;
}

/***
Modify jquery-tags-input plugin css
***/
div.tagsinput {
  min-height: 35px;
  height: auto !important;
  margin: 0;
  padding: 5px 5px 0px 5px;
  overflow: auto;
}

div.tagsinput span.tag {
  background: #aaa;
  color: #fff;
  border: 0;
  padding: 3px 6px;
  margin-top: 0;
  margin-bottom: 5px;
}

div.tagsinput input {
  padding: 3px 6px;
  width: 75px !important;
}

div.tagsinput span.tag a {
  color: #fff;
}

div.tagsinput .not_valid {
  color: #fff;
  padding: 3px 6px;
  background-color: #e02222;
}

/***
jQuery UI Sliders(new in v1.1.1)
***/
.slider {
  border: 0;
  padding: 0;
  display: block;
  margin: 12px 5px;
  min-height: 11px;
}

.ui-slider-vertical {
  width: 11px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -3px;
}

.ui-slider-vertical,
.ui-slider-handle {
  filter: none !important;
  background-image: none !important;
}

/***
JQVMAP Plugin
***/
.jqvmap-zoomin {
  height: 16px;
  width: 16px;
  background-color: #666;
}

.jqvmap-zoomout {
  height: 16px;
  width: 16px;
  background-color: #666;
}

.vmaps {
  position: relative;
  overflow: hidden;
  height: 300px;
}

/***
Jstree
***/
.jstree-default .jstree-clicked {
  border: 0;
  background-color: #e1e1e1;
  box-shadow: none;
}

.jstree-default .jstree-hovered {
  border: 0;
  background-color: #eee;
  box-shadow: none;
}

.jstree-default .jstree-wholerow-clicked,
.jstree-wholerow .jstree-wholerow-clicked {
  background: none;
  border: 0;
  background-color: #e1e1e1;
  box-shadow: none;
}

.jstree-default .jstree-wholerow-hovered,
.jstree-wholerow .jstree-wholerow-hovered {
  border: 0;
  background-color: #eee;
  box-shadow: none;
}

.jstree-icon.icon-lg {
  margin-top: 1px;
}

.jstree-open > .jstree-anchor > .fa-folder:before {
  margin-left: 2px;
  content: "\f07c";
}

.jstree-default.jstree-rtl .jstree-last {
  background: transparent;
  background-repeat: no-repeat;
}

.vakata-context,
.vakata-context ul {
  padding: 0;
  min-width: 125px;
  background-color: #ffffff;
  font-size: 14px;
  font-family: "Segoe UI",Helvetica, Arial, sans-serif;
  box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
  border: 1px solid #efefef;
}

.vakata-context li {
  border: 0;
}
.vakata-context li a {
  padding: 0 10px;
  border: 0;
}
.vakata-context li a i {
  display: none;
}
.vakata-context li a .vakata-contextmenu-sep {
  display: none;
}

.vakata-context .vakata-context-hover > a,
.vakata-context li a:hover {
  background-color: #eee;
  color: #333;
  box-shadow: none;
  margin: 0;
}
.vakata-context .vakata-context-hover > a .span,
.vakata-context .vakata-context-hover > a .ins,
.vakata-context li a:hover .span,
.vakata-context li a:hover .ins {
  border: 0 !important;
}

.vakata-context li a span,
.vakata-context li a ins {
  display: none;
  border: 0 !important;
}

.vakata-context .vakata-context-separator a,
.vakata-context-rtl .vakata-context-separator a {
  margin: 0;
  border: 0;
}

.jstree-rename-input {
  background-color: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  outline: none !important;
  padding: 2px 6px !important;
  margin-right: -4px !important;
}

/***
NoUIRangeSlider
***/
.noUi-control {
  margin: 9px 0;
}

/***
Color variants
***/
.noUi-primary.noUi-connect,
.noUi-primary .noUi-connect {
  background: #428bca;
}

.noUi-info.noUi-connect,
.noUi-info .noUi-connect {
  background: #89C4F4;
}

.noUi-success.noUi-connect,
.noUi-success .noUi-connect {
  background: #45B6AF;
}

.noUi-warning.noUi-connect,
.noUi-warning .noUi-connect {
  background: #dfba49;
}

.noUi-danger.noUi-connect,
.noUi-danger .noUi-connect {
  background: #F3565D;
}

.noUi-default.noUi-connect,
.noUi-default .noUi-connect {
  background: #c6c6c6;
}

/***
Google reCaptcha
***/
.form-recaptcha-img {
  margin-bottom: 10px;
  clear: both;
  border: 1px solid #e5e5e5;
  padding: 5px;
}

iframe[src="about:blank"] {
  display: none;
}

/***
Select2 Plugin
***/
.form-control .select2-choice {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  background-image: none;
  filter: none;
  height: 34px;
  padding: 3px 0 0px 12px;
}

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #e5e5e5;
  background-color: #fff;
  background-image: none;
  filter: none;
}

.select2-drop {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  filter: none;
  border-top: 0;
}

.select2-drop-auto-width {
  border-top: 1px solid #e5e5e5;
}

.select2-drop.select2-drop-above {
  border-top: 1px solid #e5e5e5;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-drop-active {
  border: 1px solid #999;
  border-top: 0;
}

.select2-container .select2-choice .select2-arrow {
  background-image: none;
  background-color: #fff;
  filter: none;
  border-left: 1px solid #e5e5e5;
}

.select2-container.select2-container-active .select2-arrow,
.select2-container.select2-dropdown-open .select2-arrow {
  border-left: 0 !important;
}

.select2-container .select2-choice .select2-arrow b {
  background-position: 0 1px;
}

.select2-search input {
  border: 1px solid #e5e5e5;
  background-color: #fff !important;
  filter: none;
  margin: 0;
  outline: 0;
  border: 1px solid #e5e5e5;
  webkit-appearance: none !important;
  color: #333333;
  outline: 0;
  box-shadow: none;
  height: auto !important;
  min-height: 26px;
  padding: 6px 6px !important;
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: top;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 5px;
}

.form-control.select2-container {
  border: 0;
  height: auto !important;
  padding: 0px;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #999 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.select2-dropdown-open .select2-choice {
  border-bottom: 0 !important;
  background-image: none;
  background-color: #fff;
  filter: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #999 !important;
  border-top: 0 !important;
  background-image: none;
  background-color: #fff;
  filter: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.select2-drop.select2-drop-above.select2-drop-active {
  border: 1px solid #999 !important;
  border-bottom: 0 !important;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}

.select2-results {
  margin: 5px 0;
}

.select2-results .select2-highlighted {
  background: #eee;
  color: #333;
}

.select2-results li em {
  background: #feffde;
  font-style: normal;
}

.select2-results .select2-highlighted em {
  background: transparent;
}

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  padding: 3px 7px 4px;
  background: #f4f4f4;
  display: list-item;
}

.select2-container-multi {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.select2-container-multi .select2-choices {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.select2-container-multi.select2-dropdown-open {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.select2-container-multi.select2-dropdown-open .select2-choices {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.select2-container-multi.select2-dropdown-open.select2-drop-above {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.select2-container-multi.select2-dropdown-open.select2-drop-above .select2-choices {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.select2-container-multi .select2-choices {
  padding-left: 6px;
  min-height: 34px;
  border: 1px solid #e5e5e5;
  background-image: none;
  background-color: #fff;
  filter: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #999 !important;
  background-image: none;
  background-color: #fff;
  filter: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 5px 0 3px 5px;
  border: 1px solid #e5e5e5;
  background-image: none;
  background-color: #fff;
  filter: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/***
Color variants
***/
.has-warning .select2-container .select2-choice,
.has-warning .select2-container .select2-choices {
  border-color: #faebcc;
}

.has-warning .select2-container.select2-dropdown-open .select2-choice,
.has-warning .select2-container.select2-dropdown-open .select2-choices {
  border-color: #faebcc;
}

.has-warning .select2-container.select2-dropdown-open .select2-choice > span {
  color: #faebcc;
}

.has-error .select2-container .select2-choice,
.has-error .select2-container .select2-choices {
  border-color: #ebccd1;
}

.has-error .select2-container.select2-dropdown-open .select2-choice,
.has-error .select2-container.select2-dropdown-open .select2-choices {
  border-color: #ebccd1;
}

.has-error .select2-container.select2-dropdown-open .select2-choice > span {
  color: #ebccd1;
}

.has-success .select2-container .select2-choice,
.has-success .select2-container .select2-choices {
  border-color: #d6e9c6;
}

.has-success .select2-container.select2-dropdown-open .select2-choice,
.has-success .select2-container.select2-dropdown-open .select2-choices {
  border-color: #d6e9c6;
}

.has-success .select2-container.select2-dropdown-open .select2-choice > span {
  color: #d6e9c6;
}

/* Fix z-index when select2 opened in modals*/
.modal-open .select2-drop-mask {
  z-index: 10051;
}

.modal-open .select2-drop {
  z-index: 10052;
}

.modal-open .select2-search {
  z-index: 10053;
}

/***
Bootstrap input sizes
***/
/* Large input size */
.form-control.input-lg .select2-choice {
  height: 46px;
  padding: 10px 16px;
}

.select2-container.input-lg .select2-choice .select2-arrow b {
  background-position: 0 7px;
}

/* Small input size */
.form-control.input-sm .select2-choice {
  height: 30px;
  padding: 1px 10px 5px 10px;
}

.select2-container.input-sm .select2-choice .select2-arrow b {
  background-position: 0 0px;
}

/* Portlet full screen mode */
.modal-open.page-portlet-fullscreen .select2-drop-mask {
  z-index: 10081;
}
.modal-open.page-portlet-fullscreen .select2-drop {
  z-index: 10082;
}
.modal-open.page-portlet-fullscreen .select2-search {
  z-index: 10083;
}

/***
jQuery Uniform
***/
.checker {
  margin-top: -2px !important;
  margin-right: 2px !important;
}

.checker input,
.radio input {
  outline: none !important;
}

div.checker.disabled span,
div.checker.disabled.active span {
  background-position: -152px -260px;
}

div.checker.disabled:hover,
div.radio.disabled:hover {
  cursor: not-allowed;
}

div.radio,
div.checker {
  margin-right: 0;
  margin-left: 3px;
}

/***
Morris Charts
***/
.portlet-body-morris-fit {
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: -15px;
}
.portlet-body-morris-fit > svg {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.morris-hover.morris-default-style .morris-hover-row-label {
  text-align: left;
  font-weight: 400;
  font-size: 15px;
  color: #7D8C9D;
  font-family: "Open Sans", sans-serif;
}
.morris-hover.morris-default-style .morris-hover-point {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

/***
iCheck
***/
.icheck-list > label {
  display: block;
  margin-bottom: 8px;
}
.icheck-list > label:last-child {
  margin-bottom: 0;
}

.form-horizontal .icheck-inline {
  margin-top: 8px;
}
.icheck-inline > label {
  display: inline-block;
  margin-left: 15px;
}
.icheck-inline > label:first-child {
  margin-left: 0;
}

div[class*='icheckbox_'],
div[class*='iradio_'] {
  margin-right: 5px;
  top: -1px !important;
}

.icheck-colors {
  padding: 0;
  margin: 0;
  list-style: none;
}
.icheck-colors > li {
  padding: 0;
  margin: 4px;
  float: left;
  display: inline-block;
  height: 20px;
  width: 20px;
  background: #000000;
  opacity: 0.6 ;
  filter: alpha(opacity=60) ;
}
.icheck-colors > li:first-child {
  margin-left: 0;
}
.icheck-colors > li:hover {
  opacity: 1 ;
  filter: alpha(opacity=100) ;
  cursor: pointer;
}
.icheck-colors > li.active {
  height: 26px;
  margin-top: 0;
  opacity: 0.6 ;
  filter: alpha(opacity=60) ;
}
.icheck-colors > li.red {
  background: #d54e21;
}
.icheck-colors > li.green {
  background: #78a300;
}
.icheck-colors > li.blue {
  background: #0e76a8;
}
.icheck-colors > li.aero {
  background: #9cc2cb;
}
.icheck-colors > li.grey {
  background: #73716e;
}
.icheck-colors > li.orange {
  background: #f70;
}
.icheck-colors > li.yellow {
  background: #fc0;
}
.icheck-colors > li.pink {
  background: #ff66b5;
}
.icheck-colors > li.purple {
  background: #6a5a8c;
}

/***
AngularJS UI-select
***/
.ui-select-match-close {
  margin-top: 5px !important;
  margin-left: 5px !important;
}

.minicolors-swatch {
  border: 0;
}

/*********************************
 METRONIC SQUARE STYLE COMPONENTS 
*********************************/
/***
Rounded corners reset
***/
/* Reset rounded corners for all elements */
div,
input,
select,
textarea,
span,
img,
table,
label,
td,
th,
p,
a,
button,
ul,
code,
pre,
li {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

/* except below bootstrap elements */
.img-circle {
    border-radius: 50% !important;
}

.img-rounded {
    border-radius: 6px !important;
}

/***
General reset
***/
/* Set default body */
body {
    color: #333333;
    font-family: "Open Sans", sans-serif;
    padding: 0px !important;
    margin: 0px !important;
    font-size: 13px;
    direction: ltr;
}

/*
 Internet Explorer 10 doesn't differentiate device width from viewport width, and thus doesn't 
 properly apply the media queries in Bootstrap's CSS. To address this, 
 you can optionally include the following CSS and JavaScript to work around this problem until Microsoft issues a fix.
*/
@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}
/*
 Internet Explorer 10 doesn't differentiate device width from viewport width, 
 and thus doesn't properly apply the media queries in Bootstrap's CSS. To address this, following CSS code applied 
*/
@-ms-viewport {
    width: auto !important;
}
/* Custom scrollbars for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #cecece;
}

::-webkit-scrollbar-thumb {
    background-color: #cecece;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #aaaaaa;
    }

::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

/***
General typography
***/
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 33px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 23px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 13px;
}

h6 {
    font-size: 12px;
}

    /* Headings helper text */
    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small {
        color: #444444;
    }

    /* Block headings */
    h1.block,
    h2.block,
    h3.block,
    h4.block,
    h5.block,
    h6.block {
        padding-top: 10px;
        padding-bottom: 10px;
    }

/* Links */
a {
    text-shadow: none;
    color: #5b9bd1;
}

    a:hover {
        color: #3175af;
    }

    a:focus, a:hover, a:active {
        outline: 0;
    }

/* Horizontal break */
hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 0;
}

/* Unstyled List */
.list-unstyled li > .list-unstyled {
    margin-left: 25px;
}

/* Code */
code {
    border: 1px solid #e1e1e1;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Disabled Navigation Link */
.disabled-link .disable-target {
    opacity: 0.5 !important;
    filter: alpha(opacity=50) !important;
}

    .disabled-link .disable-target:hover {
        cursor: not-allowed !important;
    }

.disabled-link:hover {
    cursor: not-allowed !important;
}

/***
Utilities
***/
/* Links */
a:hover {
    cursor: pointer;
}

/* Primary Link */
.primary-link {
    color: #65A0D0;
    font-weight: 600;
}

    .primary-link:hover {
        color: #5194ca;
    }

/* Rounded Element */
.rounded-2 {
    border-radius: 2px !important;
}

.rounded-3 {
    border-radius: 3px !important;
}

.rounded-4 {
    border-radius: 4px !important;
}

/* Circle Element */
.circle {
    border-radius: 25px !important;
}

.circle-right {
    border-radius: 0 25px 25px 0 !important;
}

.circle-left {
    border-radius: 25px 0 0 25px !important;
}

.circle-bottom {
    border-radius: 0 0 25px 25px !important;
}

.circle-top {
    border-radius: 25px 25px 0 0 !important;
}

/* General utilities */
.display-none,
.display-hide {
    display: none;
}

.hidden {
    display: none !important;
}

.primary-font {
    font-family: "Open Sans", sans-serif !important;
}

.bold {
    font-weight: 700 !important;
}

.thin {
    font-weight: 300 !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.fix-margin {
    margin-left: 0px !important;
}

.border {
    border: 1px solid red;
}

.font-hg {
    font-size: 23px;
}

.font-lg {
    font-size: 18px;
}

.font-md {
    font-size: 14px;
}

.font-sm {
    font-size: 13px;
}

.font-xs {
    font-size: 11px;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.text-align-reverse {
    text-align: right;
}

/* Margin and padding utilities */
.no-space {
    margin: 0px !important;
    padding: 0px !important;
}

.no-margin {
    margin: 0;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

/* IE8 & IE9 mode utilities */
.visible-ie8 {
    display: none;
}

.ie8 .visible-ie8 {
    display: inherit !important;
}

.visible-ie9 {
    display: none;
}

.ie9 .visible-ie9 {
    display: inherit !important;
}

.hidden-ie8 {
    display: inherit;
}

.ie8 .hidden-ie8 {
    display: none !important;
}

.hidden-ie9 {
    display: inherit;
}

.ie9 .hidden-ie9 {
    display: none !important;
}

/***
Responsive Utils
***/
@media (max-width: 1024px) {
    .hidden-1024 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hidden-480 {
        display: none;
    }
}

@media (max-width: 320px) {
    .hidden-320 {
        display: none;
    }
}
/***
Demo Utils
***/
.scrollspy-example {
    position: relative;
    height: 200px;
    margin-top: 10px;
    overflow: auto;
}

.util-btn-margin-bottom-5 .btn {
    margin-bottom: 5px !important;
}

.util-btn-group-margin-bottom-5 .btn-group {
    margin-bottom: 5px !important;
}

/***
Users
***/
.user-info {
    margin-bottom: 10px !important;
}

    .user-info img {
        float: left;
        margin-right: 5px;
    }

    .user-info .details {
        display: inline-block;
    }

    .user-info .label {
        font-weight: 300;
        font-size: 11px;
    }

/***
Top News Blocks(new in v1.2.2) 
***/
.top-news {
    color: #fff;
    margin: 8px 0;
}

    .top-news em {
        font-size: 13px;
        margin-bottom: 8px;
        margin-bottom: 0;
        font-style: normal;
        display: block;
    }

        .top-news em i {
            font-size: 14px;
        }

    .top-news span {
        font-size: 18px;
        margin-bottom: 5px;
        display: block;
        text-align: left;
    }

    .top-news a {
        display: block;
        text-align: left;
        padding: 10px;
        position: relative;
        margin-bottom: 10px;
    }

        .top-news a .top-news-icon {
            right: 8px;
            bottom: 15px;
            opacity: 0.3;
            font-size: 35px;
            position: absolute;
            filter: alpha(opacity=30);
            /*For IE8*/
        }

/***
Block Images(new in v1.2.2)
***/
.blog-images {
    margin-bottom: 0;
}

    .blog-images li {
        padding: 0;
        margin: 0;
        display: inline;
    }

        .blog-images li a:hover {
            text-decoration: none;
        }

        .blog-images li img {
            width: 50px;
            height: 50px;
            opacity: 0.6;
            margin: 0 2px 8px;
        }

            .blog-images li img:hover {
                opacity: 1;
                box-shadow: 0 0 0 4px #72c02c;
                transition: all 0.4s ease-in-out 0s;
                -moz-transition: all 0.4s ease-in-out 0s;
                -webkit-transition: all 0.4s ease-in-out 0s;
            }

/***
Sidebar Tags
***/
.sidebar-tags li {
    padding: 0;
}

    .sidebar-tags li a {
        color: #555;
        font-size: 12px;
        padding: 3px 5px;
        background: #f7f7f7;
        margin: 0 2px 5px 0;
        display: inline-block;
    }

        .sidebar-tags li a:hover, .sidebar-tags li a:hover i {
            background: #EEE;
            text-decoration: none;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .sidebar-tags li a i {
            color: #777;
        }

/***
Custom vertical inline menu
***/
.ver-inline-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .ver-inline-menu li {
        position: relative;
        margin-bottom: 1px;
    }

        .ver-inline-menu li i {
            width: 37px;
            height: 37px;
            display: inline-block;
            color: #b9cbd5;
            font-size: 15px;
            padding: 12px 10px 10px 8px;
            margin: 0 8px 0 0;
            text-align: center;
            background: #e0eaf0 !important;
        }

        .ver-inline-menu li a {
            font-size: 14px;
            font-weight: 300;
            color: #557386;
            display: block;
            background: #f0f6fa;
            border-left: solid 2px #c4d5df;
        }

        .ver-inline-menu li:hover a {
            background: #e0eaf0;
            text-decoration: none;
        }

        .ver-inline-menu li:hover i {
            color: #fff;
            background: #c4d5df !important;
        }

        .ver-inline-menu li.active a {
            border-left: solid 2px #0c91e5;
        }

        .ver-inline-menu li.active i {
            background: #0c91e5 !important;
        }

        .ver-inline-menu li.active a, .ver-inline-menu li.active i {
            color: #fff;
            background: #169ef4;
            text-decoration: none;
        }

        .ver-inline-menu li.active a, .ver-inline-menu li:hover a {
            font-size: 14px;
        }

        .ver-inline-menu li.active:after {
            content: '';
            display: inline-block;
            border-bottom: 6px solid transparent;
            border-top: 6px solid transparent;
            border-left: 6px solid #169ef4;
            position: absolute;
            top: 12px;
            right: -5px;
        }

@media (max-width: 767px) {
    .ver-inline-menu > li.active:after {
        display: none;
    }
}
/***
Separated List
***/
.list-separated {
    margin-top: 10px;
    margin-bottom: 15px;
}

    .list-separated > div {
        border-right1: 1px solid #f5f5f5;
    }

        .list-separated > div:last-child {
            border-right: 0;
        }

@media (max-width: 767px) {
    .list-separated {
        /* 767px */
    }

        .list-separated > div {
            margin-bottom: 20px;
        }
}

/***
Number & Chart Stats
***/
.number-stats {
    margin: 10px 0;
}

    .number-stats .stat-number {
        display: inline-block;
        margin: 0 5px;
    }

        .number-stats .stat-number .title {
            font-size: 13px;
            margin-bottom: 3px;
            color: #B8C3C7;
        }

        .number-stats .stat-number .number {
            font-size: 27px;
            line-height: 27px;
            color: #7D8C9D;
        }

    .number-stats .stat-chart {
        display: inline-block;
        margin: 0 5px;
    }

    .number-stats > div {
        border-right: 1px solid #f5f5f5;
    }

        .number-stats > div:last-child {
            border-right: 0;
        }

    .number-stats .stat-left {
        float: right;
    }

        .number-stats .stat-left .stat-number {
            float: right;
            text-align: right;
        }

        .number-stats .stat-left .stat-chart {
            float: right;
        }

    .number-stats .stat-right {
        float: left !important;
    }

        .number-stats .stat-right .stat-number {
            float: left;
            text-align: left;
        }

        .number-stats .stat-right .stat-chart {
            float: left;
        }

    .number-stats .stat-number {
        float: left;
        text-align: left;
    }

    .number-stats .stat-chart {
        float: left;
    }

/***
General User Record Listing
***/
.general-item-list > .item {
    padding: 10px 0;
    border-bottom: 1px solid #F1F4F7;
}

    .general-item-list > .item:last-child {
        border-bottom: 0;
    }

    .general-item-list > .item > .item-head {
        margin-bottom: 5px;
    }

        .general-item-list > .item > .item-head:before, .general-item-list > .item > .item-head:after {
            content: " ";
            display: table;
        }

        .general-item-list > .item > .item-head:after {
            clear: both;
        }

        .general-item-list > .item > .item-head > .item-details {
            display: inline-block;
            float: left;
        }

            .general-item-list > .item > .item-head > .item-details > .item-pic {
                height: 35px;
                margin-right: 10px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                -ms-border-radius: 100%;
                -o-border-radius: 100%;
                border-radius: 100%;
            }

            .general-item-list > .item > .item-head > .item-details > .item-name {
                display: inline-block;
                margin-right: 10px;
            }

            .general-item-list > .item > .item-head > .item-details > .item-label {
                color: #C0C9CC;
            }

        .general-item-list > .item > .item-head > .item-status {
            color: #C0C9CC;
            top: 10px;
            position: relative;
            display: inline-block;
            float: right;
        }

            .general-item-list > .item > .item-head > .item-status > .badge {
                margin-top: -2px;
            }

    .general-item-list > .item > .item-body {
        color: #96a5aa;
    }

/***
File dropzone
***/
.file-drop-zone {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
}

    .file-drop-zone.file-drop-zone-over {
        border-color: #aaa;
    }

/***
Fontawesome Icons
***/
[class^="fa-"],
[class^="glyphicon-"],
[class^="icon-"],
[class*=" fa-"],
[class*=" glyphicon-"],
[class*=" icon-"] {
    display: inline-block;
    margin-top: 1px;
    font-size: 14px;
    *margin-right: .3em;
    line-height: 14px;
    -webkit-font-smoothing: antialiased;
}

/* Make font awesome icons fixed width */
li [class^="fa-"],
li [class^="glyphicon-"],
li [class^="icon-"],
li [class*=" fa-"],
li [class*=" glyphicon-"],
li [class*=" icon-"] {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}

li [class^="glyphicon-"],
li [class*=" glyphicon-"] {
    top: 2px;
}

li [class^="icon-"],
li [class*=" icon-"] {
    top: 1px;
    position: relative;
}

    li [class^="fa-"].icon-large,
    li [class^="glyphicon-"].icon-large,
    li [class^="icon-"].icon-large,
    li [class*=" fa-"].icon-large,
    li [class*=" glyphicon-"].icon-large,
    li [class*=" icon-"].icon-large {
        /* increased font size for icon-large */
        width: 1.5625em;
    }

/* Icon sizing */
.fa-sm,
.icon-sm {
    font-size: 12px;
}

.fa-lg,
.icon-lg {
    font-size: 16px !important;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

/* Icon coloring */
.icon-state-default {
    color: #c6c6c6;
}

.icon-state-success {
    color: #45B6AF;
}

.icon-state-info {
    color: #89C4F4;
}

.icon-state-warning {
    color: #dfba49;
}

.icon-state-danger {
    color: #F3565D;
}

/***
Font Awesome 4.x Demo
***/
.fa-item {
    font-size: 14px;
    padding: 10px 10px 10px 20px;
}

    .fa-item i {
        font-size: 16px;
        display: inline-block;
        width: 20px;
        color: #333;
    }

    .fa-item:hover {
        cursor: pointer;
        background: #eee;
    }

/***
Simple Line Icons Demo
***/
.simplelineicons-demo .item-box {
    display: inline-block;
    font-size: 16px;
    margin: 0 -0.22em 1em 0;
    padding-left: 1em;
    width: 100%;
}

    .simplelineicons-demo .item-box .item {
        background-color: #fff;
        color: #33383e;
        border-radius: 8px;
        display: inline-block;
        padding: 10px;
        width: 100%;
    }

        .simplelineicons-demo .item-box .item span {
            font-size: 22px;
        }

@media only screen and (min-width: 768px) {
    .simplelineicons-demo .item-box {
        width: 33.333%;
    }
}
/*** 
Glyphicons Demo
***/
.glyphicons-demo ul {
    padding-left: 0;
    padding-bottom: 1px;
    margin-bottom: 20px;
    list-style: none;
    overflow: hidden;
}

.bs-glyphicon-class {
    text-align: center;
}

.bs-glyphicons {
    padding-left: 0;
    padding-bottom: 1px;
    margin-bottom: 20px;
    list-style: none;
    overflow: hidden;
}

.glyphicons-demo ul li {
    float: left;
    width: 25%;
    height: 115px;
    padding: 10px;
    margin: 0 -1px -1px 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #ddd;
}

.glyphicons-demo .glyphicon {
    display: block;
    margin: 5px auto 10px;
    font-size: 24px;
    color: #444;
}

.glyphicons-demo ul li:hover {
    background-color: rgba(86, 61, 124, 0.1);
}

@media (min-width: 768px) {
    .glyphicons-demo ul li {
        width: 12.5%;
    }
}
/***
Customized Bootstrap Alerts
***/
.alert {
    border-width: 1px;
}

    .alert.alert-borderless {
        border: 0;
    }

/***
Bootstrap Alerts
***/
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

/***
Custom Bootstrap Badges
***/
.badge {
    font-size: 11px !important;
    font-weight: 700;
    text-align: center;
    height: 18px;
    padding: 3px 6px 3px 6px;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
    text-shadow: none !important;
    text-align: center;
    vertical-align: middle;
}

    .badge.badge-roundless {
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        border-radius: 0 !important;
    }

    .badge.badge-empty {
        display: inline-block;
        padding: 0;
        min-width: 8px;
        height: 8px;
        width: 8px;
    }

/* Badge variants */
.badge-default {
    background-color: #c6c6c6;
    background-image: none;
}

.badge-primary {
    background-color: #428bca;
    background-image: none;
}

.badge-info {
    background-color: #89C4F4;
    background-image: none;
}

.badge-success {
    background-color: #45B6AF;
    background-image: none;
}

.badge-danger {
    background-color: #F3565D;
    background-image: none;
}

.badge-warning {
    background-color: #dfba49;
    background-image: none;
}

/* Fix badge position for navs */
.nav.nav-pills > li > a > .badge,
.nav.nav-stacked > li > a > .badge {
    margin-top: -2px;
}

/***
Dropdown Menu Badges
***/
.dropdown-menu > li > a > .badge {
    position: absolute;
    margin-top: 1px;
    right: 3px;
    display: inline;
    font-size: 11px;
    font-weight: 300;
    text-shadow: none;
    height: 18px;
    padding: 3px 6px 3px 6px;
    text-align: center;
    vertical-align: middle;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
}

.dropdown-menu.badge-roundless {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

/***
Customized Bootstrap Buttons
***/
/* Default buttons */
.btn {
    border-width: 0;
    padding: 7px 14px;
    font-size: 14px;
    outline: none !important;
    background-image: none !important;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
}

    .btn.dropdown-toggle, .btn-group .btn.dropdown-toggle, .btn:hover, .btn:disabled, .btn[disabled], .btn:focus, .btn:active, .btn.active {
        outline: none !important;
        background-image: none !important;
        filter: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-shadow: none;
    }

.btn-default {
    border-width: 1px;
    padding: 6px 13px;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Bootstrap buttons */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
        color: #333;
        background-color: #ededed;
        border-color: #b3b3b3;
    }

.open .btn-default.dropdown-toggle {
    color: #333;
    background-color: #ededed;
    border-color: #b3b3b3;
}

.btn-default:active, .btn-default.active {
    background-image: none;
    background-color: #e0e0e0;
}

    .btn-default:active:hover, .btn-default.active:hover {
        background-color: #e6e6e6;
    }

.open .btn-default.dropdown-toggle {
    background-image: none;
}

.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc;
}

.btn-default .badge {
    color: #fff;
    background-color: #333;
}

.btn-default > i {
    color: #aaa;
}

    .btn-default > i[class^="icon-"],
    .btn-default > i[class*="icon-"] {
        color: #8c8c8c;
    }

.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
        color: #fff;
        background-color: #3379b5;
        border-color: #2a6496;
    }

.open .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3379b5;
    border-color: #2a6496;
}

.btn-primary:active, .btn-primary.active {
    background-image: none;
    background-color: #2d6ca2;
}

    .btn-primary:active:hover, .btn-primary.active:hover {
        background-color: #3071a9;
    }

.open .btn-primary.dropdown-toggle {
    background-image: none;
}

.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-primary .badge {
    color: #428bca;
    background-color: #fff;
}

.btn-success {
    color: #fff;
    background-color: #45B6AF;
    border-color: #3ea49d;
}

    .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
        color: #fff;
        background-color: #3b9c96;
        border-color: #307f7a;
    }

.open .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #3b9c96;
    border-color: #307f7a;
}

.btn-success:active, .btn-success.active {
    background-image: none;
    background-color: #348a84;
}

    .btn-success:active:hover, .btn-success.active:hover {
        background-color: #37918b;
    }

.open .btn-success.dropdown-toggle {
    background-image: none;
}

.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
    background-color: #45B6AF;
    border-color: #3ea49d;
}

.btn-success .badge {
    color: #45B6AF;
    background-color: #fff;
}

.btn-info {
    color: #fff;
    background-color: #89C4F4;
    border-color: #72b8f2;
}

    .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
        color: #fff;
        background-color: #68b4f1;
        border-color: #43a1ed;
    }

.open .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #68b4f1;
    border-color: #43a1ed;
}

.btn-info:active, .btn-info.active {
    background-image: none;
    background-color: #51a8ef;
}

    .btn-info:active:hover, .btn-info.active:hover {
        background-color: #5aadf0;
    }

.open .btn-info.dropdown-toggle {
    background-image: none;
}

.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
    background-color: #89C4F4;
    border-color: #72b8f2;
}

.btn-info .badge {
    color: #89C4F4;
    background-color: #fff;
}

.btn-warning {
    color: #fff;
    background-color: #dfba49;
    border-color: #dbb233;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
        color: #fff;
        background-color: #daae2b;
        border-color: #bb9521;
    }

.open .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #daae2b;
    border-color: #bb9521;
}

.btn-warning:active, .btn-warning.active {
    background-image: none;
    background-color: #c89f23;
}

    .btn-warning:active:hover, .btn-warning.active:hover {
        background-color: #d0a625;
    }

.open .btn-warning.dropdown-toggle {
    background-image: none;
}

.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
    background-color: #dfba49;
    border-color: #dbb233;
}

.btn-warning .badge {
    color: #dfba49;
    background-color: #fff;
}

.btn-danger {
    color: #fff;
    background-color: #F3565D;
    border-color: #f13e46;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
        color: #fff;
        background-color: #f1353d;
        border-color: #ec111b;
    }

.open .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #f1353d;
    border-color: #ec111b;
}

.btn-danger:active, .btn-danger.active {
    background-image: none;
    background-color: #ef1d26;
}

    .btn-danger:active:hover, .btn-danger.active:hover {
        background-color: #f0262f;
    }

.open .btn-danger.dropdown-toggle {
    background-image: none;
}

.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
    background-color: #F3565D;
    border-color: #f13e46;
}

.btn-danger .badge {
    color: #F3565D;
    background-color: #fff;
}

/* Button sizes */
.btn > i {
    font-size: 14px;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    vertical-align: middle;
}

    .btn-lg > i {
        font-size: 18px;
    }

.btn-sm,
.btn-xs {
    padding: 4px 10px 5px 10px;
    font-size: 13px;
    line-height: 1.5;
}

    .btn-sm > i,
    .btn-xs > i {
        font-size: 13px;
    }

.btn-xs {
    padding: 1px 5px;
}

    .btn-xs > i {
        font-size: 12px;
    }

/* Small button in button group */
.btn-group .input-sm .btn-default {
    padding-top: 3px;
    padding-bottom: 3px;
}

/* Arrow link */
.btn-arrow-link {
    vertical-align: middle;
    display: inline-block;
    font-size: 13px;
}

    .btn-arrow-link > i {
        font-size: 14px;
        line-height: 14px;
        vertical-align: top;
        margin: 2px 3px 2px 3px;
        color: #5b9bd1;
    }

    .btn-arrow-link.btn-arrow-link-lg {
        font-size: 14px;
    }

        .btn-arrow-link.btn-arrow-link-lg > i {
            font-size: 16px;
            line-height: 16px;
            margin: 2px 3px 1px 3px;
        }

/* Circle Buttons */
.btn-circle {
    border-radius: 25px !important;
}

.btn-circle-right {
    border-radius: 0 25px 25px 0 !important;
}

.btn-circle-left {
    border-radius: 25px 0 0 25px !important;
}

.btn-circle-bottom {
    border-radius: 0 0 25px 25px !important;
}

.btn-circle-top {
    border-radius: 25px 25px 0 0 !important;
}

.btn-icon-only {
    height: 34px;
    width: 34px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

    .btn-icon-only > [class^="icon-"],
    .btn-icon-only > i {
        text-align: center;
        margin-top: 2px;
    }

.btn-sm > [class^="glyphicon-"],
.btn-sm > [class*=" glyphicon-"],
.btn-sm > i {
    font-size: 13px;
}

.btn-xs > [class^="glyphicon-"],
.btn-xs > [class*=" glyphicon-"],
.btn-xs > i {
    font-size: 11px;
}

.btn-group.btn-group-circle > .btn:first-child {
    border-radius: 25px 0 0 25px !important;
}

.btn-group.btn-group-circle > .btn:last-child {
    border-radius: 0 25px 25px 0 !important;
}

.btn-group.btn-group-devided > .btn {
    margin-right: 5px;
}

    .btn-group.btn-group-devided > .btn:last-child {
        margin-right: 0;
    }

.btn-group-vertical.btn-group-vertical-circle > .btn:first-child {
    border-radius: 25px 25px 0 0 !important;
}

.btn-group-vertical.btn-group-vertical-circle > .btn:last-child {
    border-radius: 0 0 25px 25px !important;
}

/***
Image Carousel
***/
.carousel.image-carousel .carousel-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.carousel.image-carousel .carousel-control i {
    position: absolute;
    top: 40%;
}

.carousel.image-carousel.image-carousel-hoverable .carousel-control i {
    display: none;
}

.carousel.image-carousel.image-carousel-hoverable:hover .carousel-control i {
    display: inline-block;
}

.carousel.image-carousel .carousel-control.left i {
    left: 10px;
}

.carousel.image-carousel .carousel-control.right i {
    right: 10px;
}

.carousel.image-carousel .carousel-indicators {
    margin-top: 10px;
    bottom: -7px;
}

    .carousel.image-carousel .carousel-indicators li {
        background-color: #666;
    }

        .carousel.image-carousel .carousel-indicators li.active {
            background-color: #666;
        }

.carousel.image-carousel .carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 15px 25px 15px;
    background: #333333;
    background: rgba(0, 0, 0, 0.75);
}

    .carousel.image-carousel .carousel-caption h4,
    .carousel.image-carousel .carousel-caption h3,
    .carousel.image-carousel .carousel-caption h2,
    .carousel.image-carousel .carousel-caption p {
        text-align: left;
        line-height: 20px;
        color: #ffffff;
    }

    .carousel.image-carousel .carousel-caption h4,
    .carousel.image-carousel .carousel-caption h3,
    .carousel.image-carousel .carousel-caption h2 {
        margin: 0 0 5px;
    }

        .carousel.image-carousel .carousel-caption h4 a,
        .carousel.image-carousel .carousel-caption h3 a,
        .carousel.image-carousel .carousel-caption h2 a {
            color: #aaa;
        }

    .carousel.image-carousel .carousel-caption p {
        margin-bottom: 0;
    }

    .carousel.image-carousel .carousel-caption .item {
        margin: 0;
    }

/***
Charts and statistics
***/
.chart,
.pie,
.bars {
    overflow: hidden;
    height: 300px;
    width: 100%;
    font-family: "Open Sans", sans-serif !important;
    font-size: 14px;
}

/***
Statistic lists
***/
.item-list.table .percent {
    width: 30px;
    float: right;
    margin-right: 10px;
    margin-top: 3px;
}

/***
Chart tooltips
***/
.chart-tooltip {
    clear: both;
    z-index: 100;
    background-color: #736e6e !important;
    padding: 5px !important;
    color: #fff;
}

    .chart-tooltip .label {
        clear: both;
        display: block;
        margin-bottom: 2px;
    }

/***
Mini chart containers
***/
.bar-chart,
.line-chart {
    display: none;
}

/***
Chats
***/
.chats {
    margin: 0;
    padding: 0;
    margin-top: -15px;
}

    .chats li {
        list-style: none;
        padding: 5px 0;
        margin: 10px auto;
        font-size: 12px;
    }

        .chats li .body {
            display: block;
        }

        .chats li .avatar {
            height: 45px;
            width: 45px;
            -webkit-border-radius: 50% !important;
            -moz-border-radius: 50% !important;
            border-radius: 50% !important;
        }

        .chats li.in .avatar {
            float: left;
            margin-right: 10px;
        }

        .chats li.out .avatar {
            float: right;
            margin-left: 10px;
        }

        .chats li .name {
            color: #3590c1;
            font-size: 13px;
            font-weight: 400;
        }

        .chats li .datetime {
            color: #333;
            font-size: 13px;
            font-weight: 400;
        }

        .chats li .message {
            display: block;
            padding: 5px;
            position: relative;
        }

        .chats li.in .message {
            text-align: left;
            border-left: 2px solid #1BBC9B;
            margin-left: 65px;
            background: #fafafa;
        }

            .chats li.in .message .arrow {
                display: block;
                position: absolute;
                top: 5px;
                left: -8px;
                width: 0;
                height: 0;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
                border-right: 8px solid #1BBC9B;
            }

        .chats li.out .message {
            border-right: 2px solid #F3565D;
            margin-right: 65px;
            background: #fafafa;
            text-align: right;
        }

            .chats li.out .message .arrow {
                display: block;
                position: absolute;
                top: 5px;
                right: -8px;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
                border-left: 8px solid #F3565D;
            }

        .chats li.out .name,
        .chats li.out .datetime {
            text-align: right;
        }

.chat-form {
    margin-top: 15px;
    padding: 10px;
    background-color: #e9eff3;
    overflow: hidden;
    clear: both;
}

    .chat-form .input-cont {
        margin-right: 40px;
    }

        .chat-form .input-cont .form-control {
            border: 1px solid #ddd;
            width: 100% !important;
            margin-top: 0;
            background-color: #fff !important;
        }

            .chat-form .input-cont .form-control:focus {
                border: 1px solid #4b8df9 !important;
            }

    .chat-form .btn-cont {
        margin-top: -42px;
        position: relative;
        float: right;
        width: 44px;
    }

        .chat-form .btn-cont .arrow {
            position: absolute;
            top: 17px;
            right: 43px;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #4d90fe;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .chat-form .btn-cont .btn {
            margin-top: 8px;
        }

        .chat-form .btn-cont:hover .arrow {
            border-right-color: #0362fd;
        }

        .chat-form .btn-cont:hover .btn {
            background-color: #0362fd;
        }

/***
Customized Bootstrap Close Icon 
***/
.close {
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    width: 9px;
    height: 9px;
    background-repeat: no-repeat !important;
    text-indent: -10000px;
    outline: none;
    background-image: url("../../../../Scripts/layout/img/remove-icon-small.png") !important;
}

/***
Customized Bootstrap Dropdowns
***/
/***
Dropdowns
***/
.dropup.open > .dropdown-toggle,
.dropdown.open > .dropdown-toggle {
    border-color: #ddd;
}

/***
Dropdown Menu
***/
.dropdown-menu {
    min-width: 175px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    list-style: none;
    text-shadow: none;
    padding: 0px;
    margin: 10px 0px 0px 0px;
    background-color: #fffff;
    box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
    border: 1px solid #eee;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .dropdown-menu li.divider {
        background: #f1f3f6;
    }

    .dropdown-menu li > a {
        padding: 8px 14px;
        color: #555;
        text-decoration: none;
        display: block;
        clear: both;
        font-weight: 300;
        line-height: 18px;
        white-space: nowrap;
    }

        .dropdown-menu li > a > [class^="fa-"],
        .dropdown-menu li > a > [class*=" fa-"] {
            color: #888;
        }

        .dropdown-menu li > a > [class^="icon-"],
        .dropdown-menu li > a > [class*=" icon-"] {
            color: #666;
        }

        .dropdown-menu li > a > [class^="glyphicon-"],
        .dropdown-menu li > a > [class*=" glyphicon-"] {
            color: #888;
        }

        .dropdown-menu li > a:hover,
        .dropdown-menu .active > a,
        .dropdown-menu .active > a:hover {
            text-decoration: none;
            background-image: none;
            background-color: #f6f6f6;
            color: #555;
            filter: none;
        }

    .dropdown-menu.bottom-up {
        top: auto;
        bottom: 100%;
        margin-bottom: 2px;
    }

.dropdown > .dropdown-menu,
.dropdown-toggle > .dropdown-menu,
.btn-group > .dropdown-menu {
    margin-top: 10px;
}

    .dropdown > .dropdown-menu:before,
    .dropdown-toggle > .dropdown-menu:before,
    .btn-group > .dropdown-menu:before {
        position: absolute;
        top: -8px;
        left: 9px;
        right: auto;
        display: inline-block !important;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #e0e0e0;
        border-left: 8px solid transparent;
        content: '';
    }

    .dropdown > .dropdown-menu:after,
    .dropdown-toggle > .dropdown-menu:after,
    .btn-group > .dropdown-menu:after {
        position: absolute;
        top: -7px;
        left: 10px;
        right: auto;
        display: inline-block !important;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #fff;
        border-left: 7px solid transparent;
        content: '';
    }

    .dropdown > .dropdown-menu.pull-left:before,
    .dropdown-toggle > .dropdown-menu.pull-left:before,
    .btn-group > .dropdown-menu.pull-left:before {
        left: auto;
        right: 9px;
    }

    .dropdown > .dropdown-menu.pull-left:after,
    .dropdown-toggle > .dropdown-menu.pull-left:after,
    .btn-group > .dropdown-menu.pull-left:after {
        left: auto;
        right: 10px;
    }

    .dropdown > .dropdown-menu.pull-right:before,
    .dropdown-toggle > .dropdown-menu.pull-right:before,
    .btn-group > .dropdown-menu.pull-right:before {
        left: auto;
        right: 9px;
    }

    .dropdown > .dropdown-menu.pull-right:after,
    .dropdown-toggle > .dropdown-menu.pull-right:after,
    .btn-group > .dropdown-menu.pull-right:after {
        left: auto;
        right: 10px;
    }

.dropdown.dropup > .dropdown-menu,
.dropdown-toggle.dropup > .dropdown-menu,
.btn-group.dropup > .dropdown-menu {
    margin-top: 0px;
    margin-bottom: 10px;
}

    .dropdown.dropup > .dropdown-menu:after, .dropdown.dropup > .dropdown-menu:before,
    .dropdown-toggle.dropup > .dropdown-menu:after,
    .dropdown-toggle.dropup > .dropdown-menu:before,
    .btn-group.dropup > .dropdown-menu:after,
    .btn-group.dropup > .dropdown-menu:before {
        display: none !important;
    }

/* Dropdown submenu support for Bootsrap 3 */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 5px;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
    }

    .dropdown-submenu > a:after {
        position: absolute;
        display: inline-block;
        font-size: 14px;
        right: 7px;
        top: 7px;
        font-family: FontAwesome;
        height: auto;
        content: "\f105";
        font-weight: 300;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #ffffff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
        }

.dropup .dropdown-submenu > .dropdown-menu {
    top: auto;
    bottom: 0;
    margin-top: 0;
    margin-bottom: -2px;
}

.nav.pull-right > li > .dropdown-menu,
.nav > li > .dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

    .nav.pull-right > li > .dropdown-menu:before,
    .nav > li > .dropdown-menu.pull-right:before {
        right: 12px;
        left: auto;
    }

    .nav.pull-right > li > .dropdown-menu:after,
    .nav > li > .dropdown-menu.pull-right:after {
        right: 13px;
        left: auto;
    }

    .nav.pull-right > li > .dropdown-menu .dropdown-menu,
    .nav > li > .dropdown-menu.pull-right .dropdown-menu {
        right: 100%;
        left: auto;
        margin-right: -1px;
        margin-left: 0;
    }

@media (max-width: 767px) {
    /* 767px */
    .navbar-nav .open .dropdown-menu {
        position: absolute;
        float: left;
        width: auto;
        margin-top: 0;
        background-color: #ffffff;
        border: 1px solid #efefef;
        box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
    }

        .navbar-nav .open .dropdown-menu > li > a {
            padding: 6px 0 6px 13px;
            color: #333;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:active {
                ackground-color: #eee;
            }
}
/***
Dropdown Checkboxes
***/
.dropdown-content {
    padding: 5px;
}

    .dropdown-content form {
        margin: 0;
    }

.dropdown.inline .dropdown-menu {
    display: inline-block;
    position: relative;
}

.dropdown-radiobuttons,
.dropdown-checkboxes {
    padding: 5px;
}

    .dropdown-radiobuttons label,
    .dropdown-checkboxes label {
        display: block;
        font-weight: 300;
        color: #333;
        margin-bottom: 4px;
        margin-top: 4px;
    }

        .dropdown-radiobuttons label .radio,
        .dropdown-checkboxes label .radio {
            margin-right: 3px;
        }

/***
System feeds
***/
.feeds {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .feeds li {
        background-color: #fafafa;
        color: #82949a;
        margin-bottom: 1em;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .feeds li a {
            display: inline-block;
            width: 100%;
        }

        .feeds li:before, .feeds li:after {
            display: table;
            line-height: 0;
            content: "";
        }

        .feeds li:after {
            clear: both;
        }

        .feeds li:last-child {
            margin-bottom: 0px;
        }

        .feeds li .col1 {
            float: left;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .feeds li input[type=checkbox] {
            margin: 0;
            margin-right: 4px;
        }

        .feeds li .col1 > .cont {
            float: left;
            margin-left: 20px;
            overflow: hidden;
        }

        .feeds li:first-child {
            display: inline-block;
            width: 100%;
        }

        .feeds li .col1 > .cont > .cont-col1 {
            float: left;
            margin-right: -100%;
        }

            .feeds li .col1 > .cont > .cont-col1 > .label {
                display: inline-block;
                padding: 5px 4px 6px 5px;
                vertical-align: middle;
                text-align: center;
            }

                .feeds li .col1 > .cont > .cont-col1 > .label > i {
                    text-align: center;
                    font-size: 14px;
                }

        .feeds li .col1 > .cont > .cont-col2 {
            float: left;
            width: 100%;
        }

            .feeds li .col1 > .cont > .cont-col2 > .desc {
                margin-left: 35px;
                padding-top: 4px;
                padding-bottom: 5px;
                overflow: hidden;
            }

                .feeds li .col1 > .cont > .cont-col2 > .desc span.code {
                    color: #666;
                    font-size: 12px;
                    margin-right: 5px;
                    font-weight: bold;
                }

        .feeds li .col2 {
            float: right;margin-left:auto;
        }

            .feeds li .col2 > .date {
                padding: 4px 9px 5px 4px;
                text-align: right;
                font-style: italic;
                color: #c1cbd0;
            }

/***
Form Layouts
****/
/* Static info */
.static-info {
    margin-bottom: 10px;
}

    .static-info .name {
        font-size: 14px;
    }

    .static-info .value {
        font-size: 14px;
        font-weight: 600;
    }

    .static-info.align-reverse .name, .static-info.align-reverse .value {
        text-align: right;
    }

/* Help blocks */
.help-block {
    margin-top: 5px;
    margin-bottom: 5px;
}

.help-inline {
    font-size: 13px;
    color: #737373;
    display: inline-block;
    padding: 5px;
}

.form-inline input {
    margin-bottom: 0px !important;
}

/* Control Label */
.control-label {
    margin-top: 1px;
}

    .control-label .required, .required {
        color: #e02222;
        font-size: 12px;
        padding-left: 2px;
    }

.form {
    padding: 0 !important;
}

    .form .form-body {
        padding: 10px;
    }

.portlet.light .form .form-body {
    padding-left: 0;
    padding-right: 0;
}

.form .form-actions {
    padding: 20px 10px;
    margin: 0;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    *zoom: 1;
}

.portlet.light .form .form-actions {
    background: none;
    padding-left: 0;
    padding-right: 0;
}

.portlet .form .form-actions {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.form .form-actions:before, .form .form-actions:after {
    content: " ";
    display: table;
}

.form .form-actions:after {
    clear: both;
}

.form .form-actions.right {
    padding-left: 0;
    padding-right: 10px;
    text-align: right;
}

.portlet.light .form .form-actions.right {
    padding-right: 0;
}

.form .form-actions.left {
    padding-left: 10px;
    padding-right: 0;
    text-align: left;
}

.portlet.light .form .form-actions.left {
    padding-left: 0;
}

.form .form-actions.nobg {
    background-color: transparent;
}

.form .form-actions.top {
    margin-top: 0;
    margin-bottom: 20px;
    border-top: 0;
    border-bottom: 1px solid #e5e5e5;
}

.portlet.light .form .form-actions.top {
    background: none;
}

.form .form-actions .btn-set {
    display: inline-block;
}

@media (max-width: 767px) {
    .form .form-actions {
        /* 767px */
    }

        .form .form-actions .btn-set {
            margin-bottom: 3px;
            margin-top: 3px;
            float: left !important;
        }
}

.form .form-section {
    margin: 30px 0px 25px 0px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

    .form .form-section:first-child {
        margin-top: 5px;
    }

/* Checkboxes */
.checkbox,
.form-horizontal .checkbox {
    padding: 0;
}

    .checkbox > label,
    .form-horizontal .checkbox > label {
        padding-left: 0;
    }

.checkbox-list > label {
    display: block;
}

    .checkbox-list > label.checkbox-inline {
        display: inline-block;
    }

        .checkbox-list > label.checkbox-inline:first-child {
            padding-left: 0;
        }

/* Radio buttons */
.radio-list > label {
    display: block;
}

    .radio-list > label.radio-inline {
        display: inline-block;
    }

        .radio-list > label.radio-inline:first-child {
            padding-left: 0;
        }

/* Radio buttons in horizontal forms */
.form-horizontal .radio-list .radio {
    padding-top: 1px;
}

.form-horizontal .radio-list > label {
    margin-bottom: 0;
}

.form-horizontal .radio > span {
    margin-top: 2px;
}

/* Rows seperated form layout */
.form .form-row-seperated .portlet-body {
    padding: 0;
}

.form .form-row-seperated .form-group {
    margin: 0;
    border-bottom: 1px solid #efefef;
    padding: 15px 0;
}

    .form .form-row-seperated .form-group.last {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 13px;
    }

    .form .form-row-seperated .form-group .help-block {
        margin-bottom: 0;
    }

.form .form-row-seperated .form-body {
    padding: 0;
}

.form .form-row-seperated .form-actions {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Form bordered */
.form .form-bordered .form-group {
    margin: 0;
    border-bottom: 1px solid #efefef;
}

    .form .form-bordered .form-group > div {
        padding: 15px;
        border-left: 1px solid #efefef;
    }

@media (max-width: 991px) {
    .form .form-bordered .form-group > div {
        /* 991px */
        border-left: 0;
    }
}

.form .form-bordered .form-group.last {
    border-bottom: 0;
}

.form .form-bordered .form-group .control-label {
    padding-top: 20px;
}

@media (max-width: 991px) {
    .form .form-bordered .form-group .control-label {
        /* 991px */
        padding-top: 10px;
    }
}

.form .form-bordered .form-group .help-block {
    margin-bottom: 0;
}

.form .form-bordered .form-group .form-control {
    margin: 0;
}

.form .form-bordered .form-body {
    margin: 0;
    padding: 0;
}

.form .form-bordered .form-actions {
    margin-top: 0;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

@media (max-width: 991px) {
    .form .form-bordered .form-actions {
        /* 991px */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Horizontal bordered form */
.form .form-horizontal.form-bordered.form-row-stripped .form-group:nth-child(even) {
    background-color: #fcfcfc;
}

.form .form-horizontal.form-bordered.form-row-stripped .form-control {
    background: #fff !important;
}

.form .form-horizontal.form-bordered.form-label-stripped .form-group:nth-child(even) {
    background-color: #fcfcfc;
}

    .form .form-horizontal.form-bordered.form-label-stripped .form-group:nth-child(even) > div {
        background-color: #ffffff;
    }

.form .form-horizontal.form-bordered.form-label-stripped .form-group:nth-child(even) {
    background-color: #fcfcfc;
}

/***
Forms
***/
/* Input placeholder font color */
.form-control::-moz-placeholder {
    color: #b3b3b3;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #b3b3b3;
}

.form-control::-webkit-input-placeholder {
    color: #b3b3b3;
}

/* Form inputs */
.form-control {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #999;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eeeeee;
    }

    .form-control.height-auto {
        height: auto;
    }

    .form-control.form-control-solid {
        background-color: #F1F3F8;
        border-color: #F1F3F8;
        color: #A6B2BA;
    }

        .form-control.form-control-solid:focus {
            border-color: #e3e7f1;
        }

        .form-control.form-control-solid::-moz-placeholder {
            color: #acb7be;
            opacity: 1;
        }

        .form-control.form-control-solid:-ms-input-placeholder {
            color: #acb7be;
        }

        .form-control.form-control-solid::-webkit-input-placeholder {
            color: #acb7be;
        }

/* Form uneditable input */
.uneditable-input {
    padding: 6px 12px;
    min-width: 206px;
    font-size: 14px;
    font-weight: normal;
    height: 34px;
    color: #333;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* Form input sizing */
.input-mini {
    width: 45px !important;
}

.input-xsmall {
    width: 80px !important;
}

.input-small {
    width: 145px !important;
}

.input-medium {
    width: 240px !important;
}

.input-large {
    width: 320px !important;
}

.input-xlarge {
    width: 420px !important;
}

.input-inline {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-group .input-inline {
    margin-right: 5px;
}

.input-sm {
    height: 28px;
    padding: 5px 10px;
    font-size: 13px;
}

select.input-sm {
    height: 28px;
    line-height: 28px;
    padding: 2px 10px;
}

@media (max-width: 768px) {
    /* 768px */
    .input-large {
        width: 250px !important;
    }

    .input-xlarge {
        width: 300px !important;
    }
}
/* Input  groups */
.input-group .btn-default {
    border-color: #e5e5e5;
}

.input-group .input-group-addon {
    border-color: #e5e5e5;
    background: #e5e5e5;
    min-width: 39px;
}

    .input-group .input-group-addon > i {
        color: #999;
    }

/* Input spinner */
input[type="text"].spinner,
input[type="password"].spinner,
input[type="datetime"].spinner,
input[type="datetime-local"].spinner,
input[type="date"].spinner,
input[type="month"].spinner,
input[type="time"].spinner,
input[type="week"].spinner,
input[type="number"].spinner,
input[type="email"].spinner,
input[type="url"].spinner,
input[type="search"].spinner,
input[type="tel"].spinner,
input[type="color"].spinner {
    background-image: url("../../../../Scripts/layout/global/img/input-spinner.gif") !important;
    background-repeat: no-repeat;
    background-position: right 8px;
}

/* Form labels */
label {
    font-weight: 400;
    font-size: 14px;
}

/* Static form control */
.form-control-static {
    margin: 2px 0;
    display: inline-block;
}

/* Feedback states */
.has-success .help-block,
.has-success .help-inline,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #d6e9c6;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .has-success .form-control:focus {
        border-color: #bbdba1;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #d6e9c6;
    background-color: #dff0d8;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .help-inline,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #faebcc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .has-warning .form-control:focus {
        border-color: #f5d89e;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #faebcc;
    background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .help-inline,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}

.has-error .form-control {
    border-color: #ebccd1;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .has-error .form-control:focus {
        border-color: #dca7b0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.has-error .input-group-addon {
    color: #a94442;
    border-color: #ebccd1;
    background-color: #f2dede;
}

.has-error .form-control-feedback {
    color: #a94442;
}

/* Circle Inputs */
.input-circle {
    border-radius: 25px !important;
}

.input-circle-right {
    border-radius: 0 25px 25px 0 !important;
}

.input-circle-left {
    border-radius: 25px 0 0 25px !important;
}

.input-circle-bottom {
    border-radius: 0 0 25px 25px !important;
}

.input-circle-top {
    border-radius: 25px 25px 0 0 !important;
}

/***
Custom icon buttons
***/
.icon-btn {
    height: 60px;
    min-width: 80px;
    margin: 5px 5px 0 0;
    border: 1px solid #ddd;
    padding: 12px 20px 0px;
    background-color: #fafafa;
    background-image: none;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    color: #dddddd;
    text-shadow: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .icon-btn:hover {
        text-decoration: none;
        border-color: #999;
        color: #444;
        text-shadow: 0 1px 0px white;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        .icon-btn:hover > .badge {
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

    .icon-btn > div {
        margin-top: 5px;
        margin-bottom: 20px;
        font-weight: 300;
    }

    .icon-btn > .badge {
        position: absolute;
        font-size: 11px;
        font-weight: 300;
        top: -5px;
        right: -5px;
        padding: 3px 6px 3px 6px;
        color: white;
        text-shadow: none;
        border-width: 0;
        border-style: solid;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .icon-btn > i {
        font-size: 18px;
    }

.ie8 .icon-btn:hover {
    filter: none;
}

.icon-btn.active {
    border-color: #f1f3fa;
    color: #ffffff;
    background-color: #5a5a5a;
}

/***
Input icons
***/
.input-icon {
    position: relative;
}

    .input-icon > .form-control {
        padding-left: 33px;
    }

.input-group .input-icon > .form-control {
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    -ms-border-radius: 4px 0 0 4px;
    -o-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.input-icon > i, .input-icon > a {
    color: #ccc;
    display: block;
    position: absolute;
    margin: 11px 2px 4px 10px;
    z-index: 3;
    width: 16px;
    height: 16px;
    font-size: 16px;
    text-align: center;
}

.modal .input-icon > i {
    z-index: 10055;
}

.has-success .input-icon > i {
    color: #45B6AF;
}

.has-warning .input-icon > i {
    color: #dfba49;
}

.has-info .input-icon > i {
    color: #89C4F4;
}

.has-error .input-icon > i {
    color: #F3565D;
}

.input-icon.right > .form-control {
    padding-right: 33px;
    padding-left: 12px;
}

.input-group .input-icon.right > .form-control {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.input-icon.right > i, .input-icon.right > a {
    right: 8px;
    float: right;
}

.input-icon.input-icon-lg > i {
    margin-top: 16px;
}

.input-icon.input-icon-sm > i {
    margin-top: 8px;
    font-size: 13px;
}

/***
Customized Bootstrap Labels
***/
.label {
    text-shadow: none !important;
    font-size: 13px;
    font-weight: 300;
    padding: 3px 6px 3px 6px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}

    .label.label-sm {
        font-size: 12px;
        padding: 0px 4px 1px 4px;
    }

h1 .label, h2 .label, h3 .label, h4 .label, h5 .label, h6 .label {
    font-size: 75%;
}

/* Labels variants */
.label-default {
    background-color: #c6c6c6;
}

    .label-default[href]:hover, .label-default[href]:focus {
        background-color: #adadad;
    }

.label-primary {
    background-color: #428bca;
}

    .label-primary[href]:hover, .label-primary[href]:focus {
        background-color: #3071a9;
    }

.label-success {
    background-color: #45B6AF;
}

    .label-success[href]:hover, .label-success[href]:focus {
        background-color: #37918b;
    }

.label-info {
    background-color: #89C4F4;
}

    .label-info[href]:hover, .label-info[href]:focus {
        background-color: #5aadf0;
    }

.label-warning {
    background-color: #dfba49;
}

    .label-warning[href]:hover, .label-warning[href]:focus {
        background-color: #d0a625;
    }

.label-danger {
    background-color: #F3565D;
}

    .label-danger[href]:hover, .label-danger[href]:focus {
        background-color: #f0262f;
    }

/***
Iconic labels
***/
.label.label-icon {
    padding: 4px 0px 4px 4px;
    margin-right: 2px;
    text-align: center !important;
}

    .label.label-icon > i {
        font-size: 12px;
        text-align: center !important;
    }

.ie8 .label.label-icon, .ie9 .label.label-icon {
    padding: 3px 0px 3px 3px;
}

/***
Text states
***/
.text-default {
    color: #c6c6c6;
}

.text-primary {
    color: #428bca;
}

.text-success {
    color: #45B6AF;
}

.text-info {
    color: #89C4F4;
}

.text-warning {
    color: #dfba49;
}

.text-danger {
    color: #F3565D;
}

/***
Customized List Group
***/
/* Contextual variants */
.list-group .list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

.list-group a.list-group-item-success {
    color: #3c763d;
}

    .list-group a.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    .list-group a.list-group-item-success:hover, .list-group a.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    .list-group a.list-group-item-success.active, .list-group a.list-group-item-success.active:hover, .list-group a.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

.list-group .list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

.list-group a.list-group-item-info {
    color: #31708f;
}

    .list-group a.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    .list-group a.list-group-item-info:hover, .list-group a.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3;
    }

    .list-group a.list-group-item-info.active, .list-group a.list-group-item-info.active:hover, .list-group a.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

.list-group .list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

.list-group a.list-group-item-warning {
    color: #8a6d3b;
}

    .list-group a.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    .list-group a.list-group-item-warning:hover, .list-group a.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    .list-group a.list-group-item-warning.active, .list-group a.list-group-item-warning.active:hover, .list-group a.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

.list-group .list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

.list-group a.list-group-item-danger {
    color: #a94442;
}

    .list-group a.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    .list-group a.list-group-item-danger:hover, .list-group a.list-group-item-danger:focus {
        color: #a94442;
        background-color: #ebcccc;
    }

    .list-group a.list-group-item-danger.active, .list-group a.list-group-item-danger.active:hover, .list-group a.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442;
    }

/***
UI Loading
***/
.loading-message {
    display: inline-block;
    min-width: 125px;
    margin-left: -60px;
    padding: 10px;
    margin: 0 auto;
    color: #000 !important;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

    .loading-message.loading-message-boxed {
        border: 1px solid #ddd;
        background-color: #eee;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    }

    .loading-message > span {
        line-height: 20px;
        vertical-align: middle;
    }

.page-loading {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 125px;
    margin-left: -60px;
    margin-top: -30px;
    padding: 7px;
    text-align: center;
    color: #333;
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #eee;
    vertical-align: middle;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

    .page-loading > span {
        line-height: 20px;
        vertical-align: middle;
    }

.page-spinner-bar {
    position: fixed;
    z-index: 10051;
    width: 100px;
    top: 40%;
    left: 50%;
    margin-left: -55px;
    text-align: center;
}

    .page-spinner-bar > div {
        margin: 0 5px;
        width: 18px;
        height: 18px;
        background: #eee;
        border-radius: 100% !important;
        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;
    }

    .page-spinner-bar .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .page-spinner-bar .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

.block-spinner-bar {
    display: inline-block;
    width: 80px;
    text-align: center;
}

    .block-spinner-bar > div {
        margin: 0 2px;
        width: 15px;
        height: 15px;
        background: #eee;
        border-radius: 100% !important;
        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;
    }

    .block-spinner-bar .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .block-spinner-bar .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

/***
Metro icons
***/
[class^="m-icon-"] {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    line-height: 14px;
    vertical-align: top;
    background-image: url(../../../../Scripts/layout/global/img/syncfusion-icons.png);
    background-position: 0 0;
    background-repeat: no-repeat;
}

[class^="m-icon-big-"] {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 6px;
    vertical-align: middle;
    background-image: url(../../../../Scripts/layout/global/img/syncfusion-icons.png);
    background-position: 0 0px;
    background-repeat: no-repeat;
}

/* large icons */
.btn.m-icon-big {
    padding: 9px 16px 8px 16px;
}

    .btn.m-icon-big.m-icon-only {
        padding: 9px 8px 8px 0px;
    }

    .btn.m-icon-big [class^="m-icon-big-"] {
        margin: 0 0 0 10px;
    }

.btn.m-icon-ony > i {
    margin-left: 0px;
}

/* default icons */
.btn.m-icon {
    padding: 7px 14px 7px 14px;
}

    .btn.m-icon [class^="m-icon-"] {
        margin: 4px 0 0 5px;
    }

    .btn.m-icon.m-icon-only {
        padding: 7px 10px 7px 6px;
    }

/* white icon */
.m-icon-white {
    background-image: url(../../../../Scripts/layout/global/img/syncfusion-icons-white.png);
}

/*  Misc */
.m-icon-swapright {
    background-position: -27px -10px;
}

.m-icon-swapdown {
    background-position: -68px -10px;
}

.m-icon-swapleft {
    background-position: -8px -10px;
}

.m-icon-swapup {
    background-position: -46px -10px;
}

.m-icon-big-swapright {
    background-position: -42px -28px;
}

.m-icon-big-swapdown {
    background-position: -115px -28px;
}

.m-icon-big-swapleft {
    background-position: -6px -28px;
}

.m-icon-big-swapup {
    background-position: -78px -28px;
}

/***
Customized Bootstrap Modal 
***/
.modal {
    z-index: 10050 !important;
    outline: none;
    overflow-y: auto !important;
    /* Fix content shifting to the right on modal open due to scrollbar closed */
}

    .modal .modal-header {
        border-bottom: 1px solid #EFEFEF;
    }

        .modal .modal-header h3 {
            font-weight: 300;
        }

        .modal .modal-header .close {
            margin-top: 0px !important;
        }

    .modal .modal-dialog {
        z-index: 10051;
    }

    .modal > .loading {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -22px;
        margin-left: -22px;
    }

    .modal.in .page-loading {
        display: none;
    }

.modal-open {
    overflow-y: auto !important;
}

.modal-open-noscroll {
    overflow-y: hidden !important;
}

.modal-backdrop {
    border: 0;
    outline: none;
    z-index: 10049;
}

    .modal-backdrop, .modal-backdrop.fade.in {
        background-color: #333 !important;
    }

/* Full width modal */
.modal-full.modal-dialog {
    width: 99%;
}

@media (max-width: 768px) {
    .modal-full.modal-dialog {
        width: auto;
    }
}
/***
Notes
***/
.note {
    margin: 0 0 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

    .note h1,
    .note h2,
    .note h3,
    .note h4,
    .note h5,
    .note h6 {
        margin-top: 0;
    }

        .note h1 .close,
        .note h2 .close,
        .note h3 .close,
        .note h4 .close,
        .note h5 .close,
        .note h6 .close {
            margin-right: -10px;
        }

    .note p {
        font-size: 13px;
    }

        .note p:last-child {
            margin-bottom: 0;
        }

    .note code,
    .note .highlight {
        background-color: #fff;
    }

    .note.note-default {
        background-color: lightgray;
        border-color: #a0a0a0;
        color: #333333, 80%;
    }

        .note.note-default.note-bordered {
            background-color: #c3c3c3;
            border-color: #a0a0a0;
        }

        .note.note-default.note-shadow {
            background-color: #c6c6c6;
            border-color: #a0a0a0;
            box-shadow: 5px 5px rgba(162, 162, 162, 0.2);
        }

    .note.note-primary {
        background-color: #5697d0;
        border-color: #2a7696;
        color: #D8E3F2, 80%;
    }

        .note.note-primary.note-bordered {
            background-color: #3e89c9;
            border-color: #2a7696;
        }

        .note.note-primary.note-shadow {
            background-color: #428bca;
            border-color: #2a7696;
            box-shadow: 5px 5px rgba(43, 121, 154, 0.2);
        }

    .note.note-success {
        background-color: #eef7ea;
        border-color: #bbdba1;
        color: #3c763d, 80%;
    }

        .note.note-success.note-bordered {
            background-color: #dcefd4;
            border-color: #bbdba1;
        }

        .note.note-success.note-shadow {
            background-color: #dff0d8;
            border-color: #bbdba1;
            box-shadow: 5px 5px rgba(190, 220, 164, 0.2);
        }

    .note.note-info {
        background-color: #eef7fb;
        border-color: #91d9e8;
        color: #31708f, 80%;
    }

        .note.note-info.note-bordered {
            background-color: #d5ebf6;
            border-color: #91d9e8;
        }

        .note.note-info.note-shadow {
            background-color: #d9edf7;
            border-color: #91d9e8;
            box-shadow: 5px 5px rgba(150, 219, 233, 0.2);
        }

    .note.note-warning {
        background-color: #fcf8e3;
        border-color: #f2cf87;
        color: #8a6d3b, 80%;
    }

        .note.note-warning.note-bordered {
            background-color: #f9f1c7;
            border-color: #f2cf87;
        }

        .note.note-warning.note-shadow {
            background-color: #faf2cc;
            border-color: #f2cf87;
            box-shadow: 5px 5px rgba(243, 209, 139, 0.2);
        }

    .note.note-danger {
        background-color: #f9f0f0;
        border-color: #dca7b0;
        color: #a94442, 80%;
    }

        .note.note-danger.note-bordered {
            background-color: #f1dada;
            border-color: #dca7b0;
        }

        .note.note-danger.note-shadow {
            background-color: #f2dede;
            border-color: #dca7b0;
            box-shadow: 5px 5px rgba(222, 171, 179, 0.2);
        }

/***
Customized Bootstrap Pagination
***/
.pagination {
    margin: 10px 0;
}

    .pagination.pagination-circle > li:first-child > a {
        border-radius: 25px 0 0 25px !important;
    }

    .pagination.pagination-circle > li:last-child > a {
        border-radius: 0 25px 25px 0 !important;
    }

    .pagination .active > a,
    .pagination .active > a:hover {
        background: #eee;
        border-color: #dddddd;
        color: #333;
    }

/***
Customized Bootstrap Panels
***/
.panel {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.panel-group .panel {
    overflow: visible;
}

.panel .panel-body {
    font-size: 13px;
}

.panel .panel-title > a:hover {
    text-decoration: none;
}

.accordion .panel .panel-heading {
    padding: 0;
}

.accordion .panel .panel-title {
    padding: 0;
}

    .accordion .panel .panel-title .accordion-toggle {
        display: block;
        padding: 10px 15px;
    }

        .accordion .panel .panel-title .accordion-toggle.accordion-toggle-styled {
            background: url("../../../../Scripts/layout/global/img/accordion-plusminus.png") no-repeat;
            background-position: right -19px;
            margin-right: 15px;
        }

            .accordion .panel .panel-title .accordion-toggle.accordion-toggle-styled.collapsed {
                background-position: right 12px;
            }

.panel-default {
    border-color: #e0e0e0;
}

    .panel-default > .panel-heading {
        color: #333333;
        background-color: #f9f9f9;
        border-color: #e0e0e0;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #e0e0e0;
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #e0e0e0;
    }

.panel-primary {
    border-color: #3595bd;
}

    .panel-primary > .panel-heading {
        color: #D8E3F2;
        background-color: #428bca;
        border-color: #3595bd;
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #3595bd;
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #3595bd;
    }

.panel-success {
    border-color: #d6e9c6;
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        .panel-success > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #d6e9c6;
        }

    .panel-success > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #d6e9c6;
    }

.panel-info {
    border-color: #bce8f1;
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        .panel-info > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #bce8f1;
        }

    .panel-info > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #bce8f1;
    }

.panel-warning {
    border-color: #faebcc;
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
    }

        .panel-warning > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #faebcc;
        }

    .panel-warning > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #faebcc;
    }

.panel-danger {
    border-color: #ebccd1;
}

    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

        .panel-danger > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #ebccd1;
        }

    .panel-danger > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #ebccd1;
    }

/***
Accordions
***/
.accordion-heading {
    background: #eee;
}

    .accordion-heading a {
        text-decoration: none;
    }

        .accordion-heading a:hover {
            text-decoration: none;
        }

/***
Customized Bootstrap Popover
***/
.popover {
    box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
    padding: 0;
}

    .popover .popover-title {
        margin: 0 !important;
    }

    .popover.name .popover-title,
    name .popover .popover-content,
    .popover.name .popover-content {
        color: #89C4F4;
    }

    .popover.name .popover-title,
    name .popover .popover-content,
    .popover.name .popover-content {
        color: #428bca;
    }

    .popover.name .popover-title,
    name .popover .popover-content,
    .popover.name .popover-content {
        color: #45B6AF;
    }

    .popover.name .popover-title,
    name .popover .popover-content,
    .popover.name .popover-content {
        color: #dfba49;
    }

    .popover.name .popover-title,
    name .popover .popover-content,
    .popover.name .popover-content {
        color: #F3565D;
    }

/* popover colors*/
.popovers.yellow + .popover {
    background: yellow;
}

    .popovers.yellow + .popover .popover-title {
        background: yellow;
    }

    .popovers.yellow + .popover .popover-content {
        background: yellow;
    }

/***
Portlets
***/
/* Full Screen portlet mode */
.page-portlet-fullscreen {
    overflow: hidden;
}

/* Basic portlet */
.portlet {
    margin-top: 0px;
    margin-bottom: 25px;
    padding: 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .portlet.portlet-fullscreen {
        z-index: 10060;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }

        .portlet.portlet-fullscreen > .portlet-body {
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0 10px;
        }

        .portlet.portlet-fullscreen > .portlet-title {
            padding: 0 10px;
        }

    .portlet > .portlet-title {
        border-bottom: 1px solid #eee;
        padding: 0;
        margin-bottom: 10px;
        min-height: 41px;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -ms-border-radius: 4px 4px 0 0;
        -o-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
    }

        .portlet > .portlet-title:before, .portlet > .portlet-title:after {
            content: " ";
            display: table;
        }

        .portlet > .portlet-title:after {
            clear: both;
        }

        .portlet > .portlet-title > .caption {
            float: left;
            display: inline-block;
            font-size: 18px;
            line-height: 18px;
            font-weight: 300;
            padding: 10px 0;
        }

            .portlet > .portlet-title > .caption.bold {
                font-weight: 400;
            }

            .portlet > .portlet-title > .caption > i {
                float: left;
                margin-top: 4px;
                display: inline-block;
                font-size: 13px;
                margin-right: 5px;
                color: #666;
            }

                .portlet > .portlet-title > .caption > i.glyphicon {
                    margin-top: 2px;
                }

            .portlet > .portlet-title > .caption > .caption-helper {
                padding: 0;
                margin: 0;
                line-height: 13px;
                color: #9eacb4;
                font-size: 13px;
                font-weight: 400;
            }

        .portlet > .portlet-title > .actions {
            float: right;
            display: inline-block;
            padding: 6px 0;
        }

            .portlet > .portlet-title > .actions > .dropdown-menu i {
                color: #555555;
            }

            .portlet > .portlet-title > .actions > .btn,
            .portlet > .portlet-title > .actions > .btn.btn-sm,
            .portlet > .portlet-title > .actions > .btn-group > .btn,
            .portlet > .portlet-title > .actions > .btn-group > .btn.btn-sm {
                padding: 4px 10px;
                font-size: 13px;
                line-height: 1.5;
            }

                .portlet > .portlet-title > .actions > .btn.btn-default,
                .portlet > .portlet-title > .actions > .btn.btn-sm.btn-default,
                .portlet > .portlet-title > .actions > .btn-group > .btn.btn-default,
                .portlet > .portlet-title > .actions > .btn-group > .btn.btn-sm.btn-default {
                    padding: 3px 9px;
                }

                .portlet > .portlet-title > .actions > .btn > i,
                .portlet > .portlet-title > .actions > .btn.btn-sm > i,
                .portlet > .portlet-title > .actions > .btn-group > .btn > i,
                .portlet > .portlet-title > .actions > .btn-group > .btn.btn-sm > i {
                    font-size: 13px;
                }

            .portlet > .portlet-title > .actions .btn-icon-only {
                padding: 5px 7px 3px 7px;
            }

                .portlet > .portlet-title > .actions .btn-icon-only.btn-default {
                    padding: 4px 6px 2px 6px;
                }

                    .portlet > .portlet-title > .actions .btn-icon-only.btn-default > i {
                        font-size: 14px;
                    }

                    .portlet > .portlet-title > .actions .btn-icon-only.btn-default.fullscreen {
                        font-family: FontAwesome;
                        color: #a0a0a0;
                        padding-top: 3px;
                    }

                        .portlet > .portlet-title > .actions .btn-icon-only.btn-default.fullscreen.btn-sm {
                            padding: 3px 3px !important;
                            height: 27px;
                            width: 27px;
                        }

                        .portlet > .portlet-title > .actions .btn-icon-only.btn-default.fullscreen:before {
                            content: "\f065";
                        }

                        .portlet > .portlet-title > .actions .btn-icon-only.btn-default.fullscreen.on:before {
                            content: "\f066";
                        }

        .portlet > .portlet-title > .tools {
            float: right;
            display: inline-block;
            padding: 12px 0 8px 0;
        }

            .portlet > .portlet-title > .tools > a {
                display: inline-block;
                height: 16px;
                margin-left: 5px;
                opacity: 1;
                filter: alpha(opacity=100);
            }

                .portlet > .portlet-title > .tools > a.remove {
                    background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon.png);
                    background-repeat: no-repeat;
                    width: 11px;
                }

                .portlet > .portlet-title > .tools > a.config {
                    background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon.png);
                    background-repeat: no-repeat;
                    width: 12px;
                }

                .portlet > .portlet-title > .tools > a.reload {
                    background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon.png);
                    width: 13px;
                }

                .portlet > .portlet-title > .tools > a.expand {
                    background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon.png);
                    width: 14px;
                    visibility: visible;
                }

                .portlet > .portlet-title > .tools > a.collapse {
                    background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon.png);
                    width: 14px;
                    visibility: visible;
                }

                .portlet > .portlet-title > .tools > a.fullscreen {
                    display: inline-block;
                    top: -3px;
                    position: relative;
                    font-size: 13px;
                    font-family: FontAwesome;
                    color: #ACACAC;
                }

                    .portlet > .portlet-title > .tools > a.fullscreen:before {
                        content: "\f065";
                    }

                    .portlet > .portlet-title > .tools > a.fullscreen.on:before {
                        content: "\f066";
                    }

                .portlet > .portlet-title > .tools > a:hover {
                    text-decoration: none;
                    -webkit-transition: all 0.1s ease-in-out;
                    -moz-transition: all 0.1s ease-in-out;
                    -o-transition: all 0.1s ease-in-out;
                    -ms-transition: all 0.1s ease-in-out;
                    transition: all 0.1s ease-in-out;
                    opacity: 0.8;
                    filter: alpha(opacity=80);
                }

        .portlet > .portlet-title > .pagination {
            float: right;
            display: inline-block;
            margin: 2px 0 0 0;
            border: 0;
            padding: 4px 0;
        }

        .portlet > .portlet-title > .nav-tabs {
            background: none;
            margin: 0;
            float: right;
            display: inline-block;
            border: 0;
        }

            .portlet > .portlet-title > .nav-tabs > li {
                background: none;
                margin: 0;
                border: 0;
            }

                .portlet > .portlet-title > .nav-tabs > li > a {
                    background: none;
                    margin: 5px 0 0 1px;
                    border: 0;
                    padding: 8px 10px;
                    color: #fff;
                }

                .portlet > .portlet-title > .nav-tabs > li.active > a, .portlet > .portlet-title > .nav-tabs > li:hover > a {
                    color: #333;
                    background: #fff;
                    border: 0;
                }

    .portlet > .portlet-body {
        clear: both;
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        -ms-border-radius: 0 0 4px 4px;
        -o-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
    }

    .portlet > .portlet-empty {
        min-height: 125px;
    }

    .portlet.full-height-content {
        margin-bottom: 0;
    }

    /* Portlet background colors */
    /* Side bordered portlet */
    .portlet.bordered {
        border-left: 2px solid #e6e9ec !important;
    }

        .portlet.bordered > .portlet-title {
            border-bottom: 0;
        }

    /* Solid colored portlet */
    .portlet.solid {
        padding: 0 10px 10px 10px;
        border: 0px;
    }

        .portlet.solid > .portlet-title {
            border-bottom: 0;
            margin-bottom: 10px;
        }

            .portlet.solid > .portlet-title > .caption {
                padding: 16px 0 2px 0;
            }

            .portlet.solid > .portlet-title > .actions {
                padding: 12px 0 6px 0;
            }

            .portlet.solid > .portlet-title > .tools {
                padding: 14px 0 6px 0;
            }

        /* Solid bordered portlet */
        .portlet.solid.bordered > .portlet-title {
            margin-bottom: 10px;
        }

    /* Box portlet */
    .portlet.box {
        padding: 0px !important;
    }

        .portlet.box > .portlet-title {
            border-bottom: 0;
            padding: 0 10px;
            margin-bottom: 0;
            color: #fff;
        }

            .portlet.box > .portlet-title > .caption {
                padding: 11px 0 9px 0;
            }

            .portlet.box > .portlet-title > .tools > a.remove {
                background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
            }

            .portlet.box > .portlet-title > .tools > a.config {
                background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
            }

            .portlet.box > .portlet-title > .tools > a.reload {
                background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
            }

            .portlet.box > .portlet-title > .tools > a.expand {
                background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
            }

            .portlet.box > .portlet-title > .tools > a.collapse {
                background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
            }

            .portlet.box > .portlet-title > .tools > a.fullscreen {
                color: #fdfdfd;
            }

            .portlet.box > .portlet-title > .actions {
                padding: 7px 0 5px 0;
            }

        .portlet.box > .portlet-body {
            background-color: #fff;
            padding: 10px;
        }

        .portlet.box.portlet-fullscreen > .portlet-body {
            padding: 10px;
        }

    /* Light Portlet */
    .portlet.light {
        padding: 12px 20px 15px 20px;
        background-color: #fff;
    }

        .portlet.light.bordered {
            border: 1px solid #e1e1e1 !important;
        }

            .portlet.light.bordered > .portlet-title {
                border-bottom: 1px solid #eee;
            }

        .portlet.light.bg-inverse {
            background: #F7F7F7;
        }

        .portlet.light > .portlet-title {
            padding: 0;
            min-height: 48px;
        }

            .portlet.light > .portlet-title > .caption {
                color: #666;
                padding: 10px 0;
            }

                .portlet.light > .portlet-title > .caption > .caption-subject {
                    font-size: 16px;
                }

                .portlet.light > .portlet-title > .caption > i {
                    color: #777;
                    font-size: 15px;
                    font-weight: 300;
                    margin-top: 3px;
                }

                .portlet.light > .portlet-title > .caption.caption-md > .caption-subject {
                    font-size: 15px;
                }

                .portlet.light > .portlet-title > .caption.caption-md > i {
                    font-size: 14px;
                }

            .portlet.light > .portlet-title > .actions {
                padding: 6px 0 14px 0;
            }

                .portlet.light > .portlet-title > .actions .btn-default {
                    color: #666;
                }

                .portlet.light > .portlet-title > .actions .btn-icon-only {
                    height: 27px;
                    width: 27px;
                    margin-left: 5px;
                }

                .portlet.light > .portlet-title > .actions .dropdown-menu li > a {
                    color: #555;
                }

            .portlet.light > .portlet-title > .inputs {
                float: right;
                display: inline-block;
                padding: 4px 0;
            }

                .portlet.light > .portlet-title > .inputs > .portlet-input .input-icon > i, .portlet.light > .portlet-title > .inputs > .portlet-input .input-icon > a {
                    font-size: 14px;
                    margin-top: 9px;
                }

                .portlet.light > .portlet-title > .inputs > .portlet-input .input-icon > .form-control {
                    height: 30px;
                    padding: 2px 26px 3px 10px;
                    font-size: 13px;
                }

                .portlet.light > .portlet-title > .inputs > .portlet-input > .form-control {
                    height: 30px;
                    padding: 3px 10px;
                    font-size: 13px;
                }

            .portlet.light > .portlet-title > .pagination {
                padding: 2px 0 13px 0;
            }

            .portlet.light > .portlet-title > .tools {
                padding: 10px 0 13px 0;
                margin-top: 2px;
            }

            .portlet.light > .portlet-title > .nav-tabs > li {
                margin: 0;
                padding: 0;
            }

                .portlet.light > .portlet-title > .nav-tabs > li > a {
                    margin: 0;
                    padding: 12px 13px 13px 13px;
                    font-size: 13px;
                    color: #666;
                }

                .portlet.light > .portlet-title > .nav-tabs > li.active > a, .portlet.light > .portlet-title > .nav-tabs > li:hover > a {
                    margin: 0;
                    background: none;
                    color: #333;
                }

        .portlet.light.form-fit {
            padding: 0;
        }

            .portlet.light.form-fit > .portlet-title {
                padding: 17px 20px 10px 20px;
                margin-bottom: 0;
            }

        .portlet.light .portlet-body {
            padding-top: 8px;
        }

        .portlet.light.portlet-fullscreen > .portlet-body {
            padding: 8px 0;
        }

.tab-pane > p:last-child {
    margin-bottom: 0px;
}

/* Reverse aligned tabs */
.tabs-reversed > li {
    float: right;
    margin-right: 0;
}

    .tabs-reversed > li > a {
        margin-right: 0;
    }

/* jQuery UI Draggable Portlets */
.portlet-sortable:not(.portlet-fullscreen) > .portlet-title {
    cursor: move;
}

.portlet-sortable-placeholder {
    border: 2px dashed #eee;
    margin-bottom: 25px;
}

.portlet-sortable-empty {
    height: 45px;
}

/***
Customized Progress Bars
***/
.progress {
    border: 0;
    background-image: none;
    filter: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .progress.progress-sm {
        height: 12px;
    }

    .progress > .progress-bar-default {
        background-color: #c6c6c6;
    }

.progress-striped .progress > .progress-bar-default {
    background-image: none;
    background-image: none;
}

.progress > .progress-bar-success {
    background-color: #45B6AF;
}

.progress-striped .progress > .progress-bar-success {
    background-image: none;
    background-image: none;
}

.progress > .progress-bar-info {
    background-color: #89C4F4;
}

.progress-striped .progress > .progress-bar-info {
    background-image: none;
    background-image: none;
}

.progress > .progress-bar-danger {
    background-color: #F3565D;
}

.progress-striped .progress > .progress-bar-danger {
    background-image: none;
    background-image: none;
}

.progress > .progress-bar-warning {
    background-color: #dfba49;
}

.progress-striped .progress > .progress-bar-warning {
    background-image: none;
    background-image: none;
}

/***
Dashboard Stats
***/
.dashboard-stat {
    display: block;
    margin-bottom: 25px !important;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .dashboard-stat:before, .dashboard-stat:after {
        content: " ";
        display: table;
    }

    .dashboard-stat:after {
        clear: both;
    }

.portlet .dashboard-stat:last-child {
    margin-bottom: 0;
}

.dashboard-stat .visual {
    width: 80px;
    height: 100px;
    display: block;
    float: left;
    padding-top: 10px;
    padding-left: 15px;
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 35px;
}

    .dashboard-stat .visual > i {
        margin-left: -35px;
        font-size: 110px;
        line-height: 110px;
    }

.dashboard-stat .details {
    position: absolute;
    right: 15px;
    padding-right: 15px;
}

    .dashboard-stat .details .number {
        padding-top: 25px;
        text-align: right;
        font-size: 34px;
        line-height: 36px;
        letter-spacing: -1px;
        margin-bottom: 0px;
        font-weight: 300;
    }

    .dashboard-stat .details .name {
        padding-top: 25px;
        text-align: right;
        font-size: 34px;
        line-height: 36px;
        letter-spacing: -1px;
        margin-bottom: 0px;
        font-weight: 300;
    }

        .dashboard-stat .details .name a {
            color: #fff;
        }

            .dashboard-stat .details .name a:hover {
                text-decoration: none;
            }

    .dashboard-stat .details .desc {
        text-align: right;
        font-size: 14px;
        letter-spacing: 0px;
        font-weight: 300;
        line-height: 30px;
    }

        .dashboard-stat .details .desc a, .dashboard-stat .more a {
            color: #fff;
            opacity: 0.7;
        }

            .dashboard-stat .details .desc a:hover, .dashboard-stat .more a:hover {
                opacity: 0.9;
                text-decoration: none;
            }

.dashboard-stat .more {
    clear: both;
    display: table;
    width: 100%;
    min-height: 29px;
    padding: 6px 10px;
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

    .dashboard-stat .more:hover {
        text-decoration: none;
        opacity: 0.9;
        filter: alpha(opacity=90);
    }

    .dashboard-stat .more > i {
        display: inline-block;
        margin-top: 1px;
        float: right;
    }

.dashboard-stat-light {
    /*padding-bottom: 20px;*/
    margin-bottom: 20px;
}

    .dashboard-stat-light .details {
        margin-bottom: 5px;
    }

        .dashboard-stat-light .details .number {
            font-weight: 400;
            margin-bottom: 0px;
        }

/***
Dashboard Stats 2
***/
.dashboard-stat2 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    padding: 15px 15px 30px 15px;
    margin-bottom: 20px;
}

    .dashboard-stat2 .display {
        margin-bottom: 20px;
    }

        .dashboard-stat2 .display:before, .dashboard-stat2 .display:after {
            content: " ";
            display: table;
        }

        .dashboard-stat2 .display:after {
            clear: both;
        }

        .dashboard-stat2 .display .number {
            float: left;
            display: inline-block;
        }

            .dashboard-stat2 .display .number h3 {
                margin: 0 0 2px 0;
                padding: 0;
                font-size: 30px;
                font-weight: 400;
            }

                .dashboard-stat2 .display .number h3 > small {
                    font-size: 13px;
                }

            .dashboard-stat2 .display .number small {
                font-size: 14px;
                color: #AAB5BC;
                font-weight: 600;
                text-transform: uppercase;
            }

        .dashboard-stat2 .display .icon {
            display: inline-block;
            float: right;
            padding: 7px 0 0 0;
        }

            .dashboard-stat2 .display .icon > i {
                color: #cbd4e0;
                font-size: 26px;
            }

    .dashboard-stat2 .progress-info {
        clear: both;
    }

        .dashboard-stat2 .progress-info .progress {
            margin: 0;
            height: 4px;
            clear: both;
            display: block;
        }

        .dashboard-stat2 .progress-info .status {
            margin-top: 5px;
            font-size: 11px;
            color: #AAB5BC;
            font-weight: 600;
            text-transform: uppercase;
        }

            .dashboard-stat2 .progress-info .status .status-title {
                float: left;
                display: inline-block;
            }

            .dashboard-stat2 .progress-info .status .status-number {
                float: right;
                display: inline-block;
            }

/***
Text Stats
***/
.text-stat h3 {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 18px;
}

.text-stat span {
    font-size: 13px !important;
}

@media (max-width: 767px) {
    /* 767px */
    .text-stat {
        margin-top: 20px;
    }
}
/***
Social Icons
***/
.social-icons {
    padding: 0;
    margin: 0;
}

    .social-icons:before, .social-icons:after {
        content: " ";
        display: table;
    }

    .social-icons:after {
        clear: both;
    }

    .social-icons li {
        float: left;
        display: inline;
        list-style: none;
        margin-right: 5px;
        margin-bottom: 5px;
        text-indent: -9999px;
    }

        .social-icons li > a {
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            border-radius: 2px;
            width: 28px;
            height: 28px;
            display: block;
            background-position: 0 0;
            background-repeat: no-repeat;
            transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .social-icons li:hover > a {
            background-position: 0 -38px;
        }

        .social-icons li .amazon {
            background: url(../../../../Scripts/layout/global/img/social/amazon.png) no-repeat;
        }

        .social-icons li .behance {
            background: url(../../../../Scripts/layout/global/img/social/behance.png) no-repeat;
        }

        .social-icons li .blogger {
            background: url(../../../../Scripts/layout/global/img/social/blogger.png) no-repeat;
        }

        .social-icons li .deviantart {
            background: url(../../../../Scripts/layout/global/img/social/deviantart.png) no-repeat;
        }

        .social-icons li .dribbble {
            background: url(../../../../Scripts/layout/global/img/social/dribbble.png) no-repeat;
        }

        .social-icons li .dropbox {
            background: url(../../../../Scripts/layout/global/img/social/dropbox.png) no-repeat;
        }

        .social-icons li .evernote {
            background: url(../../../../Scripts/layout/global/img/social/evernote.png) no-repeat;
        }

        .social-icons li .facebook {
            background: url(../../../../Scripts/layout/global/img/social/facebook.png) no-repeat;
        }

        .social-icons li .forrst {
            background: url(../../../../Scripts/layout/global/img/social/forrst.png) no-repeat;
        }

        .social-icons li .github {
            background: url(../../../../Scripts/layout/global/img/social/github.png) no-repeat;
        }

        .social-icons li .googleplus {
            background: url(../../../../Scripts/layout/global/img/social/googleplus.png) no-repeat;
        }

        .social-icons li .jolicloud {
            background: url(../../../../Scripts/layout/global/img/social/jolicloud.png) no-repeat;
        }

        .social-icons li .last-fm {
            background: url(../../../../Scripts/layout/global/img/social/last-fm.png) no-repeat;
        }

        .social-icons li .linkedin {
            background: url(../../../../Scripts/layout/global/img/social/linkedin.png) no-repeat;
        }

        .social-icons li .picasa {
            background: url(../../../../Scripts/layout/global/img/social/picasa.png) no-repeat;
        }

        .social-icons li .pintrest {
            background: url(../../../../Scripts/layout/global/img/social/pintrest.png) no-repeat;
        }

        .social-icons li .rss {
            background: url(../../../../Scripts/layout/global/img/social/rss.png) no-repeat;
        }

        .social-icons li .skype {
            background: url(../../../../Scripts/layout/global/img/social/skype.png) no-repeat;
        }

        .social-icons li .spotify {
            background: url(../../../../Scripts/layout/global/img/social/spotify.png) no-repeat;
        }

        .social-icons li .stumbleupon {
            background: url(../../../../Scripts/layout/global/img/social/stumbleupon.png) no-repeat;
        }

        .social-icons li .tumblr {
            background: url(../../../../Scripts/layout/global/img/social/tumblr.png) no-repeat;
        }

        .social-icons li .twitter {
            background: url(../../../../Scripts/layout/global/img/social/twitter.png) no-repeat;
        }

        .social-icons li .vimeo {
            background: url(../../../../Scripts/layout/global/img/social/vimeo.png) no-repeat;
        }

        .social-icons li .wordpress {
            background: url(../../../../Scripts/layout/global/img/social/wordpress.png) no-repeat;
        }

        .social-icons li .xing {
            background: url(../../../../Scripts/layout/global/img/social/xing.png) no-repeat;
        }

        .social-icons li .yahoo {
            background: url(../../../../Scripts/layout/global/img/social/yahoo.png) no-repeat;
        }

        .social-icons li .youtube {
            background: url(../../../../Scripts/layout/global/img/social/youtube.png) no-repeat;
        }

        .social-icons li .vk {
            background: url(../../../../Scripts/layout/global/img/social/vk.png) no-repeat;
        }

        .social-icons li .instagram {
            background: url(../../../../Scripts/layout/global/img/social/instagram.png) no-repeat;
        }

        .social-icons li .reddit {
            background: url(../../../../Scripts/layout/global/img/social/reddit.png) no-repeat;
        }

        .social-icons li .aboutme {
            background: url(../../../../Scripts/layout/global/img/social/aboutme.png) no-repeat;
        }

        .social-icons li .flickr {
            background: url(../../../../Scripts/layout/global/img/social/flickr.png) no-repeat;
        }

        .social-icons li .foursquare {
            background: url(../../../../Scripts/layout/global/img/social/foursquare.png) no-repeat;
        }

        .social-icons li .gravatar {
            background: url(../../../../Scripts/layout/global/img/social/gravatar.png) no-repeat;
        }

        .social-icons li .klout {
            background: url(../../../../Scripts/layout/global/img/social/klout.png) no-repeat;
        }

        .social-icons li .myspace {
            background: url(../../../../Scripts/layout/global/img/social/myspace.png) no-repeat;
        }

        .social-icons li .quora {
            background: url(../../../../Scripts/layout/global/img/social/quora.png) no-repeat;
        }

    .social-icons.social-icons-color > li > a {
        opacity: 0.7;
        background-position: 0 -38px !important;
    }

        .social-icons.social-icons-color > li > a:hover {
            opacity: 1;
        }

    .social-icons.social-icons-circle > li > a {
        border-radius: 25px !important;
    }

/***
Inline Social Icons
***/
.social-icon {
    display: inline-block !important;
    width: 28px;
    height: 28px;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

    .social-icon.social-icon-circle {
        border-radius: 25px !important;
    }

    .social-icon.amazon {
        background: url(../../../../Scripts/layout/global/img/social/amazon.png) no-repeat;
    }

    .social-icon.behance {
        background: url(../../../../Scripts/layout/global/img/social/behance.png) no-repeat;
    }

    .social-icon.blogger {
        background: url(../../../../Scripts/layout/global/img/social/blogger.png) no-repeat;
    }

    .social-icon.deviantart {
        background: url(../../../../Scripts/layout/global/img/social/deviantart.png) no-repeat;
    }

    .social-icon.dribbble {
        background: url(../../../../Scripts/layout/global/img/social/dribbble.png) no-repeat;
    }

    .social-icon.dropbox {
        background: url(../../../../Scripts/layout/global/img/social/dropbox.png) no-repeat;
    }

    .social-icon.evernote {
        background: url(../../../../Scripts/layout/global/img/social/evernote.png) no-repeat;
    }

    .social-icon.facebook {
        background: url(../../../../Scripts/layout/global/img/social/facebook.png) no-repeat;
    }

    .social-icon.forrst {
        background: url(../../../../Scripts/layout/global/img/social/forrst.png) no-repeat;
    }

    .social-icon.github {
        background: url(../../../../Scripts/layout/global/img/social/github.png) no-repeat;
    }

    .social-icon.googleplus {
        background: url(../../../../Scripts/layout/global/img/social/googleplus.png) no-repeat;
    }

    .social-icon.jolicloud {
        background: url(../../../../Scripts/layout/global/img/social/jolicloud.png) no-repeat;
    }

    .social-icon.last-fm {
        background: url(../../../../Scripts/layout/global/img/social/last-fm.png) no-repeat;
    }

    .social-icon.linkedin {
        background: url(../../../../Scripts/layout/global/img/social/linkedin.png) no-repeat;
    }

    .social-icon.picasa {
        background: url(../../../../Scripts/layout/global/img/social/picasa.png) no-repeat;
    }

    .social-icon.pintrest {
        background: url(../../../../Scripts/layout/global/img/social/pintrest.png) no-repeat;
    }

    .social-icon.rss {
        background: url(../../../../Scripts/layout/global/img/social/rss.png) no-repeat;
    }

    .social-icon.skype {
        background: url(../../../../Scripts/layout/global/img/social/skype.png) no-repeat;
    }

    .social-icon.spotify {
        background: url(../../../../Scripts/layout/global/img/social/spotify.png) no-repeat;
    }

    .social-icon.stumbleupon {
        background: url(../../../../Scripts/layout/global/img/social/stumbleupon.png) no-repeat;
    }

    .social-icon.tumblr {
        background: url(../../../../Scripts/layout/global/img/social/tumblr.png) no-repeat;
    }

    .social-icon.twitter {
        background: url(../../../../Scripts/layout/global/img/social/twitter.png) no-repeat;
    }

    .social-icon.vimeo {
        background: url(../../../../Scripts/layout/global/img/social/vimeo.png) no-repeat;
    }

    .social-icon.wordpress {
        background: url(../../../../Scripts/layout/global/img/social/wordpress.png) no-repeat;
    }

    .social-icon.xing {
        background: url(../../../../Scripts/layout/global/img/social/xing.png) no-repeat;
    }

    .social-icon.yahoo {
        background: url(../../../../Scripts/layout/global/img/social/yahoo.png) no-repeat;
    }

    .social-icon.youtube {
        background: url(../../../../Scripts/layout/global/img/social/youtube.png) no-repeat;
    }

    .social-icon.vk {
        background: url(../../../../Scripts/layout/global/img/social/vk.png) no-repeat;
    }

    .social-icon.instagram {
        background: url(../../../../Scripts/layout/global/img/social/instagram.png) no-repeat;
    }

    .social-icon.reddit {
        background: url(../../../../Scripts/layout/global/img/social/reddit.png) no-repeat;
    }

    .social-icon.aboutme {
        background: url(../../../../Scripts/layout/global/img/social/aboutme.png) no-repeat;
    }

    .social-icon.flickr {
        background: url(../../../../Scripts/layout/global/img/social/flickr.png) no-repeat;
    }

    .social-icon.foursquare {
        background: url(../../../../Scripts/layout/global/img/social/foursquare.png) no-repeat;
    }

    .social-icon.gravatar {
        background: url(../../../../Scripts/layout/global/img/social/gravatar.png) no-repeat;
    }

    .social-icon.klout {
        background: url(../../../../Scripts/layout/global/img/social/klout.png) no-repeat;
    }

    .social-icon.myspace {
        background: url(../../../../Scripts/layout/global/img/social/myspace.png) no-repeat;
    }

    .social-icon.quora {
        background: url(../../../../Scripts/layout/global/img/social/quora.png) no-repeat;
    }

    .social-icon:hover {
        background-position: 0 -38px;
    }

.social-icon-color {
    opacity: 0.7;
    background-position: 0 -38px !important;
}

    .social-icon-color:hover {
        opacity: 1;
    }

/***
Customized Bootstrap Tables
***/
/***
Default table
***/
.table.table-bordered thead > tr > th {
    border-bottom: 0;
}

.table tr.heading > th {
    background-color: #eee !important;
}

.table td .img-responsive {
    width: 100%;
}

/* Contextual table row variants */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
    background: #a6c8e6;
    color: #132339;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th {
    background: #92bce0;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
    background: #dff0d8;
    color: #3c763d;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
    background: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
    background: #d9edf7;
    color: #31708f;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th {
    background: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
    background: #fcf8e3;
    color: #8a6d3b;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
    background: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
    background: #f2dede;
    color: #a94442;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
    background: #ebcccc;
}

/***
Responsive & Scrollable Tables
***/
.table-scrollable {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid #dddddd;
    margin: 10px 0 !important;
}

    .table-scrollable.table-scrollable-borderless {
        border: 0;
    }

    .table-scrollable > .table {
        width: 100% !important;
        margin: 0 !important;
        margin-bottom: 0;
        background-color: #fff;
    }

        .table-scrollable > .table > thead > tr > th,
        .table-scrollable > .table > tbody > tr > th,
        .table-scrollable > .table > tfoot > tr > th,
        .table-scrollable > .table > tfoot > tr > th,
        .table-scrollable > .table > tfoot > tr > td {
            white-space: nowrap;
        }

    .table-scrollable > .table-bordered {
        border: 0;
    }

        .table-scrollable > .table-bordered > thead > tr > th:first-child,
        .table-scrollable > .table-bordered > tbody > tr > th:first-child,
        .table-scrollable > .table-bordered > tfoot > tr > th:first-child,
        .table-scrollable > .table-bordered > thead > tr > td:first-child,
        .table-scrollable > .table-bordered > tbody > tr > td:first-child,
        .table-scrollable > .table-bordered > tfoot > tr > td:first-child {
            border-left: 0;
        }

        .table-scrollable > .table-bordered > thead > tr > th:last-child,
        .table-scrollable > .table-bordered > tbody > tr > th:last-child,
        .table-scrollable > .table-bordered > tfoot > tr > th:last-child,
        .table-scrollable > .table-bordered > thead > tr > td:last-child,
        .table-scrollable > .table-bordered > tbody > tr > td:last-child,
        .table-scrollable > .table-bordered > tfoot > tr > td:last-child {
            border-right: 0;
        }

        .table-scrollable > .table-bordered > thead > tr:last-child > th,
        .table-scrollable > .table-bordered > tbody > tr:last-child > th,
        .table-scrollable > .table-bordered > tfoot > tr:last-child > th,
        .table-scrollable > .table-bordered > thead > tr:last-child > td,
        .table-scrollable > .table-bordered > tbody > tr:last-child > td,
        .table-scrollable > .table-bordered > tfoot > tr:last-child > td {
            border-bottom: 0;
        }

/***
Responsive Flip Scroll Tables
***/
.flip-scroll table {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    /* 768px */
    .flip-scroll .flip-content:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    .flip-scroll * html .flip-content {
        zoom: 1;
    }

    .flip-scroll *:first-child + html .flip-content {
        zoom: 1;
    }

    .flip-scroll table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
    }

    .flip-scroll th,
    .flip-scroll td {
        margin: 0;
        vertical-align: top;
    }

    .flip-scroll th {
        text-align: left;
        border: 0 !important;
        border-bottom: 1px solid #ddd !important;
        border-right: 1px solid #ddd !important;
        font-size: 13px !important;
        padding: 5px;
        width: auto !important;
    }

    .flip-scroll table {
        display: block;
        position: relative;
        width: 100%;
    }

    .flip-scroll thead {
        display: block;
        float: left;
    }

    .flip-scroll tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
    }

    .flip-scroll thead tr {
        display: block;
    }

    .flip-scroll th {
        display: block;
        text-align: right;
    }

    .flip-scroll tbody tr {
        display: inline-block;
        vertical-align: top;
        margin-left: -5px;
    }

    .flip-scroll td {
        display: block;
        min-height: 1.25em;
        text-align: left;
        border-top: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }

    /* sort out borders */
    .flip-scroll th {
        border-bottom: 0;
        border-left: 0;
    }

    .flip-scroll td {
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .flip-scroll tbody tr {
        border-left: 1px solid #ddd;
    }

    .flip-scroll th:last-child,
    .flip-scroll td:last-child {
        border-bottom: 1px solid #ddd;
    }
}
/***
Custom tables
***/
.table-toolbar {
    margin-bottom: 15px;
}

    .table-toolbar:before, .table-toolbar:after {
        content: " ";
        display: table;
    }

    .table-toolbar:after {
        clear: both;
    }

.table.table-full-width {
    width: 100% !important;
}

.table .btn {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 5px;
}

.table thead tr th {
    font-size: 12px;
    font-weight: 600;
}

.table-advance {
    margin-bottom: 10px !important;
}

    .table-advance thead {
        color: #999;
    }

        .table-advance thead tr th {
            background-color: #DDD;
            font-size: 14px;
            font-weight: 400;
            color: #666;
        }

    .table-advance div.success,
    .table-advance div.info,
    .table-advance div.important,
    .table-advance div.warning,
    .table-advance div.danger {
        position: absolute;
        margin-top: -5px;
        float: left;
        width: 2px;
        height: 30px;
        margin-right: 20px !important;
    }

    .table-advance tr td {
        border-left-width: 0px;
    }

        .table-advance tr td:first-child {
            border-left-width: 1px !important;
        }

        .table-advance tr td.highlight:first-child a {
            margin-left: 15px;
        }

    .table-advance td.highlight div.primary {
        border-left: 2px solid #428bca;
    }

    .table-advance td.highlight div.success {
        border-left: 2px solid #45B6AF;
    }

    .table-advance td.highlight div.info {
        border-left: 2px solid #89C4F4;
    }

    .table-advance td.highlight div.warning {
        border-left: 2px solid #dfba49;
    }

    .table-advance td.highlight div.danger {
        border-left: 2px solid #F3565D;
    }

@media (max-width: 767px) {
    /* 767px */
    .table-advance tr > td.highlight:first-child a {
        margin-left: 8px;
    }
}
/***
Light Table
***/
.table.table-light {
    border: 0 !important;
}

    .table.table-light > thead > tr:hover > th {
        background: none;
    }

    .table.table-light > thead > tr.uppercase {
        text-transform: uppercase;
    }

    .table.table-light > thead > tr > th {
        font-weight: 600;
        font-size: 13px;
        color: #a7b3b9;
        font-family: "Open Sans", sans-serif;
        border: 0;
        border-bottom: 1px solid #F2F5F8;
    }

    .table.table-light > tbody > tr:last-child > td {
        border: 0;
    }

    .table.table-light > tbody > tr > td {
        border: 0;
        border-bottom: 1px solid #F2F5F8;
        color: #9ca8b0;
        vertical-align: middle;
    }

        .table.table-light > tbody > tr > td.fit {
            width: 1px;
            padding-right: 3px;
        }

        .table.table-light > tbody > tr > td .user-pic {
            display: inline-block;
            vertical-align: middle;
            height: 30px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -ms-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
        }

    .table.table-light.table-hover > tbody > tr > td:hover,
    .table.table-light.table-hover > tbody > tr > th:hover, .table.table-light.table-hover > tbody > tr:hover > td, .table.table-light.table-hover > tbody > tr:hover > th {
        background: #f9fafb;
    }

/***
Customized Bootstrap Tabs 
***/
/* Tabs and pills */
.nav-tabs,
.nav-pills {
    margin-bottom: 10px;
}

    .nav-tabs > li > a,
    .nav-pills > li > a {
        font-size: 14px;
    }

        .nav-tabs > li > a > .badge,
        .nav-pills > li > a > .badge {
            margin-top: -3px;
        }

    .nav-tabs > li .dropdown-menu:before, .nav-tabs > li .dropdown-menu:after,
    .nav-pills > li .dropdown-menu:before,
    .nav-pills > li .dropdown-menu:after {
        display: none;
    }

    .nav-tabs.nav-tabs-sm > li > a, .nav-tabs.nav-pills-sm > li > a,
    .nav-pills.nav-tabs-sm > li > a,
    .nav-pills.nav-pills-sm > li > a {
        font-size: 13px;
    }

    .nav-tabs .dropdown.open > .dropdown-toggle,
    .nav-pills .dropdown.open > .dropdown-toggle {
        background: #eee;
        color: #0d638f;
        border-color: transparent;
    }

/* Left and right tabs */
.tabs-right.nav-tabs,
.tabs-left.nav-tabs {
    border-bottom: 0;
}

    .tabs-right.nav-tabs > li,
    .tabs-left.nav-tabs > li {
        float: none;
    }

        .tabs-right.nav-tabs > li > a,
        .tabs-left.nav-tabs > li > a {
            margin-right: 0;
            margin-bottom: 3px;
        }

/* Left tabs */
.tabs-left.nav-tabs {
    border-right: 1px solid #ddd;
}

    .tabs-left.nav-tabs > li > a {
        display: block;
        margin-right: -1px;
    }

        .tabs-left.nav-tabs > li > a:hover, .tabs-left.nav-tabs > li > a:focus {
            -webkit-border-radius: 4px 0 0 4px;
            -moz-border-radius: 4px 0 0 4px;
            -ms-border-radius: 4px 0 0 4px;
            -o-border-radius: 4px 0 0 4px;
            border-radius: 4px 0 0 4px;
            border-color: #eeeeee #dddddd #eeeeee #eeeeee;
        }

    .tabs-left.nav-tabs > li.active > a,
    .tabs-left.nav-tabs > li.active > a:hover > li.active > a:focus {
        -webkit-border-radius: 4px 0 0 4px;
        -moz-border-radius: 4px 0 0 4px;
        -ms-border-radius: 4px 0 0 4px;
        -o-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
        border-color: #ddd transparent #ddd #ddd;
        *border-right-color: #ffffff;
    }

/* Right tabs */
.tabs-right.nav-tabs {
    border-left: 1px solid #ddd;
}

    .tabs-right.nav-tabs > li > a {
        display: block;
        margin-left: -1px;
    }

        .tabs-right.nav-tabs > li > a:hover, .tabs-right.nav-tabs > li > a:focus {
            -webkit-border-radius: 0 4px 4px 0;
            -moz-border-radius: 0 4px 4px 0;
            -ms-border-radius: 0 4px 4px 0;
            -o-border-radius: 0 4px 4px 0;
            border-radius: 0 4px 4px 0;
            border-color: #eeeeee #eeeeee #eeeeee #dddddd;
        }

    .tabs-right.nav-tabs > li.active > a,
    .tabs-right.nav-tabs > li.active > a:hover > li.active > a:focus {
        -webkit-border-radius: 0 4px 4px 0;
        -moz-border-radius: 0 4px 4px 0;
        -ms-border-radius: 0 4px 4px 0;
        -o-border-radius: 0 4px 4px 0;
        border-radius: 0 4px 4px 0;
        border-color: #ddd #ddd #ddd transparent;
        *border-left-color: #ffffff;
    }

/* Below tabs */
.tabs-below > .nav-tabs,
.tabs-below > .nav-pills {
    border-bottom: 0;
    margin-bottom: 0px;
    margin-top: 10px;
}

.tabs-below > .nav-tabs {
    border-top: 1px solid #ddd;
    margin-bottom: 0;
    margin-top: 10px;
}

    .tabs-below > .nav-tabs > li > a {
        margin-top: -1px;
        margin-bottom: 0;
    }

        .tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
            border-top-color: #ddd;
            border-bottom-color: transparent;
        }

        .tabs-below > .nav-tabs > li > a .dropdown-menu {
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            border-radius: 4px;
        }

    .tabs-below > .nav-tabs .active a,
    .tabs-below > .nav-tabs .active a:hover .active a:focus {
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        -ms-border-radius: 0 0 4px 4px;
        -o-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
        border-color: transparent #ddd #ddd #ddd;
    }

/***
Custom tabs
***/
/* In BS3.0.0 tabbable class was removed. We had to added it back */
.tabbable:before, .tabbable:after {
    content: " ";
    display: table;
}

.tabbable:after {
    clear: both;
}

.tabbable-custom {
    margin-bottom: 15px;
    padding: 0px;
    overflow: hidden;
    /* justified tabs */
    /* boxless tabs */
    /* below justified tabs */
    /* full width tabs */
    /* below tabs */
}

    .tabbable-custom > .nav-tabs {
        border: none;
        margin: 0px;
    }

        .tabbable-custom > .nav-tabs > li {
            margin-right: 2px;
            border-top: 2px solid transparent;
        }

            .tabbable-custom > .nav-tabs > li > a {
                margin-right: 0;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                -ms-border-radius: 0;
                -o-border-radius: 0;
                border-radius: 0;
            }

                .tabbable-custom > .nav-tabs > li > a:hover {
                    background: none;
                    border-color: transparent;
                }

            .tabbable-custom > .nav-tabs > li.active {
                border-top: 3px solid #F3565D;
                margin-top: 0;
                position: relative;
            }

                .tabbable-custom > .nav-tabs > li.active > a {
                    border-top: none !important;
                    font-weight: 400;
                    -webkit-border-radius: 0;
                    -moz-border-radius: 0;
                    -ms-border-radius: 0;
                    -o-border-radius: 0;
                    border-radius: 0;
                }

                    .tabbable-custom > .nav-tabs > li.active > a:hover {
                        -webkit-border-radius: 0;
                        -moz-border-radius: 0;
                        -ms-border-radius: 0;
                        -o-border-radius: 0;
                        border-radius: 0;
                        border-top: none;
                        background: #fff;
                        border-color: #d4d4d4 #d4d4d4 transparent;
                    }

    .tabbable-custom > .tab-content {
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 10px;
        -webkit-border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        -ms-border-radius: 0 0 4px 4px;
        -o-border-radius: 0 0 4px 4px;
        border-radius: 0 0 4px 4px;
    }

    .tabbable-custom.nav-justified > .tab-content {
        margin-top: -1px;
    }

    .tabbable-custom.boxless > .tab-content {
        padding: 15px 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .tabbable-custom.tabs-below.nav-justified .tab-content {
        margin-top: 0px;
        margin-bottom: -2px;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -ms-border-radius: 4px 4px 0 0;
        -o-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
    }

    .tabbable-custom.tabbable-full-width > .nav-tabs > li > a {
        color: #424242;
        font-size: 15px;
        padding: 9px 15px;
    }

    .tabbable-custom.tabbable-full-width > .tab-content {
        padding: 15px 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .tabbable-custom.tabs-below .nav-tabs > li > a {
        border-top: none;
        border-bottom: 2px solid transparent;
        margin-top: -1px;
    }

    .tabbable-custom.tabs-below .nav-tabs > li.active {
        border-top: none;
        border-bottom: 3px solid #d12610;
        margin-bottom: 0;
        position: relative;
    }

        .tabbable-custom.tabs-below .nav-tabs > li.active > a {
            border-bottom: none;
        }

            .tabbable-custom.tabs-below .nav-tabs > li.active > a:hover {
                background: #fff;
                border-color: #d4d4d4 #d4d4d4 transparent;
            }

    .tabbable-custom.tabbable-noborder > .nav-tabs > li > a {
        border: 0;
    }

    .tabbable-custom.tabbable-noborder .tab-content {
        border: 0;
    }

.tabbable-line > .nav-tabs {
    border: none;
    margin: 0px;
}

    .tabbable-line > .nav-tabs > li {
        margin-right: 2px;
    }

        .tabbable-line > .nav-tabs > li > a {
            border: 0;
            margin-right: 0;
            color: #737373;
        }

            .tabbable-line > .nav-tabs > li > a > i {
                color: #a6a6a6;
            }

        .tabbable-line > .nav-tabs > li.open, .tabbable-line > .nav-tabs > li:hover {
            border-bottom: 4px solid #fbcdcf;
        }

            .tabbable-line > .nav-tabs > li.open > a, .tabbable-line > .nav-tabs > li:hover > a {
                border: 0;
                background: none !important;
                color: #333;
            }

                .tabbable-line > .nav-tabs > li.open > a > i, .tabbable-line > .nav-tabs > li:hover > a > i {
                    color: #a6a6a6;
                }

            .tabbable-line > .nav-tabs > li.open .dropdown-menu, .tabbable-line > .nav-tabs > li:hover .dropdown-menu {
                margin-top: 0px;
            }

        .tabbable-line > .nav-tabs > li.active {
            border-bottom: 4px solid #F3565D;
            position: relative;
        }

            .tabbable-line > .nav-tabs > li.active > a {
                border: 0;
                color: #333;
            }

                .tabbable-line > .nav-tabs > li.active > a > i {
                    color: #404040;
                }

.tabbable-line > .tab-content {
    margin-top: -3px;
    background-color: #fff;
    border: 0;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.portlet .tabbable-line > .tab-content {
    padding-bottom: 0;
}

.tabbable-line.tabs-below > .nav-tabs > li {
    border-top: 4px solid transparent;
}

    .tabbable-line.tabs-below > .nav-tabs > li > a {
        margin-top: 0;
    }

    .tabbable-line.tabs-below > .nav-tabs > li:hover {
        border-bottom: 0;
        border-top: 4px solid #fbcdcf;
    }

    .tabbable-line.tabs-below > .nav-tabs > li.active {
        margin-bottom: -2px;
        border-bottom: 0;
        border-top: 4px solid #F3565D;
    }

.tabbable-line.tabs-below > .tab-content {
    margin-top: -10px;
    border-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/***
Tiles(new in v1.1.1)
***/
.tiles {
    margin-right: -10px;
}

    .tiles:before, .tiles:after {
        display: table;
        content: " ";
    }

    .tiles:after {
        clear: both;
    }

    .tiles .tile {
        display: block;
        letter-spacing: 0.02em;
        float: left;
        height: 135px;
        width: 135px !important;
        cursor: pointer;
        text-decoration: none;
        color: #ffffff;
        position: relative;
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.02em;
        line-height: 20px;
        overflow: hidden;
        border: 4px solid transparent;
        margin: 0 10px 10px 0;
    }

        .tiles .tile:after, .tiles .tile:before {
            content: "";
            float: left;
        }

        .tiles .tile.double {
            width: 280px !important;
        }

        .tiles .tile.double-down {
            height: 280px !important;
        }

            .tiles .tile.double-down i {
                margin-top: 95px;
            }

        .tiles .tile:hover {
            border-color: #aaa !important;
        }

        .tiles .tile:active, .tiles .tile.selected {
            border-color: #ccc !important;
        }

            .tiles .tile.selected .corner:after {
                content: "";
                display: inline-block;
                border-left: 40px solid transparent;
                border-bottom: 40px solid transparent;
                border-right: 40px solid #ccc;
                position: absolute;
                top: -3px;
                right: -3px;
            }

            .tiles .tile.selected .check:after {
                content: "";
                font-family: FontAwesome;
                font-size: 13px;
                content: "\f00c";
                display: inline-block;
                position: absolute;
                top: 2px;
                right: 2px;
            }

        .tiles .tile.icon {
            padding: 0;
        }

        .tiles .tile.image .tile-body {
            padding: 0 !important;
        }

            .tiles .tile.image .tile-body > img {
                width: 100%;
                height: auto;
                min-height: 100%;
                max-width: 100%;
            }

            .tiles .tile.image .tile-body h3 {
                display: inline-block;
            }

        .tiles .tile .tile-body {
            height: 100%;
            vertical-align: top;
            padding: 10px 10px;
            overflow: hidden;
            position: relative;
            font-weight: 400;
            font-size: 12px;
            color: #000000;
            color: #ffffff;
            margin-bottom: 10px;
        }

            .tiles .tile .tile-body p {
                font-weight: 400;
                font-size: 13px;
                color: #000000;
                color: #ffffff;
                line-height: 20px;
                overflow: hidden;
            }

                .tiles .tile .tile-body p:hover {
                    color: rgba(0, 0, 0, 0.8);
                }

                .tiles .tile .tile-body p:active {
                    color: rgba(0, 0, 0, 0.4);
                }

                .tiles .tile .tile-body p:hover {
                    color: #ffffff;
                }

            .tiles .tile .tile-body img {
                float: left;
                margin-right: 10px;
            }

                .tiles .tile .tile-body img.pull-right {
                    float: right !important;
                    margin-left: 10px;
                    margin-right: 0px;
                }

            .tiles .tile .tile-body > .content {
                display: inline-block;
            }

            .tiles .tile .tile-body > i {
                margin-top: 17px;
                display: block;
                font-size: 56px;
                line-height: 56px;
                text-align: center;
            }

            .tiles .tile .tile-body h1,
            .tiles .tile .tile-body h2,
            .tiles .tile .tile-body h3,
            .tiles .tile .tile-body h4,
            .tiles .tile .tile-body h5,
            .tiles .tile .tile-body h6,
            .tiles .tile .tile-body p {
                padding: 0;
                margin: 0;
                line-height: 14px;
            }

                .tiles .tile .tile-body h1:hover,
                .tiles .tile .tile-body h2:hover,
                .tiles .tile .tile-body h3:hover,
                .tiles .tile .tile-body h4:hover,
                .tiles .tile .tile-body h5:hover,
                .tiles .tile .tile-body h6:hover,
                .tiles .tile .tile-body p:hover {
                    color: #ffffff;
                }

            .tiles .tile .tile-body h3,
            .tiles .tile .tile-body h4 {
                margin-bottom: 5px;
            }

        .tiles .tile .tile-object {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            min-height: 30px;
            background-color: transparent;
            *zoom: 1;
        }

            .tiles .tile .tile-object:before, .tiles .tile .tile-object:after {
                display: table;
                content: "";
            }

            .tiles .tile .tile-object:after {
                clear: both;
            }

            .tiles .tile .tile-object > .name {
                position: absolute;
                bottom: 0;
                left: 0;
                margin-bottom: 5px;
                margin-left: 10px;
                margin-right: 15px;
                font-weight: 400;
                font-size: 13px;
                color: #ffffff;
            }

                .tiles .tile .tile-object > .name > i {
                    vertical-align: middle;
                    display: block;
                    font-size: 24px;
                    height: 18px;
                    width: 24px;
                }

            .tiles .tile .tile-object > .number {
                position: absolute;
                bottom: 0;
                right: 0;
                margin-bottom: 0;
                color: #ffffff;
                text-align: center;
                font-weight: 600;
                font-size: 14px;
                letter-spacing: 0.01em;
                line-height: 14px;
                margin-bottom: 8px;
                margin-right: 10px;
            }

/***
Custimized Bootstrap Wells
***/
.well {
    background-color: #eee;
    border: 0;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

/***
AngularJS Basic Animations
***/
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    -webkit-animation: fadeInUp .5s;
    animation: fadeInUp .5s;
}

@-webkit-keyframes bounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceDelay {
    0%, 80%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
/* Button */
.btn.default {
    color: #333333;
    background-color: #E5E5E5;
    border-color: "";
}

    .btn.default:hover, .btn.default:focus, .btn.default:active, .btn.default.active {
        color: #333333;
        background-color: lightgray;
    }

.open .btn.default.dropdown-toggle {
    color: #333333;
    background-color: lightgray;
}

.btn.default:active, .btn.default.active {
    background-image: none;
    background-color: #c6c6c6;
}

    .btn.default:active:hover, .btn.default.active:hover {
        background-color: #cccccc;
    }

.open .btn.default.dropdown-toggle {
    background-image: none;
}

.btn.default.disabled, .btn.default.disabled:hover, .btn.default.disabled:focus, .btn.default.disabled:active, .btn.default.disabled.active, .btn.default[disabled], .btn.default[disabled]:hover, .btn.default[disabled]:focus, .btn.default[disabled]:active, .btn.default[disabled].active, fieldset[disabled] .btn.default, fieldset[disabled] .btn.default:hover, fieldset[disabled] .btn.default:focus, fieldset[disabled] .btn.default:active, fieldset[disabled] .btn.default.active {
    background-color: #E5E5E5;
}

.btn.default .badge {
    color: #E5E5E5;
    background-color: #333333;
}

/**********
Blue Colors
***********/
/***
Blue Default
***/
/* Button */
.blue.btn {
    color: #FFFFFF;
    background-color: #4B8DF8;
    border-color: "";
}

    .blue.btn:hover, .blue.btn:focus, .blue.btn:active, .blue.btn.active {
        color: #FFFFFF;
        background-color: #2977f7;
    }

.open .blue.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #2977f7;
}

.blue.btn:active, .blue.btn.active {
    background-image: none;
    background-color: #1068f6;
}

    .blue.btn:active:hover, .blue.btn.active:hover {
        background-color: #1a6ef6;
    }

.open .blue.btn.dropdown-toggle {
    background-image: none;
}

.blue.btn.disabled, .blue.btn.disabled:hover, .blue.btn.disabled:focus, .blue.btn.disabled:active, .blue.btn.disabled.active, .blue.btn[disabled], .blue.btn[disabled]:hover, .blue.btn[disabled]:focus, .blue.btn[disabled]:active, .blue.btn[disabled].active, fieldset[disabled] .blue.btn, fieldset[disabled] .blue.btn:hover, fieldset[disabled] .blue.btn:focus, fieldset[disabled] .blue.btn:active, fieldset[disabled] .blue.btn.active {
    background-color: #4B8DF8;
}

.blue.btn .badge {
    color: #4B8DF8;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-stripe {
    border-left: 3px solid #4B8DF8;
}

/* Portlet */
.portlet > .portlet-body.blue,
.portlet.blue {
    background-color: #4B8DF8;
}

.portlet.solid.blue > .portlet-title,
.portlet.solid.blue > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue {
    border: 1px solid #7cacfa;
    border-top: 0;
}

    .portlet.box.blue > .portlet-title {
        background-color: #4B8DF8;
    }

        .portlet.box.blue > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #b7d1fc;
            color: #d0e1fd;
        }

            .portlet.box.blue > .portlet-title > .actions .btn-default > i {
                color: #deeafe;
            }

            .portlet.box.blue > .portlet-title > .actions .btn-default:hover, .portlet.box.blue > .portlet-title > .actions .btn-default:focus, .portlet.box.blue > .portlet-title > .actions .btn-default:active, .portlet.box.blue > .portlet-title > .actions .btn-default.active {
                border: 1px solid #e8f0fe;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.blue {
    background-color: #4B8DF8;
}

    .dashboard-stat.blue.dashboard-stat-light:hover {
        background-color: #3781f7;
    }

    .dashboard-stat.blue .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue .more {
        color: #FFFFFF;
        background-color: #3781f7;
    }

/* General Element */
.bg-blue {
    border-color: #4B8DF8 !important;
    background-image: none !important;
    background-color: #4B8DF8 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue {
    color: #4B8DF8 !important;
}

.progress-bar.blue {
    background: #4B8DF8 !important;
    color: #FFFFFF !important;
}

/***
Blue Madison
***/
/* Button */
.blue-madison.btn {
    color: #FFFFFF;
    background-color: #578ebe;
    border-color: "";
}

    .blue-madison.btn:hover, .blue-madison.btn:focus, .blue-madison.btn:active, .blue-madison.btn.active {
        color: #FFFFFF;
        background-color: #437cae;
    }

.open .blue-madison.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #437cae;
}

.blue-madison.btn:active, .blue-madison.btn.active {
    background-image: none;
    background-color: #3c6f9c;
}

    .blue-madison.btn:active:hover, .blue-madison.btn.active:hover {
        background-color: #3f74a3;
    }

.open .blue-madison.btn.dropdown-toggle {
    background-image: none;
}

.blue-madison.btn.disabled, .blue-madison.btn.disabled:hover, .blue-madison.btn.disabled:focus, .blue-madison.btn.disabled:active, .blue-madison.btn.disabled.active, .blue-madison.btn[disabled], .blue-madison.btn[disabled]:hover, .blue-madison.btn[disabled]:focus, .blue-madison.btn[disabled]:active, .blue-madison.btn[disabled].active, fieldset[disabled] .blue-madison.btn, fieldset[disabled] .blue-madison.btn:hover, fieldset[disabled] .blue-madison.btn:focus, fieldset[disabled] .blue-madison.btn:active, fieldset[disabled] .blue-madison.btn.active {
    background-color: #578ebe;
}

.blue-madison.btn .badge {
    color: #578ebe;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-madison-stripe {
    border-left: 3px solid #578ebe;
}

/* Portlet */
.portlet > .portlet-body.blue-madison,
.portlet.blue-madison {
    background-color: #578ebe;
}

.portlet.solid.blue-madison > .portlet-title,
.portlet.solid.blue-madison > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-madison > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-madison > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-madison {
    border: 1px solid #7ca7cc;
    border-top: 0;
}

    .portlet.box.blue-madison > .portlet-title {
        background-color: #578ebe;
    }

        .portlet.box.blue-madison > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-madison > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-madison > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #a8c4dd;
            color: #bad1e4;
        }

            .portlet.box.blue-madison > .portlet-title > .actions .btn-default > i {
                color: #c5d8e9;
            }

            .portlet.box.blue-madison > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-madison > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-madison > .portlet-title > .actions .btn-default:active, .portlet.box.blue-madison > .portlet-title > .actions .btn-default.active {
                border: 1px solid #cdddec;
                color: #dfeaf3;
            }

/* Statistic Block */
.dashboard-stat.blue-madison {
    background-color: #578ebe;
}

    .dashboard-stat.blue-madison.dashboard-stat-light:hover {
        background-color: #4884b8;
    }

    .dashboard-stat.blue-madison .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-madison .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-madison .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-madison .more {
        color: #FFFFFF;
        background-color: #4884b8;
    }

/* General Element */
.bg-blue-madison {
    border-color: #578ebe !important;
    background-image: none !important;
    background-color: #578ebe !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-madison {
    color: #578ebe !important;
}

.progress-bar.blue-madison {
    background: #578ebe !important;
    color: #FFFFFF !important;
}

/***
Blue Chambray
***/
/* Button */
.blue-chambray.btn {
    color: #FFFFFF;
    background-color: #2C3E50;
    border-color: "";
}

    .blue-chambray.btn:hover, .blue-chambray.btn:focus, .blue-chambray.btn:active, .blue-chambray.btn.active {
        color: #FFFFFF;
        background-color: #1f2c39;
    }

.open .blue-chambray.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #1f2c39;
}

.blue-chambray.btn:active, .blue-chambray.btn.active {
    background-image: none;
    background-color: #161f29;
}

    .blue-chambray.btn:active:hover, .blue-chambray.btn.active:hover {
        background-color: #1a242f;
    }

.open .blue-chambray.btn.dropdown-toggle {
    background-image: none;
}

.blue-chambray.btn.disabled, .blue-chambray.btn.disabled:hover, .blue-chambray.btn.disabled:focus, .blue-chambray.btn.disabled:active, .blue-chambray.btn.disabled.active, .blue-chambray.btn[disabled], .blue-chambray.btn[disabled]:hover, .blue-chambray.btn[disabled]:focus, .blue-chambray.btn[disabled]:active, .blue-chambray.btn[disabled].active, fieldset[disabled] .blue-chambray.btn, fieldset[disabled] .blue-chambray.btn:hover, fieldset[disabled] .blue-chambray.btn:focus, fieldset[disabled] .blue-chambray.btn:active, fieldset[disabled] .blue-chambray.btn.active {
    background-color: #2C3E50;
}

.blue-chambray.btn .badge {
    color: #2C3E50;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-chambray-stripe {
    border-left: 3px solid #2C3E50;
}

/* Portlet */
.portlet > .portlet-body.blue-chambray,
.portlet.blue-chambray {
    background-color: #2C3E50;
}

.portlet.solid.blue-chambray > .portlet-title,
.portlet.solid.blue-chambray > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-chambray > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-chambray > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-chambray {
    border: 1px solid #3e5771;
    border-top: 0;
}

    .portlet.box.blue-chambray > .portlet-title {
        background-color: #2C3E50;
    }

        .portlet.box.blue-chambray > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-chambray > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-chambray > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #547698;
            color: #5f83a7;
        }

            .portlet.box.blue-chambray > .portlet-title > .actions .btn-default > i {
                color: #698aac;
            }

            .portlet.box.blue-chambray > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-chambray > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-chambray > .portlet-title > .actions .btn-default:active, .portlet.box.blue-chambray > .portlet-title > .actions .btn-default.active {
                border: 1px solid #6f90b0;
                color: #809cb9;
            }

/* Statistic Block */
.dashboard-stat.blue-chambray {
    background-color: #2C3E50;
}

    .dashboard-stat.blue-chambray.dashboard-stat-light:hover {
        background-color: #253443;
    }

    .dashboard-stat.blue-chambray .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-chambray .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-chambray .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-chambray .more {
        color: #FFFFFF;
        background-color: #253443;
    }

/* General Element */
.bg-blue-chambray {
    border-color: #2C3E50 !important;
    background-image: none !important;
    background-color: #2C3E50 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-chambray {
    color: #2C3E50 !important;
}

.progress-bar.blue-chambray {
    background: #2C3E50 !important;
    color: #FFFFFF !important;
}

/***
Blue Ebonyclay
***/
/* Button */
.blue-ebonyclay.btn {
    color: #FFFFFF;
    background-color: #22313F;
    border-color: "";
}

    .blue-ebonyclay.btn:hover, .blue-ebonyclay.btn:focus, .blue-ebonyclay.btn:active, .blue-ebonyclay.btn.active {
        color: #FFFFFF;
        background-color: #151f28;
    }

.open .blue-ebonyclay.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #151f28;
}

.blue-ebonyclay.btn:active, .blue-ebonyclay.btn.active {
    background-image: none;
    background-color: #0d1217;
}

    .blue-ebonyclay.btn:active:hover, .blue-ebonyclay.btn.active:hover {
        background-color: #10171e;
    }

.open .blue-ebonyclay.btn.dropdown-toggle {
    background-image: none;
}

.blue-ebonyclay.btn.disabled, .blue-ebonyclay.btn.disabled:hover, .blue-ebonyclay.btn.disabled:focus, .blue-ebonyclay.btn.disabled:active, .blue-ebonyclay.btn.disabled.active, .blue-ebonyclay.btn[disabled], .blue-ebonyclay.btn[disabled]:hover, .blue-ebonyclay.btn[disabled]:focus, .blue-ebonyclay.btn[disabled]:active, .blue-ebonyclay.btn[disabled].active, fieldset[disabled] .blue-ebonyclay.btn, fieldset[disabled] .blue-ebonyclay.btn:hover, fieldset[disabled] .blue-ebonyclay.btn:focus, fieldset[disabled] .blue-ebonyclay.btn:active, fieldset[disabled] .blue-ebonyclay.btn.active {
    background-color: #22313F;
}

.blue-ebonyclay.btn .badge {
    color: #22313F;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-ebonyclay-stripe {
    border-left: 3px solid #22313F;
}

/* Portlet */
.portlet > .portlet-body.blue-ebonyclay,
.portlet.blue-ebonyclay {
    background-color: #22313F;
}

.portlet.solid.blue-ebonyclay > .portlet-title,
.portlet.solid.blue-ebonyclay > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-ebonyclay > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-ebonyclay > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-ebonyclay {
    border: 1px solid #344b60;
    border-top: 0;
}

    .portlet.box.blue-ebonyclay > .portlet-title {
        background-color: #22313F;
    }

        .portlet.box.blue-ebonyclay > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-ebonyclay > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #496a88;
            color: #527798;
        }

            .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default > i {
                color: #587ea2;
            }

            .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default:active, .portlet.box.blue-ebonyclay > .portlet-title > .actions .btn-default.active {
                border: 1px solid #5d83a7;
                color: #6d90b0;
            }

/* Statistic Block */
.dashboard-stat.blue-ebonyclay {
    background-color: #22313F;
}

    .dashboard-stat.blue-ebonyclay.dashboard-stat-light:hover {
        background-color: #1b2732;
    }

    .dashboard-stat.blue-ebonyclay .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-ebonyclay .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-ebonyclay .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-ebonyclay .more {
        color: #FFFFFF;
        background-color: #1b2732;
    }

/* General Element */
.bg-blue-ebonyclay {
    border-color: #22313F !important;
    background-image: none !important;
    background-color: #22313F !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-ebonyclay {
    color: #22313F !important;
}

.progress-bar.blue-ebonyclay {
    background: #22313F !important;
    color: #FFFFFF !important;
}

/***
Blue Hoki
***/
/* Button */
.blue-hoki.btn {
    color: #FFFFFF;
    background-color: #67809F;
    border-color: "";
}

    .blue-hoki.btn:hover, .blue-hoki.btn:focus, .blue-hoki.btn:active, .blue-hoki.btn.active {
        color: #FFFFFF;
        background-color: #586e8b;
    }

.open .blue-hoki.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #586e8b;
}

.blue-hoki.btn:active, .blue-hoki.btn.active {
    background-image: none;
    background-color: #4e627b;
}

    .blue-hoki.btn:active:hover, .blue-hoki.btn.active:hover {
        background-color: #526781;
    }

.open .blue-hoki.btn.dropdown-toggle {
    background-image: none;
}

.blue-hoki.btn.disabled, .blue-hoki.btn.disabled:hover, .blue-hoki.btn.disabled:focus, .blue-hoki.btn.disabled:active, .blue-hoki.btn.disabled.active, .blue-hoki.btn[disabled], .blue-hoki.btn[disabled]:hover, .blue-hoki.btn[disabled]:focus, .blue-hoki.btn[disabled]:active, .blue-hoki.btn[disabled].active, fieldset[disabled] .blue-hoki.btn, fieldset[disabled] .blue-hoki.btn:hover, fieldset[disabled] .blue-hoki.btn:focus, fieldset[disabled] .blue-hoki.btn:active, fieldset[disabled] .blue-hoki.btn.active {
    background-color: #67809F;
}

.blue-hoki.btn .badge {
    color: #67809F;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-hoki-stripe {
    border-left: 3px solid #67809F;
}

/* Portlet */
.portlet > .portlet-body.blue-hoki,
.portlet.blue-hoki {
    background-color: #67809F;
}

.portlet.solid.blue-hoki > .portlet-title,
.portlet.solid.blue-hoki > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-hoki > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-hoki > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-hoki {
    border: 1px solid #869ab3;
    border-top: 0;
}

    .portlet.box.blue-hoki > .portlet-title {
        background-color: #67809F;
    }

        .portlet.box.blue-hoki > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-hoki > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-hoki > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #acb9ca;
            color: #bbc7d4;
        }

            .portlet.box.blue-hoki > .portlet-title > .actions .btn-default > i {
                color: #c5ceda;
            }

            .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:active, .portlet.box.blue-hoki > .portlet-title > .actions .btn-default.active {
                border: 1px solid #cbd4de;
                color: #dbe1e8;
            }

/* Statistic Block */
.dashboard-stat.blue-hoki {
    background-color: #67809F;
}

    .dashboard-stat.blue-hoki.dashboard-stat-light:hover {
        background-color: #5e7694;
    }

    .dashboard-stat.blue-hoki .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-hoki .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-hoki .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-hoki .more {
        color: #FFFFFF;
        background-color: #5e7694;
    }

/* General Element */
.bg-blue-hoki {
    border-color: #67809F !important;
    background-image: none !important;
    background-color: #67809F !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-hoki {
    color: #67809F !important;
}

.progress-bar.blue-hoki {
    background: #67809F !important;
    color: #FFFFFF !important;
}

/***
Blue Stell
***/
/* Button */
.blue-steel.btn {
    color: #FFFFFF;
    background-color: #4B77BE;
    border-color: "";
}

    .blue-steel.btn:hover, .blue-steel.btn:focus, .blue-steel.btn:active, .blue-steel.btn.active {
        color: #FFFFFF;
        background-color: #3d66a8;
    }

.open .blue-steel.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #3d66a8;
}

.blue-steel.btn:active, .blue-steel.btn.active {
    background-image: none;
    background-color: #365b96;
}

    .blue-steel.btn:active:hover, .blue-steel.btn.active:hover {
        background-color: #395f9d;
    }

.open .blue-steel.btn.dropdown-toggle {
    background-image: none;
}

.blue-steel.btn.disabled, .blue-steel.btn.disabled:hover, .blue-steel.btn.disabled:focus, .blue-steel.btn.disabled:active, .blue-steel.btn.disabled.active, .blue-steel.btn[disabled], .blue-steel.btn[disabled]:hover, .blue-steel.btn[disabled]:focus, .blue-steel.btn[disabled]:active, .blue-steel.btn[disabled].active, fieldset[disabled] .blue-steel.btn, fieldset[disabled] .blue-steel.btn:hover, fieldset[disabled] .blue-steel.btn:focus, fieldset[disabled] .blue-steel.btn:active, fieldset[disabled] .blue-steel.btn.active {
    background-color: #4B77BE;
}

.blue-steel.btn .badge {
    color: #4B77BE;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-steel-stripe {
    border-left: 3px solid #4B77BE;
}

/* Portlet */
.portlet > .portlet-body.blue-steel,
.portlet.blue-steel {
    background-color: #4B77BE;
}

.portlet.solid.blue-steel > .portlet-title,
.portlet.solid.blue-steel > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-steel > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-steel > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-steel {
    border: 1px solid #7093cc;
    border-top: 0;
}

    .portlet.box.blue-steel > .portlet-title {
        background-color: #4B77BE;
    }

        .portlet.box.blue-steel > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-steel > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-steel > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #9db5dc;
            color: #b0c3e3;
        }

            .portlet.box.blue-steel > .portlet-title > .actions .btn-default > i {
                color: #bbcce7;
            }

            .portlet.box.blue-steel > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-steel > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-steel > .portlet-title > .actions .btn-default:active, .portlet.box.blue-steel > .portlet-title > .actions .btn-default.active {
                border: 1px solid #c3d2e9;
                color: #d6e0f0;
            }

/* Statistic Block */
.dashboard-stat.blue-steel {
    background-color: #4B77BE;
}

    .dashboard-stat.blue-steel.dashboard-stat-light:hover {
        background-color: #416db4;
    }

    .dashboard-stat.blue-steel .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-steel .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-steel .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-steel .more {
        color: #FFFFFF;
        background-color: #416db4;
    }

/* General Element */
.bg-blue-steel {
    border-color: #4B77BE !important;
    background-image: none !important;
    background-color: #4B77BE !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-steel {
    color: #4B77BE !important;
}

.progress-bar.blue-steel {
    background: #4B77BE !important;
    color: #FFFFFF !important;
}

/***
Blue Soft
***/
/* Button */
.blue-soft.btn {
    color: #FFFFFF;
    background-color: #4c87b9;
    border-color: "";
}

    .blue-soft.btn:hover, .blue-soft.btn:focus, .blue-soft.btn:active, .blue-soft.btn.active {
        color: #FFFFFF;
        background-color: #3f75a2;
    }

.open .blue-soft.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #3f75a2;
}

.blue-soft.btn:active, .blue-soft.btn.active {
    background-image: none;
    background-color: #386890;
}

    .blue-soft.btn:active:hover, .blue-soft.btn.active:hover {
        background-color: #3b6d97;
    }

.open .blue-soft.btn.dropdown-toggle {
    background-image: none;
}

.blue-soft.btn.disabled, .blue-soft.btn.disabled:hover, .blue-soft.btn.disabled:focus, .blue-soft.btn.disabled:active, .blue-soft.btn.disabled.active, .blue-soft.btn[disabled], .blue-soft.btn[disabled]:hover, .blue-soft.btn[disabled]:focus, .blue-soft.btn[disabled]:active, .blue-soft.btn[disabled].active, fieldset[disabled] .blue-soft.btn, fieldset[disabled] .blue-soft.btn:hover, fieldset[disabled] .blue-soft.btn:focus, fieldset[disabled] .blue-soft.btn:active, fieldset[disabled] .blue-soft.btn.active {
    background-color: #4c87b9;
}

.blue-soft.btn .badge {
    color: #4c87b9;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-soft-stripe {
    border-left: 3px solid #4c87b9;
}

/* Portlet */
.portlet > .portlet-body.blue-soft,
.portlet.blue-soft {
    background-color: #4c87b9;
}

.portlet.solid.blue-soft > .portlet-title,
.portlet.solid.blue-soft > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-soft > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-soft > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-soft {
    border: 1px solid #71a0c7;
    border-top: 0;
}

    .portlet.box.blue-soft > .portlet-title {
        background-color: #4c87b9;
    }

        .portlet.box.blue-soft > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-soft > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-soft > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #9dbdd9;
            color: #afc9e0;
        }

            .portlet.box.blue-soft > .portlet-title > .actions .btn-default > i {
                color: #bad1e4;
            }

            .portlet.box.blue-soft > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-soft > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-soft > .portlet-title > .actions .btn-default:active, .portlet.box.blue-soft > .portlet-title > .actions .btn-default.active {
                border: 1px solid #c1d6e7;
                color: #d4e2ee;
            }

/* Statistic Block */
.dashboard-stat.blue-soft {
    background-color: #4c87b9;
}

    .dashboard-stat.blue-soft.dashboard-stat-light:hover {
        background-color: #447dad;
    }

    .dashboard-stat.blue-soft .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-soft .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-soft .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-soft .more {
        color: #FFFFFF;
        background-color: #447dad;
    }

/* General Element */
.bg-blue-soft {
    border-color: #4c87b9 !important;
    background-image: none !important;
    background-color: #4c87b9 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-soft {
    color: #4c87b9 !important;
}

.progress-bar.blue-soft {
    background: #4c87b9 !important;
    color: #FFFFFF !important;
}

/***
Blue Dark
***/
/* Button */
.blue-dark.btn {
    color: #FFFFFF;
    background-color: #5e738b;
    border-color: "";
}

    .blue-dark.btn:hover, .blue-dark.btn:focus, .blue-dark.btn:active, .blue-dark.btn.active {
        color: #FFFFFF;
        background-color: #506176;
    }

.open .blue-dark.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #506176;
}

.blue-dark.btn:active, .blue-dark.btn.active {
    background-image: none;
    background-color: #455566;
}

    .blue-dark.btn:active:hover, .blue-dark.btn.active:hover {
        background-color: #495a6d;
    }

.open .blue-dark.btn.dropdown-toggle {
    background-image: none;
}

.blue-dark.btn.disabled, .blue-dark.btn.disabled:hover, .blue-dark.btn.disabled:focus, .blue-dark.btn.disabled:active, .blue-dark.btn.disabled.active, .blue-dark.btn[disabled], .blue-dark.btn[disabled]:hover, .blue-dark.btn[disabled]:focus, .blue-dark.btn[disabled]:active, .blue-dark.btn[disabled].active, fieldset[disabled] .blue-dark.btn, fieldset[disabled] .blue-dark.btn:hover, fieldset[disabled] .blue-dark.btn:focus, fieldset[disabled] .blue-dark.btn:active, fieldset[disabled] .blue-dark.btn.active {
    background-color: #5e738b;
}

.blue-dark.btn .badge {
    color: #5e738b;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-dark-stripe {
    border-left: 3px solid #5e738b;
}

/* Portlet */
.portlet > .portlet-body.blue-dark,
.portlet.blue-dark {
    background-color: #5e738b;
}

.portlet.solid.blue-dark > .portlet-title,
.portlet.solid.blue-dark > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-dark > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-dark > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-dark {
    border: 1px solid #788da4;
    border-top: 0;
}

    .portlet.box.blue-dark > .portlet-title {
        background-color: #5e738b;
    }

        .portlet.box.blue-dark > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-dark > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-dark > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #9dacbd;
            color: #acb8c7;
        }

            .portlet.box.blue-dark > .portlet-title > .actions .btn-default > i {
                color: #b5c0cd;
            }

            .portlet.box.blue-dark > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-dark > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-dark > .portlet-title > .actions .btn-default:active, .portlet.box.blue-dark > .portlet-title > .actions .btn-default.active {
                border: 1px solid #bbc5d1;
                color: #cad2db;
            }

/* Statistic Block */
.dashboard-stat.blue-dark {
    background-color: #5e738b;
}

    .dashboard-stat.blue-dark.dashboard-stat-light:hover {
        background-color: #56697f;
    }

    .dashboard-stat.blue-dark .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-dark .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-dark .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-dark .more {
        color: #FFFFFF;
        background-color: #56697f;
    }

/* General Element */
.bg-blue-dark {
    border-color: #5e738b !important;
    background-image: none !important;
    background-color: #5e738b !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-dark {
    color: #5e738b !important;
}

.progress-bar.blue-dark {
    background: #5e738b !important;
    color: #FFFFFF !important;
}

/***
Blue Sharp
***/
/* Button */
.blue-sharp.btn {
    color: #FFFFFF;
    background-color: #5C9BD1;
    border-color: "";
}

    .blue-sharp.btn:hover, .blue-sharp.btn:focus, .blue-sharp.btn:active, .blue-sharp.btn.active {
        color: #FFFFFF;
        background-color: #408ac9;
    }

.open .blue-sharp.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #408ac9;
}

.blue-sharp.btn:active, .blue-sharp.btn.active {
    background-image: none;
    background-color: #357dbb;
}

    .blue-sharp.btn:active:hover, .blue-sharp.btn.active:hover {
        background-color: #3782c3;
    }

.open .blue-sharp.btn.dropdown-toggle {
    background-image: none;
}

.blue-sharp.btn.disabled, .blue-sharp.btn.disabled:hover, .blue-sharp.btn.disabled:focus, .blue-sharp.btn.disabled:active, .blue-sharp.btn.disabled.active, .blue-sharp.btn[disabled], .blue-sharp.btn[disabled]:hover, .blue-sharp.btn[disabled]:focus, .blue-sharp.btn[disabled]:active, .blue-sharp.btn[disabled].active, fieldset[disabled] .blue-sharp.btn, fieldset[disabled] .blue-sharp.btn:hover, fieldset[disabled] .blue-sharp.btn:focus, fieldset[disabled] .blue-sharp.btn:active, fieldset[disabled] .blue-sharp.btn.active {
    background-color: #5C9BD1;
}

.blue-sharp.btn .badge {
    color: #5C9BD1;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.blue-sharp-stripe {
    border-left: 3px solid #5C9BD1;
}

/* Portlet */
.portlet > .portlet-body.blue-sharp,
.portlet.blue-sharp {
    background-color: #5C9BD1;
}

.portlet.solid.blue-sharp > .portlet-title,
.portlet.solid.blue-sharp > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.blue-sharp > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.blue-sharp > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.blue-sharp {
    border: 1px solid #84b3dc;
    border-top: 0;
}

    .portlet.box.blue-sharp > .portlet-title {
        background-color: #5C9BD1;
    }

        .portlet.box.blue-sharp > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.blue-sharp > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.blue-sharp > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #b4d1ea;
            color: #c7ddef;
        }

            .portlet.box.blue-sharp > .portlet-title > .actions .btn-default > i {
                color: #d3e4f3;
            }

            .portlet.box.blue-sharp > .portlet-title > .actions .btn-default:hover, .portlet.box.blue-sharp > .portlet-title > .actions .btn-default:focus, .portlet.box.blue-sharp > .portlet-title > .actions .btn-default:active, .portlet.box.blue-sharp > .portlet-title > .actions .btn-default.active {
                border: 1px solid #dbe9f5;
                color: #eff5fb;
            }

/* Statistic Block */
.dashboard-stat.blue-sharp {
    background-color: #5C9BD1;
}

    .dashboard-stat.blue-sharp.dashboard-stat-light:hover {
        background-color: #4c91cd;
    }

    .dashboard-stat.blue-sharp .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.blue-sharp .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.blue-sharp .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.blue-sharp .more {
        color: #FFFFFF;
        background-color: #4c91cd;
    }

/* General Element */
.bg-blue-sharp {
    border-color: #5C9BD1 !important;
    background-image: none !important;
    background-color: #5C9BD1 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-blue-sharp {
    color: #5C9BD1 !important;
}

.progress-bar.blue-sharp {
    background: #5C9BD1 !important;
    color: #FFFFFF !important;
}

/***********
Green Colors
************/
/***
Green Default
***/
/* Button */
.green.btn {
    color: #FFFFFF;
    background-color: #35aa47;
    border-color: "";
}

    .green.btn:hover, .green.btn:focus, .green.btn:active, .green.btn.active {
        color: #FFFFFF;
        background-color: #2d8f3c;
    }

.open .green.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #2d8f3c;
}

.green.btn:active, .green.btn.active {
    background-image: none;
    background-color: #267b34;
}

    .green.btn:active:hover, .green.btn.active:hover {
        background-color: #298337;
    }

.open .green.btn.dropdown-toggle {
    background-image: none;
}

.green.btn.disabled, .green.btn.disabled:hover, .green.btn.disabled:focus, .green.btn.disabled:active, .green.btn.disabled.active, .green.btn[disabled], .green.btn[disabled]:hover, .green.btn[disabled]:focus, .green.btn[disabled]:active, .green.btn[disabled].active, fieldset[disabled] .green.btn, fieldset[disabled] .green.btn:hover, fieldset[disabled] .green.btn:focus, fieldset[disabled] .green.btn:active, fieldset[disabled] .green.btn.active {
    background-color: #35aa47;
}

.green.btn .badge {
    color: #35aa47;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-stripe {
    border-left: 3px solid #35aa47;
}

/* Portlet */
.portlet > .portlet-body.green,
.portlet.green {
    background-color: #35aa47;
}

.portlet.solid.green > .portlet-title,
.portlet.solid.green > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green {
    border: 1px solid #4bc75e;
    border-top: 0;
}

    .portlet.box.green > .portlet-title {
        background-color: #35aa47;
    }

        .portlet.box.green > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #7ad588;
            color: #8ddc99;
        }

            .portlet.box.green > .portlet-title > .actions .btn-default > i {
                color: #99dfa4;
            }

            .portlet.box.green > .portlet-title > .actions .btn-default:hover, .portlet.box.green > .portlet-title > .actions .btn-default:focus, .portlet.box.green > .portlet-title > .actions .btn-default:active, .portlet.box.green > .portlet-title > .actions .btn-default.active {
                border: 1px solid #a1e2ab;
                color: #b4e8bc;
            }

/* Statistic Block */
.dashboard-stat.green {
    background-color: #35aa47;
}

    .dashboard-stat.green.dashboard-stat-light:hover {
        background-color: #309a41;
    }

    .dashboard-stat.green .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green .more {
        color: #FFFFFF;
        background-color: #309a41;
    }

/* General Element */
.bg-green {
    border-color: #35aa47 !important;
    background-image: none !important;
    background-color: #35aa47 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green {
    color: #35aa47 !important;
}

.progress-bar.green {
    background: #35aa47 !important;
    color: #FFFFFF !important;
}

/***
Green Meadow
***/
/* Button */
.green-meadow.btn {
    color: #FFFFFF;
    background-color: #1BBC9B;
    border-color: "";
}

    .green-meadow.btn:hover, .green-meadow.btn:focus, .green-meadow.btn:active, .green-meadow.btn.active {
        color: #FFFFFF;
        background-color: #179d81;
    }

.open .green-meadow.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #179d81;
}

.green-meadow.btn:active, .green-meadow.btn.active {
    background-image: none;
    background-color: #13866f;
}

    .green-meadow.btn:active:hover, .green-meadow.btn.active:hover {
        background-color: #158f76;
    }

.open .green-meadow.btn.dropdown-toggle {
    background-image: none;
}

.green-meadow.btn.disabled, .green-meadow.btn.disabled:hover, .green-meadow.btn.disabled:focus, .green-meadow.btn.disabled:active, .green-meadow.btn.disabled.active, .green-meadow.btn[disabled], .green-meadow.btn[disabled]:hover, .green-meadow.btn[disabled]:focus, .green-meadow.btn[disabled]:active, .green-meadow.btn[disabled].active, fieldset[disabled] .green-meadow.btn, fieldset[disabled] .green-meadow.btn:hover, fieldset[disabled] .green-meadow.btn:focus, fieldset[disabled] .green-meadow.btn:active, fieldset[disabled] .green-meadow.btn.active {
    background-color: #1BBC9B;
}

.green-meadow.btn .badge {
    color: #1BBC9B;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-meadow-stripe {
    border-left: 3px solid #1BBC9B;
}

/* Portlet */
.portlet > .portlet-body.green-meadow,
.portlet.green-meadow {
    background-color: #1BBC9B;
}

.portlet.solid.green-meadow > .portlet-title,
.portlet.solid.green-meadow > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-meadow > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-meadow > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-meadow {
    border: 1px solid #2ae0bb;
    border-top: 0;
}

    .portlet.box.green-meadow > .portlet-title {
        background-color: #1BBC9B;
    }

        .portlet.box.green-meadow > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-meadow > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-meadow > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #5fe8cc;
            color: #75ebd3;
        }

            .portlet.box.green-meadow > .portlet-title > .actions .btn-default > i {
                color: #83edd7;
            }

            .portlet.box.green-meadow > .portlet-title > .actions .btn-default:hover, .portlet.box.green-meadow > .portlet-title > .actions .btn-default:focus, .portlet.box.green-meadow > .portlet-title > .actions .btn-default:active, .portlet.box.green-meadow > .portlet-title > .actions .btn-default.active {
                border: 1px solid #8ceeda;
                color: #a2f2e1;
            }

/* Statistic Block */
.dashboard-stat.green-meadow {
    background-color: #1BBC9B;
}

    .dashboard-stat.green-meadow.dashboard-stat-light:hover {
        background-color: #18aa8c;
    }

    .dashboard-stat.green-meadow .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-meadow .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-meadow .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-meadow .more {
        color: #FFFFFF;
        background-color: #18aa8c;
    }

/* General Element */
.bg-green-meadow {
    border-color: #1BBC9B !important;
    background-image: none !important;
    background-color: #1BBC9B !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-meadow {
    color: #1BBC9B !important;
}

.progress-bar.green-meadow {
    background: #1BBC9B !important;
    color: #FFFFFF !important;
}

/***
Green Seagreen
***/
/* Button */
.green-seagreen.btn {
    color: #FFFFFF;
    background-color: #1BA39C;
    border-color: "";
}

    .green-seagreen.btn:hover, .green-seagreen.btn:focus, .green-seagreen.btn:active, .green-seagreen.btn.active {
        color: #FFFFFF;
        background-color: #16847f;
    }

.open .green-seagreen.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #16847f;
}

.green-seagreen.btn:active, .green-seagreen.btn.active {
    background-image: none;
    background-color: #126e6a;
}

    .green-seagreen.btn:active:hover, .green-seagreen.btn.active:hover {
        background-color: #147772;
    }

.open .green-seagreen.btn.dropdown-toggle {
    background-image: none;
}

.green-seagreen.btn.disabled, .green-seagreen.btn.disabled:hover, .green-seagreen.btn.disabled:focus, .green-seagreen.btn.disabled:active, .green-seagreen.btn.disabled.active, .green-seagreen.btn[disabled], .green-seagreen.btn[disabled]:hover, .green-seagreen.btn[disabled]:focus, .green-seagreen.btn[disabled]:active, .green-seagreen.btn[disabled].active, fieldset[disabled] .green-seagreen.btn, fieldset[disabled] .green-seagreen.btn:hover, fieldset[disabled] .green-seagreen.btn:focus, fieldset[disabled] .green-seagreen.btn:active, fieldset[disabled] .green-seagreen.btn.active {
    background-color: #1BA39C;
}

.green-seagreen.btn .badge {
    color: #1BA39C;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-seagreen-stripe {
    border-left: 3px solid #1BA39C;
}

/* Portlet */
.portlet > .portlet-body.green-seagreen,
.portlet.green-seagreen {
    background-color: #1BA39C;
}

.portlet.solid.green-seagreen > .portlet-title,
.portlet.solid.green-seagreen > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-seagreen > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-seagreen > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-seagreen {
    border: 1px solid #22cfc6;
    border-top: 0;
}

    .portlet.box.green-seagreen > .portlet-title {
        background-color: #1BA39C;
    }

        .portlet.box.green-seagreen > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-seagreen > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-seagreen > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #4de1da;
            color: #63e5de;
        }

            .portlet.box.green-seagreen > .portlet-title > .actions .btn-default > i {
                color: #70e7e1;
            }

            .portlet.box.green-seagreen > .portlet-title > .actions .btn-default:hover, .portlet.box.green-seagreen > .portlet-title > .actions .btn-default:focus, .portlet.box.green-seagreen > .portlet-title > .actions .btn-default:active, .portlet.box.green-seagreen > .portlet-title > .actions .btn-default.active {
                border: 1px solid #78e9e3;
                color: #8eece8;
            }

/* Statistic Block */
.dashboard-stat.green-seagreen {
    background-color: #1BA39C;
}

    .dashboard-stat.green-seagreen.dashboard-stat-light:hover {
        background-color: #18918b;
    }

    .dashboard-stat.green-seagreen .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-seagreen .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-seagreen .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-seagreen .more {
        color: #FFFFFF;
        background-color: #18918b;
    }

/* General Element */
.bg-green-seagreen {
    border-color: #1BA39C !important;
    background-image: none !important;
    background-color: #1BA39C !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-seagreen {
    color: #1BA39C !important;
}

.progress-bar.green-seagreen {
    background: #1BA39C !important;
    color: #FFFFFF !important;
}

/***
Green Turquoise
***/
/* Button */
.green-turquoise.btn {
    color: #FFFFFF;
    background-color: #36D7B7;
    border-color: "";
}

    .green-turquoise.btn:hover, .green-turquoise.btn:focus, .green-turquoise.btn:active, .green-turquoise.btn.active {
        color: #FFFFFF;
        background-color: #27c3a4;
    }

.open .green-turquoise.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #27c3a4;
}

.green-turquoise.btn:active, .green-turquoise.btn.active {
    background-image: none;
    background-color: #22ad92;
}

    .green-turquoise.btn:active:hover, .green-turquoise.btn.active:hover {
        background-color: #24b699;
    }

.open .green-turquoise.btn.dropdown-toggle {
    background-image: none;
}

.green-turquoise.btn.disabled, .green-turquoise.btn.disabled:hover, .green-turquoise.btn.disabled:focus, .green-turquoise.btn.disabled:active, .green-turquoise.btn.disabled.active, .green-turquoise.btn[disabled], .green-turquoise.btn[disabled]:hover, .green-turquoise.btn[disabled]:focus, .green-turquoise.btn[disabled]:active, .green-turquoise.btn[disabled].active, fieldset[disabled] .green-turquoise.btn, fieldset[disabled] .green-turquoise.btn:hover, fieldset[disabled] .green-turquoise.btn:focus, fieldset[disabled] .green-turquoise.btn:active, fieldset[disabled] .green-turquoise.btn.active {
    background-color: #36D7B7;
}

.green-turquoise.btn .badge {
    color: #36D7B7;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-turquoise-stripe {
    border-left: 3px solid #36D7B7;
}

/* Portlet */
.portlet > .portlet-body.green-turquoise,
.portlet.green-turquoise {
    background-color: #36D7B7;
}

.portlet.solid.green-turquoise > .portlet-title,
.portlet.solid.green-turquoise > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-turquoise > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-turquoise > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-turquoise {
    border: 1px solid #61dfc6;
    border-top: 0;
}

    .portlet.box.green-turquoise > .portlet-title {
        background-color: #36D7B7;
    }

        .portlet.box.green-turquoise > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-turquoise > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-turquoise > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #94ead9;
            color: #a9eee0;
        }

            .portlet.box.green-turquoise > .portlet-title > .actions .btn-default > i {
                color: #b6f0e5;
            }

            .portlet.box.green-turquoise > .portlet-title > .actions .btn-default:hover, .portlet.box.green-turquoise > .portlet-title > .actions .btn-default:focus, .portlet.box.green-turquoise > .portlet-title > .actions .btn-default:active, .portlet.box.green-turquoise > .portlet-title > .actions .btn-default.active {
                border: 1px solid #bef2e8;
                color: #d3f6ef;
            }

/* Statistic Block */
.dashboard-stat.green-turquoise {
    background-color: #36D7B7;
}

    .dashboard-stat.green-turquoise.dashboard-stat-light:hover {
        background-color: #29cfae;
    }

    .dashboard-stat.green-turquoise .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-turquoise .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-turquoise .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-turquoise .more {
        color: #FFFFFF;
        background-color: #29cfae;
    }

/* General Element */
.bg-green-turquoise {
    border-color: #36D7B7 !important;
    background-image: none !important;
    background-color: #36D7B7 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-turquoise {
    color: #36D7B7 !important;
}

.progress-bar.green-turquoise {
    background: #36D7B7 !important;
    color: #FFFFFF !important;
}

/***
Green Haze
***/
/* Button */
.green-haze.btn {
    color: #FFFFFF;
    background-color: #44b6ae;
    border-color: "";
}

    .green-haze.btn:hover, .green-haze.btn:focus, .green-haze.btn:active, .green-haze.btn.active {
        color: #FFFFFF;
        background-color: #3a9c95;
    }

.open .green-haze.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #3a9c95;
}

.green-haze.btn:active, .green-haze.btn.active {
    background-image: none;
    background-color: #338983;
}

    .green-haze.btn:active:hover, .green-haze.btn.active:hover {
        background-color: #36918b;
    }

.open .green-haze.btn.dropdown-toggle {
    background-image: none;
}

.green-haze.btn.disabled, .green-haze.btn.disabled:hover, .green-haze.btn.disabled:focus, .green-haze.btn.disabled:active, .green-haze.btn.disabled.active, .green-haze.btn[disabled], .green-haze.btn[disabled]:hover, .green-haze.btn[disabled]:focus, .green-haze.btn[disabled]:active, .green-haze.btn[disabled].active, fieldset[disabled] .green-haze.btn, fieldset[disabled] .green-haze.btn:hover, fieldset[disabled] .green-haze.btn:focus, fieldset[disabled] .green-haze.btn:active, fieldset[disabled] .green-haze.btn.active {
    background-color: #44b6ae;
}

.green-haze.btn .badge {
    color: #44b6ae;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-haze-stripe {
    border-left: 3px solid #44b6ae;
}

/* Portlet */
.portlet > .portlet-body.green-haze,
.portlet.green-haze {
    background-color: #44b6ae;
}

.portlet.solid.green-haze > .portlet-title,
.portlet.solid.green-haze > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-haze > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-haze > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-haze {
    border: 1px solid #67c6bf;
    border-top: 0;
}

    .portlet.box.green-haze > .portlet-title {
        background-color: #44b6ae;
    }

        .portlet.box.green-haze > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-haze > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-haze > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #93d7d2;
            color: #a6deda;
        }

            .portlet.box.green-haze > .portlet-title > .actions .btn-default > i {
                color: #b1e2de;
            }

            .portlet.box.green-haze > .portlet-title > .actions .btn-default:hover, .portlet.box.green-haze > .portlet-title > .actions .btn-default:focus, .portlet.box.green-haze > .portlet-title > .actions .btn-default:active, .portlet.box.green-haze > .portlet-title > .actions .btn-default.active {
                border: 1px solid #b9e5e2;
                color: #cbece9;
            }

/* Statistic Block */
.dashboard-stat.green-haze {
    background-color: #44b6ae;
}

    .dashboard-stat.green-haze.dashboard-stat-light:hover {
        background-color: #3ea7a0;
    }

    .dashboard-stat.green-haze .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-haze .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-haze .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-haze .more {
        color: #FFFFFF;
        background-color: #3ea7a0;
    }

/* General Element */
.bg-green-haze {
    border-color: #44b6ae !important;
    background-image: none !important;
    background-color: #44b6ae !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-haze {
    color: #44b6ae !important;
}

.progress-bar.green-haze {
    background: #44b6ae !important;
    color: #FFFFFF !important;
}

/***
Green Jungle
***/
/* Button */
.green-jungle.btn {
    color: #FFFFFF;
    background-color: #26C281;
    border-color: "";
}

    .green-jungle.btn:hover, .green-jungle.btn:focus, .green-jungle.btn:active, .green-jungle.btn.active {
        color: #FFFFFF;
        background-color: #20a46d;
    }

.open .green-jungle.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #20a46d;
}

.green-jungle.btn:active, .green-jungle.btn.active {
    background-image: none;
    background-color: #1c8f5f;
}

    .green-jungle.btn:active:hover, .green-jungle.btn.active:hover {
        background-color: #1e9765;
    }

.open .green-jungle.btn.dropdown-toggle {
    background-image: none;
}

.green-jungle.btn.disabled, .green-jungle.btn.disabled:hover, .green-jungle.btn.disabled:focus, .green-jungle.btn.disabled:active, .green-jungle.btn.disabled.active, .green-jungle.btn[disabled], .green-jungle.btn[disabled]:hover, .green-jungle.btn[disabled]:focus, .green-jungle.btn[disabled]:active, .green-jungle.btn[disabled].active, fieldset[disabled] .green-jungle.btn, fieldset[disabled] .green-jungle.btn:hover, fieldset[disabled] .green-jungle.btn:focus, fieldset[disabled] .green-jungle.btn:active, fieldset[disabled] .green-jungle.btn.active {
    background-color: #26C281;
}

.green-jungle.btn .badge {
    color: #26C281;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-jungle-stripe {
    border-left: 3px solid #26C281;
}

/* Portlet */
.portlet > .portlet-body.green-jungle,
.portlet.green-jungle {
    background-color: #26C281;
}

.portlet.solid.green-jungle > .portlet-title,
.portlet.solid.green-jungle > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-jungle > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-jungle > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-jungle {
    border: 1px solid #41da9a;
    border-top: 0;
}

    .portlet.box.green-jungle > .portlet-title {
        background-color: #26C281;
    }

        .portlet.box.green-jungle > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-jungle > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-jungle > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #74e4b5;
            color: #8ae8c1;
        }

            .portlet.box.green-jungle > .portlet-title > .actions .btn-default > i {
                color: #96ebc8;
            }

            .portlet.box.green-jungle > .portlet-title > .actions .btn-default:hover, .portlet.box.green-jungle > .portlet-title > .actions .btn-default:focus, .portlet.box.green-jungle > .portlet-title > .actions .btn-default:active, .portlet.box.green-jungle > .portlet-title > .actions .btn-default.active {
                border: 1px solid #9feccc;
                color: #b4f0d7;
            }

/* Statistic Block */
.dashboard-stat.green-jungle {
    background-color: #26C281;
}

    .dashboard-stat.green-jungle.dashboard-stat-light:hover {
        background-color: #23b176;
    }

    .dashboard-stat.green-jungle .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-jungle .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-jungle .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-jungle .more {
        color: #FFFFFF;
        background-color: #23b176;
    }

/* General Element */
.bg-green-jungle {
    border-color: #26C281 !important;
    background-image: none !important;
    background-color: #26C281 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-jungle {
    color: #26C281 !important;
}

.progress-bar.green-jungle {
    background: #26C281 !important;
    color: #FFFFFF !important;
}

/***
Green Sharp
***/
/* Button */
.green-sharp.btn {
    color: #FFFFFF;
    background-color: #4DB3A2;
    border-color: "";
}

    .green-sharp.btn:hover, .green-sharp.btn:focus, .green-sharp.btn:active, .green-sharp.btn.active {
        color: #FFFFFF;
        background-color: #429a8c;
    }

.open .green-sharp.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #429a8c;
}

.green-sharp.btn:active, .green-sharp.btn.active {
    background-image: none;
    background-color: #3a897b;
}

    .green-sharp.btn:active:hover, .green-sharp.btn.active:hover {
        background-color: #3d9082;
    }

.open .green-sharp.btn.dropdown-toggle {
    background-image: none;
}

.green-sharp.btn.disabled, .green-sharp.btn.disabled:hover, .green-sharp.btn.disabled:focus, .green-sharp.btn.disabled:active, .green-sharp.btn.disabled.active, .green-sharp.btn[disabled], .green-sharp.btn[disabled]:hover, .green-sharp.btn[disabled]:focus, .green-sharp.btn[disabled]:active, .green-sharp.btn[disabled].active, fieldset[disabled] .green-sharp.btn, fieldset[disabled] .green-sharp.btn:hover, fieldset[disabled] .green-sharp.btn:focus, fieldset[disabled] .green-sharp.btn:active, fieldset[disabled] .green-sharp.btn.active {
    background-color: #4DB3A2;
}

.green-sharp.btn .badge {
    color: #4DB3A2;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-sharp-stripe {
    border-left: 3px solid #4DB3A2;
}

/* Portlet */
.portlet > .portlet-body.green-sharp,
.portlet.green-sharp {
    background-color: #4DB3A2;
}

.portlet.solid.green-sharp > .portlet-title,
.portlet.solid.green-sharp > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-sharp > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-sharp > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-sharp {
    border: 1px solid #71c2b5;
    border-top: 0;
}

    .portlet.box.green-sharp > .portlet-title {
        background-color: #4DB3A2;
    }

        .portlet.box.green-sharp > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-sharp > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-sharp > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #9cd5cb;
            color: #addcd4;
        }

            .portlet.box.green-sharp > .portlet-title > .actions .btn-default > i {
                color: #b8e1da;
            }

            .portlet.box.green-sharp > .portlet-title > .actions .btn-default:hover, .portlet.box.green-sharp > .portlet-title > .actions .btn-default:focus, .portlet.box.green-sharp > .portlet-title > .actions .btn-default:active, .portlet.box.green-sharp > .portlet-title > .actions .btn-default.active {
                border: 1px solid #bfe4de;
                color: #d1ebe7;
            }

/* Statistic Block */
.dashboard-stat.green-sharp {
    background-color: #4DB3A2;
}

    .dashboard-stat.green-sharp.dashboard-stat-light:hover {
        background-color: #46a595;
    }

    .dashboard-stat.green-sharp .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-sharp .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-sharp .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-sharp .more {
        color: #FFFFFF;
        background-color: #46a595;
    }

/* General Element */
.bg-green-sharp {
    border-color: #4DB3A2 !important;
    background-image: none !important;
    background-color: #4DB3A2 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-sharp {
    color: #4DB3A2 !important;
}

.progress-bar.green-sharp {
    background: #4DB3A2 !important;
    color: #FFFFFF !important;
}

/***
Green Sharp
***/
/* Button */
.green-soft.btn {
    color: #FFFFFF;
    background-color: #3faba4;
    border-color: "";
}

    .green-soft.btn:hover, .green-soft.btn:focus, .green-soft.btn:active, .green-soft.btn.active {
        color: #FFFFFF;
        background-color: #35918b;
    }

.open .green-soft.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #35918b;
}

.green-soft.btn:active, .green-soft.btn.active {
    background-image: none;
    background-color: #2f7e79;
}

    .green-soft.btn:active:hover, .green-soft.btn.active:hover {
        background-color: #318680;
    }

.open .green-soft.btn.dropdown-toggle {
    background-image: none;
}

.green-soft.btn.disabled, .green-soft.btn.disabled:hover, .green-soft.btn.disabled:focus, .green-soft.btn.disabled:active, .green-soft.btn.disabled.active, .green-soft.btn[disabled], .green-soft.btn[disabled]:hover, .green-soft.btn[disabled]:focus, .green-soft.btn[disabled]:active, .green-soft.btn[disabled].active, fieldset[disabled] .green-soft.btn, fieldset[disabled] .green-soft.btn:hover, fieldset[disabled] .green-soft.btn:focus, fieldset[disabled] .green-soft.btn:active, fieldset[disabled] .green-soft.btn.active {
    background-color: #3faba4;
}

.green-soft.btn .badge {
    color: #3faba4;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.green-soft-stripe {
    border-left: 3px solid #3faba4;
}

/* Portlet */
.portlet > .portlet-body.green-soft,
.portlet.green-soft {
    background-color: #3faba4;
}

.portlet.solid.green-soft > .portlet-title,
.portlet.solid.green-soft > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.green-soft > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.green-soft > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.green-soft {
    border: 1px solid #5bc2bc;
    border-top: 0;
}

    .portlet.box.green-soft > .portlet-title {
        background-color: #3faba4;
    }

        .portlet.box.green-soft > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.green-soft > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.green-soft > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #87d3ce;
            color: #9adad6;
        }

            .portlet.box.green-soft > .portlet-title > .actions .btn-default > i {
                color: #a5deda;
            }

            .portlet.box.green-soft > .portlet-title > .actions .btn-default:hover, .portlet.box.green-soft > .portlet-title > .actions .btn-default:focus, .portlet.box.green-soft > .portlet-title > .actions .btn-default:active, .portlet.box.green-soft > .portlet-title > .actions .btn-default.active {
                border: 1px solid #ade1dd;
                color: #bfe7e5;
            }

/* Statistic Block */
.dashboard-stat.green-soft {
    background-color: #3faba4;
}

    .dashboard-stat.green-soft.dashboard-stat-light:hover {
        background-color: #3a9c96;
    }

    .dashboard-stat.green-soft .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.green-soft .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.green-soft .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.green-soft .more {
        color: #FFFFFF;
        background-color: #3a9c96;
    }

/* General Element */
.bg-green-soft {
    border-color: #3faba4 !important;
    background-image: none !important;
    background-color: #3faba4 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-green-soft {
    color: #3faba4 !important;
}

.progress-bar.green-soft {
    background: #3faba4 !important;
    color: #FFFFFF !important;
}

/***********
Grey Colors
************/
/***
Grey Default
***/
/* Button */
.grey.btn {
    color: #333333;
    background-color: #E5E5E5;
    border-color: "";
}

    .grey.btn:hover, .grey.btn:focus, .grey.btn:active, .grey.btn.active {
        color: #333333;
        background-color: lightgray;
    }

.open .grey.btn.dropdown-toggle {
    color: #333333;
    background-color: lightgray;
}

.grey.btn:active, .grey.btn.active {
    background-image: none;
    background-color: #c6c6c6;
}

    .grey.btn:active:hover, .grey.btn.active:hover {
        background-color: #cccccc;
    }

.open .grey.btn.dropdown-toggle {
    background-image: none;
}

.grey.btn.disabled, .grey.btn.disabled:hover, .grey.btn.disabled:focus, .grey.btn.disabled:active, .grey.btn.disabled.active, .grey.btn[disabled], .grey.btn[disabled]:hover, .grey.btn[disabled]:focus, .grey.btn[disabled]:active, .grey.btn[disabled].active, fieldset[disabled] .grey.btn, fieldset[disabled] .grey.btn:hover, fieldset[disabled] .grey.btn:focus, fieldset[disabled] .grey.btn:active, fieldset[disabled] .grey.btn.active {
    background-color: #E5E5E5;
}

.grey.btn .badge {
    color: #E5E5E5;
    background-color: #333333;
}

/* Button Strip */
.btn.grey-stripe {
    border-left: 3px solid #E5E5E5;
}

/* Portlet */
.portlet > .portlet-body.grey,
.portlet.grey {
    background-color: #E5E5E5;
}

.portlet.solid.grey > .portlet-title,
.portlet.solid.grey > .portlet-body {
    border: 0;
    color: #333333;
}

    .portlet.solid.grey > .portlet-title > .caption > i {
        color: #333333;
    }

    .portlet.solid.grey > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey {
    border: 1px solid white;
    border-top: 0;
}

    .portlet.box.grey > .portlet-title {
        background-color: #E5E5E5;
    }

        .portlet.box.grey > .portlet-title > .caption {
            color: #333333;
        }

            .portlet.box.grey > .portlet-title > .caption > i {
                color: #333333;
            }

        .portlet.box.grey > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid white;
            color: white;
        }

            .portlet.box.grey > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey > .portlet-title > .actions .btn-default:hover, .portlet.box.grey > .portlet-title > .actions .btn-default:focus, .portlet.box.grey > .portlet-title > .actions .btn-default:active, .portlet.box.grey > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey {
    background-color: #E5E5E5;
}

    .dashboard-stat.grey.dashboard-stat-light:hover {
        background-color: #dbdbdb;
    }

    .dashboard-stat.grey .visual > i {
        color: #333333;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey .details .number {
        color: #333333;
    }

    .dashboard-stat.grey .details .desc {
        color: #333333;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey .more {
        color: #333333;
        background-color: #dbdbdb;
    }

/* General Element */
.bg-grey {
    border-color: #E5E5E5 !important;
    background-image: none !important;
    background-color: #E5E5E5 !important;
    color: #333333 !important;
}

/* General Text & Icon Font Colors */
.font-grey {
    color: #E5E5E5 !important;
}

.progress-bar.grey {
    background: #E5E5E5 !important;
    color: #333333 !important;
}

/***
Grey Steel
***/
/* Button */
.grey-steel.btn {
    color: #80898e;
    background-color: #e9edef;
    border-color: "";
}

    .grey-steel.btn:hover, .grey-steel.btn:focus, .grey-steel.btn:active, .grey-steel.btn.active {
        color: #80898e;
        background-color: #d4dce0;
    }

.open .grey-steel.btn.dropdown-toggle {
    color: #80898e;
    background-color: #d4dce0;
}

.grey-steel.btn:active, .grey-steel.btn.active {
    background-image: none;
    background-color: #c6d0d5;
}

    .grey-steel.btn:active:hover, .grey-steel.btn.active:hover {
        background-color: #cbd5da;
    }

.open .grey-steel.btn.dropdown-toggle {
    background-image: none;
}

.grey-steel.btn.disabled, .grey-steel.btn.disabled:hover, .grey-steel.btn.disabled:focus, .grey-steel.btn.disabled:active, .grey-steel.btn.disabled.active, .grey-steel.btn[disabled], .grey-steel.btn[disabled]:hover, .grey-steel.btn[disabled]:focus, .grey-steel.btn[disabled]:active, .grey-steel.btn[disabled].active, fieldset[disabled] .grey-steel.btn, fieldset[disabled] .grey-steel.btn:hover, fieldset[disabled] .grey-steel.btn:focus, fieldset[disabled] .grey-steel.btn:active, fieldset[disabled] .grey-steel.btn.active {
    background-color: #e9edef;
}

.grey-steel.btn .badge {
    color: #e9edef;
    background-color: #80898e;
}

/* Button Strip */
.btn.grey-steel-stripe {
    border-left: 3px solid #e9edef;
}

/* Portlet */
.portlet > .portlet-body.grey-steel,
.portlet.grey-steel {
    background-color: #e9edef;
}

.portlet.solid.grey-steel > .portlet-title,
.portlet.solid.grey-steel > .portlet-body {
    border: 0;
    color: #80898e;
}

    .portlet.solid.grey-steel > .portlet-title > .caption > i {
        color: #80898e;
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-steel > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-steel {
    border: 1px solid white;
    border-top: 0;
}

    .portlet.box.grey-steel > .portlet-title {
        background-color: #e9edef;
    }

        .portlet.box.grey-steel > .portlet-title > .caption {
            color: #80898e;
        }

            .portlet.box.grey-steel > .portlet-title > .caption > i {
                color: #80898e;
            }

        .portlet.box.grey-steel > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid white;
            color: white;
        }

            .portlet.box.grey-steel > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey-steel > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-steel > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-steel > .portlet-title > .actions .btn-default:active, .portlet.box.grey-steel > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-steel {
    background-color: #e9edef;
}

    .dashboard-stat.grey-steel.dashboard-stat-light:hover {
        background-color: #dde3e6;
    }

    .dashboard-stat.grey-steel .visual > i {
        color: #80898e;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-steel .details .number {
        color: #80898e;
    }

    .dashboard-stat.grey-steel .details .desc {
        color: #80898e;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-steel .more {
        color: #80898e;
        background-color: #dde3e6;
    }

/* General Element */
.bg-grey-steel {
    border-color: #e9edef !important;
    background-image: none !important;
    background-color: #e9edef !important;
    color: #80898e !important;
}

/* General Text & Icon Font Colors */
.font-grey-steel {
    color: #e9edef !important;
}

.progress-bar.grey-steel {
    background: #e9edef !important;
    color: #80898e !important;
}

/***
Grey Cararra
***/
/* Button */
.grey-cararra.btn {
    color: #333333;
    background-color: #fafafa;
    border-color: "";
}

    .grey-cararra.btn:hover, .grey-cararra.btn:focus, .grey-cararra.btn:active, .grey-cararra.btn.active {
        color: #333333;
        background-color: #e8e8e8;
    }

.open .grey-cararra.btn.dropdown-toggle {
    color: #333333;
    background-color: #e8e8e8;
}

.grey-cararra.btn:active, .grey-cararra.btn.active {
    background-image: none;
    background-color: #dbdbdb;
}

    .grey-cararra.btn:active:hover, .grey-cararra.btn.active:hover {
        background-color: #e1e1e1;
    }

.open .grey-cararra.btn.dropdown-toggle {
    background-image: none;
}

.grey-cararra.btn.disabled, .grey-cararra.btn.disabled:hover, .grey-cararra.btn.disabled:focus, .grey-cararra.btn.disabled:active, .grey-cararra.btn.disabled.active, .grey-cararra.btn[disabled], .grey-cararra.btn[disabled]:hover, .grey-cararra.btn[disabled]:focus, .grey-cararra.btn[disabled]:active, .grey-cararra.btn[disabled].active, fieldset[disabled] .grey-cararra.btn, fieldset[disabled] .grey-cararra.btn:hover, fieldset[disabled] .grey-cararra.btn:focus, fieldset[disabled] .grey-cararra.btn:active, fieldset[disabled] .grey-cararra.btn.active {
    background-color: #fafafa;
}

.grey-cararra.btn .badge {
    color: #fafafa;
    background-color: #333333;
}

/* Button Strip */
.btn.grey-cararra-stripe {
    border-left: 3px solid #fafafa;
}

/* Portlet */
.portlet > .portlet-body.grey-cararra,
.portlet.grey-cararra {
    background-color: #fafafa;
}

.portlet.solid.grey-cararra > .portlet-title,
.portlet.solid.grey-cararra > .portlet-body {
    border: 0;
    color: #333333;
}

    .portlet.solid.grey-cararra > .portlet-title > .caption > i {
        color: #333333;
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-cararra > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-cararra {
    border: 1px solid white;
    border-top: 0;
}

    .portlet.box.grey-cararra > .portlet-title {
        background-color: #fafafa;
    }

        .portlet.box.grey-cararra > .portlet-title > .caption {
            color: #333333;
        }

            .portlet.box.grey-cararra > .portlet-title > .caption > i {
                color: #333333;
            }

        .portlet.box.grey-cararra > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid white;
            color: white;
        }

            .portlet.box.grey-cararra > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey-cararra > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-cararra > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-cararra > .portlet-title > .actions .btn-default:active, .portlet.box.grey-cararra > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-cararra {
    background-color: #fafafa;
}

    .dashboard-stat.grey-cararra.dashboard-stat-light:hover {
        background-color: #f0f0f0;
    }

    .dashboard-stat.grey-cararra .visual > i {
        color: #333333;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-cararra .details .number {
        color: #333333;
    }

    .dashboard-stat.grey-cararra .details .desc {
        color: #333333;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-cararra .more {
        color: #333333;
        background-color: #f0f0f0;
    }

/* General Element */
.bg-grey-cararra {
    border-color: #fafafa !important;
    background-image: none !important;
    background-color: #fafafa !important;
    color: #333333 !important;
}

/* General Text & Icon Font Colors */
.font-grey-cararra {
    color: #fafafa !important;
}

.progress-bar.grey-cararra {
    background: #fafafa !important;
    color: #333333 !important;
}

/***
Grey Gallery
***/
/* Button */
.grey-gallery.btn {
    color: #ffffff;
    background-color: #555555;
    border-color: "";
}

    .grey-gallery.btn:hover, .grey-gallery.btn:focus, .grey-gallery.btn:active, .grey-gallery.btn.active {
        color: #ffffff;
        background-color: #434343;
    }

.open .grey-gallery.btn.dropdown-toggle {
    color: #ffffff;
    background-color: #434343;
}

.grey-gallery.btn:active, .grey-gallery.btn.active {
    background-image: none;
    background-color: #363636;
}

    .grey-gallery.btn:active:hover, .grey-gallery.btn.active:hover {
        background-color: #3b3b3b;
    }

.open .grey-gallery.btn.dropdown-toggle {
    background-image: none;
}

.grey-gallery.btn.disabled, .grey-gallery.btn.disabled:hover, .grey-gallery.btn.disabled:focus, .grey-gallery.btn.disabled:active, .grey-gallery.btn.disabled.active, .grey-gallery.btn[disabled], .grey-gallery.btn[disabled]:hover, .grey-gallery.btn[disabled]:focus, .grey-gallery.btn[disabled]:active, .grey-gallery.btn[disabled].active, fieldset[disabled] .grey-gallery.btn, fieldset[disabled] .grey-gallery.btn:hover, fieldset[disabled] .grey-gallery.btn:focus, fieldset[disabled] .grey-gallery.btn:active, fieldset[disabled] .grey-gallery.btn.active {
    background-color: #555555;
}

.grey-gallery.btn .badge {
    color: #555555;
    background-color: #ffffff;
}

/* Button Strip */
.btn.grey-gallery-stripe {
    border-left: 3px solid #555555;
}

/* Portlet */
.portlet > .portlet-body.grey-gallery,
.portlet.grey-gallery {
    background-color: #555555;
}

.portlet.solid.grey-gallery > .portlet-title,
.portlet.solid.grey-gallery > .portlet-body {
    border: 0;
    color: #ffffff;
}

    .portlet.solid.grey-gallery > .portlet-title > .caption > i {
        color: #ffffff;
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-gallery > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-gallery {
    border: 1px solid #6e6e6e;
    border-top: 0;
}

    .portlet.box.grey-gallery > .portlet-title {
        background-color: #555555;
    }

        .portlet.box.grey-gallery > .portlet-title > .caption {
            color: #ffffff;
        }

            .portlet.box.grey-gallery > .portlet-title > .caption > i {
                color: #ffffff;
            }

        .portlet.box.grey-gallery > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #8d8d8d;
            color: #9a9a9a;
        }

            .portlet.box.grey-gallery > .portlet-title > .actions .btn-default > i {
                color: #a2a2a2;
            }

            .portlet.box.grey-gallery > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-gallery > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-gallery > .portlet-title > .actions .btn-default:active, .portlet.box.grey-gallery > .portlet-title > .actions .btn-default.active {
                border: 1px solid #a7a7a7;
                color: #b3b3b3;
            }

/* Statistic Block */
.dashboard-stat.grey-gallery {
    background-color: #555555;
}

    .dashboard-stat.grey-gallery.dashboard-stat-light:hover {
        background-color: #4b4b4b;
    }

    .dashboard-stat.grey-gallery .visual > i {
        color: #ffffff;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-gallery .details .number {
        color: #ffffff;
    }

    .dashboard-stat.grey-gallery .details .desc {
        color: #ffffff;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-gallery .more {
        color: #ffffff;
        background-color: #4b4b4b;
    }

/* General Element */
.bg-grey-gallery {
    border-color: #555555 !important;
    background-image: none !important;
    background-color: #555555 !important;
    color: #ffffff !important;
}

/* General Text & Icon Font Colors */
.font-grey-gallery {
    color: #555555 !important;
}

.progress-bar.grey-gallery {
    background: #555555 !important;
    color: #ffffff !important;
}

/***
Grey Cascade
***/
/* Button */
.grey-cascade.btn {
    color: #FFFFFF;
    background-color: #95A5A6;
    border-color: "";
}

    .grey-cascade.btn:hover, .grey-cascade.btn:focus, .grey-cascade.btn:active, .grey-cascade.btn.active {
        color: #FFFFFF;
        background-color: #829596;
    }

.open .grey-cascade.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #829596;
}

.grey-cascade.btn:active, .grey-cascade.btn.active {
    background-image: none;
    background-color: #74898a;
}

    .grey-cascade.btn:active:hover, .grey-cascade.btn.active:hover {
        background-color: #798d8f;
    }

.open .grey-cascade.btn.dropdown-toggle {
    background-image: none;
}

.grey-cascade.btn.disabled, .grey-cascade.btn.disabled:hover, .grey-cascade.btn.disabled:focus, .grey-cascade.btn.disabled:active, .grey-cascade.btn.disabled.active, .grey-cascade.btn[disabled], .grey-cascade.btn[disabled]:hover, .grey-cascade.btn[disabled]:focus, .grey-cascade.btn[disabled]:active, .grey-cascade.btn[disabled].active, fieldset[disabled] .grey-cascade.btn, fieldset[disabled] .grey-cascade.btn:hover, fieldset[disabled] .grey-cascade.btn:focus, fieldset[disabled] .grey-cascade.btn:active, fieldset[disabled] .grey-cascade.btn.active {
    background-color: #95A5A6;
}

.grey-cascade.btn .badge {
    color: #95A5A6;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.grey-cascade-stripe {
    border-left: 3px solid #95A5A6;
}

/* Portlet */
.portlet > .portlet-body.grey-cascade,
.portlet.grey-cascade {
    background-color: #95A5A6;
}

.portlet.solid.grey-cascade > .portlet-title,
.portlet.solid.grey-cascade > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.grey-cascade > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-cascade > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-cascade {
    border: 1px solid #b1bdbd;
    border-top: 0;
}

    .portlet.box.grey-cascade > .portlet-title {
        background-color: #95A5A6;
    }

        .portlet.box.grey-cascade > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.grey-cascade > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.grey-cascade > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #d2d9d9;
            color: #e0e5e5;
        }

            .portlet.box.grey-cascade > .portlet-title > .actions .btn-default > i {
                color: #e8ecec;
            }

            .portlet.box.grey-cascade > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-cascade > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-cascade > .portlet-title > .actions .btn-default:active, .portlet.box.grey-cascade > .portlet-title > .actions .btn-default.active {
                border: 1px solid #eef0f0;
                color: #fcfcfc;
            }

/* Statistic Block */
.dashboard-stat.grey-cascade {
    background-color: #95A5A6;
}

    .dashboard-stat.grey-cascade.dashboard-stat-light:hover {
        background-color: #8a9c9d;
    }

    .dashboard-stat.grey-cascade .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-cascade .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.grey-cascade .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-cascade .more {
        color: #FFFFFF;
        background-color: #8a9c9d;
    }

/* General Element */
.bg-grey-cascade {
    border-color: #95A5A6 !important;
    background-image: none !important;
    background-color: #95A5A6 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-grey-cascade {
    color: #95A5A6 !important;
}

.progress-bar.grey-cascade {
    background: #95A5A6 !important;
    color: #FFFFFF !important;
}

/***
Grey Silver
***/
/* Button */
.grey-silver.btn {
    color: #FAFCFB;
    background-color: #BFBFBF;
    border-color: "";
}

    .grey-silver.btn:hover, .grey-silver.btn:focus, .grey-silver.btn:active, .grey-silver.btn.active {
        color: #FAFCFB;
        background-color: #adadad;
    }

.open .grey-silver.btn.dropdown-toggle {
    color: #FAFCFB;
    background-color: #adadad;
}

.grey-silver.btn:active, .grey-silver.btn.active {
    background-image: none;
    background-color: #a0a0a0;
}

    .grey-silver.btn:active:hover, .grey-silver.btn.active:hover {
        background-color: #a6a6a6;
    }

.open .grey-silver.btn.dropdown-toggle {
    background-image: none;
}

.grey-silver.btn.disabled, .grey-silver.btn.disabled:hover, .grey-silver.btn.disabled:focus, .grey-silver.btn.disabled:active, .grey-silver.btn.disabled.active, .grey-silver.btn[disabled], .grey-silver.btn[disabled]:hover, .grey-silver.btn[disabled]:focus, .grey-silver.btn[disabled]:active, .grey-silver.btn[disabled].active, fieldset[disabled] .grey-silver.btn, fieldset[disabled] .grey-silver.btn:hover, fieldset[disabled] .grey-silver.btn:focus, fieldset[disabled] .grey-silver.btn:active, fieldset[disabled] .grey-silver.btn.active {
    background-color: #BFBFBF;
}

.grey-silver.btn .badge {
    color: #BFBFBF;
    background-color: #FAFCFB;
}

/* Button Strip */
.btn.grey-silver-stripe {
    border-left: 3px solid #BFBFBF;
}

/* Portlet */
.portlet > .portlet-body.grey-silver,
.portlet.grey-silver {
    background-color: #BFBFBF;
}

.portlet.solid.grey-silver > .portlet-title,
.portlet.solid.grey-silver > .portlet-body {
    border: 0;
    color: #FAFCFB;
}

    .portlet.solid.grey-silver > .portlet-title > .caption > i {
        color: #FAFCFB;
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-silver > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-silver {
    border: 1px solid #d9d9d9;
    border-top: 0;
}

    .portlet.box.grey-silver > .portlet-title {
        background-color: #BFBFBF;
    }

        .portlet.box.grey-silver > .portlet-title > .caption {
            color: #FAFCFB;
        }

            .portlet.box.grey-silver > .portlet-title > .caption > i {
                color: #FAFCFB;
            }

        .portlet.box.grey-silver > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #f7f7f7;
            color: white;
        }

            .portlet.box.grey-silver > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey-silver > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-silver > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-silver > .portlet-title > .actions .btn-default:active, .portlet.box.grey-silver > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-silver {
    background-color: #BFBFBF;
}

    .dashboard-stat.grey-silver.dashboard-stat-light:hover {
        background-color: #b5b5b5;
    }

    .dashboard-stat.grey-silver .visual > i {
        color: #FAFCFB;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-silver .details .number {
        color: #FAFCFB;
    }

    .dashboard-stat.grey-silver .details .desc {
        color: #FAFCFB;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-silver .more {
        color: #FAFCFB;
        background-color: #b5b5b5;
    }

/* General Element */
.bg-grey-silver {
    border-color: #BFBFBF !important;
    background-image: none !important;
    background-color: #BFBFBF !important;
    color: #FAFCFB !important;
}

/* General Text & Icon Font Colors */
.font-grey-silver {
    color: #BFBFBF !important;
}

.progress-bar.grey-silver {
    background: #BFBFBF !important;
    color: #FAFCFB !important;
}

/***
Grey Salsa
***/
/* Button */
.grey-salsa.btn {
    color: #FAFCFB;
    background-color: #ACB5C3;
    border-color: "";
}

    .grey-salsa.btn:hover, .grey-salsa.btn:focus, .grey-salsa.btn:active, .grey-salsa.btn.active {
        color: #FAFCFB;
        background-color: #97a3b4;
    }

.open .grey-salsa.btn.dropdown-toggle {
    color: #FAFCFB;
    background-color: #97a3b4;
}

.grey-salsa.btn:active, .grey-salsa.btn.active {
    background-image: none;
    background-color: #8895a9;
}

    .grey-salsa.btn:active:hover, .grey-salsa.btn.active:hover {
        background-color: #8e9bae;
    }

.open .grey-salsa.btn.dropdown-toggle {
    background-image: none;
}

.grey-salsa.btn.disabled, .grey-salsa.btn.disabled:hover, .grey-salsa.btn.disabled:focus, .grey-salsa.btn.disabled:active, .grey-salsa.btn.disabled.active, .grey-salsa.btn[disabled], .grey-salsa.btn[disabled]:hover, .grey-salsa.btn[disabled]:focus, .grey-salsa.btn[disabled]:active, .grey-salsa.btn[disabled].active, fieldset[disabled] .grey-salsa.btn, fieldset[disabled] .grey-salsa.btn:hover, fieldset[disabled] .grey-salsa.btn:focus, fieldset[disabled] .grey-salsa.btn:active, fieldset[disabled] .grey-salsa.btn.active {
    background-color: #ACB5C3;
}

.grey-salsa.btn .badge {
    color: #ACB5C3;
    background-color: #FAFCFB;
}

/* Button Strip */
.btn.grey-salsa-stripe {
    border-left: 3px solid #ACB5C3;
}

/* Portlet */
.portlet > .portlet-body.grey-salsa,
.portlet.grey-salsa {
    background-color: #ACB5C3;
}

.portlet.solid.grey-salsa > .portlet-title,
.portlet.solid.grey-salsa > .portlet-body {
    border: 0;
    color: #FAFCFB;
}

    .portlet.solid.grey-salsa > .portlet-title > .caption > i {
        color: #FAFCFB;
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-salsa > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-salsa {
    border: 1px solid #cacfd8;
    border-top: 0;
}

    .portlet.box.grey-salsa > .portlet-title {
        background-color: #ACB5C3;
    }

        .portlet.box.grey-salsa > .portlet-title > .caption {
            color: #FAFCFB;
        }

            .portlet.box.grey-salsa > .portlet-title > .caption > i {
                color: #FAFCFB;
            }

        .portlet.box.grey-salsa > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #edeff2;
            color: #fcfcfd;
        }

            .portlet.box.grey-salsa > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey-salsa > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-salsa > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-salsa > .portlet-title > .actions .btn-default:active, .portlet.box.grey-salsa > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-salsa {
    background-color: #ACB5C3;
}

    .dashboard-stat.grey-salsa.dashboard-stat-light:hover {
        background-color: #a0aaba;
    }

    .dashboard-stat.grey-salsa .visual > i {
        color: #FAFCFB;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-salsa .details .number {
        color: #FAFCFB;
    }

    .dashboard-stat.grey-salsa .details .desc {
        color: #FAFCFB;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-salsa .more {
        color: #FAFCFB;
        background-color: #a0aaba;
    }

/* General Element */
.bg-grey-salsa {
    border-color: #ACB5C3 !important;
    background-image: none !important;
    background-color: #ACB5C3 !important;
    color: #FAFCFB !important;
}

/* General Text & Icon Font Colors */
.font-grey-salsa {
    color: #ACB5C3 !important;
}

.progress-bar.grey-salsa {
    background: #ACB5C3 !important;
    color: #FAFCFB !important;
}

/***
Grey Salt
***/
/* Button */
.grey-salt.btn {
    color: #FAFCFB;
    background-color: #bfcad1;
    border-color: "";
}

    .grey-salt.btn:hover, .grey-salt.btn:focus, .grey-salt.btn:active, .grey-salt.btn.active {
        color: #FAFCFB;
        background-color: #aab9c2;
    }

.open .grey-salt.btn.dropdown-toggle {
    color: #FAFCFB;
    background-color: #aab9c2;
}

.grey-salt.btn:active, .grey-salt.btn.active {
    background-image: none;
    background-color: #9badb7;
}

    .grey-salt.btn:active:hover, .grey-salt.btn.active:hover {
        background-color: #a1b1bc;
    }

.open .grey-salt.btn.dropdown-toggle {
    background-image: none;
}

.grey-salt.btn.disabled, .grey-salt.btn.disabled:hover, .grey-salt.btn.disabled:focus, .grey-salt.btn.disabled:active, .grey-salt.btn.disabled.active, .grey-salt.btn[disabled], .grey-salt.btn[disabled]:hover, .grey-salt.btn[disabled]:focus, .grey-salt.btn[disabled]:active, .grey-salt.btn[disabled].active, fieldset[disabled] .grey-salt.btn, fieldset[disabled] .grey-salt.btn:hover, fieldset[disabled] .grey-salt.btn:focus, fieldset[disabled] .grey-salt.btn:active, fieldset[disabled] .grey-salt.btn.active {
    background-color: #bfcad1;
}

.grey-salt.btn .badge {
    color: #bfcad1;
    background-color: #FAFCFB;
}

/* Button Strip */
.btn.grey-salt-stripe {
    border-left: 3px solid #bfcad1;
}

/* Portlet */
.portlet > .portlet-body.grey-salt,
.portlet.grey-salt {
    background-color: #bfcad1;
}

.portlet.solid.grey-salt > .portlet-title,
.portlet.solid.grey-salt > .portlet-body {
    border: 0;
    color: #FAFCFB;
}

    .portlet.solid.grey-salt > .portlet-title > .caption > i {
        color: #FAFCFB;
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-salt > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-salt {
    border: 1px solid #dde3e6;
    border-top: 0;
}

    .portlet.box.grey-salt > .portlet-title {
        background-color: #bfcad1;
    }

        .portlet.box.grey-salt > .portlet-title > .caption {
            color: #FAFCFB;
        }

            .portlet.box.grey-salt > .portlet-title > .caption > i {
                color: #FAFCFB;
            }

        .portlet.box.grey-salt > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid white;
            color: white;
        }

            .portlet.box.grey-salt > .portlet-title > .actions .btn-default > i {
                color: white;
            }

            .portlet.box.grey-salt > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-salt > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-salt > .portlet-title > .actions .btn-default:active, .portlet.box.grey-salt > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-salt {
    background-color: #bfcad1;
}

    .dashboard-stat.grey-salt.dashboard-stat-light:hover {
        background-color: #b3c0c8;
    }

    .dashboard-stat.grey-salt .visual > i {
        color: #FAFCFB;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-salt .details .number {
        color: #FAFCFB;
    }

    .dashboard-stat.grey-salt .details .desc {
        color: #FAFCFB;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-salt .more {
        color: #FAFCFB;
        background-color: #b3c0c8;
    }

/* General Element */
.bg-grey-salt {
    border-color: #bfcad1 !important;
    background-image: none !important;
    background-color: #bfcad1 !important;
    color: #FAFCFB !important;
}

/* General Text & Icon Font Colors */
.font-grey-salt {
    color: #bfcad1 !important;
}

.progress-bar.grey-salt {
    background: #bfcad1 !important;
    color: #FAFCFB !important;
}

/***
Grey Mint
***/
/* Button */
.grey-mint.btn {
    color: #FAFCFB;
    background-color: #9eacb4;
    border-color: "";
}

    .grey-mint.btn:hover, .grey-mint.btn:focus, .grey-mint.btn:active, .grey-mint.btn.active {
        color: #FAFCFB;
        background-color: #8a9ba4;
    }

.open .grey-mint.btn.dropdown-toggle {
    color: #FAFCFB;
    background-color: #8a9ba4;
}

.grey-mint.btn:active, .grey-mint.btn.active {
    background-image: none;
    background-color: #7b8e99;
}

    .grey-mint.btn:active:hover, .grey-mint.btn.active:hover {
        background-color: #81939e;
    }

.open .grey-mint.btn.dropdown-toggle {
    background-image: none;
}

.grey-mint.btn.disabled, .grey-mint.btn.disabled:hover, .grey-mint.btn.disabled:focus, .grey-mint.btn.disabled:active, .grey-mint.btn.disabled.active, .grey-mint.btn[disabled], .grey-mint.btn[disabled]:hover, .grey-mint.btn[disabled]:focus, .grey-mint.btn[disabled]:active, .grey-mint.btn[disabled].active, fieldset[disabled] .grey-mint.btn, fieldset[disabled] .grey-mint.btn:hover, fieldset[disabled] .grey-mint.btn:focus, fieldset[disabled] .grey-mint.btn:active, fieldset[disabled] .grey-mint.btn.active {
    background-color: #9eacb4;
}

.grey-mint.btn .badge {
    color: #9eacb4;
    background-color: #FAFCFB;
}

/* Button Strip */
.btn.grey-mint-stripe {
    border-left: 3px solid #9eacb4;
}

/* Portlet */
.portlet > .portlet-body.grey-mint,
.portlet.grey-mint {
    background-color: #9eacb4;
}

.portlet.solid.grey-mint > .portlet-title,
.portlet.solid.grey-mint > .portlet-body {
    border: 0;
    color: #FAFCFB;
}

    .portlet.solid.grey-mint > .portlet-title > .caption > i {
        color: #FAFCFB;
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.grey-mint > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.grey-mint {
    border: 1px solid #bbc5ca;
    border-top: 0;
}

    .portlet.box.grey-mint > .portlet-title {
        background-color: #9eacb4;
    }

        .portlet.box.grey-mint > .portlet-title > .caption {
            color: #FAFCFB;
        }

            .portlet.box.grey-mint > .portlet-title > .caption > i {
                color: #FAFCFB;
            }

        .portlet.box.grey-mint > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #dde2e5;
            color: #eceef0;
        }

            .portlet.box.grey-mint > .portlet-title > .actions .btn-default > i {
                color: #f4f6f7;
            }

            .portlet.box.grey-mint > .portlet-title > .actions .btn-default:hover, .portlet.box.grey-mint > .portlet-title > .actions .btn-default:focus, .portlet.box.grey-mint > .portlet-title > .actions .btn-default:active, .portlet.box.grey-mint > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fafbfb;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.grey-mint {
    background-color: #9eacb4;
}

    .dashboard-stat.grey-mint.dashboard-stat-light:hover {
        background-color: #92a2ab;
    }

    .dashboard-stat.grey-mint .visual > i {
        color: #FAFCFB;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.grey-mint .details .number {
        color: #FAFCFB;
    }

    .dashboard-stat.grey-mint .details .desc {
        color: #FAFCFB;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.grey-mint .more {
        color: #FAFCFB;
        background-color: #92a2ab;
    }

/* General Element */
.bg-grey-mint {
    border-color: #9eacb4 !important;
    background-image: none !important;
    background-color: #9eacb4 !important;
    color: #FAFCFB !important;
}

/* General Text & Icon Font Colors */
.font-grey-mint {
    color: #9eacb4 !important;
}

.progress-bar.grey-mint {
    background: #9eacb4 !important;
    color: #FAFCFB !important;
}

/***********
Red Colors
************/
/***
Red Default
***/
/* Button */
.red.btn {
    color: #FFFFFF;
    background-color: #d84a38;
    border-color: "";
}

    .red.btn:hover, .red.btn:focus, .red.btn:active, .red.btn.active {
        color: #FFFFFF;
        background-color: #c63927;
    }

.open .red.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #c63927;
}

.red.btn:active, .red.btn.active {
    background-image: none;
    background-color: #b03223;
}

    .red.btn:active:hover, .red.btn.active:hover {
        background-color: #b93524;
    }

.open .red.btn.dropdown-toggle {
    background-image: none;
}

.red.btn.disabled, .red.btn.disabled:hover, .red.btn.disabled:focus, .red.btn.disabled:active, .red.btn.disabled.active, .red.btn[disabled], .red.btn[disabled]:hover, .red.btn[disabled]:focus, .red.btn[disabled]:active, .red.btn[disabled].active, fieldset[disabled] .red.btn, fieldset[disabled] .red.btn:hover, fieldset[disabled] .red.btn:focus, fieldset[disabled] .red.btn:active, fieldset[disabled] .red.btn.active {
    background-color: #d84a38;
}

.red.btn .badge {
    color: #d84a38;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-stripe {
    border-left: 3px solid #d84a38;
}

/* Portlet */
.portlet > .portlet-body.red,
.portlet.red {
    background-color: #d84a38;
}

.portlet.solid.red > .portlet-title,
.portlet.solid.red > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red {
    border: 1px solid #e07163;
    border-top: 0;
}

    .portlet.box.red > .portlet-title {
        background-color: #d84a38;
    }

        .portlet.box.red > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #ea9f96;
            color: #efb3ab;
        }

            .portlet.box.red > .portlet-title > .actions .btn-default > i {
                color: #f1beb8;
            }

            .portlet.box.red > .portlet-title > .actions .btn-default:hover, .portlet.box.red > .portlet-title > .actions .btn-default:focus, .portlet.box.red > .portlet-title > .actions .btn-default:active, .portlet.box.red > .portlet-title > .actions .btn-default.active {
                border: 1px solid #f3c6c0;
                color: #f7dad6;
            }

/* Statistic Block */
.dashboard-stat.red {
    background-color: #d84a38;
}

    .dashboard-stat.red.dashboard-stat-light:hover {
        background-color: #d23c29;
    }

    .dashboard-stat.red .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red .more {
        color: #FFFFFF;
        background-color: #d23c29;
    }

/* General Element */
.bg-red {
    border-color: #d84a38 !important;
    background-image: none !important;
    background-color: #d84a38 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red {
    color: #d84a38 !important;
}

.progress-bar.red {
    background: #d84a38 !important;
    color: #FFFFFF !important;
}

/***
Red Pink
***/
/* Button */
.red-pink.btn {
    color: #FFFFFF;
    background-color: #E08283;
    border-color: "";
}

    .red-pink.btn:hover, .red-pink.btn:focus, .red-pink.btn:active, .red-pink.btn.active {
        color: #FFFFFF;
        background-color: #d96567;
    }

.open .red-pink.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #d96567;
}

.red-pink.btn:active, .red-pink.btn.active {
    background-image: none;
    background-color: #d45152;
}

    .red-pink.btn:active:hover, .red-pink.btn.active:hover {
        background-color: #d6595a;
    }

.open .red-pink.btn.dropdown-toggle {
    background-image: none;
}

.red-pink.btn.disabled, .red-pink.btn.disabled:hover, .red-pink.btn.disabled:focus, .red-pink.btn.disabled:active, .red-pink.btn.disabled.active, .red-pink.btn[disabled], .red-pink.btn[disabled]:hover, .red-pink.btn[disabled]:focus, .red-pink.btn[disabled]:active, .red-pink.btn[disabled].active, fieldset[disabled] .red-pink.btn, fieldset[disabled] .red-pink.btn:hover, fieldset[disabled] .red-pink.btn:focus, fieldset[disabled] .red-pink.btn:active, fieldset[disabled] .red-pink.btn.active {
    background-color: #E08283;
}

.red-pink.btn .badge {
    color: #E08283;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-pink-stripe {
    border-left: 3px solid #E08283;
}

/* Portlet */
.portlet > .portlet-body.red-pink,
.portlet.red-pink {
    background-color: #E08283;
}

.portlet.solid.red-pink > .portlet-title,
.portlet.solid.red-pink > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-pink > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-pink > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-pink {
    border: 1px solid #eaabac;
    border-top: 0;
}

    .portlet.box.red-pink > .portlet-title {
        background-color: #E08283;
    }

        .portlet.box.red-pink > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-pink > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-pink > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #f6dcdc;
            color: #fbf0f0;
        }

            .portlet.box.red-pink > .portlet-title > .actions .btn-default > i {
                color: #fefdfd;
            }

            .portlet.box.red-pink > .portlet-title > .actions .btn-default:hover, .portlet.box.red-pink > .portlet-title > .actions .btn-default:focus, .portlet.box.red-pink > .portlet-title > .actions .btn-default:active, .portlet.box.red-pink > .portlet-title > .actions .btn-default.active {
                border: 1px solid white;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.red-pink {
    background-color: #E08283;
}

    .dashboard-stat.red-pink.dashboard-stat-light:hover {
        background-color: #dc7273;
    }

    .dashboard-stat.red-pink .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-pink .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-pink .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-pink .more {
        color: #FFFFFF;
        background-color: #dc7273;
    }

/* General Element */
.bg-red-pink {
    border-color: #E08283 !important;
    background-image: none !important;
    background-color: #E08283 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-pink {
    color: #E08283 !important;
}

.progress-bar.red-pink {
    background: #E08283 !important;
    color: #FFFFFF !important;
}

/***
Red Sunglo
***/
/* Button */
.red-sunglo.btn {
    color: #FFFFFF;
    background-color: #E26A6A;
    border-color: "";
}

    .red-sunglo.btn:hover, .red-sunglo.btn:focus, .red-sunglo.btn:active, .red-sunglo.btn.active {
        color: #FFFFFF;
        background-color: #dc4c4c;
    }

.open .red-sunglo.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #dc4c4c;
}

.red-sunglo.btn:active, .red-sunglo.btn.active {
    background-image: none;
    background-color: #d83737;
}

    .red-sunglo.btn:active:hover, .red-sunglo.btn.active:hover {
        background-color: #da3f3f;
    }

.open .red-sunglo.btn.dropdown-toggle {
    background-image: none;
}

.red-sunglo.btn.disabled, .red-sunglo.btn.disabled:hover, .red-sunglo.btn.disabled:focus, .red-sunglo.btn.disabled:active, .red-sunglo.btn.disabled.active, .red-sunglo.btn[disabled], .red-sunglo.btn[disabled]:hover, .red-sunglo.btn[disabled]:focus, .red-sunglo.btn[disabled]:active, .red-sunglo.btn[disabled].active, fieldset[disabled] .red-sunglo.btn, fieldset[disabled] .red-sunglo.btn:hover, fieldset[disabled] .red-sunglo.btn:focus, fieldset[disabled] .red-sunglo.btn:active, fieldset[disabled] .red-sunglo.btn.active {
    background-color: #E26A6A;
}

.red-sunglo.btn .badge {
    color: #E26A6A;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-sunglo-stripe {
    border-left: 3px solid #E26A6A;
}

/* Portlet */
.portlet > .portlet-body.red-sunglo,
.portlet.red-sunglo {
    background-color: #E26A6A;
}

.portlet.solid.red-sunglo > .portlet-title,
.portlet.solid.red-sunglo > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-sunglo > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-sunglo > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-sunglo {
    border: 1px solid #ea9595;
    border-top: 0;
}

    .portlet.box.red-sunglo > .portlet-title {
        background-color: #E26A6A;
    }

        .portlet.box.red-sunglo > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-sunglo > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-sunglo > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #f4c8c8;
            color: #f8dddd;
        }

            .portlet.box.red-sunglo > .portlet-title > .actions .btn-default > i {
                color: #fbeaea;
            }

            .portlet.box.red-sunglo > .portlet-title > .actions .btn-default:hover, .portlet.box.red-sunglo > .portlet-title > .actions .btn-default:focus, .portlet.box.red-sunglo > .portlet-title > .actions .btn-default:active, .portlet.box.red-sunglo > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fdf3f3;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.red-sunglo {
    background-color: #E26A6A;
}

    .dashboard-stat.red-sunglo.dashboard-stat-light:hover {
        background-color: #df5959;
    }

    .dashboard-stat.red-sunglo .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-sunglo .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-sunglo .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-sunglo .more {
        color: #FFFFFF;
        background-color: #df5959;
    }

/* General Element */
.bg-red-sunglo {
    border-color: #E26A6A !important;
    background-image: none !important;
    background-color: #E26A6A !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-sunglo {
    color: #E26A6A !important;
}

.progress-bar.red-sunglo {
    background: #E26A6A !important;
    color: #FFFFFF !important;
}

/***
Red Intense
***/
/* Button */
.red-intense.btn {
    color: #FFFFFF;
    background-color: #e35b5a;
    border-color: "";
}

    .red-intense.btn:hover, .red-intense.btn:focus, .red-intense.btn:active, .red-intense.btn.active {
        color: #FFFFFF;
        background-color: #de3d3b;
    }

.open .red-intense.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #de3d3b;
}

.red-intense.btn:active, .red-intense.btn.active {
    background-image: none;
    background-color: #da2726;
}

    .red-intense.btn:active:hover, .red-intense.btn.active:hover {
        background-color: #dc302e;
    }

.open .red-intense.btn.dropdown-toggle {
    background-image: none;
}

.red-intense.btn.disabled, .red-intense.btn.disabled:hover, .red-intense.btn.disabled:focus, .red-intense.btn.disabled:active, .red-intense.btn.disabled.active, .red-intense.btn[disabled], .red-intense.btn[disabled]:hover, .red-intense.btn[disabled]:focus, .red-intense.btn[disabled]:active, .red-intense.btn[disabled].active, fieldset[disabled] .red-intense.btn, fieldset[disabled] .red-intense.btn:hover, fieldset[disabled] .red-intense.btn:focus, fieldset[disabled] .red-intense.btn:active, fieldset[disabled] .red-intense.btn.active {
    background-color: #e35b5a;
}

.red-intense.btn .badge {
    color: #e35b5a;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-intense-stripe {
    border-left: 3px solid #e35b5a;
}

/* Portlet */
.portlet > .portlet-body.red-intense,
.portlet.red-intense {
    background-color: #e35b5a;
}

.portlet.solid.red-intense > .portlet-title,
.portlet.solid.red-intense > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-intense > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-intense > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-intense {
    border: 1px solid #ea8686;
    border-top: 0;
}

    .portlet.box.red-intense > .portlet-title {
        background-color: #e35b5a;
    }

        .portlet.box.red-intense > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-intense > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-intense > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #f3baba;
            color: #f7d0d0;
        }

            .portlet.box.red-intense > .portlet-title > .actions .btn-default > i {
                color: #f9dddd;
            }

            .portlet.box.red-intense > .portlet-title > .actions .btn-default:hover, .portlet.box.red-intense > .portlet-title > .actions .btn-default:focus, .portlet.box.red-intense > .portlet-title > .actions .btn-default:active, .portlet.box.red-intense > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fbe6e6;
                color: #fefbfb;
            }

/* Statistic Block */
.dashboard-stat.red-intense {
    background-color: #e35b5a;
}

    .dashboard-stat.red-intense.dashboard-stat-light:hover {
        background-color: #e04a49;
    }

    .dashboard-stat.red-intense .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-intense .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-intense .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-intense .more {
        color: #FFFFFF;
        background-color: #e04a49;
    }

/* General Element */
.bg-red-intense {
    border-color: #e35b5a !important;
    background-image: none !important;
    background-color: #e35b5a !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-intense {
    color: #e35b5a !important;
}

.progress-bar.red-intense {
    background: #e35b5a !important;
    color: #FFFFFF !important;
}

/***
Red Thunderbird
***/
/* Button */
.red-thunderbird.btn {
    color: #FFFFFF;
    background-color: #D91E18;
    border-color: "";
}

    .red-thunderbird.btn:hover, .red-thunderbird.btn:focus, .red-thunderbird.btn:active, .red-thunderbird.btn.active {
        color: #FFFFFF;
        background-color: #b91a14;
    }

.open .red-thunderbird.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #b91a14;
}

.red-thunderbird.btn:active, .red-thunderbird.btn.active {
    background-image: none;
    background-color: #a21612;
}

    .red-thunderbird.btn:active:hover, .red-thunderbird.btn.active:hover {
        background-color: #ab1813;
    }

.open .red-thunderbird.btn.dropdown-toggle {
    background-image: none;
}

.red-thunderbird.btn.disabled, .red-thunderbird.btn.disabled:hover, .red-thunderbird.btn.disabled:focus, .red-thunderbird.btn.disabled:active, .red-thunderbird.btn.disabled.active, .red-thunderbird.btn[disabled], .red-thunderbird.btn[disabled]:hover, .red-thunderbird.btn[disabled]:focus, .red-thunderbird.btn[disabled]:active, .red-thunderbird.btn[disabled].active, fieldset[disabled] .red-thunderbird.btn, fieldset[disabled] .red-thunderbird.btn:hover, fieldset[disabled] .red-thunderbird.btn:focus, fieldset[disabled] .red-thunderbird.btn:active, fieldset[disabled] .red-thunderbird.btn.active {
    background-color: #D91E18;
}

.red-thunderbird.btn .badge {
    color: #D91E18;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-thunderbird-stripe {
    border-left: 3px solid #D91E18;
}

/* Portlet */
.portlet > .portlet-body.red-thunderbird,
.portlet.red-thunderbird {
    background-color: #D91E18;
}

.portlet.solid.red-thunderbird > .portlet-title,
.portlet.solid.red-thunderbird > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-thunderbird > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-thunderbird > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-thunderbird {
    border: 1px solid #e9403b;
    border-top: 0;
}

    .portlet.box.red-thunderbird > .portlet-title {
        background-color: #D91E18;
    }

        .portlet.box.red-thunderbird > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-thunderbird > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #ef7672;
            color: #f28c89;
        }

            .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default > i {
                color: #f39997;
            }

            .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default:hover, .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default:focus, .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default:active, .portlet.box.red-thunderbird > .portlet-title > .actions .btn-default.active {
                border: 1px solid #f4a2a0;
                color: #f7b9b7;
            }

/* Statistic Block */
.dashboard-stat.red-thunderbird {
    background-color: #D91E18;
}

    .dashboard-stat.red-thunderbird.dashboard-stat-light:hover {
        background-color: #c71b16;
    }

    .dashboard-stat.red-thunderbird .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-thunderbird .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-thunderbird .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-thunderbird .more {
        color: #FFFFFF;
        background-color: #c71b16;
    }

/* General Element */
.bg-red-thunderbird {
    border-color: #D91E18 !important;
    background-image: none !important;
    background-color: #D91E18 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-thunderbird {
    color: #D91E18 !important;
}

.progress-bar.red-thunderbird {
    background: #D91E18 !important;
    color: #FFFFFF !important;
}

/***
Red Flamingo
***/
/* Button */
.red-flamingo.btn {
    color: #FFFFFF;
    background-color: #EF4836;
    border-color: "";
}

    .red-flamingo.btn:hover, .red-flamingo.btn:focus, .red-flamingo.btn:active, .red-flamingo.btn.active {
        color: #FFFFFF;
        background-color: #ec2a15;
    }

.open .red-flamingo.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #ec2a15;
}

.red-flamingo.btn:active, .red-flamingo.btn.active {
    background-image: none;
    background-color: #d72411;
}

    .red-flamingo.btn:active:hover, .red-flamingo.btn.active:hover {
        background-color: #e02612;
    }

.open .red-flamingo.btn.dropdown-toggle {
    background-image: none;
}

.red-flamingo.btn.disabled, .red-flamingo.btn.disabled:hover, .red-flamingo.btn.disabled:focus, .red-flamingo.btn.disabled:active, .red-flamingo.btn.disabled.active, .red-flamingo.btn[disabled], .red-flamingo.btn[disabled]:hover, .red-flamingo.btn[disabled]:focus, .red-flamingo.btn[disabled]:active, .red-flamingo.btn[disabled].active, fieldset[disabled] .red-flamingo.btn, fieldset[disabled] .red-flamingo.btn:hover, fieldset[disabled] .red-flamingo.btn:focus, fieldset[disabled] .red-flamingo.btn:active, fieldset[disabled] .red-flamingo.btn.active {
    background-color: #EF4836;
}

.red-flamingo.btn .badge {
    color: #EF4836;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-flamingo-stripe {
    border-left: 3px solid #EF4836;
}

/* Portlet */
.portlet > .portlet-body.red-flamingo,
.portlet.red-flamingo {
    background-color: #EF4836;
}

.portlet.solid.red-flamingo > .portlet-title,
.portlet.solid.red-flamingo > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-flamingo > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-flamingo > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-flamingo {
    border: 1px solid #f37365;
    border-top: 0;
}

    .portlet.box.red-flamingo > .portlet-title {
        background-color: #EF4836;
    }

        .portlet.box.red-flamingo > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-flamingo > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-flamingo > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #f7a79e;
            color: #f9bcb6;
        }

            .portlet.box.red-flamingo > .portlet-title > .actions .btn-default > i {
                color: #fac9c4;
            }

            .portlet.box.red-flamingo > .portlet-title > .actions .btn-default:hover, .portlet.box.red-flamingo > .portlet-title > .actions .btn-default:focus, .portlet.box.red-flamingo > .portlet-title > .actions .btn-default:active, .portlet.box.red-flamingo > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fbd2cd;
                color: #fde7e5;
            }

/* Statistic Block */
.dashboard-stat.red-flamingo {
    background-color: #EF4836;
}

    .dashboard-stat.red-flamingo.dashboard-stat-light:hover {
        background-color: #ed3723;
    }

    .dashboard-stat.red-flamingo .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-flamingo .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-flamingo .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-flamingo .more {
        color: #FFFFFF;
        background-color: #ed3723;
    }

/* General Element */
.bg-red-flamingo {
    border-color: #EF4836 !important;
    background-image: none !important;
    background-color: #EF4836 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-flamingo {
    color: #EF4836 !important;
}

.progress-bar.red-flamingo {
    background: #EF4836 !important;
    color: #FFFFFF !important;
}

/***
Red Flamingo
***/
/* Button */
.red-soft.btn {
    color: #FFFFFF;
    background-color: #d05454;
    border-color: "";
}

    .red-soft.btn:hover, .red-soft.btn:focus, .red-soft.btn:active, .red-soft.btn.active {
        color: #FFFFFF;
        background-color: #c83838;
    }

.open .red-soft.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #c83838;
}

.red-soft.btn:active, .red-soft.btn.active {
    background-image: none;
    background-color: #b53232;
}

    .red-soft.btn:active:hover, .red-soft.btn.active:hover {
        background-color: #bd3434;
    }

.open .red-soft.btn.dropdown-toggle {
    background-image: none;
}

.red-soft.btn.disabled, .red-soft.btn.disabled:hover, .red-soft.btn.disabled:focus, .red-soft.btn.disabled:active, .red-soft.btn.disabled.active, .red-soft.btn[disabled], .red-soft.btn[disabled]:hover, .red-soft.btn[disabled]:focus, .red-soft.btn[disabled]:active, .red-soft.btn[disabled].active, fieldset[disabled] .red-soft.btn, fieldset[disabled] .red-soft.btn:hover, fieldset[disabled] .red-soft.btn:focus, fieldset[disabled] .red-soft.btn:active, fieldset[disabled] .red-soft.btn.active {
    background-color: #d05454;
}

.red-soft.btn .badge {
    color: #d05454;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-soft-stripe {
    border-left: 3px solid #d05454;
}

/* Portlet */
.portlet > .portlet-body.red-soft,
.portlet.red-soft {
    background-color: #d05454;
}

.portlet.solid.red-soft > .portlet-title,
.portlet.solid.red-soft > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-soft > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-soft > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-soft {
    border: 1px solid #db7c7c;
    border-top: 0;
}

    .portlet.box.red-soft > .portlet-title {
        background-color: #d05454;
    }

        .portlet.box.red-soft > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-soft > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-soft > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #e8acac;
            color: #eec0c0;
        }

            .portlet.box.red-soft > .portlet-title > .actions .btn-default > i {
                color: #f1cccc;
            }

            .portlet.box.red-soft > .portlet-title > .actions .btn-default:hover, .portlet.box.red-soft > .portlet-title > .actions .btn-default:focus, .portlet.box.red-soft > .portlet-title > .actions .btn-default:active, .portlet.box.red-soft > .portlet-title > .actions .btn-default.active {
                border: 1px solid #f3d4d4;
                color: #f9e8e8;
            }

/* Statistic Block */
.dashboard-stat.red-soft {
    background-color: #d05454;
}

    .dashboard-stat.red-soft.dashboard-stat-light:hover {
        background-color: #cc4444;
    }

    .dashboard-stat.red-soft .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-soft .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-soft .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-soft .more {
        color: #FFFFFF;
        background-color: #cc4444;
    }

/* General Element */
.bg-red-soft {
    border-color: #d05454 !important;
    background-image: none !important;
    background-color: #d05454 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-soft {
    color: #d05454 !important;
}

.progress-bar.red-soft {
    background: #d05454 !important;
    color: #FFFFFF !important;
}

/***
Red Haze
***/
/* Button */
.red-haze.btn {
    color: #FFFFFF;
    background-color: #f36a5a;
    border-color: "";
}

    .red-haze.btn:hover, .red-haze.btn:focus, .red-haze.btn:active, .red-haze.btn.active {
        color: #FFFFFF;
        background-color: #f14c39;
    }

.open .red-haze.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #f14c39;
}

.red-haze.btn:active, .red-haze.btn.active {
    background-image: none;
    background-color: #ef3621;
}

    .red-haze.btn:active:hover, .red-haze.btn.active:hover {
        background-color: #f03f2a;
    }

.open .red-haze.btn.dropdown-toggle {
    background-image: none;
}

.red-haze.btn.disabled, .red-haze.btn.disabled:hover, .red-haze.btn.disabled:focus, .red-haze.btn.disabled:active, .red-haze.btn.disabled.active, .red-haze.btn[disabled], .red-haze.btn[disabled]:hover, .red-haze.btn[disabled]:focus, .red-haze.btn[disabled]:active, .red-haze.btn[disabled].active, fieldset[disabled] .red-haze.btn, fieldset[disabled] .red-haze.btn:hover, fieldset[disabled] .red-haze.btn:focus, fieldset[disabled] .red-haze.btn:active, fieldset[disabled] .red-haze.btn.active {
    background-color: #f36a5a;
}

.red-haze.btn .badge {
    color: #f36a5a;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.red-haze-stripe {
    border-left: 3px solid #f36a5a;
}

/* Portlet */
.portlet > .portlet-body.red-haze,
.portlet.red-haze {
    background-color: #f36a5a;
}

.portlet.solid.red-haze > .portlet-title,
.portlet.solid.red-haze > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.red-haze > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.red-haze > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.red-haze {
    border: 1px solid #f6958a;
    border-top: 0;
}

    .portlet.box.red-haze > .portlet-title {
        background-color: #f36a5a;
    }

        .portlet.box.red-haze > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.red-haze > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.red-haze > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #fbc8c3;
            color: #fcdeda;
        }

            .portlet.box.red-haze > .portlet-title > .actions .btn-default > i {
                color: #fdebe9;
            }

            .portlet.box.red-haze > .portlet-title > .actions .btn-default:hover, .portlet.box.red-haze > .portlet-title > .actions .btn-default:focus, .portlet.box.red-haze > .portlet-title > .actions .btn-default:active, .portlet.box.red-haze > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fef3f2;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.red-haze {
    background-color: #f36a5a;
}

    .dashboard-stat.red-haze.dashboard-stat-light:hover {
        background-color: #f25947;
    }

    .dashboard-stat.red-haze .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.red-haze .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.red-haze .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.red-haze .more {
        color: #FFFFFF;
        background-color: #f25947;
    }

/* General Element */
.bg-red-haze {
    border-color: #f36a5a !important;
    background-image: none !important;
    background-color: #f36a5a !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-red-haze {
    color: #f36a5a !important;
}

.progress-bar.red-haze {
    background: #f36a5a !important;
    color: #FFFFFF !important;
}

/***********
Yellow Colors
************/
/***
Yellow Default
***/
/* Button */
.yellow.btn {
    color: #FFFFFF;
    background-color: #FFB848;
    border-color: "";
}

    .yellow.btn:hover, .yellow.btn:focus, .yellow.btn:active, .yellow.btn.active {
        color: #FFFFFF;
        background-color: #ffaa24;
    }

.open .yellow.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #ffaa24;
}

.yellow.btn:active, .yellow.btn.active {
    background-image: none;
    background-color: #ffa00b;
}

    .yellow.btn:active:hover, .yellow.btn.active:hover {
        background-color: #ffa415;
    }

.open .yellow.btn.dropdown-toggle {
    background-image: none;
}

.yellow.btn.disabled, .yellow.btn.disabled:hover, .yellow.btn.disabled:focus, .yellow.btn.disabled:active, .yellow.btn.disabled.active, .yellow.btn[disabled], .yellow.btn[disabled]:hover, .yellow.btn[disabled]:focus, .yellow.btn[disabled]:active, .yellow.btn[disabled].active, fieldset[disabled] .yellow.btn, fieldset[disabled] .yellow.btn:hover, fieldset[disabled] .yellow.btn:focus, fieldset[disabled] .yellow.btn:active, fieldset[disabled] .yellow.btn.active {
    background-color: #FFB848;
}

.yellow.btn .badge {
    color: #FFB848;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-stripe {
    border-left: 3px solid #FFB848;
}

/* Portlet */
.portlet > .portlet-body.yellow,
.portlet.yellow {
    background-color: #FFB848;
}

.portlet.solid.yellow > .portlet-title,
.portlet.solid.yellow > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow {
    border: 1px solid #ffcc7b;
    border-top: 0;
}

    .portlet.box.yellow > .portlet-title {
        background-color: #FFB848;
    }

        .portlet.box.yellow > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #ffe4b8;
            color: #ffedd2;
        }

            .portlet.box.yellow > .portlet-title > .actions .btn-default > i {
                color: #fff3e1;
            }

            .portlet.box.yellow > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow > .portlet-title > .actions .btn-default:active, .portlet.box.yellow > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fff7eb;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.yellow {
    background-color: #FFB848;
}

    .dashboard-stat.yellow.dashboard-stat-light:hover {
        background-color: #ffb034;
    }

    .dashboard-stat.yellow .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow .more {
        color: #FFFFFF;
        background-color: #ffb034;
    }

/* General Element */
.bg-yellow {
    border-color: #FFB848 !important;
    background-image: none !important;
    background-color: #FFB848 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow {
    color: #FFB848 !important;
}

.progress-bar.yellow {
    background: #FFB848 !important;
    color: #FFFFFF !important;
}

/***
Yellow Gold
***/
/* Button */
.yellow-gold.btn {
    color: #FFFFFF;
    background-color: #E87E04;
    border-color: "";
}

    .yellow-gold.btn:hover, .yellow-gold.btn:focus, .yellow-gold.btn:active, .yellow-gold.btn.active {
        color: #FFFFFF;
        background-color: #c56b03;
    }

.open .yellow-gold.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #c56b03;
}

.yellow-gold.btn:active, .yellow-gold.btn.active {
    background-image: none;
    background-color: #ac5d03;
}

    .yellow-gold.btn:active:hover, .yellow-gold.btn.active:hover {
        background-color: #b66303;
    }

.open .yellow-gold.btn.dropdown-toggle {
    background-image: none;
}

.yellow-gold.btn.disabled, .yellow-gold.btn.disabled:hover, .yellow-gold.btn.disabled:focus, .yellow-gold.btn.disabled:active, .yellow-gold.btn.disabled.active, .yellow-gold.btn[disabled], .yellow-gold.btn[disabled]:hover, .yellow-gold.btn[disabled]:focus, .yellow-gold.btn[disabled]:active, .yellow-gold.btn[disabled].active, fieldset[disabled] .yellow-gold.btn, fieldset[disabled] .yellow-gold.btn:hover, fieldset[disabled] .yellow-gold.btn:focus, fieldset[disabled] .yellow-gold.btn:active, fieldset[disabled] .yellow-gold.btn.active {
    background-color: #E87E04;
}

.yellow-gold.btn .badge {
    color: #E87E04;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-gold-stripe {
    border-left: 3px solid #E87E04;
}

/* Portlet */
.portlet > .portlet-body.yellow-gold,
.portlet.yellow-gold {
    background-color: #E87E04;
}

.portlet.solid.yellow-gold > .portlet-title,
.portlet.solid.yellow-gold > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow-gold > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow-gold > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow-gold {
    border: 1px solid #fb9724;
    border-top: 0;
}

    .portlet.box.yellow-gold > .portlet-title {
        background-color: #E87E04;
    }

        .portlet.box.yellow-gold > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow-gold > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow-gold > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #fcb460;
            color: #fdbf79;
        }

            .portlet.box.yellow-gold > .portlet-title > .actions .btn-default > i {
                color: #fdc788;
            }

            .portlet.box.yellow-gold > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow-gold > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow-gold > .portlet-title > .actions .btn-default:active, .portlet.box.yellow-gold > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fdcb92;
                color: #fed7ab;
            }

/* Statistic Block */
.dashboard-stat.yellow-gold {
    background-color: #E87E04;
}

    .dashboard-stat.yellow-gold.dashboard-stat-light:hover {
        background-color: #d47304;
    }

    .dashboard-stat.yellow-gold .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow-gold .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow-gold .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow-gold .more {
        color: #FFFFFF;
        background-color: #d47304;
    }

/* General Element */
.bg-yellow-gold {
    border-color: #E87E04 !important;
    background-image: none !important;
    background-color: #E87E04 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow-gold {
    color: #E87E04 !important;
}

.progress-bar.yellow-gold {
    background: #E87E04 !important;
    color: #FFFFFF !important;
}

/***
Yellow Casablanca
***/
/* Button */
.yellow-casablanca.btn {
    color: #FFFFFF;
    background-color: #f2784b;
    border-color: "";
}

    .yellow-casablanca.btn:hover, .yellow-casablanca.btn:focus, .yellow-casablanca.btn:active, .yellow-casablanca.btn.active {
        color: #FFFFFF;
        background-color: #f05f2a;
    }

.open .yellow-casablanca.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #f05f2a;
}

.yellow-casablanca.btn:active, .yellow-casablanca.btn.active {
    background-image: none;
    background-color: #ee4d12;
}

    .yellow-casablanca.btn:active:hover, .yellow-casablanca.btn.active:hover {
        background-color: #ef541b;
    }

.open .yellow-casablanca.btn.dropdown-toggle {
    background-image: none;
}

.yellow-casablanca.btn.disabled, .yellow-casablanca.btn.disabled:hover, .yellow-casablanca.btn.disabled:focus, .yellow-casablanca.btn.disabled:active, .yellow-casablanca.btn.disabled.active, .yellow-casablanca.btn[disabled], .yellow-casablanca.btn[disabled]:hover, .yellow-casablanca.btn[disabled]:focus, .yellow-casablanca.btn[disabled]:active, .yellow-casablanca.btn[disabled].active, fieldset[disabled] .yellow-casablanca.btn, fieldset[disabled] .yellow-casablanca.btn:hover, fieldset[disabled] .yellow-casablanca.btn:focus, fieldset[disabled] .yellow-casablanca.btn:active, fieldset[disabled] .yellow-casablanca.btn.active {
    background-color: #f2784b;
}

.yellow-casablanca.btn .badge {
    color: #f2784b;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-casablanca-stripe {
    border-left: 3px solid #f2784b;
}

/* Portlet */
.portlet > .portlet-body.yellow-casablanca,
.portlet.yellow-casablanca {
    background-color: #f2784b;
}

.portlet.solid.yellow-casablanca > .portlet-title,
.portlet.solid.yellow-casablanca > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow-casablanca > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow-casablanca > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow-casablanca {
    border: 1px solid #f59c7b;
    border-top: 0;
}

    .portlet.box.yellow-casablanca > .portlet-title {
        background-color: #f2784b;
    }

        .portlet.box.yellow-casablanca > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow-casablanca > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #fac6b4;
            color: #fbd8cb;
        }

            .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default > i {
                color: #fce3da;
            }

            .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default:active, .portlet.box.yellow-casablanca > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fdeae3;
                color: #fffcfb;
            }

/* Statistic Block */
.dashboard-stat.yellow-casablanca {
    background-color: #f2784b;
}

    .dashboard-stat.yellow-casablanca.dashboard-stat-light:hover {
        background-color: #f16a38;
    }

    .dashboard-stat.yellow-casablanca .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow-casablanca .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow-casablanca .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow-casablanca .more {
        color: #FFFFFF;
        background-color: #f16a38;
    }

/* General Element */
.bg-yellow-casablanca {
    border-color: #f2784b !important;
    background-image: none !important;
    background-color: #f2784b !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow-casablanca {
    color: #f2784b !important;
}

.progress-bar.yellow-casablanca {
    background: #f2784b !important;
    color: #FFFFFF !important;
}

/***
Yellow Crusta
***/
/* Button */
.yellow-crusta.btn {
    color: #FFFFFF;
    background-color: #f3c200;
    border-color: "";
}

    .yellow-crusta.btn:hover, .yellow-crusta.btn:focus, .yellow-crusta.btn:active, .yellow-crusta.btn.active {
        color: #FFFFFF;
        background-color: #cfa500;
    }

.open .yellow-crusta.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #cfa500;
}

.yellow-crusta.btn:active, .yellow-crusta.btn.active {
    background-image: none;
    background-color: #b69100;
}

    .yellow-crusta.btn:active:hover, .yellow-crusta.btn.active:hover {
        background-color: #c09900;
    }

.open .yellow-crusta.btn.dropdown-toggle {
    background-image: none;
}

.yellow-crusta.btn.disabled, .yellow-crusta.btn.disabled:hover, .yellow-crusta.btn.disabled:focus, .yellow-crusta.btn.disabled:active, .yellow-crusta.btn.disabled.active, .yellow-crusta.btn[disabled], .yellow-crusta.btn[disabled]:hover, .yellow-crusta.btn[disabled]:focus, .yellow-crusta.btn[disabled]:active, .yellow-crusta.btn[disabled].active, fieldset[disabled] .yellow-crusta.btn, fieldset[disabled] .yellow-crusta.btn:hover, fieldset[disabled] .yellow-crusta.btn:focus, fieldset[disabled] .yellow-crusta.btn:active, fieldset[disabled] .yellow-crusta.btn.active {
    background-color: #f3c200;
}

.yellow-crusta.btn .badge {
    color: #f3c200;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-crusta-stripe {
    border-left: 3px solid #f3c200;
}

/* Portlet */
.portlet > .portlet-body.yellow-crusta,
.portlet.yellow-crusta {
    background-color: #f3c200;
}

.portlet.solid.yellow-crusta > .portlet-title,
.portlet.solid.yellow-crusta > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow-crusta > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow-crusta > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow-crusta {
    border: 1px solid #ffd327;
    border-top: 0;
}

    .portlet.box.yellow-crusta > .portlet-title {
        background-color: #f3c200;
    }

        .portlet.box.yellow-crusta > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow-crusta > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #ffe064;
            color: #ffe57e;
        }

            .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default > i {
                color: #ffe88d;
            }

            .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default:active, .portlet.box.yellow-crusta > .portlet-title > .actions .btn-default.active {
                border: 1px solid #ffea97;
                color: #ffefb1;
            }

/* Statistic Block */
.dashboard-stat.yellow-crusta {
    background-color: #f3c200;
}

    .dashboard-stat.yellow-crusta.dashboard-stat-light:hover {
        background-color: #dfb200;
    }

    .dashboard-stat.yellow-crusta .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow-crusta .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow-crusta .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow-crusta .more {
        color: #FFFFFF;
        background-color: #dfb200;
    }

/* General Element */
.bg-yellow-crusta {
    border-color: #f3c200 !important;
    background-image: none !important;
    background-color: #f3c200 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow-crusta {
    color: #f3c200 !important;
}

.progress-bar.yellow-crusta {
    background: #f3c200 !important;
    color: #FFFFFF !important;
}

/***
Yellow Lemon
***/
/* Button */
.yellow-lemon.btn {
    color: #FFFFFF;
    background-color: #F7CA18;
    border-color: "";
}

    .yellow-lemon.btn:hover, .yellow-lemon.btn:focus, .yellow-lemon.btn:active, .yellow-lemon.btn.active {
        color: #FFFFFF;
        background-color: #e3b708;
    }

.open .yellow-lemon.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #e3b708;
}

.yellow-lemon.btn:active, .yellow-lemon.btn.active {
    background-image: none;
    background-color: #cba307;
}

    .yellow-lemon.btn:active:hover, .yellow-lemon.btn.active:hover {
        background-color: #d5ab07;
    }

.open .yellow-lemon.btn.dropdown-toggle {
    background-image: none;
}

.yellow-lemon.btn.disabled, .yellow-lemon.btn.disabled:hover, .yellow-lemon.btn.disabled:focus, .yellow-lemon.btn.disabled:active, .yellow-lemon.btn.disabled.active, .yellow-lemon.btn[disabled], .yellow-lemon.btn[disabled]:hover, .yellow-lemon.btn[disabled]:focus, .yellow-lemon.btn[disabled]:active, .yellow-lemon.btn[disabled].active, fieldset[disabled] .yellow-lemon.btn, fieldset[disabled] .yellow-lemon.btn:hover, fieldset[disabled] .yellow-lemon.btn:focus, fieldset[disabled] .yellow-lemon.btn:active, fieldset[disabled] .yellow-lemon.btn.active {
    background-color: #F7CA18;
}

.yellow-lemon.btn .badge {
    color: #F7CA18;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-lemon-stripe {
    border-left: 3px solid #F7CA18;
}

/* Portlet */
.portlet > .portlet-body.yellow-lemon,
.portlet.yellow-lemon {
    background-color: #F7CA18;
}

.portlet.solid.yellow-lemon > .portlet-title,
.portlet.solid.yellow-lemon > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow-lemon > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow-lemon > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow-lemon {
    border: 1px solid #f9d549;
    border-top: 0;
}

    .portlet.box.yellow-lemon > .portlet-title {
        background-color: #F7CA18;
    }

        .portlet.box.yellow-lemon > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow-lemon > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #fbe384;
            color: #fce99d;
        }

            .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default > i {
                color: #fcecac;
            }

            .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default:active, .portlet.box.yellow-lemon > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fceeb6;
                color: #fdf4ce;
            }

/* Statistic Block */
.dashboard-stat.yellow-lemon {
    background-color: #F7CA18;
}

    .dashboard-stat.yellow-lemon.dashboard-stat-light:hover {
        background-color: #f2c308;
    }

    .dashboard-stat.yellow-lemon .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow-lemon .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow-lemon .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow-lemon .more {
        color: #FFFFFF;
        background-color: #f2c308;
    }

/* General Element */
.bg-yellow-lemon {
    border-color: #F7CA18 !important;
    background-image: none !important;
    background-color: #F7CA18 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow-lemon {
    color: #F7CA18 !important;
}

.progress-bar.yellow-lemon {
    background: #F7CA18 !important;
    color: #FFFFFF !important;
}

/***
Yellow Saffron
***/
/* Button */
.yellow-saffron.btn {
    color: #FFFFFF;
    background-color: #F4D03F;
    border-color: "";
}

    .yellow-saffron.btn:hover, .yellow-saffron.btn:focus, .yellow-saffron.btn:active, .yellow-saffron.btn.active {
        color: #FFFFFF;
        background-color: #f2c81d;
    }

.open .yellow-saffron.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #f2c81d;
}

.yellow-saffron.btn:active, .yellow-saffron.btn.active {
    background-image: none;
    background-color: #e8bd0d;
}

    .yellow-saffron.btn:active:hover, .yellow-saffron.btn.active:hover {
        background-color: #f1c40f;
    }

.open .yellow-saffron.btn.dropdown-toggle {
    background-image: none;
}

.yellow-saffron.btn.disabled, .yellow-saffron.btn.disabled:hover, .yellow-saffron.btn.disabled:focus, .yellow-saffron.btn.disabled:active, .yellow-saffron.btn.disabled.active, .yellow-saffron.btn[disabled], .yellow-saffron.btn[disabled]:hover, .yellow-saffron.btn[disabled]:focus, .yellow-saffron.btn[disabled]:active, .yellow-saffron.btn[disabled].active, fieldset[disabled] .yellow-saffron.btn, fieldset[disabled] .yellow-saffron.btn:hover, fieldset[disabled] .yellow-saffron.btn:focus, fieldset[disabled] .yellow-saffron.btn:active, fieldset[disabled] .yellow-saffron.btn.active {
    background-color: #F4D03F;
}

.yellow-saffron.btn .badge {
    color: #F4D03F;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.yellow-saffron-stripe {
    border-left: 3px solid #F4D03F;
}

/* Portlet */
.portlet > .portlet-body.yellow-saffron,
.portlet.yellow-saffron {
    background-color: #F4D03F;
}

.portlet.solid.yellow-saffron > .portlet-title,
.portlet.solid.yellow-saffron > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.yellow-saffron > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.yellow-saffron > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.yellow-saffron {
    border: 1px solid #f7dc6f;
    border-top: 0;
}

    .portlet.box.yellow-saffron > .portlet-title {
        background-color: #F4D03F;
    }

        .portlet.box.yellow-saffron > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.yellow-saffron > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #faeaa9;
            color: #fbf0c1;
        }

            .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default > i {
                color: #fcf3d0;
            }

            .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default:hover, .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default:focus, .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default:active, .portlet.box.yellow-saffron > .portlet-title > .actions .btn-default.active {
                border: 1px solid #fdf6d9;
                color: #fefcf1;
            }

/* Statistic Block */
.dashboard-stat.yellow-saffron {
    background-color: #F4D03F;
}

    .dashboard-stat.yellow-saffron.dashboard-stat-light:hover {
        background-color: #f3cb2c;
    }

    .dashboard-stat.yellow-saffron .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.yellow-saffron .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.yellow-saffron .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.yellow-saffron .more {
        color: #FFFFFF;
        background-color: #f3cb2c;
    }

/* General Element */
.bg-yellow-saffron {
    border-color: #F4D03F !important;
    background-image: none !important;
    background-color: #F4D03F !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-yellow-saffron {
    color: #F4D03F !important;
}

.progress-bar.yellow-saffron {
    background: #F4D03F !important;
    color: #FFFFFF !important;
}

/***********
Purple Colors
************/
/***
Purple Default
***/
/* Button */
.purple.btn {
    color: #FFFFFF;
    background-color: #8E44AD;
    border-color: "";
}

    .purple.btn:hover, .purple.btn:focus, .purple.btn:active, .purple.btn.active {
        color: #FFFFFF;
        background-color: #793a93;
    }

.open .purple.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #793a93;
}

.purple.btn:active, .purple.btn.active {
    background-image: none;
    background-color: #6a3381;
}

    .purple.btn:active:hover, .purple.btn.active:hover {
        background-color: #703688;
    }

.open .purple.btn.dropdown-toggle {
    background-image: none;
}

.purple.btn.disabled, .purple.btn.disabled:hover, .purple.btn.disabled:focus, .purple.btn.disabled:active, .purple.btn.disabled.active, .purple.btn[disabled], .purple.btn[disabled]:hover, .purple.btn[disabled]:focus, .purple.btn[disabled]:active, .purple.btn[disabled].active, fieldset[disabled] .purple.btn, fieldset[disabled] .purple.btn:hover, fieldset[disabled] .purple.btn:focus, fieldset[disabled] .purple.btn:active, fieldset[disabled] .purple.btn.active {
    background-color: #8E44AD;
}

.purple.btn .badge {
    color: #8E44AD;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-stripe {
    border-left: 3px solid #8E44AD;
}

/* Portlet */
.portlet > .portlet-body.purple,
.portlet.purple {
    background-color: #8E44AD;
}

.portlet.solid.purple > .portlet-title,
.portlet.solid.purple > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple {
    border: 1px solid #a563c1;
    border-top: 0;
}

    .portlet.box.purple > .portlet-title {
        background-color: #8E44AD;
    }

        .portlet.box.purple > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #bf8ed3;
            color: #c9a1da;
        }

            .portlet.box.purple > .portlet-title > .actions .btn-default > i {
                color: #cfacde;
            }

            .portlet.box.purple > .portlet-title > .actions .btn-default:hover, .portlet.box.purple > .portlet-title > .actions .btn-default:focus, .portlet.box.purple > .portlet-title > .actions .btn-default:active, .portlet.box.purple > .portlet-title > .actions .btn-default.active {
                border: 1px solid #d4b3e1;
                color: #dec5e8;
            }

/* Statistic Block */
.dashboard-stat.purple {
    background-color: #8E44AD;
}

    .dashboard-stat.purple.dashboard-stat-light:hover {
        background-color: #823e9e;
    }

    .dashboard-stat.purple .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple .more {
        color: #FFFFFF;
        background-color: #823e9e;
    }

/* General Element */
.bg-purple {
    border-color: #8E44AD !important;
    background-image: none !important;
    background-color: #8E44AD !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple {
    color: #8E44AD !important;
}

.progress-bar.purple {
    background: #8E44AD !important;
    color: #FFFFFF !important;
}

/***
Purple Plum
***/
/* Button */
.purple-plum.btn {
    color: #FFFFFF;
    background-color: #8775a7;
    border-color: "";
}

    .purple-plum.btn:hover, .purple-plum.btn:focus, .purple-plum.btn:active, .purple-plum.btn.active {
        color: #FFFFFF;
        background-color: #746198;
    }

.open .purple-plum.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #746198;
}

.purple-plum.btn:active, .purple-plum.btn.active {
    background-image: none;
    background-color: #685788;
}

    .purple-plum.btn:active:hover, .purple-plum.btn.active:hover {
        background-color: #6d5b8e;
    }

.open .purple-plum.btn.dropdown-toggle {
    background-image: none;
}

.purple-plum.btn.disabled, .purple-plum.btn.disabled:hover, .purple-plum.btn.disabled:focus, .purple-plum.btn.disabled:active, .purple-plum.btn.disabled.active, .purple-plum.btn[disabled], .purple-plum.btn[disabled]:hover, .purple-plum.btn[disabled]:focus, .purple-plum.btn[disabled]:active, .purple-plum.btn[disabled].active, fieldset[disabled] .purple-plum.btn, fieldset[disabled] .purple-plum.btn:hover, fieldset[disabled] .purple-plum.btn:focus, fieldset[disabled] .purple-plum.btn:active, fieldset[disabled] .purple-plum.btn.active {
    background-color: #8775a7;
}

.purple-plum.btn .badge {
    color: #8775a7;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-plum-stripe {
    border-left: 3px solid #8775a7;
}

/* Portlet */
.portlet > .portlet-body.purple-plum,
.portlet.purple-plum {
    background-color: #8775a7;
}

.portlet.solid.purple-plum > .portlet-title,
.portlet.solid.purple-plum > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-plum > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-plum > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-plum {
    border: 1px solid #a294bb;
    border-top: 0;
}

    .portlet.box.purple-plum > .portlet-title {
        background-color: #8775a7;
    }

        .portlet.box.purple-plum > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-plum > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-plum > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #c3bad3;
            color: #d0c9dd;
        }

            .portlet.box.purple-plum > .portlet-title > .actions .btn-default > i {
                color: #d8d2e3;
            }

            .portlet.box.purple-plum > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-plum > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-plum > .portlet-title > .actions .btn-default:active, .portlet.box.purple-plum > .portlet-title > .actions .btn-default.active {
                border: 1px solid #ded9e7;
                color: #ebe8f0;
            }

/* Statistic Block */
.dashboard-stat.purple-plum {
    background-color: #8775a7;
}

    .dashboard-stat.purple-plum.dashboard-stat-light:hover {
        background-color: #7c699f;
    }

    .dashboard-stat.purple-plum .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-plum .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-plum .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-plum .more {
        color: #FFFFFF;
        background-color: #7c699f;
    }

/* General Element */
.bg-purple-plum {
    border-color: #8775a7 !important;
    background-image: none !important;
    background-color: #8775a7 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-plum {
    color: #8775a7 !important;
}

.progress-bar.purple-plum {
    background: #8775a7 !important;
    color: #FFFFFF !important;
}

/***
Purple Medium
***/
/* Button */
.purple-medium.btn {
    color: #FFFFFF;
    background-color: #BF55EC;
    border-color: "";
}

    .purple-medium.btn:hover, .purple-medium.btn:focus, .purple-medium.btn:active, .purple-medium.btn.active {
        color: #FFFFFF;
        background-color: #b335e8;
    }

.open .purple-medium.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #b335e8;
}

.purple-medium.btn:active, .purple-medium.btn.active {
    background-image: none;
    background-color: #aa1ee6;
}

    .purple-medium.btn:active:hover, .purple-medium.btn.active:hover {
        background-color: #ae27e7;
    }

.open .purple-medium.btn.dropdown-toggle {
    background-image: none;
}

.purple-medium.btn.disabled, .purple-medium.btn.disabled:hover, .purple-medium.btn.disabled:focus, .purple-medium.btn.disabled:active, .purple-medium.btn.disabled.active, .purple-medium.btn[disabled], .purple-medium.btn[disabled]:hover, .purple-medium.btn[disabled]:focus, .purple-medium.btn[disabled]:active, .purple-medium.btn[disabled].active, fieldset[disabled] .purple-medium.btn, fieldset[disabled] .purple-medium.btn:hover, fieldset[disabled] .purple-medium.btn:focus, fieldset[disabled] .purple-medium.btn:active, fieldset[disabled] .purple-medium.btn.active {
    background-color: #BF55EC;
}

.purple-medium.btn .badge {
    color: #BF55EC;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-medium-stripe {
    border-left: 3px solid #BF55EC;
}

/* Portlet */
.portlet > .portlet-body.purple-medium,
.portlet.purple-medium {
    background-color: #BF55EC;
}

.portlet.solid.purple-medium > .portlet-title,
.portlet.solid.purple-medium > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-medium > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-medium > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-medium {
    border: 1px solid #d083f1;
    border-top: 0;
}

    .portlet.box.purple-medium > .portlet-title {
        background-color: #BF55EC;
    }

        .portlet.box.purple-medium > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-medium > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-medium > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #e5baf7;
            color: #eed1fa;
        }

            .portlet.box.purple-medium > .portlet-title > .actions .btn-default > i {
                color: #f3dffb;
            }

            .portlet.box.purple-medium > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-medium > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-medium > .portlet-title > .actions .btn-default:active, .portlet.box.purple-medium > .portlet-title > .actions .btn-default.active {
                border: 1px solid #f6e8fc;
                color: white;
            }

/* Statistic Block */
.dashboard-stat.purple-medium {
    background-color: #BF55EC;
}

    .dashboard-stat.purple-medium.dashboard-stat-light:hover {
        background-color: #b843ea;
    }

    .dashboard-stat.purple-medium .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-medium .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-medium .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-medium .more {
        color: #FFFFFF;
        background-color: #b843ea;
    }

/* General Element */
.bg-purple-medium {
    border-color: #BF55EC !important;
    background-image: none !important;
    background-color: #BF55EC !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-medium {
    color: #BF55EC !important;
}

.progress-bar.purple-medium {
    background: #BF55EC !important;
    color: #FFFFFF !important;
}

/***
Purple Studio
***/
/* Button */
.purple-studio.btn {
    color: #FFFFFF;
    background-color: #8E44AD;
    border-color: "";
}

    .purple-studio.btn:hover, .purple-studio.btn:focus, .purple-studio.btn:active, .purple-studio.btn.active {
        color: #FFFFFF;
        background-color: #793a93;
    }

.open .purple-studio.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #793a93;
}

.purple-studio.btn:active, .purple-studio.btn.active {
    background-image: none;
    background-color: #6a3381;
}

    .purple-studio.btn:active:hover, .purple-studio.btn.active:hover {
        background-color: #703688;
    }

.open .purple-studio.btn.dropdown-toggle {
    background-image: none;
}

.purple-studio.btn.disabled, .purple-studio.btn.disabled:hover, .purple-studio.btn.disabled:focus, .purple-studio.btn.disabled:active, .purple-studio.btn.disabled.active, .purple-studio.btn[disabled], .purple-studio.btn[disabled]:hover, .purple-studio.btn[disabled]:focus, .purple-studio.btn[disabled]:active, .purple-studio.btn[disabled].active, fieldset[disabled] .purple-studio.btn, fieldset[disabled] .purple-studio.btn:hover, fieldset[disabled] .purple-studio.btn:focus, fieldset[disabled] .purple-studio.btn:active, fieldset[disabled] .purple-studio.btn.active {
    background-color: #8E44AD;
}

.purple-studio.btn .badge {
    color: #8E44AD;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-studio-stripe {
    border-left: 3px solid #8E44AD;
}

/* Portlet */
.portlet > .portlet-body.purple-studio,
.portlet.purple-studio {
    background-color: #8E44AD;
}

.portlet.solid.purple-studio > .portlet-title,
.portlet.solid.purple-studio > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-studio > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-studio > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-studio {
    border: 1px solid #a563c1;
    border-top: 0;
}

    .portlet.box.purple-studio > .portlet-title {
        background-color: #8E44AD;
    }

        .portlet.box.purple-studio > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-studio > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-studio > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #bf8ed3;
            color: #c9a1da;
        }

            .portlet.box.purple-studio > .portlet-title > .actions .btn-default > i {
                color: #cfacde;
            }

            .portlet.box.purple-studio > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-studio > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-studio > .portlet-title > .actions .btn-default:active, .portlet.box.purple-studio > .portlet-title > .actions .btn-default.active {
                border: 1px solid #d4b3e1;
                color: #dec5e8;
            }

/* Statistic Block */
.dashboard-stat.purple-studio {
    background-color: #8E44AD;
}

    .dashboard-stat.purple-studio.dashboard-stat-light:hover {
        background-color: #823e9e;
    }

    .dashboard-stat.purple-studio .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-studio .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-studio .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-studio .more {
        color: #FFFFFF;
        background-color: #823e9e;
    }

/* General Element */
.bg-purple-studio {
    border-color: #8E44AD !important;
    background-image: none !important;
    background-color: #8E44AD !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-studio {
    color: #8E44AD !important;
}

.progress-bar.purple-studio {
    background: #8E44AD !important;
    color: #FFFFFF !important;
}

/***
Purple Wisteria
***/
/* Button */
.purple-wisteria.btn {
    color: #FFFFFF;
    background-color: #9B59B6;
    border-color: "";
}

    .purple-wisteria.btn:hover, .purple-wisteria.btn:focus, .purple-wisteria.btn:active, .purple-wisteria.btn.active {
        color: #FFFFFF;
        background-color: #8948a3;
    }

.open .purple-wisteria.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #8948a3;
}

.purple-wisteria.btn:active, .purple-wisteria.btn.active {
    background-image: none;
    background-color: #7a4092;
}

    .purple-wisteria.btn:active:hover, .purple-wisteria.btn.active:hover {
        background-color: #804399;
    }

.open .purple-wisteria.btn.dropdown-toggle {
    background-image: none;
}

.purple-wisteria.btn.disabled, .purple-wisteria.btn.disabled:hover, .purple-wisteria.btn.disabled:focus, .purple-wisteria.btn.disabled:active, .purple-wisteria.btn.disabled.active, .purple-wisteria.btn[disabled], .purple-wisteria.btn[disabled]:hover, .purple-wisteria.btn[disabled]:focus, .purple-wisteria.btn[disabled]:active, .purple-wisteria.btn[disabled].active, fieldset[disabled] .purple-wisteria.btn, fieldset[disabled] .purple-wisteria.btn:hover, fieldset[disabled] .purple-wisteria.btn:focus, fieldset[disabled] .purple-wisteria.btn:active, fieldset[disabled] .purple-wisteria.btn.active {
    background-color: #9B59B6;
}

.purple-wisteria.btn .badge {
    color: #9B59B6;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-wisteria-stripe {
    border-left: 3px solid #9B59B6;
}

/* Portlet */
.portlet > .portlet-body.purple-wisteria,
.portlet.purple-wisteria {
    background-color: #9B59B6;
}

.portlet.solid.purple-wisteria > .portlet-title,
.portlet.solid.purple-wisteria > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-wisteria > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-wisteria > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-wisteria {
    border: 1px solid #b07cc6;
    border-top: 0;
}

    .portlet.box.purple-wisteria > .portlet-title {
        background-color: #9B59B6;
    }

        .portlet.box.purple-wisteria > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-wisteria > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #caa7d8;
            color: #d5b9e0;
        }

            .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default > i {
                color: #dbc3e5;
            }

            .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default:active, .portlet.box.purple-wisteria > .portlet-title > .actions .btn-default.active {
                border: 1px solid #dfcae8;
                color: #eadcf0;
            }

/* Statistic Block */
.dashboard-stat.purple-wisteria {
    background-color: #9B59B6;
}

    .dashboard-stat.purple-wisteria.dashboard-stat-light:hover {
        background-color: #924dae;
    }

    .dashboard-stat.purple-wisteria .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-wisteria .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-wisteria .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-wisteria .more {
        color: #FFFFFF;
        background-color: #924dae;
    }

/* General Element */
.bg-purple-wisteria {
    border-color: #9B59B6 !important;
    background-image: none !important;
    background-color: #9B59B6 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-wisteria {
    color: #9B59B6 !important;
}

.progress-bar.purple-wisteria {
    background: #9B59B6 !important;
    color: #FFFFFF !important;
}

/***
Purple Seance
***/
/* Button */
.purple-seance.btn {
    color: #FFFFFF;
    background-color: #9A12B3;
    border-color: "";
}

    .purple-seance.btn:hover, .purple-seance.btn:focus, .purple-seance.btn:active, .purple-seance.btn.active {
        color: #FFFFFF;
        background-color: #7e0f93;
    }

.open .purple-seance.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #7e0f93;
}

.purple-seance.btn:active, .purple-seance.btn.active {
    background-image: none;
    background-color: #6a0c7b;
}

    .purple-seance.btn:active:hover, .purple-seance.btn.active:hover {
        background-color: #720d85;
    }

.open .purple-seance.btn.dropdown-toggle {
    background-image: none;
}

.purple-seance.btn.disabled, .purple-seance.btn.disabled:hover, .purple-seance.btn.disabled:focus, .purple-seance.btn.disabled:active, .purple-seance.btn.disabled.active, .purple-seance.btn[disabled], .purple-seance.btn[disabled]:hover, .purple-seance.btn[disabled]:focus, .purple-seance.btn[disabled]:active, .purple-seance.btn[disabled].active, fieldset[disabled] .purple-seance.btn, fieldset[disabled] .purple-seance.btn:hover, fieldset[disabled] .purple-seance.btn:focus, fieldset[disabled] .purple-seance.btn:active, fieldset[disabled] .purple-seance.btn.active {
    background-color: #9A12B3;
}

.purple-seance.btn .badge {
    color: #9A12B3;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-seance-stripe {
    border-left: 3px solid #9A12B3;
}

/* Portlet */
.portlet > .portlet-body.purple-seance,
.portlet.purple-seance {
    background-color: #9A12B3;
}

.portlet.solid.purple-seance > .portlet-title,
.portlet.solid.purple-seance > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-seance > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-seance > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-seance {
    border: 1px solid #c217e1;
    border-top: 0;
}

    .portlet.box.purple-seance > .portlet-title {
        background-color: #9A12B3;
    }

        .portlet.box.purple-seance > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-seance > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-seance > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #d349ed;
            color: #d960ef;
        }

            .portlet.box.purple-seance > .portlet-title > .actions .btn-default > i {
                color: #dc6ef0;
            }

            .portlet.box.purple-seance > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-seance > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-seance > .portlet-title > .actions .btn-default:active, .portlet.box.purple-seance > .portlet-title > .actions .btn-default.active {
                border: 1px solid #de77f1;
                color: #e48ef4;
            }

/* Statistic Block */
.dashboard-stat.purple-seance {
    background-color: #9A12B3;
}

    .dashboard-stat.purple-seance.dashboard-stat-light:hover {
        background-color: #8a10a0;
    }

    .dashboard-stat.purple-seance .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-seance .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-seance .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-seance .more {
        color: #FFFFFF;
        background-color: #8a10a0;
    }

/* General Element */
.bg-purple-seance {
    border-color: #9A12B3 !important;
    background-image: none !important;
    background-color: #9A12B3 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-seance {
    color: #9A12B3 !important;
}

.progress-bar.purple-seance {
    background: #9A12B3 !important;
    color: #FFFFFF !important;
}

/***
Purple Intense
***/
/* Button */
.purple-intense.btn {
    color: #FFFFFF;
    background-color: #8775a7;
    border-color: "";
}

    .purple-intense.btn:hover, .purple-intense.btn:focus, .purple-intense.btn:active, .purple-intense.btn.active {
        color: #FFFFFF;
        background-color: #746198;
    }

.open .purple-intense.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #746198;
}

.purple-intense.btn:active, .purple-intense.btn.active {
    background-image: none;
    background-color: #685788;
}

    .purple-intense.btn:active:hover, .purple-intense.btn.active:hover {
        background-color: #6d5b8e;
    }

.open .purple-intense.btn.dropdown-toggle {
    background-image: none;
}

.purple-intense.btn.disabled, .purple-intense.btn.disabled:hover, .purple-intense.btn.disabled:focus, .purple-intense.btn.disabled:active, .purple-intense.btn.disabled.active, .purple-intense.btn[disabled], .purple-intense.btn[disabled]:hover, .purple-intense.btn[disabled]:focus, .purple-intense.btn[disabled]:active, .purple-intense.btn[disabled].active, fieldset[disabled] .purple-intense.btn, fieldset[disabled] .purple-intense.btn:hover, fieldset[disabled] .purple-intense.btn:focus, fieldset[disabled] .purple-intense.btn:active, fieldset[disabled] .purple-intense.btn.active {
    background-color: #8775a7;
}

.purple-intense.btn .badge {
    color: #8775a7;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-intense-stripe {
    border-left: 3px solid #8775a7;
}

/* Portlet */
.portlet > .portlet-body.purple-intense,
.portlet.purple-intense {
    background-color: #8775a7;
}

.portlet.solid.purple-intense > .portlet-title,
.portlet.solid.purple-intense > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-intense > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-intense > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-intense {
    border: 1px solid #a294bb;
    border-top: 0;
}

    .portlet.box.purple-intense > .portlet-title {
        background-color: #8775a7;
    }

        .portlet.box.purple-intense > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-intense > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-intense > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #c3bad3;
            color: #d0c9dd;
        }

            .portlet.box.purple-intense > .portlet-title > .actions .btn-default > i {
                color: #d8d2e3;
            }

            .portlet.box.purple-intense > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-intense > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-intense > .portlet-title > .actions .btn-default:active, .portlet.box.purple-intense > .portlet-title > .actions .btn-default.active {
                border: 1px solid #ded9e7;
                color: #ebe8f0;
            }

/* Statistic Block */
.dashboard-stat.purple-intense {
    background-color: #8775a7;
}

    .dashboard-stat.purple-intense.dashboard-stat-light:hover {
        background-color: #7c699f;
    }

    .dashboard-stat.purple-intense .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-intense .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-intense .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-intense .more {
        color: #FFFFFF;
        background-color: #7c699f;
    }

/* General Element */
.bg-purple-intense {
    border-color: #8775a7 !important;
    background-image: none !important;
    background-color: #8775a7 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-intense {
    color: #8775a7 !important;
}

.progress-bar.purple-intense {
    background: #8775a7 !important;
    color: #FFFFFF !important;
}

/***
Purple Sharp
***/
/* Button */
.purple-sharp.btn {
    color: #FFFFFF;
    background-color: #796799;
    border-color: "";
}

    .purple-sharp.btn:hover, .purple-sharp.btn:focus, .purple-sharp.btn:active, .purple-sharp.btn.active {
        color: #FFFFFF;
        background-color: #685884;
    }

.open .purple-sharp.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #685884;
}

.purple-sharp.btn:active, .purple-sharp.btn.active {
    background-image: none;
    background-color: #5c4e75;
}

    .purple-sharp.btn:active:hover, .purple-sharp.btn.active:hover {
        background-color: #61527b;
    }

.open .purple-sharp.btn.dropdown-toggle {
    background-image: none;
}

.purple-sharp.btn.disabled, .purple-sharp.btn.disabled:hover, .purple-sharp.btn.disabled:focus, .purple-sharp.btn.disabled:active, .purple-sharp.btn.disabled.active, .purple-sharp.btn[disabled], .purple-sharp.btn[disabled]:hover, .purple-sharp.btn[disabled]:focus, .purple-sharp.btn[disabled]:active, .purple-sharp.btn[disabled].active, fieldset[disabled] .purple-sharp.btn, fieldset[disabled] .purple-sharp.btn:hover, fieldset[disabled] .purple-sharp.btn:focus, fieldset[disabled] .purple-sharp.btn:active, fieldset[disabled] .purple-sharp.btn.active {
    background-color: #796799;
}

.purple-sharp.btn .badge {
    color: #796799;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-sharp-stripe {
    border-left: 3px solid #796799;
}

/* Portlet */
.portlet > .portlet-body.purple-sharp,
.portlet.purple-sharp {
    background-color: #796799;
}

.portlet.solid.purple-sharp > .portlet-title,
.portlet.solid.purple-sharp > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-sharp > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-sharp > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-sharp {
    border: 1px solid #9486ad;
    border-top: 0;
}

    .portlet.box.purple-sharp > .portlet-title {
        background-color: #796799;
    }

        .portlet.box.purple-sharp > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-sharp > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-sharp > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #b4aac6;
            color: #c2b9d0;
        }

            .portlet.box.purple-sharp > .portlet-title > .actions .btn-default > i {
                color: #cac3d6;
            }

            .portlet.box.purple-sharp > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-sharp > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-sharp > .portlet-title > .actions .btn-default:active, .portlet.box.purple-sharp > .portlet-title > .actions .btn-default.active {
                border: 1px solid #cfc9db;
                color: #ddd8e5;
            }

/* Statistic Block */
.dashboard-stat.purple-sharp {
    background-color: #796799;
}

    .dashboard-stat.purple-sharp.dashboard-stat-light:hover {
        background-color: #6f5f8d;
    }

    .dashboard-stat.purple-sharp .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-sharp .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-sharp .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-sharp .more {
        color: #FFFFFF;
        background-color: #6f5f8d;
    }

/* General Element */
.bg-purple-sharp {
    border-color: #796799 !important;
    background-image: none !important;
    background-color: #796799 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-sharp {
    color: #796799 !important;
}

.progress-bar.purple-sharp {
    background: #796799 !important;
    color: #FFFFFF !important;
}

/***
Purple Soft
***/
/* Button */
.purple-soft.btn {
    color: #FFFFFF;
    background-color: #8877a9;
    border-color: "";
}

    .purple-soft.btn:hover, .purple-soft.btn:focus, .purple-soft.btn:active, .purple-soft.btn.active {
        color: #FFFFFF;
        background-color: #75629b;
    }

.open .purple-soft.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #75629b;
}

.purple-soft.btn:active, .purple-soft.btn.active {
    background-image: none;
    background-color: #69588b;
}

    .purple-soft.btn:active:hover, .purple-soft.btn.active:hover {
        background-color: #6e5c91;
    }

.open .purple-soft.btn.dropdown-toggle {
    background-image: none;
}

.purple-soft.btn.disabled, .purple-soft.btn.disabled:hover, .purple-soft.btn.disabled:focus, .purple-soft.btn.disabled:active, .purple-soft.btn.disabled.active, .purple-soft.btn[disabled], .purple-soft.btn[disabled]:hover, .purple-soft.btn[disabled]:focus, .purple-soft.btn[disabled]:active, .purple-soft.btn[disabled].active, fieldset[disabled] .purple-soft.btn, fieldset[disabled] .purple-soft.btn:hover, fieldset[disabled] .purple-soft.btn:focus, fieldset[disabled] .purple-soft.btn:active, fieldset[disabled] .purple-soft.btn.active {
    background-color: #8877a9;
}

.purple-soft.btn .badge {
    color: #8877a9;
    background-color: #FFFFFF;
}

/* Button Strip */
.btn.purple-soft-stripe {
    border-left: 3px solid #8877a9;
}

/* Portlet */
.portlet > .portlet-body.purple-soft,
.portlet.purple-soft {
    background-color: #8877a9;
}

.portlet.solid.purple-soft > .portlet-title,
.portlet.solid.purple-soft > .portlet-body {
    border: 0;
    color: #FFFFFF;
}

    .portlet.solid.purple-soft > .portlet-title > .caption > i {
        color: #FFFFFF;
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.remove {
        background-image: url(../../../../Scripts/layout/global/img/portlet-remove-icon-white.png);
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.config {
        background-image: url(../../../../Scripts/layout/global/img/portlet-config-icon-white.png);
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.reload {
        background-image: url(../../../../Scripts/layout/global/img/portlet-reload-icon-white.png);
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.expand {
        background-image: url(../../../../Scripts/layout/global/img/portlet-expand-icon-white.png);
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.collapse {
        background-image: url(../../../../Scripts/layout/global/img/portlet-collapse-icon-white.png);
    }

    .portlet.solid.purple-soft > .portlet-title > .tools > a.fullscreen {
        color: #fdfdfd;
    }

.portlet.box.purple-soft {
    border: 1px solid #a396bd;
    border-top: 0;
}

    .portlet.box.purple-soft > .portlet-title {
        background-color: #8877a9;
    }

        .portlet.box.purple-soft > .portlet-title > .caption {
            color: #FFFFFF;
        }

            .portlet.box.purple-soft > .portlet-title > .caption > i {
                color: #FFFFFF;
            }

        .portlet.box.purple-soft > .portlet-title > .actions .btn-default {
            background: transparent !important;
            background-color: transparent !important;
            border: 1px solid #c4bcd4;
            color: #d2cbde;
        }

            .portlet.box.purple-soft > .portlet-title > .actions .btn-default > i {
                color: #dad5e4;
            }

            .portlet.box.purple-soft > .portlet-title > .actions .btn-default:hover, .portlet.box.purple-soft > .portlet-title > .actions .btn-default:focus, .portlet.box.purple-soft > .portlet-title > .actions .btn-default:active, .portlet.box.purple-soft > .portlet-title > .actions .btn-default.active {
                border: 1px solid #dfdbe8;
                color: #edebf2;
            }

/* Statistic Block */
.dashboard-stat.purple-soft {
    background-color: #8877a9;
}

    .dashboard-stat.purple-soft.dashboard-stat-light:hover {
        background-color: #7d6ba1;
    }

    .dashboard-stat.purple-soft .visual > i {
        color: #FFFFFF;
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    .dashboard-stat.purple-soft .details .number {
        color: #FFFFFF;
    }

    .dashboard-stat.purple-soft .details .desc {
        color: #FFFFFF;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .dashboard-stat.purple-soft .more {
        color: #FFFFFF;
        background-color: #7d6ba1;
    }

/* General Element */
.bg-purple-soft {
    border-color: #8877a9 !important;
    background-image: none !important;
    background-color: #8877a9 !important;
    color: #FFFFFF !important;
}

/* General Text & Icon Font Colors */
.font-purple-soft {
    color: #8877a9 !important;
}

.progress-bar.purple-soft {
    background: #8877a9 !important;
    color: #FFFFFF !important;
}

/***
Transparent Button
***/
.btn-transparent.btn {
    background: transparent;
    color: #888;
}


.btn.more {
    background-color: #f1f3fa !important;
    color: #acb7be !important;
}

    .btn.more:hover {
        background-color: #ebedf3 !important;
        color: #79b4dd !important;
    }




/*--------------------------------------------------
	[Widgets]
----------------------------------------------------*/
/*** Widget Background Colors ***/
.widget-bg-color-purple {
    background: #9a7caf;
}

.widget-bg-color-purple-dark {
    background: #4b365a;
}

.widget-bg-color-purple-light {
    background: #674d79;
}

.widget-bg-color-green {
    background: #4db3a4;
}

.widget-bg-color-red {
    background: #f36a5a;
}

.widget-bg-color-blue {
    background: #5b9bd1;
}

.widget-bg-color-gray {
    background: #323c45;
}

.widget-bg-color-gray-dark {
    background: #144f57;
}

.widget-bg-color-white {
    background: #fff;
}

.widget-bg-color-dark {
    background: #3e4f5e;
}

.widget-bg-color-dark-light {
    background: #8e9daa;
}

.widget-bg-color-fb {
    background: #475e98;
}

.widget-bg-color-tw {
    background: #55acee;
}

/*** Widget Title Colors ***/
.widget-title-color-purple {
    color: #9a7caf;
}

.widget-title-color-purple-dark {
    color: #4b365a;
}

.widget-title-color-purple-light {
    color: #674d79;
}

.widget-title-color-green {
    color: #4db3a4;
}

.widget-title-color-red {
    color: #f36a5a;
}

.widget-title-color-blue {
    color: #5b9bd1;
}

.widget-title-color-gray {
    color: #323c45;
}

.widget-title-color-gray-dark {
    color: #144f57;
}

.widget-title-color-white {
    color: #fff;
}

.widget-title-color-dark {
    color: #3e4f5e;
}

.widget-title-color-dark-light {
    color: #8e9daa;
}

.widget-title-color-fb {
    color: #475e98;
}

.widget-title-color-tw {
    color: #55acee;
}

/*** Widget Thumb ***/
.widget-thumb {
    padding: 20px;
}

    .widget-thumb .widget-thumb-heading {
        font-size: 14px;
        font-weight: bold;
        color: #8e9daa;
        margin: 0 0 20px 0;
    }

    .widget-thumb .widget-thumb-wrap {
        overflow: hidden;
    }

        .widget-thumb .widget-thumb-wrap .widget-thumb-icon {
            float: left;
            width: 60px;
            height: 60px;
            display: inline-block;
            font-size: 20px;
            line-height: 41px;
            color: #fff;
            text-align: center;
            padding: 10px;
            margin-right: 15px;
        }

    .widget-thumb .widget-thumb-body {
        overflow: hidden;
    }

        .widget-thumb .widget-thumb-body .widget-thumb-subtitle {
            padding-top: 2px;
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #8e9daa;
        }

        .widget-thumb .widget-thumb-body .widget-thumb-body-stat {
            display: block;
            font-size: 30px;
            font-weight: 600;
            color: #3e4f5e;
        }

@media print {
    body {
        background-color: #fff !important;
    }

    .page-bar {
        display: none;
    }

    .page-sidebar-wrapper {
        display: none;
    }

    .theme-panel {
        display: none;
    }

    .hidden-print {
        display: none;
    }

    .page-footer {
        display: none;
    }

    .no-page-break {
        page-break-after: avoid;
    }

    .page-container {
        margin: 0px !important;
        padding: 0px !important;
    }

    .page-content {
        padding: 0 !important;
        min-height: 300px !important;
        padding: 0px 20px 20px !important;
        margin: 0 !important;
    }

        .page-content > .portlet {
            padding: 0;
            margin: 0;
        }

            .page-content > .portlet > .portlet-body {
                padding: 0;
                margin: 0;
            }
}
/***
Page Header
***/
.page-header.navbar {
    width: 100%;
    padding: 0 20px 0 20px;
    margin: 0;
    border: 0px;
    padding: 0px;
    box-shadow: none;
    height: 68px;
    min-height: 68px;
    filter: none;
    background-image: none;
    /* Fixed header */
    /* Header logo */
    /* header top */
    /* Search box */
    /* Menu Toggler */
    /* Top menu */
}

    .page-header.navbar.navbar-fixed-top {
        z-index: 9995;
    }

    .page-header.navbar.navbar-static-top {
        z-index: 9995;
    }

    .page-header.navbar .page-logo {
        float: left;
        display: block;
        width: 195px;
        height: 68px;
        padding-left: 40px;
        padding-right: 20px;
    }

        .page-header.navbar .page-logo > .logo-image,
        .page-header.navbar .page-logo > a {
            display: block;
            float: left;
        }

        .page-header.navbar .page-logo .logo-default {
            margin: 9px 0 0 0;
        }

        .page-header.navbar .page-logo .logo-mini {
            display: none;
            margin-left: 5px;
        }

        .page-header.navbar .page-logo .text-logo {
            padding-left: 20px;
            padding-top: 12px;
        }

    .page-header.navbar .page-top {
        height: 68px;
        background: #BAC0B6;
    }

    .page-header.navbar .search-form {
        margin-left: 10px;
        display: inline-block;
        width: 68px;
        position: relative;
        float: left !important;
        transition: all 0.6s;
    }

        .page-header.navbar .search-form .input-group .form-control {
            height: 68px;
            border: 0;
            background: transparent !important;
            font-size: 14px;
            padding-left: 0;
            margin-left: 12px;
            text-indent: -150000px;
        }

            .page-header.navbar .search-form .input-group .form-control:hover {
                cursor: pointer;
            }

        .page-header.navbar .search-form .input-group .input-group-btn {
            height: 68px;
        }

            .page-header.navbar .search-form .input-group .input-group-btn .btn.submit {
                margin-left: -24px;
                padding: 0;
                width: 68px;
                background: none;
                margin-top: 4px;
                display: block;
            }

                .page-header.navbar .search-form .input-group .input-group-btn .btn.submit > i {
                    font-size: 15px;
                }

        .page-header.navbar .search-form.open {
            transition: all 0.6s;
            width: 300px !important;
        }

            .page-header.navbar .search-form.open .input-group .form-control {
                text-indent: 0;
            }

                .page-header.navbar .search-form.open .input-group .form-control:hover {
                    cursor: text;
                }

            .page-header.navbar .search-form.open .input-group .input-group-btn .btn.submit {
                margin-left: 0;
            }

    .page-header.navbar .menu-toggler {
        display: block;
        cursor: pointer;
        opacity: 0.6;
        filter: alpha(opacity=60);
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url(../../../../Scripts/layout/img/sidebar-toggler.png);
    }

        .page-header.navbar .menu-toggler:hover {
            filter: alpha(opacity=100);
            opacity: 1;
        }

        .page-header.navbar .menu-toggler.sidebar-toggler {
            float: right;
            margin: 23px 0 0 0;
        }

.page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .menu-toggler.sidebar-toggler {
    margin-right: 17px;
}

.page-header.navbar .menu-toggler.responsive-toggler {
    display: none;
    float: right;
    margin: 24px 14px 0 6px;
    background-image: url(../../../../Scripts/layout/img/sidebar-toggler-inverse.png);
}

.page-header.navbar .page-actions {
    margin: 17px 0 15px 15px;
    padding: 0;
    float: left;
}

    .page-header.navbar .page-actions .btn-group .dropdown-menu:before {
        left: 9px;
        right: auto;
    }

    .page-header.navbar .page-actions .btn-group .dropdown-menu:after {
        left: 10px;
        right: auto;
    }

.page-header.navbar .top-menu {
    margin: 0;
    padding: 0;
    float: right;
}

    .page-header.navbar .top-menu .navbar-nav {
        padding: 0;
        margin-right: 20px;
        display: block;
        /* Extended Dropdowns */
        /* Notification */
        /* Inbox */
        /* Tasks */
        /* User */
        /* Language */
        /* Dark version */
    }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown {
            margin: 0px;
            padding: 0px;
            height: 68px;
            display: inline-block;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown:last-child {
                padding-right: 0px;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle {
                margin: 0px;
                padding: 28px 16px 19px 16px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:last-child {
                    padding-right: 15px;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > i {
                    font-size: 19px;
                }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > i.glyphicon {
                        top: 0;
                        font-size: 17px;
                    }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle > .badge {
                    font-family: "Open Sans", sans-serif;
                    position: absolute;
                    top: 17px;
                    right: 9px;
                    font-weight: 300;
                    padding: 3px 6px;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:focus {
                    background: none;
                }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu {
                margin-top: 9px;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                -ms-border-radius: 4px;
                -o-border-radius: 4px;
                border-radius: 4px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu:before {
                    position: absolute;
                    top: -7px;
                    right: 9px;
                    display: inline-block !important;
                    border-right: 7px solid transparent;
                    border-bottom: 7px solid #eee;
                    border-left: 7px solid transparent;
                    border-bottom-color: rgba(0, 0, 0, 0.2);
                    content: '';
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu:after {
                    position: absolute;
                    top: -6px;
                    right: 10px;
                    display: inline-block !important;
                    border-right: 6px solid transparent;
                    border-bottom: 6px solid #fff;
                    border-left: 6px solid transparent;
                    content: '';
                    display: none !important
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu > li > a {
                    color: #555;
                }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu {
            min-width: 160px;
            max-width: 275px;
            width: 275px;
            z-index: 9995;
            /* header notifications dropdowns */
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external {
                display: block;
                overflow: hidden;
                padding: 15px 15px;
                letter-spacing: 0.5px;
                -webkit-border-radius: 0 4px 4px 0;
                -moz-border-radius: 0 4px 4px 0;
                -ms-border-radius: 0 4px 4px 0;
                -o-border-radius: 0 4px 4px 0;
                border-radius: 0 4px 4px 0;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > h3 {
                    margin: 0;
                    padding: 0;
                    float: left;
                    font-size: 13px;
                    display: inline-block;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a {
                    display: inline-block;
                    padding: 0;
                    background: none;
                    clear: inherit;
                    font-size: 13px;
                    font-weight: 300;
                    position: absolute;
                    right: 10px;
                    border: 0;
                    margin-top: -1px;
                }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a:hover {
                        text-decoration: underline;
                    }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list {
                padding-right: 0 !important;
                padding-left: 0;
                list-style: none;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a {
                    display: block;
                    clear: both;
                    font-weight: 300;
                    line-height: 20px;
                    white-space: normal;
                    font-size: 13px;
                    padding: 16px 15px 18px;
                    text-shadow: none;
                }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a:hover {
                        opacity: 1;
                        filter: alpha(opacity=100);
                    }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li:first-child a {
                    border-top: none;
                }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details {
            overflow: hidden;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon {
                margin-right: 10px;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                border-radius: 50%;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon i {
                    margin-right: 2px;
                    margin-left: 1px;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .details .label-icon .badge {
                    right: 15px;
                }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li a .time {
            float: right;
            max-width: 75px;
            font-size: 11px;
            font-weight: 400;
            opacity: 0.7;
            filter: alpha(opacity=70);
            text-align: right;
            padding: 1px 5px;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .photo {
            float: left;
            margin: 0 6px 6px 0;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .photo img {
                height: 40px;
                width: 40px;
                -webkit-border-radius: 50% !important;
                -moz-border-radius: 50% !important;
                -ms-border-radius: 50% !important;
                -o-border-radius: 50% !important;
                border-radius: 50% !important;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject {
            display: block;
            margin-left: 46px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject .from {
                font-size: 13px;
                font-weight: 600;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .subject .time {
                font-size: 12px;
                font-weight: 400;
                opacity: 0.5;
                filter: alpha(opacity=50);
                float: right;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-menu .dropdown-menu-list > li .message {
            display: block !important;
            font-size: 12px;
            line-height: 1.3;
            margin-left: 46px;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task {
            margin-bottom: 5px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task .desc {
                font-size: 13px;
                font-weight: 300;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .task .percent {
                float: right;
                font-weight: 600;
                display: inline-block;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .progress {
            display: block;
            height: 8px;
            margin: 8px 0 2px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list > li .progress .progress-bar {
                box-shadow: none;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-user {
            padding: 0 0 0 10px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle {
                padding: 24px 12px 24px 12px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > .username {
                    display: inline-block;
                    font-size: 14px;
                    font-weight: 400;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > img {
                    float: left;
                    margin-top: -8px;
                    margin-right: 7px;
                    height: 39px;
                    display: inline-block;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > i {
                    display: inline-block;
                    margin-top: 5px;
                    margin: 0;
                    font-size: 14px;
                    font-weight: 400;
                }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu {
                width: 175px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a {
                    font-size: 14px;
                    font-weight: 300;
                }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a i {
                        width: 15px;
                        display: inline-block;
                        margin-right: 9px;
                    }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a .badge {
                        margin-right: 10px;
                    }

        .page-header.navbar .top-menu .navbar-nav > li.quick-sidebar-toggler {
            cursor: pointer;
            padding: 24px 12px 24px 12px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.quick-sidebar-toggler > i {
                top: 3px;
                color: #c0cddc;
                font-size: 19px;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-language {
            padding-left: 0;
            padding-right: 0;
            margin: 0;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle {
                font-size: 13px;
                padding: 24px 12px 24px 12px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > img {
                    margin-bottom: 2px;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > i {
                    font-size: 14px;
                }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-menu > li > a {
                font-size: 13px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-menu > li > a > img {
                    margin-bottom: 2px;
                    margin-right: 5px;
                }

        .page-header.navbar .top-menu .navbar-nav li.dropdown-dark .dropdown-menu {
            border: 0;
        }

            .page-header.navbar .top-menu .navbar-nav li.dropdown-dark .dropdown-menu:before {
                border-left: none;
                border-right: none;
            }

            .page-header.navbar .top-menu .navbar-nav li.dropdown-dark .dropdown-menu .dropdown-menu-list > li.external a {
                background: none !important;
                border: none !important;
            }

/* Allow expanded search for above 768px */
@media (min-width: 768px) {
    /* 768px */
    .page-header.navbar {
        /* Search box */
    }

        .page-header.navbar .search-form.search-form-expanded {
            width: 200px;
        }

            .page-header.navbar .search-form.search-form-expanded .input-group .form-control {
                text-indent: 0;
            }

                .page-header.navbar .search-form.search-form-expanded .input-group .form-control:hover {
                    cursor: text;
                }

            .page-header.navbar .search-form.search-form-expanded .input-group .input-group-btn .btn.submit {
                margin-left: 0;
            }
}
/* Form medium devices upto large devices */
@media (min-width: 992px) and (max-width: 1200px) {
    /* 992px 1200px */
    /* Boxed layout */
    .page-boxed .page-header.navbar {
        /* Top menu */
    }

        .page-boxed .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle .username.username-hide-on-mobile {
            display: none;
        }

        .page-boxed .page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle .langname {
            display: none;
        }
}

@media (min-width: 992px) {
    /* 992px */
    /* Page header */
    .page-header.navbar {
        /* Header logo */
    }

    .page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo {
        padding: 0;
    }

    .page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo {
        width: 54px;
    }

        .page-sidebar-closed.page-sidebar-closed-hide-logo .page-header.navbar .page-logo .logo-default {
            display: none;
        }

    /* Boxed Layout */
    .page-boxed .page-header.navbar {
        /* Page logo */
        /* Top menu */
    }

        .page-boxed .page-header.navbar .page-logo {
            width: 195px;
        }

        .page-boxed .page-header.navbar .top-menu .navbar-nav {
            margin-right: 20px;
        }

    /* Sidebar closed & logo hidden */
    .page-sidebar-closed.page-sidebar-closed-hide-logo.page-boxed .page-header.navbar {
        /* Page logo */
    }

        .page-sidebar-closed.page-sidebar-closed-hide-logo.page-boxed .page-header.navbar .page-logo {
            width: 54px;
        }

    /* Boxed layout & page sidebar fixed layout */
    .page-boxed.page-sidebar-fixed .page-header.navbar {
        /* Page logo */
    }

        .page-boxed.page-sidebar-fixed .page-header.navbar .page-logo {
            width: 195px;
        }
}

@media (max-width: 991px) {
    /* 991px */
    /* Page header */
    .page-header.navbar {
        padding: 0;
        margin: 0;
        position: relative;
        clear: both;
        /* Page logo */
        /* Menu Toggler */
        /* Search form */
        /* Top Menu */
    }

        .page-header.navbar .page-logo {
            width: auto;
            padding: 0 15px 0 10px;
        }

            .page-header.navbar .page-logo img {
                margin-left: 4px !important;
            }

        .page-header.navbar .menu-toggler.sidebar-toggler {
            display: none !important;
        }

        .page-header.navbar .menu-toggler.responsive-toggler {
            display: inline-block;
        }

        .page-header.navbar .search-form {
            margin-left: 0;
        }

            .page-header.navbar .search-form.open {
                width: 245px !important;
            }

        .page-header.navbar .page-header-inner.container {
            width: 100%;
            max-width: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .page-header.navbar .top-menu .navbar-nav {
            display: inline-block;
            margin: 0 10px 0 0;
        }

            .page-header.navbar .top-menu .navbar-nav > li {
                float: left;
            }

            .page-header.navbar .top-menu .navbar-nav .nav li.dropdown i {
                display: inline-block;
                position: relative;
                top: 1px;
                right: 0px;
            }

            .page-header.navbar .top-menu .navbar-nav .open .dropdown-menu {
                position: absolute;
            }

    /* Fixed header for mobile */
    .page-header-fixed.page-header-fixed-mobile .navbar-fixed-top {
        position: fixed;
    }

    /* Boxed Layout */
    .page-boxed .page-header.navbar > .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* 768px & 991px */
    /* Boxed Layout */
    .page-boxed .page-header.navbar {
        margin: auto !important;
        padding: 0;
    }

        .page-boxed .page-header.navbar > .container {
            margin: auto !important;
        }
}

@media (max-width: 767px) {
    /* 767px */
    /* Page header */
    .page-header.navbar {
        padding: 0;
        /* Header logo */
        /* Search box */
        /* Top navigation menu*/
    }

        .page-header.navbar .page-logo {
            width: auto;
        }

        .page-header.navbar .search-form.open {
            z-index: 3;
            left: 10px;
            right: 10px;
            position: absolute;
            width: auto !important;
            margin: 0 -10px !important;
        }

        .page-header.navbar .top-menu .navbar-nav:last-child {
            padding-left: 15px;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended > .dropdown-menu {
            max-width: 245px;
            width: 245px;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu {
            margin-right: -170px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu:before {
                margin-right: 170px;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu {
            margin-right: -120px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu:before {
                margin-right: 120px;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu {
            margin-right: -80px;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu:after, .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu:before {
                margin-right: 80px;
            }
}

@media (max-width: 480px) {
    /* Extended Dropdowns */
    .navbar-nav > li.dropdown-extended > a {
        padding: 28px 5px 19px 5px !important;
    }
    /* Quick Sidebar */
    .navbar-nav > li.quick-sidebar-toggler {
        padding-right: 0 !important;
    }
}

@media (max-width: 580px) {
    /* Page header */
    .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle .username.username-hide-on-mobile {
        display: none;
    }

    .page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle .langname {
        display: none;
    }
}

@media (max-width: 480px) {
    /* 480px */
    .page-header.navbar {
        height: 136px;
        /* Top menu */
    }

        .page-header.navbar .top-menu .navbar-nav {
            margin-right: 0;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle {
                padding: 28px 10px 19px 10px;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-language .dropdown-toggle {
                padding: 24px 6px 24px 6px;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-user {
                margin-right: 10px;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle {
                    padding: 24px 6px 24px 6px;
                }

        .page-header.navbar .menu-toggler.responsive-toggler {
            background-image: url(../../../../Scripts/layout/img/sidebar-toggler.png);
        }

        .page-header.navbar .search-form {
            margin-left: -12px;
        }

        .page-header.navbar .page-top {
            display: block;
            clear: both;
        }
}
/***
Pace - Page Progress
***/
.pace .pace-progress {
    z-index: 10000;
    top: 66px;
    height: 2px;
}

.pace .pace-progress-inner {
    box-shadow: none;
}

.pace .pace-activity {
    top: 70px;
    right: 22px;
    border-radius: 10px !important;
}

@media (max-width: 480px) {
    /* 480px */
    .page-header-fixed .pace .pace-progress {
        top: 136px;
    }

    .page-header-fixed .pace .pace-activity {
        top: 276px;
        right: 15px;
    }
}
/***
Page container
***/
.page-container {
    margin: 0px;
    padding: 0px;
    position: relative;
    /*background-color: #26344b;*/
    /* Fixed header */
    /* Fixed footer for mobile */
}

    .page-container:before, .page-container:after {
        content: " ";
        display: table;
    }

    .page-container:after {
        clear: both;
    }

.page-header-fixed .page-container {
    margin-top: 40px;
}

.page-footer-fixed.page-footer-fixed-mobile .page-container {
    margin-bottom: 20px !important;
}

@media (min-width: 1260px) {
    /* 1200px */
    .container {
        width: 1270px;
    }
}

@media (min-width: 992px) {
    /* Page container in fixed footer */
    .page-footer-fixed .page-container {
        margin-bottom: 15px !important;
    }
}

@media (max-width: 991px) {
    /* Page container */
    .page-container {
        margin: 0 !important;
        padding: 0 !important;
    }

    .page-header-fixed.page-header-fixed-mobile .page-container {
        margin-top: 68px !important;
    }
}

@media (max-width: 480px) {
    /* Page container */
    .page-header-fixed.page-header-fixed-mobile .page-container {
        margin-top: 136px !important;
    }
}
/******************
Page Quick Sidebar
******************/
/***
Quick Sidebar Layout
***/
/* Page Portlet Fullscreen */
.page-portlet-fullscreen .page-quick-sidebar-wrapper,
.page-portlet-fullscreen .page-quick-sidebar-toggler {
    z-index: -1;
}

/* Quick sidebar toggler */
.page-header .mega-menu .quick-sidebar-toggler {
    top: 7px;
    border: none;
    outline: none;
    padding: 5px 5px;
    margin-left: 15px;
    position: relative;
    background: #45b6af;
}

    .page-header .mega-menu .quick-sidebar-toggler i {
        top: 0;
        color: #fff;
    }

.page-quick-sidebar-open .page-header .mega-menu .quick-sidebar-toggler i:before {
    content: "\e066";
}

/* Quick sidebar wrapper */
.page-quick-sidebar-wrapper {
    transition: right 0.3s;
    z-index: 9996;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -320px;
    width: 320px;
}

.page-quick-sidebar-open .page-quick-sidebar-wrapper {
    transition: right 0.3s;
    right: 0;
}

/*** 
Quick Sidebar Toggler 
***/
.page-quick-sidebar-toggler {
    overflow: hidden;
    z-index: 99999;
    display: none;
    width: 28px;
    height: 27px;
    position: fixed;
    top: 5px;
    right: 5px;
    text-align: center;
    padding-top: 6px;
    background: inherit !important;
}

.page-quick-sidebar-open .page-quick-sidebar-toggler {
    display: inline-block;
}

.page-quick-sidebar-toggler > i {
    font-size: 17px;
}

    .page-quick-sidebar-toggler > i:hover {
        color: #fff !important;
    }

/***
Quick Sidebar Content
***/
.page-quick-sidebar-wrapper {
    right: -320px;
    overflow: hidden;
}

    .page-quick-sidebar-wrapper .page-quick-sidebar {
        /* Quick sidebar tabs */
        /* Quick sidebar tabs content */
        /* Quick sidebar general list heading */
        /* Quick sidebar general list-items */
        /* Inner content */
        /* Quick sidebar list */
        /* Quick sidebar list item */
        /* Quick sidebar list item shown */
        /* Quick sidebar chat */
        /* Quick sidebar alerts */
        /* Quick sidebar settings */
    }

        .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified {
            margin: 0;
            padding: 0;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li {
                display: table-cell !important;
                width: 1% !important;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a {
                    border: 0;
                    height: auto;
                    font-size: 15px;
                    padding: 45px 15px 8px;
                    text-transform: uppercase;
                    -webkit-border-radius: 0;
                    -moz-border-radius: 0;
                    -ms-border-radius: 0;
                    -o-border-radius: 0;
                    border-radius: 0;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a > .badge {
                        position: absolute;
                        top: 45px;
                        right: 3px;
                    }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a:hover {
                        border: 0;
                    }

                .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu {
                    margin-top: 8px;
                    margin-right: 20px;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:before {
                        position: absolute;
                        top: -7px;
                        right: 19px;
                        display: inline-block !important;
                        border-right: 7px solid transparent;
                        border-left: 7px solid transparent;
                        border-bottom-color: rgba(0, 0, 0, 0.2);
                        content: '';
                    }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:after {
                        position: absolute;
                        top: -6px;
                        right: 20px;
                        display: inline-block !important;
                        border-right: 6px solid transparent;
                        border-bottom: 6px solid #fff;
                        border-left: 6px solid transparent;
                        content: '';
                    }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > .tab-content {
                margin: 0;
                padding: 0;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .list-heading {
            font-size: 16px;
            margin: 10px 10px;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .list-items {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li {
                margin: 0;
                padding: 15px;
                background: none;
                border-bottom-width: 1px;
                border-bottom-style: solid;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li:last-child {
                    border-bottom: 0;
                }

            .page-quick-sidebar-wrapper .page-quick-sidebar .list-items.borderless li {
                border: 0;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .inner-content {
            margin: 10px 10px;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-list {
            position: absolute !important;
            width: 320px !important;
            transition: margin 0.3s;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item {
            width: 320px;
            position: absolute !important;
            width: 320px !important;
            transition: margin 0.3s;
            margin-left: 320px;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav {
                padding: 15px 10px 0px 10px;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list {
                    vertical-align: middle;
                    display: inline-block;
                    font-size: 14px;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list > i {
                        font-size: 17px;
                        line-height: 17px;
                        vertical-align: top;
                        margin-right: 3px;
                    }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list {
            transition: margin 0.3s;
            margin-left: -320px;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list .slimScrollBar,
            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-list .slimScrollRail {
                display: none !important;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-content-item-shown .page-quick-sidebar-item {
            transition: margin 0.3s;
            margin-left: 0;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users {
            padding: 10px 0;
            position: relative;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media {
                padding: 15px 15px;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object {
                    border-radius: 50% !important;
                    width: 45.71429px;
                    opacity: 0.8;
                    filter: alpha(opacity=80);
                    float: left;
                    margin-right: 10px;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:before, .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:after {
                        content: " ";
                        display: table;
                    }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-object:after {
                        clear: both;
                    }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media:hover {
                    cursor: pointer;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media:hover .media-object {
                        opacity: 1;
                        filter: alpha(opacity=100);
                    }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading {
                    margin: 5px 0 0 0;
                    font-size: 14px;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-sub {
                    font-size: 11px;
                    text-transform: uppercase;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-small {
                    font-size: 10px;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-status {
                    margin-top: 10px;
                    right: 10px;
                    position: absolute;
                    display: inline-block;
                }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages {
            padding: 0px 10px;
            position: relative;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post {
                transition: display 0.3s;
                padding: 5px 0;
                margin: 10px auto;
                font-size: 13px;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .body {
                    color: #c3c3c3;
                    display: block;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .avatar {
                    width: 45.71429px;
                    border-radius: 50% !important;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .avatar {
                    float: left;
                    margin-right: 10px;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .avatar {
                    float: right;
                    margin-left: 10px;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .name {
                    font-size: 12px;
                    font-weight: 300;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .datetime {
                    font-size: 12px;
                    font-weight: 300;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .message {
                    display: block;
                    padding: 5px;
                    position: relative;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message {
                    text-align: left;
                    margin-left: 55px;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message .arrow {
                        display: block;
                        position: absolute;
                        top: 9px;
                        left: -6px;
                        width: 0;
                        height: 0;
                        border-top: 6px solid transparent;
                        border-bottom: 6px solid transparent;
                        border-right-width: 6px;
                        border-right-style: solid;
                    }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message {
                    margin-right: 55px;
                    text-align: right;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message .arrow {
                        display: block;
                        position: absolute;
                        top: 9px;
                        right: -6px;
                        border-top: 6px solid transparent;
                        border-bottom: 6px solid transparent;
                        border-left-width: 6px;
                        border-left-style: solid;
                    }

                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .name,
                .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .datetime {
                    text-align: right;
                }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-form {
            padding: 20px 10px 15px 10px;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-form .input-group .form-control {
                font-size: 13px;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list {
            padding: 10px 0;
            position: relative;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .label {
                margin-top: 5px;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .desc {
                padding: 0;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list {
            padding: 10px 0;
            position: relative;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li .bootstrap-switch {
                margin-top: -3px;
                float: right;
                border: 0;
                min-width: 59px;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li .form-control {
                width: 75px !important;
                padding: 4px 4px !important;
                float: right;
                border: 0;
                margin-top: -4px;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .page-quick-sidebar-settings .page-quick-sidebar-settings-list .list-items li select.form-control {
                padding: 4px 0px !important;
            }

/***
Quick Sidebar Layout
***/
.page-quick-sidebar-wrapper {
    background: #21282e;
}

    .page-quick-sidebar-wrapper .page-quick-sidebar {
        background: #21282e;
    }

/*** 
Quick Sidebar Toggler 
***/
.page-quick-sidebar-toggler {
    background: #36424c;
}

    .page-quick-sidebar-toggler:hover {
        background: #303a43;
    }

    .page-quick-sidebar-toggler > i {
        color: #99a8b5;
    }

/***
Quick Sidebar Content
***/
.page-quick-sidebar-wrapper {
    color: #99a8b5;
    /* Quick sidebar chat */
    /* Quick sidebar alerts */
}

    .page-quick-sidebar-wrapper .page-quick-sidebar {
        /* Quick sidebar tabs */
        /* Quick sidebar general list heading */
        /* Quick sidebar general list-items */
    }

        .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a {
            background: inherit;
            color: #90a1af;
            border-bottom: 3px solid rgba(243, 86, 93, 0.3);
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a:hover {
                border-bottom: 3px solid #f3565d;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.open > a {
            background: inherit;
            color: #90a1af;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.active > a {
            border: 0;
            border-bottom: 3px solid #f3565d;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu {
            border: 0;
            background: #36424c;
            box-shadow: 5px 5px rgba(97, 117, 135, 0.1);
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:before {
                border-bottom: 7px solid #36424c;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:after {
                border-bottom: 7px solid #36424c;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a {
                padding: 10px 15px;
                color: #99a8b5;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a > i {
                    color: #93a3b1;
                }

                .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover {
                    background: #3d4a55;
                    color: #99a8b5;
                }

                    .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover > i {
                        color: #9babb8;
                    }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.active > a {
                background: #38444f;
                color: #99a8b5;
            }

            .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.divider {
                background-color: #3d4a55;
            }

        .page-quick-sidebar-wrapper .page-quick-sidebar .list-heading {
            color: #6c8296;
        }

        .page-quick-sidebar-wrapper .page-quick-sidebar .list-items {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li {
                border-bottom-color: #273037;
            }

                .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li:hover {
                    background: #273037;
                }

    .page-quick-sidebar-wrapper .page-quick-sidebar-item {
        /* back to list */
    }

        .page-quick-sidebar-wrapper .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list {
            color: #90a1af;
        }

            .page-quick-sidebar-wrapper .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list:hover {
                text-decoration: none;
            }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-sub {
        color: #657b8d;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-small {
        color: #5d7081;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .name {
        color: #8496a7;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .datetime {
        color: #8496a7;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .message {
        color: #90a1af;
        background: #36424c;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message .arrow {
        border-right-color: #36424c;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message .arrow {
        border-left-color: #36424c;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a {
        color: #7e91a2;
    }

        .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a .desc {
            text-decoration: underline;
        }

    .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .desc {
        color: #788c9e;
    }

    .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .date {
        color: #5d7081;
    }
/***
Page sidebar
***/
/* IE8 fix */
.ie8 .page-sidebar {
    width: 195px;
    float: left;
    position: relative;
    margin-right: -100%;
}

/* Page Sidebar */
.page-sidebar,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover {
    /* Default sidebar menu */
    /* Compact sidebar menu */
    /* Compact hoverable sidebar menu */
}

    .page-sidebar.navbar-collapse,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover.navbar-collapse {
        padding: 0;
        box-shadow: none;
    }

    .page-sidebar .page-sidebar-menu,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        /* 1st level links */
        /* all links */
    }

        .page-sidebar .page-sidebar-menu > li,
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li {
            display: block;
            margin: 0;
            padding: 0;
            border: 0px;
        }

            .page-sidebar .page-sidebar-menu > li.start > a,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.start > a {
                border-top-color: transparent !important;
            }

            .page-sidebar .page-sidebar-menu > li.last > a,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.last > a {
                border-bottom-color: transparent !important;
            }

            .page-sidebar .page-sidebar-menu > li > a,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
                min-height: 78px;
                display: block;
                position: relative;
                margin: 0;
                border: 0px;
                padding: 12px 15px;
                text-decoration: none;
                font-size: 13px;
                font-weight: 300;
                text-align: center;
            }



                .page-sidebar .page-sidebar-menu > li > a > i,
                .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i {
                    font-size: 24px;
                    text-shadow: none;
                    font-weight: 300;
                    text-align: center;
                }

                    .page-sidebar .page-sidebar-menu > li > a > i.glyphicon,
                    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i.glyphicon {
                        top: 3px;
                        margin-left: 1px;
                        margin-right: 4px;
                    }

                .page-sidebar .page-sidebar-menu > li > a > [class^="icon-"],
                .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > [class^="icon-"] {
                    top: 2px;
                    margin-left: 1px;
                    margin-right: 2px;
                }

.page-sidebar-fixed .page-sidebar .page-sidebar-menu > li > a, .page-sidebar-fixed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
    transition: all 0.2s ease;
}

.page-sidebar-reversed.page-sidebar-fixed .page-sidebar .page-sidebar-menu > li > a, .page-sidebar-reversed.page-sidebar-fixed
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
    transition: none;
}

.page-sidebar .page-sidebar-menu > li.open > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a {
    font-size: 17px;
}

.page-sidebar .page-sidebar-menu > li.active > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a {
    border: none;
    text-shadow: none;
    font-size: 13px;
}







.page-sidebar .page-sidebar-menu li > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow:before {
    width: 10px;
    float: right;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: -32px;
    display: inline;
    font-size: 16px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900 !important;
    height: auto;
    content: "\f104";
    text-shadow: none;
}

.page-sidebar .page-sidebar-menu li > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow.open:before {
    content: "\f107";
}

.page-sidebar .page-sidebar-menu li > a > .badge,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .badge {
    float: right;
    margin-top: 1px;
    margin-right: 0px;
}

.page-sidebar .page-sidebar-menu .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu {
    list-style: none;
    display: none;
    padding: 0;
    margin: 8px 0px 8px 0px;
}

    .page-sidebar .page-sidebar-menu .sub-menu li,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li {
        background: none;
        margin: 0px;
        padding: 0px;
        margin-top: 1px !important;
        /* 2nd level sub menu */
    }

        .page-sidebar .page-sidebar-menu .sub-menu li > a,
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a {
            display: block;
            margin: 0;
            padding: 8px 12px 8px 12px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 300;
            background: none;
        }

            .page-sidebar .page-sidebar-menu .sub-menu li > a > i,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a > i {
                font-size: 14px;
                margin-right: 1px;
            }

            .page-sidebar .page-sidebar-menu .sub-menu li > a .arrow:before,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a .arrow:before {
                margin-top: -4px;
            }

            .page-sidebar .page-sidebar-menu .sub-menu li > a .arrow.open:before,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > a .arrow.open:before {
                margin-top: -2px;
            }

        .page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu,
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu {
            margin: 0;
        }

            .page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li,
            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li {
                /* 3rd level sub menu */
            }

                .page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > a,
                .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > a {
                    padding-left: 30px;
                }

                .page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu,
                .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu {
                    margin: 0;
                }

                    .page-sidebar .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu > li > a,
                    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu li > .sub-menu > li > .sub-menu > li > a {
                        padding-left: 40px;
                    }

.page-sidebar .page-sidebar-menu li.active > .sub-menu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li.active > .sub-menu {
    display: block;
}



.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
.page-sidebar-menu.page-sidebar-menu-compact > li {
    text-align: left;
}

    .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li > a,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
    .page-sidebar-menu.page-sidebar-menu-compact > li > a {
        text-align: left;
        min-height: 50px;
        padding: 15px 12px 15px 12px;
        font-size: 15px;
    }

        .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li > a > .title,
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
        .page-sidebar-menu.page-sidebar-menu-compact > li > a > .title {
            display: inline-block;
            text-align: left;
            margin-top: 0px;
        }

        .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li > a > i,
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
        .page-sidebar-menu.page-sidebar-menu-compact > li > a > i {
            font-size: 16px;
            /* $sidebar-menu-link-icon-font-size */
            text-align: left;
        }

    .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li.active > a > .selected,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
    .page-sidebar-menu.page-sidebar-menu-compact > li.active > a > .selected {
        top: 14px;
    }

    .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li > .sub-menu > li > a,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
    .page-sidebar-menu.page-sidebar-menu-compact > li > .sub-menu > li > a {
        padding-left: 22px;
    }

.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact li > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
.page-sidebar-menu.page-sidebar-menu-compact li > a > .arrow:before {
    margin-top: -1px;
}

.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact li > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
.page-sidebar-menu.page-sidebar-menu-compact li > a > .arrow.open:before {
    margin-top: -1px;
}

.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
.page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu {
    /* first level links */
}

    .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu > li > .sub-menu > li > a,
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
    .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu > li > .sub-menu > li > a {
        padding-left: 15px;
    }

@media (min-width: 992px) {
    /* 992px */
    .page-sidebar {
        width: 260px;
        float: left;
        position: relative;
        margin-right: -100%;
    }

    .page-full-width .page-sidebar {
        display: none !important;
    }

    .page-sidebar.navbar-collapse {
        max-height: none !important;
    }

    .page-sidebar .page-sidebar-menu {
        margin-bottom: 0px;
    }

    .page-sidebar-reversed .page-sidebar {
        float: right;
        margin-right: 0;
        margin-left: -100%;
    }

    .page-sidebar-reversed.page-sidebar-fixed .page-sidebar {
        margin-left: -195px;
    }

    .page-sidebar-reversed.page-sidebar-fixed .page-sidebar-wrapper {
        position: relative;
        float: right;
    }

    .page-sidebar-fixed .page-sidebar {
        position: fixed !important;
        margin-left: 0;
        top: 68px;
    }

    .page-sidebar-fixed .page-sidebar-menu > li.last {
        margin-bottom: 15px !important;
    }

    .page-sidebar-fixed .page-sidebar-menu .sub-menu {
        height: auto !important;
    }

    /* Sidebar Closed */
    .page-sidebar-closed .page-sidebar {
        width: 54px !important;
    }

        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed {
            /* sidebar */
            width: 54px !important;
        }

            .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li {
                /* hide opened sub menu */
            }

                .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li.open > .sub-menu,
                .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > .sub-menu {
                    display: none !important;
                }

                .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover {
                    width: 249px !important;
                    position: relative !important;
                    z-index: 10000;
                    display: block !important;
                }

                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a {
                        -webkit-border-radius: 0 0 4px 0;
                        -moz-border-radius: 0 0 4px 0;
                        -ms-border-radius: 0 0 4px 0;
                        -o-border-radius: 0 0 4px 0;
                        border-radius: 0 0 4px 0;
                        text-align: left;
                    }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > i {
                            display: inline-block;
                            margin-right: 10px;
                        }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .title {
                            display: inline !important;
                            padding-left: 20px;
                        }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .badge {
                            display: block !important;
                        }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .selected {
                            display: none;
                        }

                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu {
                        width: 194px;
                        position: absolute;
                        z-index: 2000;
                        left: 55px;
                        margin-top: 0;
                        top: 100%;
                        display: block !important;
                        -webkit-border-radius: 4px 0 0 4px;
                        -moz-border-radius: 4px 0 0 4px;
                        -ms-border-radius: 4px 0 0 4px;
                        -o-border-radius: 4px 0 0 4px;
                        border-radius: 4px 0 0 4px;
                    }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > a {
                            padding-left: 15px !important;
                        }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > .sub-menu > li > a {
                            padding-left: 30px !important;
                        }

                        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
                            padding-left: 45px !important;
                        }

                .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a {
                    min-height: 54px;
                    padding-left: 11px;
                }

                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a .selected {
                        top: 16px;
                        right: -2px !important;
                    }

                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .badge,
                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .title,
                    .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > a > .arrow {
                        display: none !important;
                    }

        .page-sidebar-closed .page-sidebar .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-closed > li > a {
            min-height: 50px;
            padding-right: 11px;
            padding-left: 18px;
        }

    .page-sidebar-closed.page-sidebar-reversed .page-sidebar {
        margin-left: -54px;
        width: 54px;
    }

        .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed {
            /* sidebar */
        }

            .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li > .sub-menu {
                left: auto;
                right: 55px;
            }

            .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover {
                margin-left: -195px;
            }

                .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a {
                    -webkit-border-radius: 0 4px 0 0;
                    -moz-border-radius: 0 4px 0 0;
                    -ms-border-radius: 0 4px 0 0;
                    -o-border-radius: 0 4px 0 0;
                    border-radius: 0 4px 0 0;
                }

                    .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > .title {
                        padding-left: 0;
                        padding-right: 15px;
                    }

                    .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-closed > li:hover > a > i {
                        margin-right: 0;
                        margin-left: 2px;
                    }

        .page-sidebar-closed.page-sidebar-reversed .page-sidebar .page-sidebar-menu.page-sidebar-menu-light.page-sidebar-menu-closed > li > a {
            padding-right: 7px;
            padding-left: 11px;
        }

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover {
        width: 195px !important;
        display: absolute;
        z-index: 10000;
    }

        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu {
            width: 195px !important;
        }

            .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .selected {
                display: none !important;
            }

    .page-sidebar-closed.page-sidebar-fixed.page-sidebar-reversed .page-sidebar:hover {
        width: 195px !important;
        display: absolute;
        z-index: 10000;
        margin-left: -195px !important;
    }

        .page-sidebar-closed.page-sidebar-fixed.page-sidebar-reversed .page-sidebar:hover .page-sidebar-menu {
            width: 195px !important;
        }

    .page-sidebar-closed.page-sidebar-hide .page-sidebar {
        display: none !important;
    }

    /* Default Sidebar Menu With Hoverable Submenu */
    .page-sidebar-menu.page-sidebar-menu-hover-submenu li .sub-menu {
        display: none;
        width: 194px;
        z-index: 2000;
        position: absolute;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

        .page-sidebar-menu.page-sidebar-menu-hover-submenu li .sub-menu > li > a {
            margin: 3px;
        }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu li.active .sub-menu, .page-sidebar-menu.page-sidebar-menu-hover-submenu li.open .sub-menu {
        display: none !important;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu li a > .arrow {
        display: none;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow {
        display: none;
        float: right;
        position: absolute;
        right: 0;
        margin-top: -20px;
        background: none;
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 12px double transparent;
        border-bottom: 12px double transparent;
        border-left: 0;
    }

        .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow:after, .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow:before {
            display: none;
        }

    .page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > a > .arrow {
        right: auto;
        left: 0;
        border-right: 0;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > .sub-menu {
        display: inline-block !important;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > a > .arrow {
        z-index: 1;
        right: 0px;
        margin-top: -36px;
    }

    .page-fontawesome .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > a > .arrow {
        margin-top: -34px;
    }

    .page-glyphicons .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > a > .arrow {
        margin-top: -38px;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
        margin-left: 195px;
        margin-top: -78px;
    }

    .page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
        margin-left: -194px !important;
    }

    .page-sidebar-closed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
        margin-left: 0;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu {
        margin-left: 194px;
        margin-top: -42px !important;
    }

    .page-sidebar-reversed .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu {
        margin-left: -194px !important;
    }

    .page-sidebar-menu.page-sidebar-menu-hover-submenu > li:hover > .sub-menu > li .sub-menu > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Compact Sidebar Menu With Hoverable Submenu */
    .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu li:hover > a > .arrow {
        margin-top: -20px;
    }

    .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu > li:hover > a > .arrow {
        margin-top: -20px;
    }

    .page-sidebar-menu.page-sidebar-menu-compact.page-sidebar-menu-hover-submenu > li:hover > .sub-menu {
        margin-top: -49px;
    }
}

@media (max-width: 991px) {
    /* 991px */
    .page-sidebar {
        border-top: 0 !important;
        margin: 20px;
    }

        .page-sidebar .selected {
            display: none !important;
        }

        .page-sidebar.navbar-collapse {
            max-height: none;
            /* set some max height to have a scrollable menu on mobile devices */
        }

            .page-sidebar.navbar-collapse.collapse {
                display: none !important;
            }

            .page-sidebar.navbar-collapse.in {
                border-top: 0 !important;
                margin: 20px;
                position: relative;
                overflow: hidden !important;
                overflow-y: auto !important;
                display: block !important;
            }

            .page-sidebar.navbar-collapse.navbar-no-scroll {
                max-height: none !important;
            }

        .page-sidebar .mega-menu-responsive-content {
            padding: 10px 18px 10px 45px;
        }

    .page-full-width .page-sidebar-menu {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* 768px & 991px */
    .page-sidebar .btn-navbar.collapsed .arrow {
        display: none;
    }

    .page-sidebar .btn-navbar .arrow {
        position: absolute;
        right: 25px;
        width: 0;
        height: 0;
        top: 50px;
        border-bottom: 15px solid #5f646b;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
}

@media (max-width: 480px) {
    /* 480px */
    /* Page sidebar */
    .page-sidebar,
    .page-sidebar.in {
        margin: 10px 10px 10px 10px !important;
    }

    .page-header-fixed.page-header-fixed-mobile .page-sidebar, .page-header-fixed.page-header-fixed-mobile
    .page-sidebar.in {
        margin-top: 10px !important;
    }
}
/***
Page content
***/
/* Page title */
.page-title {
    padding: 0px;
    font-size: 26px;
    letter-spacing: -1px;
    line-height: 26px;
    display: block;
    color: #666;
    margin: 0px 0px 20px 0px;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
    /* subtitle */
}

    .page-title small {
        font-size: 13px;
        letter-spacing: 0px;
        font-weight: 300;
        color: #96a1af;
    }

.page-container-bg-solid .page-title {
    color: #666;
}

    .page-container-bg-solid .page-title small {
        color: #666;
    }

/* Page breadcrumb */
.page-bar {
    padding: 3px;
    background-color: #ffffff;
    margin-bottom: 0px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .page-bar:before, .page-bar:after {
        content: " ";
        display: table;
    }

    .page-bar:after {
        clear: both;
    }

    .page-bar .page-breadcrumb {
        display: inline-block;
        float: left;
        padding: 10px 6px;
        margin: 0;
        list-style: none;
        color: #e23716;
    }

        .page-bar .page-breadcrumb > li {
            display: inline-block;
        }

.ie8 .page-bar .page-breadcrumb > li {
    margin-right: 1px;
}

.page-bar .page-breadcrumb > li > a,
.page-bar .page-breadcrumb > li > span {
    color: #96a1af;
    font-size: 13px;
    text-shadow: none;
}

.page-bar .page-breadcrumb > li > i {
    color: #96a1af;
    font-size: 14px;
    text-shadow: none;
}

    .page-bar .page-breadcrumb > li > i[class^="icon-"],
    .page-bar .page-breadcrumb > li > i[class*="icon-"] {
        color: #8c8c8c;
    }

.page-bar .page-toolbar {
    display: inline-block;
    float: right;
}

    .page-bar .page-toolbar .btn-fit-height {
        -webkit-border-radius: 0 4px 4px 0;
        -moz-border-radius: 0 4px 4px 0;
        -ms-border-radius: 0 4px 4px 0;
        -o-border-radius: 0 4px 4px 0;
        border-radius: 0 4px 4px 0;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .page-bar .page-toolbar .btn.btn-default {
        border-color: #eee;
        color: #999;
    }

        .page-bar .page-toolbar .btn.btn-default > i {
            color: #999;
        }

    .page-bar .page-toolbar .btn.btn-sm {
        margin-top: 0px;
    }

    .page-bar .page-toolbar .btn-dashboard-daterange {
        padding: 8px 16px 8px 16px;
    }

        .page-bar .page-toolbar .btn-dashboard-daterange > i[class^="icon-"] {
            position: relative;
            font-size: 20px;
            opacity: 0.8;
            filter: alpha(opacity=80);
            top: 2px;
        }

        .page-bar .page-toolbar .btn-dashboard-daterange > i.fa-angle-down {
            font-size: 16px;
            opacity: 0.8;
            filter: alpha(opacity=80);
        }



.page-container-bg-solid .page-content {
    background: #f4f7fb;
}

.page-full-width .page-content {
    margin-left: 0px !important;
}

@media (min-width: 992px) {
    /* 992px */
    /* Page content */
    .page-content-wrapper {
        float: left;
        width: 100%;
    }

        .page-content-wrapper .page-content {
            margin-top: 50px;
            min-height: calc( 100vh - 155px ) !important;
            padding: 20px 20px 20px 20px;
            margin-right: 20px !important;
            border-radius: 20px !important;
        }

            .page-content-wrapper .page-content.no-min-height {
                min-height: auto;
            }

    .page-sidebar-fixed.page-sidebar-hover-on .page-content-wrapper .page-content {
        margin-left: 54px;
    }

    .page-sidebar-reversed .page-content-wrapper .page-content {
        margin-left: 0 !important;
        margin-right: 195px !important;
    }

    .page-sidebar-reversed.page-sidebar-fixed.page-sidebar-hover-on .page-content-wrapper .page-content {
        margin-left: 0;
        margin-right: 54px;
    }

    .page-sidebar-reversed.page-sidebar-closed .page-content-wrapper .page-content {
        margin-left: 0 !important;
        margin-right: 54px !important;
    }

    .page-sidebar-closed .page-content-wrapper .page-content {
        margin-left: 54px !important;
    }

    .page-sidebar-closed.page-sidebar-hide .page-content-wrapper .page-content {
        margin-left: 0 !important;
    }

    .page-sidebar-closed.page-sidebar-reversed.page-sidebar-hide .page-content-wrapper .page-content {
        margin-right: 0 !important;
    }

    .page-full-width .page-content-wrapper .page-content {
        margin-left: 0px !important;
    }
}

@media (max-width: 991px) {
    /* 991px */
    /* Boxed page container  */
    .page-boxed > .container {
        width: 100%;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Page content */
    .page-content-wrapper .page-content {
        margin: 0px !important;
        padding: 20px !important;
        min-height: 280px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /*  768px & 991px */
    /* Boxed page container */
    .page-boxed > .container {
        margin: auto !important;
    }
}

@media (max-width: 767px) {
    /* 767px */
    /* Page content */
    .page-content-wrapper .page-content {
        padding: 20px 10px 10px 10px !important;
        overflow: hidden;
        /* Page title */
    }

        .page-content-wrapper .page-content .page-title {
            margin-bottom: 15px;
            font-size: 20px;
        }

            .page-content-wrapper .page-content .page-title small {
                font-size: 13px;
                padding-top: 3px;
            }
}

@media (max-width: 480px) {
    /* 480px */
    /* Dashboard date range panel */
    .page-content-wrapper .page-content .page-title small {
        display: block;
        clear: both;
    }
}
/***
Page footer
***/
.page-footer {
    padding: 8px 20px 5px 20px;
    font-size: 12px;
    height: 33px;
}

    .page-footer:before, .page-footer:after {
        content: " ";
        display: table;
    }

    .page-footer:after {
        clear: both;
    }

    .page-footer .page-footer-inner {
        display: inline-block;
    }

    .page-footer .page-footer-tools {
        float: right;
        display: inline-block;
    }

        .page-footer .page-footer-tools .go-top {
            display: block;
            text-decoration: none;
            cursor: pointer;
            margin-top: -2px;
            margin-right: 0px;
            margin-bottom: 0px;
            font-size: 16px;
            padding: 0px 6px 0px 6px;
        }

            .page-footer .page-footer-tools .go-top i {
                font-size: 22px;
                margin-bottom: 5px;
            }

.page-footer-fixed.page-footer-fixed-mobile .page-footer {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10000;
    bottom: 0;
}

.page-footer-fixed.page-footer-fixed-mobile.page-sidebar-fixed .page-footer {
    margin-left: 0 !important;
}

@media (min-width: 992px) {
    /* 992px */
    /* Default footer */
    .page-footer {
        clear: left;
    }

    /* Fixed footer */


    /* Footer with footer sidebar */
    .page-sidebar-fixed.page-sidebar-closed .page-footer {
        margin-left: 54px;
    }

    .page-sidebar-fixed.page-footer-fixed .page-footer {
        margin-left: 0 !important;
    }

    /* Fixed Sidebar */
    .page-sidebar-fixed .page-footer {
        margin-left: 195px;
        padding: 8px 20px 5px 20px;
    }

    /* Boxed page */
    .page-boxed .page-footer {
        padding: 8px 0 5px 0;
        background-color: #f1f3fa;
    }

    .page-boxed.page-sidebar-fixed .page-footer {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Page sidebar reversed */
    .page-sidebar-reversed.page-sidebar-fixed .page-footer {
        margin-left: 0;
        margin-right: 195px;
        padding: 8px 20px 5px 20px;
    }

    .page-sidebar-reversed.page-sidebar-fixed.page-footer-fixed .page-footer {
        margin-left: 0;
        margin-right: 0;
    }

    .page-sidebar-reversed.page-sidebar-fixed.page-sidebar-closed .page-footer {
        margin-right: 54px;
    }
}

@media (max-width: 991px) {
    /* 991px */
    /* Boxed Layout */
    .page-footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    /* 767px */
    /* Default footer & boxed footer */
    .page-footer,
    .page-boxed .page-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Fixed footer */
    .page-footer-fixed .page-footer .container {
        padding-left: 0;
        padding-right: 0;
    }
}
/* Scroll Top Top */
.scroll-to-top {
    display: inline-block;
    padding: 2px;
    text-align: center;
    position: fixed;
    z-index: 10001;
    bottom: 10px;
    display: none;
    right: 10px;
}

    .scroll-to-top > i {
        display: inline-block;
        color: #687991;
        font-size: 32px;
        opacity: 0.7;
        filter: alpha(opacity=70);
    }

    .scroll-to-top:hover {
        cursor: pointer;
    }

        .scroll-to-top:hover > i {
            opacity: 1;
            filter: alpha(opacity=100);
        }

@media (min-width: 992px) {
    /* 992px */
    .scroll-to-top {
        right: 10px;
    }
}

@media (max-width: 991px) {
    /* 991px */
    .scroll-to-top {
        right: 10px;
    }

        .scroll-to-top > i {
            font-size: 28px;
        }
}
/***
Theme Panel
***/
.theme-panel {
    width: 400px;
    margin-top: -15px;
    margin-right: 0px;
    z-index: 100;
    float: right;
    position: relative;
}

    .theme-panel > .toggler {
        top: 5px;
        right: 1px;
        height: 40px;
        width: 40px;
        border-radius: 50% !important;
        cursor: pointer;
        position: absolute;
        text-align: center;
        background-color: #fff;
    }

        .theme-panel > .toggler > i {
            position: relative;
            top: 12px;
            font-size: 20px;
            color: #9fb3ca;
        }

        .theme-panel > .toggler:hover {
            background: #ACB5C3;
        }

            .theme-panel > .toggler:hover > i {
                color: #fff;
            }

    .theme-panel > .toggler-close {
        display: none;
        top: 5px;
        right: 1px;
        z-index: 101;
        cursor: pointer;
        position: absolute;
    }

        .theme-panel > .toggler-close > i {
            position: relative;
            top: 12px;
            right: 12px;
            font-size: 20px;
            color: #f2f2f2;
        }

        .theme-panel > .toggler-close:hover {
            opacity: 0.8;
            filter: alpha(opacity=80);
        }

    .theme-panel > .theme-options {
        box-shadow: -5px 5px rgba(63, 77, 86, 0.1);
        top: 4px;
        right: 0;
        display: none;
        position: absolute;
        z-index: 100;
        background: #3f4d56;
        border: 1px solid #39454d;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

        .theme-panel > .theme-options > .theme-option {
            color: #eee;
            padding: 11px;
            border-top: 1px solid #46545f;
            margin-top: 0px;
            margin-bottom: 0px;
        }

            .theme-panel > .theme-options > .theme-option > span {
                text-transform: uppercase;
                display: inline-block;
                width: 115px;
                font-size: 13px;
                font-weight: 300;
            }

            .theme-panel > .theme-options > .theme-option > select.form-control {
                display: inline;
                width: 100px;
                padding: 2px;
                text-transform: lowercase;
            }

            .theme-panel > .theme-options > .theme-option.theme-colors {
                border-top: 0;
            }

                .theme-panel > .theme-options > .theme-option.theme-colors > span {
                    display: block;
                    width: auto;
                }

                .theme-panel > .theme-options > .theme-option.theme-colors > ul {
                    list-style: none;
                    padding: 0;
                    display: block;
                    margin-bottom: 10px !important;
                    margin-top: 15px;
                }

                    .theme-panel > .theme-options > .theme-option.theme-colors > ul > li {
                        width: 46px;
                        height: 45px;
                        margin: 0 4px;
                        cursor: pointer;
                        list-style: none;
                        float: left;
                        border: solid 1px #707070;
                        /* theme colors */
                    }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li:first-child {
                            margin-left: 0;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li:hover, .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.current {
                            border: solid 2px #d64635;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-default {
                            background: #2b3643;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-dark {
                            background: #333438;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-blue {
                            background: #26344B;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-grey {
                            background: #4D5B69;
                        }

                        .theme-panel > .theme-options > .theme-option.theme-colors > ul > li.color-light {
                            background: #f5f5f5;
                        }

/***  
Page Loading    
***/
.page-on-load {
    background: #fefefe;
}

    .page-on-load .page-header,
    .page-on-load .page-container,
    .page-on-load .page-footer,
    .page-on-load > .clearfix {
        display: none;
        transition: all 2s;
    }


.fa-angle-right:before {
    content: "\f104";
}

.fa-angle-left:before {
    content: "\f105";
}


.page-sidebar-menu {
    margin: 0 10px !important;
}


.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a,
.page-sidebar .page-sidebar-menu > li.active > a,
.page-sidebar .page-sidebar-menu > li.active.open > a {
    background: #19499f !important;
    color: #ffffff !important;
    border-radius: 12px !important;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a,
.page-sidebar .page-sidebar-menu > li:hover > a,
.page-sidebar .page-sidebar-menu > li.open > a {
    background: #19499f;
    color: #ec3665;
    border-radius: 12px !important;
}


.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a:hover,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a:hover,
.page-sidebar .page-sidebar-menu > li.active > a:hover,
.page-sidebar .page-sidebar-menu > li.active.open > a:hover {
    background: #19499f !important;
    border-radius: 12px !important;
}

.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li > a > .title,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-compact > li > a > .title {
    font-weight: 600 !important;
}

.dashboard-page .page-bar {
    display: none;
}


.icon.c-2 {
    background-color: #f3732730 !important;
}

    .icon.c-2 svg {
        fill: #f37327;
    }



.icon.c-3 {
    background-color: #25aae130 !important;
}

    .icon.c-3 svg {
        fill: #25aae1;
    }


.icon.c-4 {
    background-color: #e7b83230 !important;
}

    .icon.c-4 svg {
        fill: #ffb700;
    }


.icon.c-5 {
    background-color: #ff469f2b !important;
}

    .icon.c-5 svg {
        fill: #ff469f;
    }

.icon.c-6 {
    background-color: #1ae7ae4f !important
}

    .icon.c-6 svg {
        fill: #19d9a3;
    }



.dashboard-stat2 .display .number h3 {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.modern-feeds li {
    background-color: #f1f4f9;
    padding: 8px 9px 5px 6px;
    border-radius: 10px !important;
}

.modern-feeds.feeds li a {
    color: #0b224f;
    font-size: 14px;
    font-weight: 600;
}

.modern-feeds.feeds li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modern-feeds.feeds li:before, .modern-feeds.feeds li:after {
        display: none
    }

    .modern-feeds.feeds li .branch-name {
        align-items: center;
        display: flex;
    }

    .modern-feeds.feeds li .date {
        padding: 8px 5px 6px 6px;
        text-align: right;
        color: #0c2444;
        font-style: inherit;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px !important;
        font-weight: 700;
        font-size: 15px;
    }

.feeds li .branch-name i {
    text-align: center;
    width: 58px;
    position: relative;
    display: inline-block;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dadfe7;
    border-radius: 10px;
    margin-right: 7px;
}

    .feeds li .branch-name i svg {
        width: 20px;
        height: auto;
        fill: #ed3165;
    }






.dashboard-stat2 .display .number small {
    color: #eb3664;
    font-size: 16px
}

.chartts .number-stats .stat-number .title {
    color: #0c2444;
    font-weight: 700;
    font-size: 16px;
}


.general-card.icon-flex:hover {
    transform: translateY(-5px);
    transition: 0.5s;
}

.icon-flex:hover svg {
    animation: tada 1.5s ease infinite;
}




@keyframes tada {
    0% {
        transform: scaleX(1);
    }

    10% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(3deg);
    }

    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(3deg);
    }

    30% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    50% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    70% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    40% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    60% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    to {
        transform: scaleX(1);
    }
}

.tada {
    animation-name: tada;
}
.page-bar .page-breadcrumb li .fa-angle-right:before {
    content: "\f105";
}
.dataTables_paginate .prev .fa-angle-left:before {
    content: "\f104";
}
.dataTables_paginate .next .fa-angle-right:before {
    content: "\f105";
}
.select2-container .select2-choice .select2-arrow {
    border-left: 0px solid #333f55;
}
.theme-font, .page-bar .page-breadcrumb {
    color: #19499f !important;
}
/*********** 
Page Header
***********/
/* Header search bar, toggler button & top menu */
.page-header.navbar {
    /* Top notification menu/bar */
    /* Header seaech box */
}

    .page-header.navbar .page-logo {
        background: #fdfdfd00;
    }

    .page-header.navbar .page-top {
        box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 3%);
        background: rgb(255 255 255 / 82%);
    }

    .page-header.navbar .top-menu .navbar-nav {
        /* Extended Dropdowns */
        /* Notification */
        /* Inbox */
        /* Tasks */
        /* User */
        /* Language */
        /* Dark version */
    }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover {
            background-color: #f9fafc;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle > i {
            color: #c0cddc;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle .badge.badge-default {
            background-color: #0b224f;
            color: white;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown.open .dropdown-toggle {
            background-color: #0052f500;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-menu:before {
            border-bottom-color: #e4e8ee;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu {
            border: 1px solid #e4e8ee;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu:before {
                border-bottom-color: #d4dae4;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu:after {
                border-bottom-color: #eaedf2;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external {
                background: #eaedf2;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > h3 {
                    color: #62878f;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a {
                    color: #5b9bd1;
                }

                    .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a:hover {
                        color: #3175af;
                        text-decoration: none;
                    }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a {
                border-bottom: 1px solid #eff2f6 !important;
                color: #96a1af888;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a:hover {
                    background: #f8f9fa;
                }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a .time {
            background: #f1f1f1;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a:hover .time {
            background: #e4e4e4;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-toggle > .circle {
            background-color: #0b224f;
            color: white;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox > .dropdown-toggle > .corner {
            border-color: transparent transparent transparent #0b224f;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-inbox .dropdown-menu .dropdown-menu-list .subject .from {
            color: #5b9bd1;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list .progress {
            background-color: #dfe2e9;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > .username {
            color: #7f96ac;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > i {
            color: #7f96ac;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-menu {
            width: 195px;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > .langname {
            color: #7f96ac;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu {
            background: #ffffff;
            border: 0;
            border-radius: 10px !important;
        }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu:after {
                border-bottom-color: #19499f;
            }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu > li.external {
                background: #293952;
            }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu > li.external > h3 {
                    color: #a8b8d3;
                }

                .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu > li.external > a:hover {
                    color: #87b6dd;
                }

            .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li a,
            .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu .dropdown-menu-list > li a {
                color: #0d244d;
                border-bottom: 1px solid #415a81 !important;
            }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-menu > li > a {
            font-size: 14px;
            font-weight: 500;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li a > i,
        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu .dropdown-menu-list > li a > i {
            color: #fff;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li a:hover,
        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu .dropdown-menu-list > li a:hover {
            background: white;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li a {
            border-bottom: 0 !important;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li.divider {
            background: #415a81;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification.dropdown-dark .dropdown-menu .dropdown-menu-list > li > a .time {
            background: #2f405c;
        }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification.dropdown-dark .dropdown-menu .dropdown-menu-list > li > a:hover .time {
            background: #26344b;
        }

    .page-header.navbar .search-form {
        background: #fff;
    }

        .page-header.navbar .search-form .input-group .form-control {
            color: #7f96ac;
        }

            .page-header.navbar .search-form .input-group .form-control::-moz-placeholder {
                color: #7c94aa;
                opacity: 1;
            }

            .page-header.navbar .search-form .input-group .form-control:-ms-input-placeholder {
                color: #7c94aa;
            }

            .page-header.navbar .search-form .input-group .form-control::-webkit-input-placeholder {
                color: #7c94aa;
            }

        .page-header.navbar .search-form .input-group .input-group-btn .btn.submit > i {
            color: #7f96ac;
        }

/* Page sidebar */
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover,
.page-sidebar {
    background-color: #ffffff;
    border-radius: 15px !important;
    /* Default sidebar */
}



    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a,
    .page-sidebar .page-sidebar-menu > li > a {
        border-bottom: 0px solid #19499f;
        color: #0b224f;
    }

@media (max-width: 991px) {
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a,
    .page-sidebar .page-sidebar-menu > li > a {
        /* 991px */
        border-top: 0px solid #1f4467;
    }
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i,
.page-sidebar .page-sidebar-menu > li > a > i {
    color: #0b224f;
}

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i[class^="icon-"],
    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > i[class*="icon-"],
    .page-sidebar .page-sidebar-menu > li > a > i[class^="icon-"],
    .page-sidebar .page-sidebar-menu > li > a > i[class*="icon-"] {
        color: #0b224f;
    }

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu > li > a > .arrow:before,
.page-sidebar .page-sidebar-menu > li > a > .arrow.open:before {
    color: #eceff5;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a,
.page-sidebar .page-sidebar-menu > li:hover > a,
.page-sidebar .page-sidebar-menu > li.open > a {
    background: #19499f;
    color: #fff;
}

    .page-sidebar .page-sidebar-menu > li:hover > a svg {
        fill: white;
    }

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a > i, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a > i,
    .page-sidebar .page-sidebar-menu > li:hover > a > i,
    .page-sidebar .page-sidebar-menu > li.open > a > i {
        color: #ec3665;
    }

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a > .arrow.open:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a > .arrow.open:before,
    .page-sidebar .page-sidebar-menu > li:hover > a > .arrow:before,
    .page-sidebar .page-sidebar-menu > li:hover > a > .arrow.open:before,
    .page-sidebar .page-sidebar-menu > li.open > a > .arrow:before,
    .page-sidebar .page-sidebar-menu > li.open > a > .arrow.open:before {
        color: white;
    }



.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a:hover, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a:hover,
.page-sidebar .page-sidebar-menu > li.active > a:hover,
.page-sidebar .page-sidebar-menu > li.active.open > a:hover {
    background: #19499f;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > i, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a > i,
.page-sidebar .page-sidebar-menu > li.active > a > i,
.page-sidebar .page-sidebar-menu > li.active.open > a > i {
    color: #ffffff;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a > .arrow.open:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu > li.active > a > .arrow:before,
.page-sidebar .page-sidebar-menu > li.active > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu > li.active.open > a > .arrow:before,
.page-sidebar .page-sidebar-menu > li.active.open > a > .arrow.open:before {
    color: #f1f4f8;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:last-child > a,
.page-sidebar .page-sidebar-menu > li:last-child > a {
    border-bottom: 1px solid transparent !important;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu li > a > .arrow:before,
.page-sidebar .page-sidebar-menu li > a > .arrow.open:before {
    color: #0b224f;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li:hover > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li:hover > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu li:hover > a > .arrow:before,
.page-sidebar .page-sidebar-menu li:hover > a > .arrow.open:before {
    color: #fff;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li.active > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li.active > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu li.active > a > .arrow:before,
.page-sidebar .page-sidebar-menu li.active > a > .arrow.open:before {
    color: #f1f4f8;
}

.page-sidebar-closed .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu:hover .sub-menu, .page-sidebar-closed
.page-sidebar .page-sidebar-menu:hover .sub-menu {
    background: #1c2637;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a,
.page-sidebar .page-sidebar-menu .sub-menu > li > a {
    color: #0b224f;
}

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a > i,
    .page-sidebar .page-sidebar-menu .sub-menu > li > a > i {
        color: #eceff5;
    }

        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a > i[class^="icon-"],
        .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a > i[class*="icon-"],
        .page-sidebar .page-sidebar-menu .sub-menu > li > a > i[class^="icon-"],
        .page-sidebar .page-sidebar-menu .sub-menu > li > a > i[class*="icon-"] {
            color: #eceff5;
        }

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li > a > .arrow.open:before,
    .page-sidebar .page-sidebar-menu .sub-menu > li > a > .arrow:before,
    .page-sidebar .page-sidebar-menu .sub-menu > li > a > .arrow.open:before {
        color: #0b224f;
    }

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a,
.page-sidebar .page-sidebar-menu .sub-menu > li.open > a,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a {
    background: #f3f6fa !important;
    border-radius: 25px !important;
    color: #19499f;
}

    .page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > .arrow:before {
        color: #0b224f !important;
    }

    .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a > i, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a > i, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a > i,
    .page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > i,
    .page-sidebar .page-sidebar-menu .sub-menu > li.open > a > i,
    .page-sidebar .page-sidebar-menu .sub-menu > li.active > a > i {
        color: #ec3665;
    }



/******
Page Footer 
******/
.page-footer .page-footer-inner {
    color: #a1b2cf;
}

.page-footer-fixed .page-footer {
    background-color: #ffffff;
    border-radius: 22px 22px 0 0 !important;
    color: #19499f;
}

    .page-footer-fixed .page-footer .page-footer-inner {
        color: #19499f;
        font-size: 15px;
    }

.page-boxed .page-footer .page-footer-inner {
    color: #121618;
}

.page-footer-fixed .page-boxed .page-footer {
    background-color: #a5aea8;
}

@media (min-width: 992px) {
    /* 992px */
    /* Sidebar menu closed */
    .page-sidebar-menu.page-sidebar-menu-hover-submenu li:hover > .sub-menu {
        box-shadow: -5px 5px rgba(48, 48, 48, 0.2);
        border-radius: 10px !important;
        padding: 10px 0;
    }

    .page-sidebar-menu.page-sidebar-menu-closed > li:hover {
        box-shadow: -5px 5px rgba(48, 48, 48, 0.2);
    }

        .page-sidebar-menu.page-sidebar-menu-closed > li:hover > .sub-menu {
            box-shadow: -5px 5px rgba(48, 48, 48, 0.2);
        }

    /* Fixed Sidebar */
    .page-sidebar-fixed:not(.page-footer-fixed) .page-content {
        border-bottom: 0;
    }

    .page-sidebar-fixed:not(.page-footer-fixed) .page-footer {
        background-color: #f4f4f4;
    }

        .page-sidebar-fixed:not(.page-footer-fixed) .page-footer .page-footer-inner {
            color: #333;
        }

    /* Boxed Layout */
    .page-boxed {
        background-color: #b8bfba !important;
        /* Page container */
    }

        .page-boxed .page-container {
            background-color: #26344b;
        }

        .page-boxed.page-sidebar-reversed .page-container {
            border-left: 0;
        }

        .page-boxed.page-sidebar-fixed .page-container {
            border-left: 0;
            border-bottom: 0;
        }

        .page-boxed.page-sidebar-reversed.page-sidebar-fixed .page-container {
            border-left: 0;
            border-right: 0;
            border-bottom: 0;
        }

    /* Sidebar Menu Wirh Hoverable Submenu */
    .page-sidebar-menu-hover-submenu li:hover a > .arrow {
        border-right: 8px solid #1c2637;
    }

    .page-sidebar-reversed .page-sidebar-menu-hover-submenu li:hover a > .arrow {
        border-left: 8px solid #1c2637;
    }

    .page-sidebar-menu-hover-submenu li:hover > .sub-menu {
        background: #0b224f !important;
    }
}

@media (max-width: 991px) {
    /* 991px */
    .page-container {
        background: #f4f4f4;
    }

    .page-header.navbar {
        padding: 0;
        /* Top menu */
    }

        .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:hover {
            background-color: #f6f7fa;
        }

        .page-header.navbar .page-top {
            box-shadow: none;
        }
}

@media (max-width: 480px) {
    /* 480px */
    .page-header.navbar {
        background: #f4f4f4;
        /* Top menu */
    }

    .page-header-fixed-mobile .page-header.navbar .top-menu {
        background-color1: white;
    }

    .page-header.navbar .top-menu .navbar-nav > li.dropdown > .dropdown-toggle:hover {
        background-color: #eff1f6;
    }
}


/****
 CSS3 Spinner Bar  
****/
.page-spinner-bar > div,
.block-spinner-bar > div {
    background: #0F2B72;
}

/****
Body
****/


body.page-boxed {
    background-color: #f4f4f4;
}



.modal-body .portlet.light, .portlet.light .portlet.light {
    box-shadow: 0 0 0 !important;
}


/* Theme Button */
.theme-btn.btn {
    color: #FFFFFF;
    background-color: #ec3665;
}


    .theme-btn.btn.btn-lg {
        border-radius: 100px !important
    }

    .theme-btn.btn:hover, .theme-btn.btn:focus, .theme-btn.btn:active, .theme-btn.btn.active {
        color: #FFFFFF;
        background-color: #c9224d;
    }

.open .theme-btn.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #c9224d;
}

.theme-btn.btn:active, .theme-btn.btn.active {
    background-image: none;
    background-color: #c9224d;
}

    .theme-btn.btn:active:hover, .theme-btn.btn.active:hover {
        background-color: #c9224d;
    }

.open .theme-btn.btn.dropdown-toggle {
    background-image: none;
}

.theme-btn.btn.disabled, .theme-btn.btn.disabled:hover, .theme-btn.btn.disabled:focus, .theme-btn.btn.disabled:active, .theme-btn.btn.disabled.active, .theme-btn.btn[disabled], .theme-btn.btn[disabled]:hover, .theme-btn.btn[disabled]:focus, .theme-btn.btn[disabled]:active, .theme-btn.btn[disabled].active, fieldset[disabled] .theme-btn.btn, fieldset[disabled] .theme-btn.btn:hover, fieldset[disabled] .theme-btn.btn:focus, fieldset[disabled] .theme-btn.btn:active, fieldset[disabled] .theme-btn.btn.active {
    background-color: #ec3665;
}




.theme-btn-1.btn {
    color: #FFFFFF;
    background-color: #0b224f;
}

    .theme-btn-1.btn:hover, .theme-btn-1.btn:focus, .theme-btn-1.btn:active, .theme-btn-1.btn.active {
        color: #FFFFFF;
        background-color: #19499f;
    }

.open .theme-btn-1.btn.dropdown-toggle {
    color: #FFFFFF;
    background-color: #c9224d;
}

.theme-btn-1.btn:active, .theme-btn-1.btn.active {
    background-image: none;
    background-color: #0b224f;
}

    .theme-btn-1.btn:active:hover, .theme-btn-1.btn.active:hover {
        background-color: #19499f;
    }

.open .theme-btn.btn.dropdown-toggle {
    background-image: none;
}

.theme-btn-1.btn.disabled, .theme-btn-1.btn.disabled:hover, .theme-btn-1.btn.disabled:focus, .theme-btn-1.btn.disabled:active, .theme-btn-1.btn.disabled.active, .theme-btn-1.btn[disabled], .theme-btn-1.btn[disabled]:hover, .theme-btn-1.btn[disabled]:focus, .theme-btn-1.btn[disabled]:active, .theme-btn-1.btn[disabled].active, fieldset[disabled] .theme-btn-1.btn, fieldset[disabled] .theme-btn-1.btn:hover, fieldset[disabled] .theme-btn-1.btn:focus, fieldset[disabled] .theme-btn-1.btn:active, fieldset[disabled] .theme-btn-.btn.active {
    background-color: #0b224f;
}


/**** swal-button ****/
.swal-button {
    background-color: #ec3665;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 40px;
    margin: 0;
    cursor: pointer;
    border-radius: 50px !important;
}

    .swal-button:focus {
        outline: none;
        box-shadow: none;
    }

    .swal-button:active {
        background-color: #c9224d;
    }

    .swal-button:hover {
        background-color: #c9224d;
    }

.swal-button--cancel {
    color: #555;
    background-color: #efefef;
}

    .swal-button--cancel:active {
        background-color: #d7d7d7;
    }

    .swal-button--cancel:hover {
        background-color: lightgray;
    }

.page-bar {
    padding: 6px 15px;
    background-color: transparent;
    margin-bottom: 0px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 50px !important;
    margin-top: 6px;
}

.page-header.navbar .page-top {
    box-shadow: 0 0 20px #19499f1f;
    background: #ffffff;
}

@media (min-width: 992px) {
    .page-sidebar.navbar-collapse {
        max-height: none !important;
        margin-top: 30px;
        border-radius: 0 !important;
        min-height: 100vh;
        position: fixed;
    }
}


.page-sidebar-menu {
    padding-top: 25px !important;
    padding-bottom: 70px !important;
}

.page-sidebar .page-sidebar-menu.page-sidebar-menu-compact > li, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu.page-sidebar-menu-compact > li {
    text-align: left;
    margin-top: 5px;
}

.portlet.light {
    padding: 12px 20px 15px 20px;
    background-color: #fff;
    border-radius: 25px !important;
    border: 1px solid #e4eaf3;
}

.widget-thumb, .dashboard-stat2 {
    border-radius: 15px !important;
    padding: 20px;
}

    .widget-thumb .widget-thumb-wrap .widget-thumb-icon {
        border-radius: 10px !important;
    }

    .dashboard-stat2 .display {
        margin-bottom: 0px;
        padding-left: 20px
    }

.page-footer {
    height: 36px !important;
}

@media (max-width: 991px) {
    .page-header.navbar .page-logo img {
        margin-left: 5px !important;
        width: 94px !important;
        margin-top: 7px;
    }

    .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > img {
        height: 32px;
    }

    .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle > .username {
        font-size: 11px;
    }
}

.page-header.navbar .menu-toggler.responsive-toggler {
    margin: 27px 15px 0 6px;
}

@media (min-width: 992px) {
    .page-content-wrapper .page-content {
        margin-left: 280px;
    }

    .page-footer-fixed .page-footer .page-footer-inner {
        margin-left: 280px;
        padding-bottom: 20px
    }
}

.input-sm {
    height: 35px;
    border-radius: 5px !important;
}

.btn-sm, .btn-xs {
    padding: 8px 10px 8px 10px;
}

.btn {
    border-radius: 5px !important;
}



.calendars-trigger {
    border-radius: 5px 0 0 5px !important
}



select.input-sm {
    height: 35px;
    line-height: 28px;
    padding: 2px 9px;
}

@media (max-width: 990px) {
    .page-header.navbar .page-top {
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (max-width: 770px) {
    .page-header.navbar .page-top {
        margin-right: 8px;
        margin-left: 8px;
    }
}

@media (max-width: 767px) {
    .page-header.navbar {
        height: 155px;
    }
}

.form-control {
    border-radius: 5px !important;
}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0 !important;
}

.input-group-addon {
    border-radius: 5px !important;
}

    .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

        .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
        }

.feeds li .col1 > .cont > .cont-col1 > .label {
    border-radius: 5px !important;
}

@media (max-width: 480px) {
    .page-header.navbar .menu-toggler.responsive-toggler {
        background-image: url('../../../../Scripts/layout/img/sidebar-toggler-inverse.png');
    }
}

.page-footer {
    text-align: center;
}

@media (max-width: 767px) {
    .page-content-wrapper .page-content {
        padding: 0px 10px 10px 10px !important;
    }
}

.store.page-sidebar {
    background-color: #ebeef500 !important;
}

.is-calendarsPicker {
    border-radius: 0px 5px 5px 0px !important;
}

.input-group {
    margin-bottom: 5px !important;
}

.swal-modal {
    border-radius: 25px !important;
}

.modal-content {
    border-radius: 25px !important;
}

.swal-footer {
    text-align: center !important;
}



.select2-search input {
    width: 100% !important;
}

.modal-content .portlet.light {
    box-shadow: 0px 0px 0px #ffffff;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        margin-bottom: 5px;
        text-align: left;
    }
}

.rowAction .btn.btn-sm {
    padding: 7px 7px !important;
}

button.btn.btn-sm {
    padding: 7px 12px !important;
}

.btn.btn-default {
    padding: 10px 9px !important;
}

.portlet.light > .portlet-title > .actions .btn-icon-only {
    height: 37px !important;
    width: 33px !important;
    margin-left: 0px !important;
}


.badge2 {
    padding: 10px 22px 15px 22px !important;
    height: 32px !important;
    border-radius: 50px !important;
    display: block !important;
    width: 100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px !important;
    margin-top: 15px !important;
}


.dashboard-stat.green-haze {
    background-color: #19499f;
    border-radius: 10px !important;
}

    .dashboard-stat.green-haze.dashboard-stat-light:hover {
        background-color: #84a691;
    }

.page-footer-fixed .page-footer .page-footer-inner a {
    color: #ffffff
}

/*.tabbable-line > .nav-tabs > li.active {
    border-bottom: 4px solid #ec3665;
}

.tabbable-line > .nav-tabs > li.open, .tabbable-line > .nav-tabs > li:hover {
    border-bottom: 4px solid #ec366580;
}*/


/**************** table-them-1 **********************/

.table tr.heading > th {
    background-color: #0F2B72 !important;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.table-scrollable {
    border: 1px solid #e9ecef;
}

.table-bordered,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 0;
    border-left: none;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    vertical-align: middle;
}

table.table-bordered tbody th,
table.table-bordered tbody td {
    font-size: 14px;
}

.table .label-warning {
    background-color: #ff914f;
}

    .table .label-warning[href]:hover, .table .label-warning[href]:focus {
        background-color: #ff914f;
    }

.table .yellow-casablanca.btn {
    background-color: #ff914f;
}

    .table .yellow-casablanca.btn:hover,
    .table .yellow-casablanca.btn:focus,
    .table .yellow-casablanca.btn:active,
    .table .yellow-casablanca.btn.active {
        background-color: #ec3665;
    }

.table .open .yellow-casablanca.btn.dropdown-toggle {
    background-color: #ec3665;
}

.table .yellow-casablanca.btn:active,
.table .yellow-casablanca.btn.active {
    background-color: #ec3665;
}

    .table .yellow-casablanca.btn:active:hover,
    .table .yellow-casablanca.btn.active:hover {
        background-color: #ef541b;
    }

.table .yellow-casablanca.btn.disabled,
.table .yellow-casablanca.btn.disabled:hover,
.table .yellow-casablanca.btn.disabled:focus,
.table .yellow-casablanca.btn.disabled:active,
.table .yellow-casablanca.btn.disabled.active,
.table .yellow-casablanca.btn[disabled],
.table .yellow-casablanca.btn[disabled]:hover,
.table .yellow-casablanca.btn[disabled]:focus,
.table .yellow-casablanca.btn[disabled]:active,
.table .yellow-casablanca.btn[disabled].active,
.table fieldset[disabled] .yellow-casablanca.btn,
.table fieldset[disabled] .yellow-casablanca.btn:hover,
.table fieldset[disabled] .yellow-casablanca.btn:focus,
.table fieldset[disabled] .yellow-casablanca.btn:active,
.table fieldset[disabled] .yellow-casablanca.btn.active {
    background-color: #ff914f;
}

.table .yellow-casablanca.btn .badge {
    color: #ff914f;
}

@media (max-width: 1060px) {
    .table .md-margin-bottom-5 {
        margin-bottom: 5px;
    }
}

.table tfoot .bg-grey-gallery {
    border-color: #f28f54 !important;
    background-color: #f28f54 !important;
}

.bg-red-flamingo.tag {
    border-color: #ec3665 !important;
    background-color: #ec3665 !important;
}

div.tagsinput span.tag.bg-red-flamingo a {
    color: #ffffff;
}

.swal-overlay {
    z-index: 999999 !important;
}

.cke_panel {
    z-index: 999999 !important;
}

.portlet > .portlet-title > .actions .btn-icon-only.btn-default.fullscreen:before {
    content: "\f065";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
}
/*************************/
table.dataTable thead .sorting_asc {
    background: url('../../../../files/logo/sort_asc.png') no-repeat center right !important;
    background-color: #0F2B72 !important;
}

table.dataTable thead .sorting_desc {
    background: url('../../../../files/logo/sort_desc.png') no-repeat center right !important;
    background-color: #0F2B72 !important;
}

.page-sidebar .page-sidebar-menu > li.open > a svg {
    fill: #ffffff;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
:root {
    --card-bg-color: #0f2b72;
}

@import url('https://cdn.jsdelivr.net/npm/eva-icons@1.1.3/style/eva-icons.css');

.uib-timepicker {
    direction: ltr;
}

.page-sidebar.doctor {
    background-color: transparent !important;
}

.special {
    background-color: #fff5d9 !important;
}

.input-group-btn {
    background: #e6eaf1;
}

    .input-group-btn:hover, .input-group-btn:focus {
        background-color: lightgray;
    }

#PortletPrintReport .input-group-btn button {
    padding: 11px;
}

.modal-backdrop, .modal-backdrop.fade.in {
    z-index: 9999 !important;
}

.portlet .portlet-title .actions .btn {
    min-height: 35px;
}

/***
calendars
***/
.uib-timepicker {
    direction: ltr;
}

.calendars-popup {
    z-index: 10061;
}

.calendars {
    border: 1px solid #ddd;
    font-family: 'Poppin', sans-serif !important;
    box-shadow: 5px 5px rgba(140, 178, 198, 0.2);
    border-radius: 5px;
}

.calendars-nav, .calendars-ctrl {
    background-color: #fff;
    padding: 7px;
    border-radius: 5px;
}

.calendars-cmd:hover {
    background-color: inherit;
}

.calendars-month {
    padding: 0 5px;
    width: 20em;
    border: none;
}

    .calendars-month td {
        border: 1px solid #E9ECF3;
    }

    .calendars-month th {
        border: 1px solid #E9ECF3;
        font-size: 10px;
    }

    .calendars-month a {
        padding: 0px;
        background-color: inherit;
    }

.calendars-month-header .calendars-month-year:first-child {
    width: 100px;
    font-size: 90%;
}

.calendars-month table thead tr th span {
    padding: 5px 0;
    font-weight: 600;
}

.calendars-month-header, .calendars-month-header select, .calendars-month-header input {
    height: 2.5em;
    background-color: #E9ECF3;
    color: #333;
}

th.center, td.center {
    text-align: center;
}


.readonly {
    background: #eeeeee;
}


.no-resize {
    resize: none;
}

.auto-height {
    height: auto;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.font-blue-madison {
    color: #5f1f96 !important;
}

.w100 {
    width: 100px
}

.w110 {
    width: 110px
}

/****************************************/
.dashboard-stat.grey-steel .details .desc {
    padding-top: 25px;
}

.dashboard-stat.grey-steel .details .number {
    padding-top: 0px;
}

    .dashboard-stat.grey-steel .details .number a {
        color: #80898e;
    }

        .dashboard-stat.grey-steel .details .number a:hover {
            color: #333;
            text-decoration: none
        }

.m-icon-swapright {
    background-position: right -8px top -10px;
}

.w100 {
    width: 100px
}


/**************************************/
.badge-theme {
    background-color: #b886bc;
    background-image: none;
}

.d-block {
    display: block;
}

.btn-group > .btn.float-unset {
    float: unset
}

.dashboard-stat .more.h-more {
    min-height: 29px;
    display: block;
}

.dashboard-stat.grey-gallery {
    background-color: #343434;
}

    .dashboard-stat.grey-gallery .more {
        background-color: #292828;
    }

.dashboard-stat.blue-steel {
    background-color: #69b8d9;
}

    .dashboard-stat.blue-steel .more {
        background-color: #5ba2c0;
    }

.bg-red {
    border-color: #cb5a5e !important;
    background-color: #cb5a5e !important;
}

bg-grey-cascade {
    border-color: #909090 !important;
    background-color: #909090 !important;
}

.label-warning {
    color: #fff;
}

.font-price {
    font-size: 20px;
}

.dashboard-stat {
    border-radius: 12px !important;
}

.p-0 {
    padding: 0 !important
}

.text-end-block {
    text-align: end;
}

.portlet-body .footer-panel {
    display: flex;
    justify-content: space-between;
}

/* Message Chat Box */

.inbox_people {
    background: #f8f8f8 none repeat scroll 100% 0;
    float: left;
    overflow: hidden;
    width: 40%;
    border-right: 1px solid #c4c4c4;
}

.inbox_msg {
    border: 1px solid #c4c4c4;
    clear: both;
    overflow: hidden;
}

.top_spac {
    margin: 20px 0 0;
}


.recent_heading {
    float: right;
    width: 40%;
}

.srch_bar {
    display: inline-block;
    text-align: left;
    width: 60%;
}

.headind_srch {
    padding: 10px 20px 10px 29px;
    overflow: hidden;
    border-bottom: 1px solid #c4c4c4;
}

.recent_heading h4 {
    color: #05728f;
    font-size: 21px;
    margin: auto;
}

.srch_bar input {
    border: 1px solid #cdcdcd;
    border-width: 0 0 1px 0;
    width: 80%;
    padding: 2px 6px 4px 0;
    background: none;
}

.srch_bar .input-group-addon button {
    background: rgba(0, 0, 0, 0) none repeat scroll 100% 0;
    border: medium none;
    padding: 0;
    color: #707070;
    font-size: 18px;
}

.srch_bar .input-group-addon {
    margin: 0 -27px 0 0;
}

.chat_ib h5 {
    font-size: 15px;
    color: #464646;
    margin: 0 0 8px 0;
    font-weight: 600;
}

    .chat_ib h5 span {
        font-size: 12px;
        float: right;
    }

.chat_ib p {
    font-size: 14px;
    margin: auto;
    word-break: break-word;
}

    .chat_ib p.date {
        color: #989898;
    }

.chat_img {
    float: left;
    width: 6%;
}

    .chat_img i.fa-circle {
        color: #44b6ae
    }

    .chat_img i.fa-circle-o {
        color: #777777
    }

.chat_ib {
    float: left;
    width: 94%;
}

.chat_people {
    overflow: hidden;
    clear: both;
}

.chat_list {
    border-bottom: 1px solid #c4c4c4;
    margin: 0;
    padding: 18px 16px 10px;
    display: block;
}

    .chat_list:hover {
        background: #ebebeb;
    }

.inbox_chat {
    height: 600px;
    overflow-y: scroll;
}

.active_chat {
    background: #ebebeb;
}

.incoming_msg {
    overflow: hidden;
    margin: 15px 0;
}

.incoming_msg_img {
    display: inline-block;
    width: 6%;
}

    .incoming_msg_img img {
        border-radius: 50% !important;
        width: 100%;
    }

.received_msg {
    display: inline-block;
    padding: 0 10px 0 0;
    vertical-align: top;
    width: 92%;
}

.received_withd_msg p {
    background: #ebebeb none repeat scroll 100% 0;
    border-radius: 3px !important;
    color: #646464;
    font-size: 14px;
    margin: 0;
    padding: 5px 12px 5px 10px;
    width: 100%;
}

.time_date {
    color: #747474;
    display: block;
    font-size: 12px;
    margin: 8px 0 0;
    direction: ltr;
    text-align: left;
}

.received_withd_msg {
    width: 70%;
}

.mesgs {
    float: left;
    width: 60%;
}

.sent_msg p {
    background: #eabb00 none repeat scroll 100% 0;
    border-radius: 3px !important;
    font-size: 14px;
    margin: 0;
    color: #fff;
    padding: 5px 12px 5px 10px;
    width: 100%;
}

.outgoing_msg {
    overflow: hidden;
    margin: 15px 0;
}

.sent_msg {
    float: right;
    width: 60%;
}

.input_msg_write input {
    background: rgba(0, 0, 0, 0) none repeat scroll 100% 0;
    border: medium none;
    color: #4c4c4c;
    font-size: 15px;
    min-height: 49px;
    width: 100%;
    padding-right: 35px;
}

.type_msg {
    border-top: 1px solid #c4c4c4;
    position: relative;
    margin: 0 20px;
}

.msg_send_btn {
    background: #eabb00 none repeat scroll 100% 0;
    border: medium none;
    border-radius: 50% !important;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    height: 33px;
    position: absolute;
    right: 0;
    top: 8px;
    width: 33px;
}

.messaging {
    padding: 0 0 50px 0;
}

.msg_history {
    height: 549px;
    overflow-y: auto;
    padding: 25px 15px 0 20px;
}

.finish-btn {
    margin-bottom: 10px;
    text-align: right
}

.mb-2 {
    margin-bottom: 20px
}

@media (max-width: 767px) {
    .incoming_msg_img {
        display: none
    }

    .received_msg {
        width: 100%;
        padding: 0;
    }

    .received_withd_msg {
        width: 100%;
    }

    .sent_msg {
        width: 100%;
    }
}

/*************************/

.widget-bg-color-red {
    background: #ed3165;
}

.widget-bg-color-fb {
    background: #19499f;
}

.widget-bg-color-purple {
    background: #f3565d;
}

.widget-bg-color-gray-dark {
    background: #0b224f;
}

.widget-bg-color-blue {
    background: #25aae1;
}

.widget-bg-color-green {
    background: #199f48;
}

/*********************************************************** price table ****************************************************************************/


.pricing-table-style-02 .pricing-table {
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    background-color: #fff;
}

    .pricing-table-style-02 .pricing-table .popular-label {
        position: absolute;
        top: -28px;
        left: -47px;
        width: 120px;
        transform-origin: 100%;
        padding: 10px 0 8px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }

.pricing-table-style-02 .pricing-body ul li {
    padding: 15px 0;
}

    .pricing-table-style-02 .pricing-body ul li:last-child {
        padding-bottom: 0;
    }

.pricing-table-style-02 .pricing-popular {
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.pricing-table-style-02 .pricing-table {
    border-radius: 10px !important;
    box-shadow: 0 0 26px rgb(0 0 0 / 4%);
    margin-bottom: 24px;
}

.section-Package {
    position: relative;
}

    .section-Package .pricing-table-style-02 .pricing-table .item-price {
        text-align: left;
        padding: 0 24px;
        padding-left: 54px;
        position: relative;
        margin-bottom: 16px;
        color: #a9a9a9;
    }

        .section-Package .pricing-table-style-02 .pricing-table .item-price:last-of-type {
            margin-bottom: 0;
        }

        .section-Package .pricing-table-style-02 .pricing-table .item-price .item-list-par {
            font-size: 16px;
        }

        .section-Package .pricing-table-style-02 .pricing-table .item-price .icon-price {
            position: absolute;
            left: 18px;
            top: -1px;
            height: 25px;
            width: 25px;
            background-color: #458e71;
            color: #fff;
            text-align: center;
            align-items: center;
            justify-content: center;
            border-radius: 50% !important;
            display: flex;
        }


        .section-Package .pricing-table-style-02 .pricing-table .item-price.nub-ser {
            padding-left: 24px;
        }

    .section-Package ul {
        list-style: none;
        padding-left: 0;
    }

.pricing-table-style-02 .pricing-table .pricing-header {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .pricing-table-style-02 .pricing-table .pricing-header span {
        font-weight: 700;
        color: #232323;
        font-size: 20px;
        line-height: 28px;
        text-transform: uppercase;
        display: block
    }

.pricing-table-style-02 .pricing-table .pricing-body h4 {
    font-weight: 700;
    color: #358062;
    font-size: 38px;
    line-height: 3.4rem;
    margin-bottom: 3px;
    margin-top: 0;
}

.pricing-table-style-02 .pricing-table .pricing-body .span-time {
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #a9a9a9;
}

.section-Package .pricing-table-style-02 .pricing-table .item-price .icon-price.bg-gray {
    background-color: #cfcdcd;
}

.pricing-table-style-02 .pricing-table .pricing-footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-Package .pricing-table-style-02 .pricing-table .nub-ser.item-price {
    padding-left: 24px;
    text-align: center;
}

    .section-Package .pricing-table-style-02 .pricing-table .nub-ser.item-price p {
        font-weight: 600;
        color: #358062;
        font-size: 17px;
        text-align: center;
        line-height: 28px;
        margin-bottom: 0;
    }

.page-sidebar-select {
    padding: 30px 0;
}

    .page-sidebar-select .form-control {
        color: #19499f;
        background-color: #f3f6fa;
        border: 1px solid #ffffff;
        border-radius: 13px !important;
        height: 50px;
        line-height: 28px;
        padding: 4px 14px;
        font-weight: 600;
    }

.statistics .form-control {
    border: 0;
    border-radius: 25px !important;
}

.dashboard-stat2.card-1 {
    background: #ffdfe8;
}

.dashboard-stat2.general-card .display .number small {
    color: #6d7585;
    font-size: 15px;
    margin-top: 6px;
    display: block;
}

.stutes span {
    font-size: 15px;
    color: #6d7585;
    font-weight: 600;
    margin-left: -5px;
}

.dashboard-stat2.general-card .display .icon {
    background-color: #d7e5ff;
    width: 50px;
    height: 50px;
    border-radius: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.dashboard-stat2.card-1 .display .icon {
    background-color: #ed3165;
}

.dashboard-stat2.general-card .display {
    margin-bottom: 0px;
    padding-left: 0;
}

    .dashboard-stat2.general-card .display .icon > i {
        color: #fff;
        font-size: 20px;
    }



.dashboard-stat2 .display .icon {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 13px !important;
}






.dashboard-stat2.card-4 .display .icon {
    background-color: #f3565d;
}

.dashboard-stat2.card-5 {
    background: #ddeeff;
}

    .dashboard-stat2.card-5 .display .icon {
        background-color: #0b224f;
    }

.form-control.height-34 {
    height: 34px;
}

.input-group-col.input-group[class*=col-] {
    padding-right: 15px;
    padding-left: 15px;
}

.form-body .title-model {
    margin-bottom: 15px;
    font-size: 18px;
    margin-top: 0;
    color: #000;
    font-weight: 600;
}

    .form-body .title-model span {
        color: #858585;
        display: inline-block;
        font-size: 16px;
    }

.wallets-modal .img-bank {
    padding: 10px;
    border: 1px solid #b5b5b5;
    transition: .4s;
    width: 120px;
    display: inline-block;
    margin: 0 4px;
    margin-bottom: 6px;
}

    .wallets-modal .img-bank:hover,
    .wallets-modal .img-bank.active {
        border-color: #ec3665;
    }

    .wallets-modal .img-bank img {
        max-width: 100%;
    }

.wallets-modal .list-group {
    list-style: none;
    margin-top: 15px;
}

    .wallets-modal .list-group .item-list {
        padding: 8px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        background-color: #f7f7f7;
        -webkit-print-color-adjust: exact;
    }

        .wallets-modal .list-group .item-list:nth-child(odd) {
            background-color: #ebebeb;
            -webkit-print-color-adjust: exact;
        }

.wallets-modal .tilte-list {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
}

.wallets-modal .list-box li {
    margin-bottom: 5px;
}

.height-card {
    min-height: 205px;
}

.card-spitial.general-card {
    position: relative;
    background: #d9e1eb;
    overflow: hidden;
    box-shadow: unset;
    border-radius: 15px !important;
    background-image: url('../../../../files/logo/img-bg.png');
    background-size: cover;
    background-position: center bottom;
    margin-bottom: 0 !important;
}

    .card-spitial.general-card .display {
        padding-left: 15px;
    }

        .card-spitial.general-card .display .number {
            color: #fff;
        }

    .card-spitial.general-card h2 {
        color: #0b224f;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
        align-items: center
    }

.card-spitial.dashboard-stat2 .display .number {
    width: 100%
}

.dashboard-stat2 .display .number h3.font-count {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #ffffff;
    background-color: #19499f;
    display: inline-block;
    border-radius: 36px;
    padding: 8px 23px 5px;
    line-height: 18px;
}

.card-spitial.general-card .display .number h2 span {
    display: block;
    color: #eb3664;
    font-size: 18px;
    font-weight: 600;
}

.card-spitial.general-card .send-glass {
    position: absolute;
    right: 15px;
    bottom: 0px;
    transform: scaleX(1); /* Flips the image horizontally */
}


body {
    font-family: "Poppins", serif;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-3px);
    }

    100% {
        transform: translatey(0px);
    }
}

.icon-flex {
    width: 100%;
    border-radius: 15px !important;
    background-color: white;
}

    .icon-flex .display .icon {
        margin-right: 10px;
    }

    .icon-flex .display {
        display: flex;
    }

.card-spitial.general-card .send-glass img {
    width: 180px;
    animation: float 5s ease-in-out infinite;
}

.card-spitial .display {
    padding-left: 0 !important;
}
/*******pricing*********/
.tab-slider--nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.tab-slider--tabs {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    border: 2px solid #19499f;
    border-radius: 50px !important;
    overflow: hidden;
    background: #f5f5f5;
    height: 40px;
    user-select: none;
}

    .tab-slider--tabs:after {
        content: "";
        width: 50%;
        background: #19499f;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0px;
        transition: all 250ms ease-in-out;
        border-radius: 50px;
    }

    .tab-slider--tabs.slide:after {
        left: 50%;
    }

.tab-slider--trigger {
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
    color: #19499f;
    text-align: center;
    padding: 10px 25px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: color 250ms ease-in-out;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

    .tab-slider--trigger.active {
        color: #fff;
    }

.tab-slider--body {
    margin-bottom: 20px;
}

.card {
    width: 250px;
}

.card__heading {
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    padding: 10px;
}

    .card__heading span.title {
        font-size: 1.3rem;
        font-weight: 600;
    }

.card__content {
    padding: 5px 15px;
}

.card .price-label > .current-price {
    font-size: 2.3rem;
    font-weight: 600;
}

.card .price-label > .previous-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #575757;
    text-decoration: line-through;
    margin-left: 8px;
}

/*--------------------------*/
.pricing-package-section .qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
}

    .pricing-package-section .qty-container .input-qty {
        text-align: center;
        padding: 5px 10px;
        border: 0px solid #d4d4d4;
        max-width: 64px;
        margin: 0 10px;
        border-radius: 5px !important;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
        min-height: 34px;
    }

    .pricing-package-section .qty-container .qty-btn-minus,
    .pricing-package-section .qty-container .qty-btn-plus {
        border: 0px solid #d4d4d4;
        padding: 0;
        font-size: 9px;
        height: 24px;
        width: 24px;
        border-radius: 50% !important;
        transition: 0.3s;
        background-color: #19499f;
        color: #fff;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

        .pricing-package-section .qty-container .qty-btn-minus i,
        .pricing-package-section .qty-container .qty-btn-plus i {
            margin: 0;
        }

    .pricing-package-section .qty-container .qty-btn-plus {
        margin-right: 0px;
    }

.pricing-package-section .num-qty {
    font-weight: 600;
}

.pricing-package-section .qty-container .qty-btn-minus {
    margin-left: 0px;
}


.pricing-package-section .price {
    text-align: center;
    font-size: 36px;
    color: #ed3165;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

    .pricing-package-section .price sub {
        position: static;
        font-size: 1.5rem;
    }

.pricing-package-section .pricing-card {
    text-align: center;
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 20px;
}

    .pricing-package-section .pricing-card .title-card {
        margin-bottom: 0;
        margin-top: 0;
        background-color: #19499f;
        padding: 20px 10px;
        font-size: 20px;
        color: #fff;
    }

    .pricing-package-section .pricing-card .pricing-content {
        padding: 15px 0px 20px;
        background-color: #f5f9ff;
    }

        .pricing-package-section .pricing-card .pricing-content .price span {
            display: inline-block;
            font-size: 18px;
        }

        .pricing-package-section .pricing-card .pricing-content .price .price-span {
            margin-right: -7px;
            margin-left: -7px;
        }

    .pricing-package-section .pricing-card .increase-box {
        border-top: 1px solid #d6ddea;
        padding: 25px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .pricing-package-section .pricing-card .increase-box .lable-num {
            margin-bottom: 0;
            font-weight: 600;
            color: #0b224f;
            margin-right: 15px;
        }

    .pricing-package-section .pricing-card .par-package {
        font-size: 13px;
        margin-bottom: 10px;
        padding: 0 20px;
    }

    .pricing-package-section .pricing-card .list-feature {
        list-style: none;
        padding: 15px;
        text-align: left;
        margin-bottom: 0;
    }

        .pricing-package-section .pricing-card .list-feature .item-feature {
            padding: 15px;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            align-items: center;
            font-size: 14px;
            border-bottom: 1px solid #d6ddea;
        }

            .pricing-package-section .pricing-card .list-feature .item-feature:last-of-type {
                border-bottom: 0;
            }

            .pricing-package-section .pricing-card .list-feature .item-feature span.price-list {
                color: #ed3165;
                font-weight: 700;
                font-size: 16px;
            }

    .pricing-package-section .pricing-card .btn {
        padding: 10px 25px;
        margin: 15px 0;
    }
/****************/
.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center;
}

.block-wallet {
    display: flex;
    padding: 15px 20px;
    background-color: #f5f9ff;
    margin-bottom: 30px;
    justify-content: space-between;
    border-radius: 10px !important;
    align-items: center;
}

    .block-wallet h4 {
        margin: 0;
        font-weight: 700;
        color: #19499f;
    }
/*.mlr-auto{
    margin-left:auto;
    margin-right:auto;
}*/
.details-wallet {
    padding: 15px 20px;
    background-color: #f5f9ff;
    margin-bottom: 30px;
    border-radius: 10px !important;
}

    .details-wallet .title-wallet {
        text-align: center;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .details-wallet .list-wallet {
        list-style: none;
        padding: 0;
    }

        .details-wallet .list-wallet .item-wallet {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

            .details-wallet .list-wallet .item-wallet h5 {
                font-weight: 700;
                font-size: 14px;
                margin: 0;
            }

                .details-wallet .list-wallet .item-wallet h5 span {
                    display: inline-block;
                    color: #858585;
                    margin-left: 8px;
                    font-size: 13px;
                }

            .details-wallet .list-wallet .item-wallet span {
                color: #ed3165;
                font-weight: 700;
                font-size: 15px;
            }

            .details-wallet .list-wallet .item-wallet.footer-wallet {
                padding-top: 25px;
                border-top: 1px solid #e3edff;
                margin-top: 25px;
            }

                .details-wallet .list-wallet .item-wallet.footer-wallet a {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px 12px;
                    border-radius: 5px !important;
                    transition: .4s;
                    width: 100%;
                    background-color: #19499f;
                    color: #fff;
                    text-decoration: none;
                }

                .details-wallet .list-wallet .item-wallet.footer-wallet span {
                    color: #fff;
                }

                .details-wallet .list-wallet .item-wallet.footer-wallet a:hover {
                    background-color: #0b224f;
                }

.mt-1 {
    margin-top: 1rem;
}

@media (max-width: 1199px) {
    .row.d-flex.justify-content-center {
        display: block;
    }

    .row.d-flex.justify-content-center {
        justify-content: unset;
    }

    .pricing-package-section .pricing-card .increase-box {
        padding: 25px 12px;
    }

    .pricing-package-section .pricing-card .list-feature .item-feature {
        padding: 12px 12px;
        font-size: 13px;
    }

        .pricing-package-section .pricing-card .list-feature .item-feature span.price-list {
            font-size: 15px;
        }

    .pricing-package-section .price {
        font-size: 30px;
    }

    .pricing-package-section .pricing-card .title-card {
        padding: 16px 10px;
        font-size: 18px;
    }
}

@media (max-width: 679px) {
    .block-wallet {
        display: block;
        padding: 15px 10px;
    }

    .details-wallet {
        padding: 15px 10px;
    }

    .block-wallet h4 {
        margin-bottom: 12px;
    }

    .details-wallet .list-wallet .item-wallet h5 span {
        margin-left: 1px;
        font-size: 10px;
    }

    .details-wallet .list-wallet .item-wallet h5 {
        font-size: 12px;
    }

    .details-wallet .list-wallet .item-wallet span {
        font-size: 13px;
    }
}

.md-radio-inline .d-inline-block {
    display: inline-block;
}
/*********************/
.choose-payment-way .lable-input {
    color: #000;
    font-weight: 700;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

.choose-payment-way {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #e3edff;
}

    .choose-payment-way .md-radio-inline .d-inline-block {
        margin-right: 8px;
    }

        .choose-payment-way .md-radio-inline .d-inline-block:last-of-type {
            margin-right: 0px;
        }

    .choose-payment-way .md-radio-inline.d-inline-block {
        display: inline-block;
    }

.form-body .details-wallet .content-banck {
    padding-top: 20px;
}

    .form-body .details-wallet .content-banck .title-model {
        font-size: 15px;
        color: #0b224f;
    }

.wallets-modal .form-body .details-wallet .content-banck .img-bank {
    width: 100px;
    padding: 5px;
}

.wallets-modal .form-body .details-wallet .content-banck .list-group .item-list:nth-child(odd) {
    background-color: transparent;
}

.wallets-modal .form-body .details-wallet .content-banck .list-group .item-list {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background-color: transparent;
}

    .wallets-modal .form-body .details-wallet .content-banck .list-group .item-list span {
        font-weight: 700;
    }

.wallets-modal .form-body .details-wallet .content-banck .list-group {
    list-style: none;
    margin-top: 6px;
    margin-bottom: 6px;
}
/***********************/
.packageInvoice-page .form-body .details-wallet .content-banck {
    padding-top: 25px;
    border-top: 1px solid #e3edff;
    margin-top: 25px;
}

.wallets-modal.packageInvoice-page .form-body .details-wallet .content-banck .list-group {
    margin-top: 0
}

.packageInvoice-page .details-wallet .header-wallet {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .packageInvoice-page .details-wallet .header-wallet .box-img .invoice-logo {
        margin-bottom: 0;
        width: 100px;
    }

    .packageInvoice-page .details-wallet .header-wallet .invoice-num .list-unstyled {
        margin-bottom: 0;
    }

        .packageInvoice-page .details-wallet .header-wallet .invoice-num .list-unstyled .item-list {
            margin-bottom: 6px;
        }

            .packageInvoice-page .details-wallet .header-wallet .invoice-num .list-unstyled .item-list:last-of-type {
                margin-bottom: 0;
            }

.packageInvoice-page .details-wallet .list-wallet .item-wallet.footer-wallet a {
    justify-content: center;
    font-size: 15px;
}

    .packageInvoice-page .details-wallet .list-wallet .item-wallet.footer-wallet a i {
        margin-right: 6px;
    }

hr.hr-header {
    border-top: 1px solid #e3edff;
}

.wallets-modal.packageInvoice-page .form-body .details-wallet .content-banck .list-group .item-list {
    background-color: #fbfdff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 8px;
    margin-bottom: 5px;
}

    .wallets-modal.packageInvoice-page .form-body .details-wallet .content-banck .list-group .item-list:last-of-type {
        margin-bottom: 0;
    }

.packageInvoice-page.wallets-modal .form-body .details-wallet .content-banck .list-group .item-list:nth-child(odd) {
    background-color: #f5f9ff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.wallets-modal.packageInvoice-page .details-wallet {
    background-color: #ffffff;
    margin-bottom: 0;
}

    .wallets-modal.packageInvoice-page .details-wallet .title-wallet .num-wallet {
        color: #ed3165;
    }

@media print {
    .wallets-modal.packageInvoice-page .details-wallet .title-wallet .num-wallet {
        color: #ed3165 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    hr .hr-header {
        border-color: #e3edff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .details-wallet .list-wallet .item-wallet span {
        color: #ed3165 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        display: inline-block;
    }

    .widget-title-color-red {
        color: #f36a5a !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .details-wallet .list-wallet .item-wallet h5 span {
        color: #858585 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .wallets-modal.packageInvoice-page .form-body .details-wallet .content-banck .list-group .item-list {
        background-color: #fbfdff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }


    .wallets-modal.packageInvoice-page .form-body .details-wallet .content-banck .list-group {
        margin-bottom: 10px !important;
    }

    .packageInvoice-page.wallets-modal .form-body .details-wallet .content-banck .list-group .item-list:nth-child(odd) {
        background-color: #f5f9ff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

.div-Invoice-box .div-Invoice {
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}

.div-Invoice-box .img-Invoice {
    width: 180px;
    border-radius: 10px !important;
}

.tab-slider--nav.mb-5 {
    margin-bottom: 5px
}


@media print {
    .page-breadcrumb, .searchInput {
        display: none
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }
}


/*******invoice************/
/***
Invoice page
***/ /*
.invoice table {
    margin: 30px 0 30px;
}

.invoice .invoice-logo {
    margin-bottom: 20px;
}

    .invoice .invoice-logo p {
        padding: 5px 0;
        font-size: 26px;
        line-height: 28px;
        text-align: right;
    }

        .invoice .invoice-logo p span {
            display: block;
            font-size: 14px;
        }

.invoice .invoice-logo-space {
    margin-bottom: 15px;
}

.invoice .invoice-payment strong {
    margin-right: 5px;
}

.invoice .invoice-block {
    text-align: right;
}

    .invoice .invoice-block .amounts {
        margin-top: 20px;
        font-size: 14px;
    }

h2.mb--20 {
    margin-bottom: 20px;
    margin-top: 0
}
*/

.counter2 {
    display: flex;
    align-items: center
}

.stu2 {
    margin-left: 20px;
}

.icon-flex svg {
    width: 25px;
    height: 25px;
    fill: #19499f;
}

.number h1 {
    color: #0b224f;
    font-size: 20px;
    font-weight: 800
}





.box-charts {
    padding: 30px;
    background-color: white;
    border: 1px solid #f5f5f5;
    border-radius: 20px !important;
}




.card-pink.card-spitial.general-card {
    background-color: #19499f; /* Use the variable */
    display: flex;
    align-items: center;
    background-image: unset !important
}


    .card-pink.card-spitial.general-card .send-glass img {
        width: 200px;
        opacity: 0.05;
    }

.text-white {
    margin-top: 0px;
    color: white !important
}

.card-pink .number {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 999;
    position: relative;
}

.card-pink .display {
    width: 100%
}


.card-pink.dashboard-stat2.general-card .display .icon {
    background-color: #ffffff;
    border-radius: 100px !important;
}

    .card-pink.dashboard-stat2.general-card .display .icon > i {
        color: #19499f;
        font-size: 20px;
    }

.icon-wallet-dash {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 20px
}

    .icon-wallet-dash svg {
        width: 25px;
        fill: #eb3664;
    }

.mt-20px {
    margin-top: 20px
}

.box-charts .titleCard {
    font-size: 20px;
    color: #eb3664;
}

.box-charts .dashboard-stat2 {
    border: 1px solid #e1e4e9;
    box-shadow: none;
}

.box-charts .chart-box-color {
    padding: 0;
    list-style: none;
}

    .box-charts .chart-box-color .chart-item-color {
        display: inline-block;
        margin-right: 15px;
        padding-right: 15px;
        position: relative;
        border-right: 1px solid #f5f5f5;
        vertical-align: middle;
    }

        .box-charts .chart-box-color .chart-item-color:last-of-type {
            border-right: 0;
            margin-right: 0;
            padding-right: 0;
        }

        .box-charts .chart-box-color .chart-item-color p {
            color: #0c2444;
            font-weight: 700;
            vertical-align: middle;
            font-size: 16px;
            display: inline-block;
            margin-bottom: 0;
        }

            .box-charts .chart-box-color .chart-item-color p span {
                vertical-align: middle;
            }

.color-1 {
    background-color: #19d9a3
}

.color-2 {
    background-color: #25aae1
}

.color-3 {
    background-color: #19499f
}

.circle-color {
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1px;
}

.box-charts .number-stats > div {
    border-right: 0px solid #f5f5f5;
}

.box-charts .display.titleCad-chart {
    padding-left: 0;
    margin-bottom: 8px;
}

.form-control-box select.input-sm,
.form-control-box select.input-lg {
    border-radius: 25px !important;
    border: 1px solid #e1e4e9;
    margin-bottom: 5px;
}

.chartts .form-control.input-sm {
    border-radius: 25px !important;
}


#subscriptionForm .subscription-card {
    padding: 25px;
    border: 1px solid #eaf2ff;
    margin-top: 20px;
    border-radius: 10px !important;
}

#subscriptionForm .section-title {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f9ff;
    color: #19499f;
}

#subscriptionForm .warning-message {
    background-color: #fff4cc;
    padding: 15px;
    border: 1px solid #f3e6b1;
    margin-bottom: 15px;
    border-radius: 56px !important;
    text-align: center;
}

#subscriptionForm .form-check-input {
    margin-right: 0;
}

#subscriptionForm .warning-message.border-r-10 {
    border-radius: 10px !important
}

.pricing-package-section .description-content .increase-box {
    border-bottom: 0px solid #f5f9ff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .pricing-package-section .description-content .increase-box .lable-num {
        margin-bottom: 0;
        font-weight: 600;
        color: #0b224f;
        margin-right: 15px;
    }

.pricing-package-section .description-content .qty-container .input-qty {
    background-color: #f5f9ff;
}

.pricing-package-section .description-content .note-span {
    margin-left: auto;
    color: #0b224f;
}

.pricing-package-section .type-package {
    border-bottom: 0px solid #f5f9ff;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .pricing-package-section .type-package .item-feature-insert .checker .price-list,
    .pricing-package-section .type-package .item-feature-insert .checker {
        vertical-align: sub;
        margin-left: 0px;
    }
/*.pricing-package-section .item-check-feature{
    display:flex;
    flex-wrap:wrap;
}*/
.pricing-package-section .item-check-feature .item-feature-insert {
    border-bottom: 0px solid #f5f9ff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*   max-width: 50%;flex:0 0 50%;*/
}

    .pricing-package-section .item-check-feature .item-feature-insert .increase-box {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.pricing-package-section .qty-container .input-qty.disabled {
    background-color: #19499f;
    color: #fff;
    border: 1px dashed #f5f9ff;
    outline: none;
    margin-right: 0;
}

.slice-info-box {
    border-bottom: 1px solid #ecf1f9;
    padding: 15px 0px;
}



.pricing-package-section .pricing-card .slice-info-box .list-feature .item-feature {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 5px;
}
/*.pricing-card.info-package-card .header-package {
    margin-bottom: 0;
    margin-top: 0;
    background-color: #19499f;
    padding: 15px 10px;
    font-size: 20px;
    color: #ffffff;
}*/
.d-ltr {
    direction: ltr;
    display: inline-block;
}

.pricing-card.info-package-card {
    background-color: #fff;
    border: 1px solid #eaf2ff;
}

    .pricing-card.info-package-card .title-card {
        border-radius: 10px;
        padding: 12px 10px;
    }

.pricing-package-section .pricing-card.info-package-card .pricing-content {
    padding: 0;
    background-color: #fff;
}

.pricing-package-section .pricing-card.info-package-card .list-feature .item-feature {
    padding: 15px 0 0;
    border: 0
}

.page-sidebar-menu li a {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

    .page-sidebar-menu li a svg {
        width: 20px;
        height: 20px;
        position: relative;
        top: -2px;
        fill: #0b224f
    }

.page-sidebar-menu li.active a svg {
    fill: white
}

@media (max-width: 2500px) {
    .container-fluidd {
        max-width: 1500px !important;
        margin: auto;
    }
}



.box-dashboard {
    box-shadow: 0 0 30px #1027530f;
    padding: 12px;
    border-radius: 10px !important;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

    .box-dashboard svg {
        fill: #0d2859;
    }

    .box-dashboard p {
        color: #8995ab
    }

    .box-dashboard h6 {
        color: #0b224f;
        font-size: 17px;
        font-weight: 600;
    }

    .box-dashboard.bb-2 {
        background-color: #ecf0f6;
        box-shadow: unset;
    }

.justify-content-between {
    justify-content: space-between
}

.align-items-center {
    align-items: center
}

.box-charts .display {
    margin-bottom: 15px
}

.display .form-control-box select.input-sm, .form-control-box select.input-lg {
    background-color: #f4f7fb;
}

.dashboard-stat2 .display .number {
    flex: 1;
}

.number .fa.fa-arrow-left {
    color: #929ca9;
}

.mb-10 {
    margin-bottom: 10px
}

.mb--20 {
    margin-bottom: 20px !important
}

#myCarousel img {
    width: 100%
}

#myCarousel .carousel-inner {
    border-radius: 15px !important
}

#myCarousel .carousel-control.left {
    border-radius: 15px 0 0 15px !important;
}

#myCarousel .carousel-control.right {
    border-radius: 0 15px 15px 0 !important;
}

.carousel.image-carousel .carousel-indicators li {
    background-color: #ffffff;
    border-radius: 50px !important;
}

    .carousel.image-carousel .carousel-indicators li.active {
        background-color: #ed3165;
    }


.border-rounded {
    border-radius: 100px !important;
}

.multi-search-box {
    background-color: #f4f7fb;
    border-radius: 10px !important;
    padding: 15px;
    border: 1px solid #e6eaf1;
    margin-bottom: 15px;
}



.d-flex .form-control {
    flex: 1;
}

.mb-3 {
    margin-bottom: 15px
}

#categorySelect {
    border-radius: 10px !important;
    background-color: white;
    border: 1px solid #e4eaf3 !important;
    height: 40px;
    width: 100%;
    padding: 10px;
    border: unset;
}




/* Label styling */
.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}


.me-2 {
    margin-right: 10px
}

.multi-search-box .form-control {
    border: 1px solid #e6eaf1;
    height: 40px;
    border-radius: 10px !important;
}

.justify-content-end {
    justify-content: end !important
}



.gap-10 {
    gap: 10px
}


.table-bordered2 tr.heading th:first-child {
    border-radius: 100px 0 0 100px !important;
}

.table-bordered2 tr.heading th:last-child {
    border-radius: 0 100px 100px 0 !important;
}


.table-bordered2.table tr.heading > th {
    background-color: #19499f !important;
    color: #ffffff !important;
    border-left: none !important;
}

.table-bordered2.table tr.heading > th {
    background-color: #19499f !important;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.table-bordered2.table-striped > tbody > tr:nth-child(odd) {
    background-color: white !important
}

.table-bordered2.table-striped > tbody > tr:nth-child(even) {
    background-color: #f4f7fb !important;
}

.multi-search-box .btn.btn-primary {
    color: #fff;
    background: #071630 !important;
    background: #071630;
    border-color: unset !important;
    min-width: 90px;
    padding: 10px;
    border-radius: 50px !important
}

.portlet > .portlet-title > .actions > .btn.btn-sm.blue {
    color: #FFFFFF;
    background-color: #0d2858;
    border-radius: 50px !important;
    padding: 5px 15px !important;
}

body .page-container .page-sidebar {
    height: 100% !important;
    overflow-y: scroll !important;
}

    body .page-container .page-sidebar:hover {
        height: 100% !important;
        overflow-y: scroll !important;
    }
/* Customize the scrollbar */
.page-sidebar::-webkit-scrollbar {
    width: 0px; /* Set the width of the scrollbar */
}

/* Customize the scrollbar */
.page-sidebar:hover::-webkit-scrollbar {
    width: 6px; /* Set the width of the scrollbar */
}

.page-sidebar::-webkit-scrollbar-thumb {
    background-color: #96a1af; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Round the corners */
    min-height: 20px; /* Minimum height of the scrollbar thumb */
}

    /* Optional: Add a hover effect for the scrollbar thumb */
    .page-sidebar::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Darker color on hover */
    }

.btn-text {
    background-color: transparent;
}

.table-bordered2 .btn-info {
    color: #19499f !important;
    background-color: #ffffff;
    border-color: #72b8f2;
    box-shadow: 0 0 20px #19499f14;
}

.containerf {
    position: absolute;
    top: 0;
    width: 100%;
}

.car-container {
    position: absolute;
    animation: carDrive 8s ease forwards;
}

.car {
    font-size: 2.5rem;
    margin-left: 20px;
    animation: bounce 0.3s alternate infinite;
}

.banner {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: bannerFollow 28s ease forwards;
    animation-delay: 0.2s; /* Delays banner to trail behind the car */
}

/* Car bounce animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

/* Car drive animation */
@keyframes carDrive {
    0% {
        right: -350px;
    }

    50% {
        right: 50%;
        transform: translateX(50%);
    }

    60% {
        opacity: 1;
        right: 60%;
    }

    100% {
        right: 80%;
        opacity: 0; /* Car disappears */
    }
}

/* Banner animation */
@keyframes bannerFollow {
    0% {
        right: -1800px;
        opacity: 0;
    }

    50% {
        right: 50%;
        transform: translateX(50%);
        opacity: 1; /* Banner appears */
    }

    100% {
        right: 50%;
        transform: translateX(50%);
        opacity: 1; /* Stays centered after car disappears */
    }
}

.flip-horizontal {
    transform: scaleX(1);
}

.page-content {
    overflow: hidden
}

.invoice-box .qr-code {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


#invoiceNew {
    margin: 0;
    padding: 20px 30px;
    direction: ltr;
    text-align: left;
    color: #333;
    width: 100%;
    background-image: url('../../../../files/bg-fatora.jpg');
    background-position: center;
    background-size: cover;
}

    #invoiceNew .container {
        width: 80%;
        margin: auto;
        padding: 20px;
        border: 1px solid #ddd;
    }

    #invoiceNew .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

        #invoiceNew .header img {
            height: 30px;
        }

            #invoiceNew .header img.logo {
                width: 170px;
                height: auto !important;
            }

.content.ar {
    direction: ltr;
    text-align: left
}

.content.en {
    direction: ltr;
    text-align: left
}

#invoiceNew h1, #invoiceNew h2, #invoiceNew h3 {
    margin: 0;
    padding: 0;
}

#invoiceNew .content p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

#invoiceNew .account-section {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

#invoiceNew .account {
    width: 45%;
    text-align: center;
}

    #invoiceNew .account img {
        width: 150px;
        margin-bottom: 10px;
    }

    #invoiceNew .account span {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
    }

#invoiceNew .footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #555;
}

#invoiceNew .stamp {
    text-align: center;
    margin-top: 20px;
}

    #invoiceNew .stamp img {
        width: 160px;
        opacity: 1;
        transform: rotate(9deg);
    }

#invoiceNew .footer p {
    margin: 5px 0;
    font-weight: 700;
    color: #19499f;
}

@media print {



    #invoiceNew {
        padding: 10px 10px !important;
        width: 100%;
        background-image: url('../../../../files/bg-fatora.jpg') !important;
        background-position: center !important;
        background-size: cover !important;
        print-color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }


    #invoiceNew {
        margin: 0;
    }

        #invoiceNew .container {
            border: none;
        }

    .mt--10px {
        margin-top: -10px !important;
    }
}

.mt--20px {
    margin-top: -30px !important;
}

.panel-default {
    border-color: unset;
    border: unset;
    padding: 20px;
    border-radius: 20px !important;
}

.page-header-fixed .panel-default > .panel-heading {
    color: #19499f;
    background-color: #f4f7fb;
    border-color: unset;
    border-radius: 20px !important;
    border: unset;
    font-weight: 700;
}

.page-bar {
    padding: 0;
    margin-bottom: 10px !important;
}






.img-logo-sidebar {
    margin: auto;
    width: max-content;
    margin-bottom: 20px;
}

    .img-logo-sidebar img {
        border-radius: 500px !important;
        max-width: 100px
    }


/* Fixed Button */
.fixed-button {
    position: fixed;
    right: 0;
    bottom: 340px;
    transform: translateY(-50%);
    padding: 10px 10px;
    background-color: #19499f;
    color: #fff;
    cursor: pointer;
    /* width: 50px; */
    /* height: 50px; */
    border-radius: 100px 0 0 100px !important;
    z-index: 99999;
}

/* Hidden Panel */
.animated-panel {
    position: fixed;
    right: -250px;
    bottom: 00px;
    transform: translateY(-50%);
    width: 225px;
    padding: 15px;
    background-color: white;
    color: #091d40;
    border-radius: 5px;
    box-shadow: 0 0 20px #19499f1f;
    transition: right 0.3s ease;
    z-index: 999;
    border-radius: 10px !important
}

.color-hint {
    margin-bottom: 0
}

.input-colors .theme-btn {
    width: 100%
}
/* Panel visible class */
.panel-visible {
    right: 0; /* Slide in from the left */
}

.app-customizer .offcanvas-body .color-hint > li {
    display: inline-block;
    height: 65px;
    width: 46px;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
}

    .app-customizer .offcanvas-body .color-hint > li div {
        height: 100%;
        width: 100%;
        border-radius: 15px !important;
    }

.mb--5 {
    margin-bottom: 5px
}


.text-end {
    text-align: right;
}

.w-100 {
    width: 100%
}

.icon-wallet-dash.w-100 {
    width: 50px !important;
}

.dashboard-stat2 a {
    text-decoration: none !important;
}

.btn.btn-sm.green {
    border-radius: 100px !important
}

.form-control .select2-choice {
    border: none;
    background-color: #fff;
    background-image: none;
    filter: none;
    height: 38px;
    padding: 6px 0 6px 12px;
    border-radius: 10px !important;
}

.dataTables_wrapper .row.smaller-paging:first-child {
    display: none;
}

.table-scrollable {
    border: 1px solid #e9ecef;
    border-radius: 25px !important;
}

.gm-style-iw-d h3, .gm-style-iw-d h4 {
    margin-bottom: 0;
    margin-top: 0;
    font-family: "Poppins", serif;
    font-weight: 600;
}

.gm-style-iw-d p {
    font-family: "Poppins", serif;
    color: #596670;
}

.gm-style-iw-c {
    border-radius: 10px !important;
    max-width: 400px !important;
    overflow-x: hidden !important;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a > i,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a > i,
.page-sidebar .page-sidebar-menu > li:hover > a > i,
.page-sidebar .page-sidebar-menu > li.open > a > i {
    color: #fff;
}



.multi-search-box .input-group-btn {
    background: #ffffff;
    border: 1px solid #e4eaf3;
}

.multi-search-box .btn.default {
    background-color: #ffffff;
}

.multi-search-box .form-control[disabled],
.multi-search-box .form-control[readonly],
.multi-search-box fieldset[disabled] .form-control {
    background-color: #ffffff;
}

.calendars-month a {
    font-weight: 500 !important;
}

#globalActions .btn-sm.dropdown-toggle {
    border-radius: 50px !important
}

#globalActions .btn.default {
    border-radius: 50px !important
}


.flex-column {
    flex-direction: column;
}

.main-provider .height-card {
    min-height: 170px;
}

.btn-lg {
    padding: 8px 19px !important;
    font-size: 16px !important;
    border-radius: 50px !important
}

.eye-icon-show {
    position: absolute;
    right: 30px;
    top: 12px;
}

.fa fa-times {
    content: "\f00d";
}

.fa-times:before {
    content: "\f00d";
}

.table.table-striped.table-hover tr, .table.table-striped.table-hover tr th {
    text-align: center !important
}


@media print {
    thead, tfoot {
        display: table-row-group;
    }

    .table-responsive nav {
        display: none
    }
}


.heading th {
    text-align: center !important
}
/***responsive30-12-2024*****/
.dashbord-general.row {
    padding-top: 300px;
    position: relative
}

.overflow-hidden {
    overflow: hidden;
}
/* width */
.table-responsive::-webkit-scrollbar {
    width: 4px;
    height: 6px;
    border-radius: 25px;
}

/* Track */
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.table-responsive::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    .table-responsive::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.table-responsive.table-responsive-general {
    overflow-x: hidden;
}

.form-control.copy-par-table {
    overflow: hidden;
}

.form-control .select2-choice {
    border: 1px solid #e5e5e5;
}

.main-provider.main-provider-dashbord .height-card {
    min-height: 200px;
}

@media (min-width: 2499px) {
    .dashbord-general.row {
        padding-top: 450px;
    }

    .container-fluidd {
        max-width: 2250px !important;
        margin: auto;
    }
}

@media (max-width: 1799px) {
    .dashbord-general.row {
        padding-top: 300px;
    }

        .dashbord-general.row .carousel.image-carousel .carousel-indicators {
            bottom: 12px;
        }
}

@media (max-width: 1667px) {
    .dashbord-general.row {
        padding-top: 260px;
    }
}

@media (max-width: 1569px) {
    .dashbord-general .widget-thumb,
    .dashbord-general .dashboard-stat2 {
        padding: 20px 10px;
    }

        .dashbord-general .dashboard-stat2 .display .number h3 {
            font-size: 20px !important;
        }

        .dashbord-general .dashboard-stat2.general-card .display .icon {
            width: 35px;
            height: 35px;
        }

    .dashbord-general .icon-flex svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1549px) {
    .dashbord-general.row {
        padding-top: 250px;
    }
}

@media (max-width: 1451px) {
    .dashbord-general.row {
        padding-top: 240px;
    }
}

@media (max-width: 1399px) {
    .dashbord-general.row {
        padding-top: 220px;
    }
}

@media (max-width: 1269px) {
    .dashbord-general.row {
        padding-top: 200px;
    }

    .card-spitial.general-card h2 {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .col-lg-3.space-top-general {
        margin-bottom: 20px;
    }

    .dashboard-stat2.general-card .display .number small {
        font-size: 14px;
    }

    .stutes span {
        font-size: 13px;
        margin-left: 0px;
    }

    .dashbord-general .dashboard-stat2 .display .number h3 {
        font-size: 16px !important;
    }

    .icon-flex .display .icon {
        margin-right: 5px;
    }

    .dashbord-general .dashboard-stat2.general-card .display .icon {
        width: 30px;
        height: 30px;
    }

    .dashbord-general .icon-flex svg {
        width: 18px;
        height: 18px;
    }

    .table-large-responsive .table.table-bordered2 {
        width: 980px !important;
    }

    .main-provider-dashbord .col-lg-4.space-top-general {
        margin-bottom: 15px;
    }
}

@media (max-width: 1149px) {
    .dashbord-general.row {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .dashbord-general.row {
        padding-top: 200px;
    }

    .car svg {
        width: 300px !important;
    }
}

@media (max-width: 767px) {
    .car svg {
        margin-top: -50px !important;
    }
}

@media (max-width: 875px) {
    .dashbord-general.row {
        padding-top: 178px;
    }

    .fixed-button {
        bottom: 170px;
    }
}

@media (max-width: 715px) {
    .dashbord-general.row {
        padding-top: 150px;
    }

    .car svg {
        width: 250px !important;
    }
}

@media (max-width: 583px) {

    .dashbord-general.row {
        padding-top: 126px;
    }

    .car svg {
        width: 200px !important;
    }
}

@media (max-width: 575px) {
    .car svg {
        margin-top: -20px !important;
    }

    .height-card {
        min-height: 180px;
    }

    .table-responsive.table-responsive-general {
        overflow-y: hidden;
        overflow-x: scroll;
    }

        .table-responsive.table-responsive-general .table {
            width: 600px !important
        }
}

@media (max-width: 497px) {

    .dashbord-general.row {
        padding-top: 105px;
    }
}

@media (max-width: 419px) {

    .dashbord-general.row {
        padding-top: 105px;
    }
}
/***ltr****/
.fa-arrow-left:before {
    content: "\f061";
}

.page-sidebar .page-sidebar-menu li > a > .arrow:before, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .arrow:before {
    content: "\f105";
}
.carousel.image-carousel .carousel-control.right i,
.carousel.image-carousel .carousel-control.left i {
    transform: rotate(180deg);
}
multiselect .dropdown-menu {
    direction: ltr !important;
    text-align: left !important;
}
    multiselect .dropdown-menu li a {
        direction: ltr !important;
        text-align: left !important;
    }
    .table-bordered tr.heading th:last-child {
        border-radius: 0 100px 100px 0 !important;
    }
.table-bordered tr.heading th:first-child {
    border-radius: 100px 0 0 100px !important;
}
.top-menu .navbar-nav.pull-right .darkMode-change {
    margin: 0px;
    padding: 0px;
    height: 68px;
    display: inline-block;
}

    .top-menu .navbar-nav.pull-right .darkMode-change .darkMode-link {
        margin: 0px;
        padding: 28px 16px 19px 16px;
        padding-right: 15px;
        line-height: 20px;
        color: #c0cddc;
        font-size: 19px;
    }

        .top-menu .navbar-nav.pull-right .darkMode-change .darkMode-link:hover {
            background-color: #f9fafc;
        }

        .top-menu .navbar-nav.pull-right .darkMode-change .darkMode-link i {
            color: #c0cddc!important;
            font-size: 19px!important;
        }

.new-Branch-select .select2-choice {
    border: unset !important;
    background-color: transparent !important;
    text-align: center;
}

.new-Branch-select .form-control {
    background-color: transparent !important;
}

.new-Branch-select .select2-container .select2-choice .select2-arrow {
    background-image: none;
    background-color: transparent;
    filter: none;
    border-right: 1px solid transparent;
}

.lastt .last-arrow {
    text-align: left;
    margin-right: auto;
}


.table-bordered.table tr.heading > th {
    border-left: none !important;
}

.table-bordered tr.heading th:first-child {
    border-radius: 100px 0 0 100px !important;
}

.table-bordered tr.heading th:last-child {
    border-radius: 0 100px 100px 0 !important;
}


.table-bordered.table tr.heading > th {
    background: var(--card-bg-color) !important;
}

.table-bordered.table tr.heading > th {
    background: var(--card-bg-color) !important;
}

.table-bordered.table-striped > tbody > tr:nth-child(odd) {
    background-color: white !important
}

.table-bordered.table-striped > tbody > tr:nth-child(even) {
    background-color: #f4f7fb !important;
    border-radius: 15px !important;
}


.table thead th {
    background: var(--card-bg-color) !important;
    border-bottom: 2px solid var(--card-bg-color) !important;
}


.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a,
.page-sidebar .page-sidebar-menu > li.active > a,
.page-sidebar .page-sidebar-menu > li.active.open > a {
    background: var(--card-bg-color) !important;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li:hover > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.open > a,
.page-sidebar .page-sidebar-menu > li:hover > a,
.page-sidebar .page-sidebar-menu > li.open > a {
    background: var(--card-bg-color) !important;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active > a:hover,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li.active.open > a:hover,
.page-sidebar .page-sidebar-menu > li.active > a:hover,
.page-sidebar .page-sidebar-menu > li.active.open > a:hover

.card-pink.card-spitial.general-card {
    background: var(--card-bg-color) !important;
}

.card-pink.card-spitial.general-card {
    background-color: var(--card-bg-color); /* Use the variable */
}


.dashboard-stat2 .display .number h3.font-count {
    background-color: var(--card-bg-color); /* Use the variable */
}

.fixed-button {
    background-color: var(--card-bg-color); /* Use the variable */
}

.page-footer-fixed .page-footer .page-footer-inner {
    color: var(--card-bg-color); /* Use the variable */
}

.theme-btn.btn {
    background-color: var(--card-bg-color); /* Use the variable */
}

.icon-wallet-dash svg {
    fill: var(--card-bg-color) !important;
}

.car svg {
    fill: var(--card-bg-color) !important;
}


.box-charts .titleCard {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.page-sidebar-select .form-control {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.theme-font, .page-bar .page-breadcrumb {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.portlet > .portlet-title > .actions > .btn.btn-sm.blue {
    background-color: var(--card-bg-color); /* Use the variable */
}

.table-bordered2.table tr.heading > th {
    background-color: var(--card-bg-color) !important; /* Use the variable */
}


.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a, .page-sidebar .page-sidebar-menu .sub-menu > li.open > a,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.table tr.heading > th {
    background-color: var(--card-bg-color) !important; /* Use the variable */
}



.portlet.light > .portlet-title > .caption {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.page-spinner-bar > div, .block-spinner-bar > div {
    background: var(--card-bg-color) !important;
}

.page-spinner-bar > div, .block-spinner-bar > div {
    background-color: var(--card-bg-color) !important; /* Use the variable */
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.open > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.open > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a > .arrow.open:before {
    color: var(--card-bg-color) !important; /* Use the variable */
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li:hover > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.open > a > .arrow.open:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a > .arrow:before,
.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu .sub-menu > li.active > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li:hover > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.open > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.open > a > .arrow.open:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a > .arrow:before,
.page-sidebar .page-sidebar-menu .sub-menu > li.active > a > .arrow.open:before {
    color: var(--card-bg-color) !important; /* Use the variable */
}

tbody a {
    color: var(--card-bg-color) !important; /* Use the variable */

    font-weight: 700;
}

    tbody a.btn {
        color: white !important
    }

.page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu.dropdown-menu-default > li a > i,
.page-header.navbar .top-menu .navbar-nav > li.dropdown-dark .dropdown-menu .dropdown-menu-list > li a > i {
    color: var(--card-bg-color) !important; /* Use the variable */
}


.toast-info {
    background-color: var(--card-bg-color) !important;
    border-radius: 50px !important;
    border: 3px solid var(--card-bg-color) !important;
    opacity: 1 !important
}

.toast {
    border-radius: 50px !important;
}

.row.smaller-paging .col-md-8.col-sm-12 {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.theme-btn.btn.disabled,
.theme-btn.btn.disabled:hover,
.theme-btn.btn.disabled:focus,
.theme-btn.btn.disabled:active,
.theme-btn.btn.disabled.active,
.theme-btn.btn[disabled],
.theme-btn.btn[disabled]:hover,
.theme-btn.btn[disabled]:focus,
.theme-btn.btn[disabled]:active,
.theme-btn.btn[disabled].active,
fieldset[disabled] .theme-btn.btn,
fieldset[disabled] .theme-btn.btn:hover,
fieldset[disabled] .theme-btn.btn:focus,
fieldset[disabled] .theme-btn.btn:active,
fieldset[disabled] .theme-btn.btn.active {
    background-color: var(--card-bg-color) !important;
}

body .inbox .inbox-nav li.active a,
body .inbox .inbox-nav li.active:hover a {
    background-color: var(--card-bg-color) !important;
}

.inbox .inbox-nav li.active b {
    border-left: 6px solid var(--card-bg-color) !important;
}

.blue.btn {
    color: #FFFFFF;
    background-color: #19499f;
    border-color: "";
}


tfoot.bg-grey-gallery {
    border-color: var(--card-bg-color) !important;
    background-color: var(--card-bg-color) !important;
}

/* prevent the drop down icon going onto a new line for the top bar language link */
.top-bar-language-nav-link {
    min-width: 65px;
}

/* bootstrap model showing two scroll bars */
html {
    overflow: visible;
}

/* main sidebar not under model */
.modal {
    z-index: 1110;
}

.form-group.required .col-form-label:after {
    color: #d00;
    content: "*";
    position: absolute;
    margin-left: 3px;
}

.nav-user-menu .user-image {
    width: 20px;
    margin-right: 4px;
    margin-top: -4px;
}

.famfamfam-flags {
    display: inline-block;
}

.custom-flag-ar {
    background-image: url("../../../../../Scripts/layout/global/img/flags/sa.png");
    display: inline-block;
    width: 16px;
    height: 11px;
}

.custom-flag-en {
    background-image: url("../../../../../Scripts/layout/global/img/flags/gb.png");
    display: inline-block;
    width: 16px;
    height: 11px;
}