/* Font awesome icons */
/* Scroll up */
.scrollup, .scrollup:hover, .scrollup:focus {
  width: 28px;
  height: 28px;
  position: fixed;
  bottom: 18px;
  right: 28px;
  display: none;
  padding: 7px 10px;
  text-decoration: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
  background: rgba(0, 0, 0, 0.25);
  color: #FFF;
  z-index: 9999999;
}

.scrollup:before {
  content: "\f102";
}

/* Text align and styles */
.text-right, .to-right {
  text-align: right !important;
}

.text-left, .to-left {
  text-align: left !important;
}

.text-center, .to-center {
  text-align: center !important;
}

.text-justify, .to-justify {
  text-align: justify !important;
}

.text-nowrap, .to-nowrap {
  white-space: nowrap;
}

.light {
  font-weight: 300 !important;
}

.normal {
  font-weight: 400 !important;
}

.bold {
  font-weight: 600 !important;
}

.extra-bold {
  font-weight: 700 !important;
}

.italic {
  font-style: italic !important;
}

.unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}

.line-through {
  text-decoration: line-through;
}

mark, .mark {
  background-color: #f4dda9;
  color: #312303;
  padding: 0 0.5em;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* Borders */
.no-b {
  border: 0px !important;
}

.no-bt {
  border-top: 0px !important;
}

.no-bb {
  border-bottom: 0px !important;
}

.no-bl {
  border-left: 0px !important;
}

.no-br {
  border-right: 0px !important;
}

.bl-1-ddd {
  border-left: 1px solid #DDD;
}

.bb-1-ddd {
  border-bottom: 1px solid #DDD;
}

.bt-1-ddd {
  border-top: 1px solid #DDD;
}

.bb-1-fff {
  border-bottom: 1px solid #FFF;
}

/* Typo styles */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.small-caps {
  font-variant: small-caps;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 6px 0px;
  font-weight: 300;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

h1.bordered,
h2.bordered,
h3.bordered,
h4.bordered,
h5.bordered,
h6.bordered {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 3px;
}

h1.bordered-dark,
h2.bordered-dark,
h3.bordered-dark,
h4.bordered-dark,
h5.bordered-dark,
h6.bordered-dark {
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 3px;
}

h1.bordered-dotted,
h2.bordered-dotted,
h3.bordered-dotted,
h4.bordered-dotted,
h5.bordered-dotted,
h6.bordered-dotted {
  border-bottom: 1px dotted #e2e2e2;
  padding-bottom: 3px;
}

h1.bordered-dotted-dark,
h2.bordered-dotted-dark,
h3.bordered-dotted-dark,
h4.bordered-dotted-dark,
h5.bordered-dotted-dark,
h6.bordered-dotted-dark {
  border-bottom: 1px dotted #C4C4C4;
  padding-bottom: 3px;
}

h1.bordered-dashed,
h2.bordered-dashed,
h3.bordered-dashed,
h4.bordered-dashed,
h5.bordered-dashed,
h6.bordered-dashed {
  border-bottom: 1px dashed #e2e2e2;
  padding-bottom: 3px;
}

h1.bordered-dashed-dark,
h2.bordered-dashed-dark,
h3.bordered-dashed-dark,
h4.bordered-dashed-dark,
h5.bordered-dashed-dark,
h6.bordered-dashed-dark {
  border-bottom: 1px dashed #C4C4C4;
  padding-bottom: 3px;
}

/* Text shadows */
.text-shadow-inset {
  text-shadow: 0 -1px 0 #888;
}

.text-shadow-inset-dark {
  text-shadow: 0 -1px 0 #000;
}

.text-shadow-heavy {
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.5), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.text-shadow-3d {
  text-shadow: 0 1px 0 #c4c4c4, 0 2px 0 #c1c1c1, 0 3px 0 #b3b3b3, 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.25), 0 3px 5px rgba(0, 0, 0, 0.15);
}

.text-shadow-multiple-lights {
  text-shadow: 0px 6px 2px rgba(0, 0, 0, 0.1), 5px 10px 2px rgba(0, 0, 0, 0.06), -5px 10px 2px rgba(0, 0, 0, 0.06);
}

.text-shadow-multi-level {
  text-shadow: 0px 2px 2px #00e6e6, 0px 4px 2px #01cccc, 0px 6px 2px #00bdbd;
}

/* Pullers */
.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.pull-none {
  float: none !important;
}

/* Padders */
.l-pad-1 {
  padding-left: 1px !important;
}

.r-pad-1 {
  padding-right: 1px !important;
}

.pad-1 {
  padding: 1px !important;
}

.pad-h-1 {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.l-pad-2 {
  padding-left: 2px !important;
}

.r-pad-2 {
  padding-right: 2px !important;
}

.pad-2 {
  padding: 2px !important;
}

.pad-h-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.l-pad-3 {
  padding-left: 3px !important;
}

.r-pad-3 {
  padding-right: 3px !important;
}

.pad-3 {
  padding: 3px !important;
}

.pad-h-3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.l-pad-4 {
  padding-left: 4px !important;
}

.r-pad-4 {
  padding-right: 4px !important;
}

.pad-4 {
  padding: 4px !important;
}

.pad-h-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.l-pad-5 {
  padding-left: 5px !important;
}

.r-pad-5 {
  padding-right: 5px !important;
}

.pad-5 {
  padding: 5px !important;
}

.pad-h-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.l-pad-10 {
  padding-left: 10px !important;
}

.r-pad-10 {
  padding-right: 10px !important;
}

.pad-10 {
  padding: 10px !important;
}

.pad-h-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.l-pad-15 {
  padding-left: 15px !important;
}

.r-pad-15 {
  padding-right: 15px !important;
}

.pad-15 {
  padding: 15px !important;
}

.pad-h-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.l-pad-20 {
  padding-left: 20px !important;
}

.r-pad-20 {
  padding-right: 20px !important;
}

.pad-20 {
  padding: 20px !important;
}

.pad-h-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.l-pad-25 {
  padding-left: 25px !important;
}

.r-pad-25 {
  padding-right: 25px !important;
}

.pad-25 {
  padding: 25px !important;
}

.pad-h-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.l-pad-30 {
  padding-left: 30px !important;
}

.r-pad-30 {
  padding-right: 30px !important;
}

.pad-30 {
  padding: 30px !important;
}

.pad-h-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.l-pad-35 {
  padding-left: 35px !important;
}

.r-pad-35 {
  padding-right: 35px !important;
}

.pad-35 {
  padding: 35px !important;
}

.pad-h-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.l-pad-40 {
  padding-left: 40px !important;
}

.r-pad-40 {
  padding-right: 40px !important;
}

.pad-40 {
  padding: 40px !important;
}

.pad-h-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.l-pad-45 {
  padding-left: 45px !important;
}

.r-pad-45 {
  padding-right: 45px !important;
}

.pad-45 {
  padding: 45px !important;
}

.pad-h-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.l-pad-50 {
  padding-left: 50px !important;
}

.r-pad-50 {
  padding-right: 50px !important;
}

.pad-50 {
  padding: 50px !important;
}

.pad-h-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.pad-h-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

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

.pad-h-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

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

.pad-h-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.pad-v-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pad-h-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.pad-v-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pad-h-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.pad-v-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.pad-h-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.pad-v-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pad-h-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.pad-v-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.pad-h-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.pad-v-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pad-h-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.pad-v-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.pad-h-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.pad-v-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

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

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

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

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

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.no-pb {
  padding-bottom: 0px !important;
}

.no-pt {
  padding-top: 0px !important;
}

.no-h-pad {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.no-v-pad {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.no-l-pad {
  padding-left: 0px !important;
}

.no-r-pad {
  padding-right: 0px !important;
}

.no-pad {
  padding: 0px !important;
}

.small, small {
  font-size: 85%;
}

/* Margins */
.mb-1 {
  margin-bottom: 1px !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.l-mar-5 {
  margin-left: 5px !important;
}

.r-mar-5 {
  margin-right: 5px !important;
}

.mar-5 {
  margin: 5px !important;
}

.mar-h-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mar-v-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.l-mar-10 {
  margin-left: 10px !important;
}

.r-mar-10 {
  margin-right: 10px !important;
}

.mar-10 {
  margin: 10px !important;
}

.mar-h-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mar-v-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.l-mar-15 {
  margin-left: 15px !important;
}

.r-mar-15 {
  margin-right: 15px !important;
}

.mar-15 {
  margin: 15px !important;
}

.mar-h-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mar-v-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.l-mar-20 {
  margin-left: 20px !important;
}

.r-mar-20 {
  margin-right: 20px !important;
}

.mar-20 {
  margin: 20px !important;
}

.mar-h-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mar-v-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.l-mar-25 {
  margin-left: 25px !important;
}

.r-mar-25 {
  margin-right: 25px !important;
}

.mar-25 {
  margin: 25px !important;
}

.mar-h-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.mar-v-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.l-mar-30 {
  margin-left: 30px !important;
}

.r-mar-30 {
  margin-right: 30px !important;
}

.mar-30 {
  margin: 30px !important;
}

.mar-h-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mar-v-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.l-mar-35 {
  margin-left: 35px !important;
}

.r-mar-35 {
  margin-right: 35px !important;
}

.mar-35 {
  margin: 35px !important;
}

.mar-h-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.mar-v-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.no-l-mar {
  margin-left: 0px !important;
}

.no-r-mar {
  margin-right: 0px !important;
}

.no-mar {
  margin: 0px !important;
}

.no-h-mar {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.no-v-mar {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.no-mb {
  margin-bottom: 0px;
}

.no-mt {
  margin-top: 0px !important;
}

/* Colors */
.white {
  color: #FFF !important;
}

.color-default {
  color: #bac2c7 !important;
}

.color-info {
  color: #4b86d1 !important;
}

.color-primary {
  color: #217ab3 !important;
}

.color-success {
  color: #5ab25a !important;
}

.color-danger {
  color: #e84253 !important;
}

.color-warning {
  color: #f7a143 !important;
}

.color-default-dark {
  color: #b3babf !important;
}

.color-inverse {
  color: #414a52 !important;
}

.color-info-dark {
  color: #3a76c2 !important;
}

.color-primary-dark {
  color: #2f89c2 !important;
}

.color-success-dark {
  color: #4ca34c !important;
}

.color-danger-dark {
  color: #e43a4c !important;
}

.color-warning-dark {
  color: #eb9b43 !important;
}

.color-default-light {
  color: #cbcfd2 !important;
}

.color-info-light {
  color: #5993dc !important;
}

.color-primary-light {
  color: #146ca4 !important;
}

.color-success-light {
  color: #6ec36e !important;
}

.color-danger-light {
  color: #f04859 !important;
}

.color-warning-light {
  color: #f7a951;
}

.color-ssgray {
  color: whitesmoke;
}

.color-sgray {
  color: #e9e9e9;
}

.color-gray {
  color: #b8b8b8;
}

.color-dgray {
  color: #9d9d9d;
}

.color-sdgray {
  color: #6c6c6c;
}

.color-white {
  color: #fff !important;
}

/* Background colors */
[class^="bg-"]:not(.bg-ssgray):not(.bg-sgray):not(.bg-gray) {
  color: #FFF !important;
}

.bg-default {
  background-color: #bac2c7 !important;
}

.bg-info {
  background-color: #4b86d1 !important;
}

.bg-primary {
  background-color: #217ab3 !important;
}

.bg-success {
  background-color: #5ab25a !important;
}

.bg-danger {
  background-color: #e84253 !important;
}

.bg-warning {
  background-color: #f7a143 !important;
}

.bg-inverse {
  background-color: #414a52 !important;
}

.bg-default-dark {
  background-color: #b3babf !important;
}

.bg-info-dark {
  background-color: #3a76c2 !important;
}

.bg-primary-dark {
  background-color: #2f89c2 !important;
}

.bg-success-dark {
  background-color: #4ca34c !important;
}

.bg-danger-dark {
  background-color: #e43a4c !important;
}

.bg-warning-dark {
  background-color: #eb9b43 !important;
}

.bg-inverse-dark {
  background-color: #2f3943 !important;
}

.bg-default-light {
  background-color: #cbcfd2 !important;
}

.bg-info-light {
  background-color: #5993dc !important;
}

.bg-primary-light {
  background-color: #146ca4 !important;
}

.bg-success-light {
  background-color: #6ec36e !important;
}

.bg-danger-light {
  background-color: #f04859 !important;
}

.bg-warning-light {
  background-color: #f7a951 !important;
}

.bg-inverse-light {
  background-color: #5e666d !important;
}

.bg-ssgray {
  background-color: whitesmoke !important;
}

.bg-sgray {
  background-color: #e9e9e9 !important;
}

.bg-gray {
  background-color: #b8b8b8 !important;
  color: #FFF;
}

.bg-dgray {
  background-color: #9d9d9d !important;
  color: #FFF;
}

.bg-sdgray {
  background-color: #6c6c6c !important;
  color: #FFF;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-green {
  background-color: #169c78 !important;
}

.bg-green-dark {
  background-color: #0b8d6a !important;
}

.bg-blue {
  background-color: #436e95 !important;
}

.bg-blue-dark {
  background-color: #345f86 !important;
}

/* Border colors */
.border-default {
  border: 1px solid #bac2c7;
}

.border-info {
  border: 1px solid #4b86d1;
}

.border-primary {
  border: 1px solid #217ab3;
}

.border-success {
  border: 1px solid #5ab25a;
}

.border-danger {
  border: 1px solid #e84253;
}

.border-warning {
  border: 1px solid #f7a143;
}

.border-inverse {
  border: 1px solid #414a52;
}

.border-default-dark {
  border: 1px solid #b3babf;
}

.border-info-dark {
  border: 1px solid #3a76c2;
}

.border-primary-dark {
  border: 1px solid #2f89c2;
}

.border-success-dark {
  border: 1px solid #4ca34c;
}

.border-danger-dark {
  border: 1px solid #e43a4c;
}

.border-warning-dark {
  border: 1px solid #eb9b43;
}

.border-inverse-dark {
  border: 1px solid #2f3943;
}

.border-default-light {
  border: 1px solid #cbcfd2;
}

.border-info-light {
  border: 1px solid #5993dc;
}

.border-primary-light {
  border: 1px solid #146ca4;
}

.border-success-light {
  border: 1px solid #6ec36e;
}

.border-danger-light {
  border: 1px solid #f04859;
}

.border-warning-light {
  border: 1px solid #f7a951;
}

.border-inverse-light {
  border: 1px solid #5e666d;
}

/* Improve to animate.css */
.forever {
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.slow {
  -webkit-animation-iteration-duration: 5s;
  -moz-animation-iteration-duration: 5s;
  -ms-animation-iteration-duration: 5s;
  -o-animation-iteration-duration: 5s;
  animation-iteration-duration: 5s;
}

.very-slow {
  -webkit-animation-iteration-duration: 10s;
  -moz-animation-iteration-duration: 10s;
  -ms-animation-iteration-duration: 10s;
  -o-animation-iteration-duration: 10s;
  animation-iteration-duration: 10s;
}

/* Opacity */
.opacity-25 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  opacity: 0.25;
}

.opacity-50 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.50;
  -khtml-opacity: 0.50;
  opacity: 0.50;
}

.opacity-75 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}

/* Widths */
.w0 {
  width: 0px !important;
}

.w65 {
  width: 65px !important;
}

.w25 {
  width: 25px !important;
}

.w125 {
  width: 125px !important;
}

.w5 {
  width: 5px !important;
}

.w10 {
  width: 10px !important;
}

.w15 {
  width: 15px !important;
}

.w20 {
  width: 20px !important;
}

.w25 {
  width: 25px !important;
}

.w30 {
  width: 30px !important;
}

.w35 {
  width: 35px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w100 {
  width: 100px !important;
}

.w150 {
  width: 150px !important;
}

.w200 {
  width: 200px !important;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px !important;
}

.w350 {
  width: 350px !important;
}

.w400 {
  width: 400px !important;
}

.w600 {
  width: 600px !important;
}

.w700 {
  width: 700px !important;
}

.w800 {
  width: 800px !important;
}

.wp25 {
  width: 25% !important;
}

.wp50 {
  width: 50% !important;
}

.wp75 {
  width: 75% !important;
}

.wp100 {
  width: 100% !important;
}

.wp33 {
  width: 33% !important;
}

.wp34 {
  width: 34% !important;
}

.wp20 {
  width: 20% !important;
}

.w75 {
  width: 75px;
}

.w90 {
  width: 90px;
}

.w120 {
  width: 120px;
}

.w175 {
  width: 175px;
}

.w275 {
  width: 275px;
}

.w225 {
  width: 225px;
}

.w250 {
  width: 250px;
}

.w290 {
  width: 290px;
}

.w300 {
  width: 300px !important;
}

.w400 {
  width: 400px !important;
}

.w500 {
  width: 500px !important;
}

/* Heights */
.h10 {
  height: 10px !important;
}

.h15 {
  height: 15px !important;
}

.h20 {
  height: 20px !important;
}

.h25 {
  height: 25px !important;
}

.h30 {
  height: 30px !important;
}

.h35 {
  height: 35px !important;
}

.h40 {
  height: 40px !important;
}

.h45 {
  height: 45px !important;
}

.h50 {
  height: 50px !important;
}

.h55 {
  height: 55px !important;
}

.h60 {
  height: 60px !important;
}

.h12 {
  height: 12px !important;
}

.h24 {
  height: 24px !important;
}

.h36 {
  height: 36px !important;
}

.h48 {
  height: 48px !important;
}

.h56 {
  height: 56px !important;
}

/* Font size */
.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-42 {
  font-size: 42px !important;
}

/* Display options */
.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

/* Overflow */
.o-hidden {
  overflow: hidden;
}

.o-visible {
  overflow: visible;
}

.o-auto {
  overflow: auto;
}

.o-inherit {
  overflow: inherit;
}

.o-scroll {
  overflow: scroll;
}

/* Visibility */
.v-hidden {
  visibility: hidden;
}

.v-collapse {
  visibility: collapse;
}

.v-inherit {
  visibility: inherit;
}

.v-visible {
  visibility: visible;
}

/* Position */
.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-inherit {
  position: inherit;
}

.p-relative {
  position: relative;
}

.p-static {
  position: static;
}

.p-sticky {
  position: sticky;
}

/* Border radius */
.no-br {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
}

.br2 {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
}

.br4 {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
}

.br6 {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-clip: padding-box;
}

.br8 {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
}

/* Horizontal separator */
hr, .hr {
  border-top: 1px solid #cfcfcf;
  color: transparent;
  margin: 14px 0px;
}

hr.dashed,
.hr.dashed {
  border-top: 1px dashed #cfcfcf;
}

hr.dotted,
.hr.dotted {
  border-top: 1px dotted #cfcfcf;
}

/* Dropdown */
.dropdown-menu {
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 1001;
}
.dropdown-menu li {
  background: #FFF;
  border-bottom: 1px solid #EEE;
}
.dropdown-menu li a {
  padding: 10px 20px;
}
.dropdown-menu li:not(.dropdown-header):hover {
  background: #F3F3F3;
}
.dropdown-menu.dropdown-arrowed:before {
  border-bottom: 6px solid #d0d0d0;
  margin: -7px 0 0 15px;
}
.dropdown-menu.dropdown-arrowed:before, .dropdown-menu.dropdown-arrowed::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.dropdown-menu.dropdown-arrowed::after {
  border-bottom: 6px solid #FFF;
  margin: -6px 0 0 15px;
}
.dropdown-menu.dropdown-arrowed-left:before {
  border-bottom: 6px solid #d0d0d0;
  margin: 8px 0 0 -5px;
}
.dropdown-menu.dropdown-arrowed-left:after {
  border-bottom: 6px solid #FFF;
  margin: 8px 0 0 -5px;
}
.dropdown-menu.dropdown-arrowed-left
.dropdown-menu.dropdown-arrowed-left:before, .dropdown-menu.dropdown-arrowed-left::after {
  border-bottom: 6px solid transparent;
  border-right: 6px solid #FFF;
  border-top: 6px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

li.dropdown-footer, li.dropdown-header {
  border-bottom: 0 none;
  padding: 8px 20px;
  font-size: 1.2rem;
}
li.dropdown-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.container-navbar .dropdown .dropdown-menu {
  margin-top: 6px;
}

.dropdown-menu-right.dropdown-menu.dropdown-arrowed:before {
  left: auto;
  margin: -7px 18px 0 0;
  right: 0;
}
.dropdown-menu-right.dropdown-menu.dropdown-arrowed:after {
  left: auto;
  margin: -6px 18px 0 0;
  right: 0;
}

.dropdown-menu-center {
  right: 50%;
  left: auto;
}

.dropdown-menu-center.dropdown-menu.dropdown-arrowed:before {
  left: 50%;
  margin: -7px 18px 0 0;
  right: 0;
}
.dropdown-menu-center.dropdown-menu.dropdown-arrowed:after {
  left: 50%;
  margin: -6px 18px 0 0;
  right: 0;
}

/* Bootstrap override */
.table td, .table th {
  border-top: 0px;
  border-bottom: 1px solid #eceeef;
}

a:hover, a:focus {
  text-decoration: none;
}

.alert {
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  background-clip: padding-box;
}
.alert button.close {
  font-size: 2.5rem;
  line-height: 0.6;
}

.alert-block {
  padding: 15px 25px !important;
}
.alert-block button.close {
  font-size: 2.5rem;
}

strong,
.alert .alert-link {
  font-weight: 600;
}

.pagination {
  margin: 10px 0;
  font-family: "Open Sans";
}

label {
  font-weight: 300;
}

div[class*='col-md-'],
div[class*='col-lg-'],
div[class*='col-sm-'],
div[class*='col-xs-'] {
  padding-left: 10px;
  padding-right: 10px;
}

/* Block quotes */
blockquote,
.blockquote {
  border-left: 4px solid #e3e3e3;
  font-size: 14px;
  margin: 0px 0px 18px;
  padding: 8px 16px;
}

blockquote footer,
blockquote .footer,
.blockquote footer,
.blockquote .footer {
  display: block;
  font-size: 90%;
}

blockquote.blockquote-right,
.blockquote.blockquote-right {
  border-left: 0px none;
  border-right: 4px solid #e3e3e3;
  padding-left: 0px;
  padding-right: 16px;
  text-align: right;
}

blockquote.blockquote-right footer:before,
blockquote.blockquote-right .footer:before,
.blockquote.blockquote-right footer:before,
.blockquote.blockquote-right .footer:before {
  content: "";
}

blockquote footer:before,
blockquote .footer:before,
.blockquote footer:before,
.blockquote .footer:before {
  content: "\2014\00a0";
}

blockquote.blockquote-right footer::after,
blockquote.blockquote-right .footer::after,
.blockquote.blockquote-right footer::after,
.blockquote.blockquote-right .footer::after {
  content: "\00a0\2014 ";
}

/* Descriptions */
dl, dt {
  margin-bottom: 1px;
}

/* Lists */
ul.non-styled-list,
ul.faw-list {
  list-style: outside none none;
}

ul.non-styled-list {
  padding-left: 0;
}

ul > li > .fa {
  opacity: 0.75;
  margin-right: 6px;
}

ul.inline-list {
  list-style: inlin;
  margin-left: -5px;
  padding-left: 0;
}
ul.inline-list li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

ul.striped-list {
  list-style: outside none none;
  padding: 0px;
}
ul.striped-list li {
  list-style: outside none none;
  padding: 12px;
  border-bottom: 1px solid #e6e6e6;
}
ul.striped-list li:nth-child(2n+2) {
  background: #f5f5f5;
}
ul.striped-list li:last-child {
  border-bottom: none;
}

.list-group-item {
  border-bottom-width: 1px !important;
  margin-bottom: -1px !important;
  background-color: transparent;
}

.list-group-item .label {
  float: right;
}

.list-group-item-success {
  background-color: #dff0d8;
  color: #3c763d;
}

.list-group-item-info {
  background-color: #d9edf7;
  color: #31708f;
}

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

.list-group-item-danger {
  background-color: #f2dede;
  color: #a94442;
}

/* Pre formats */
pre {
  background-color: #49483e;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  color: #f8f8f2;
  font-size: 14px;
  max-width: 100%;
  padding: 10px 20px;
  text-align: left;
  white-space: pre-line;
  border: 1px solid #49483e;
  line-height: 1.2em;
}
pre .str {
  color: #e6db74;
}
pre .func {
  color: #66d9ef;
}
pre .val {
  color: #a381ff;
}
pre .tag {
  color: #e92772;
}
pre .attr {
  color: #a6e22d;
}
pre .arg {
  color: #fd9720;
}

/* Row */
.row {
  margin-left: 0px;
  margin-right: 0px;
}

/* Borders */
.b-1-sgray {
  border: 1px solid #e9e9e9;
}

.bt-1-sgray {
  border-top: 1px solid #e9e9e9;
}

.bb-1-sgray {
  border-bottom: 1px solid #e9e9e9;
}

.fb-1-sgray {
  border: 1px solid #e9e9e9;
}

.b-1-gray {
  border: 1px solid #b8b8b8;
}

.bt-1-gray {
  border-top: 1px solid #b8b8b8;
}

.bb-1-gray {
  border-bottom: 1px solid #b8b8b8;
}

.fb-1-gray {
  border: 1px solid #b8b8b8;
}

/* Alerts */
.alert-success {
  background-color: #c1e2b3;
}

.alert-info {
  background-color: #afd9ee;
}

.alert-warning {
  background-color: #f7ecb5;
}

.alert-danger {
  background-color: #e4b9b9;
}

/* Page alerts */
.container-messages .page-alert {
  border: 0px;
  margin-bottom: 0px;
  padding: 10px 20px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  border-bottom: 1px solid #c5c5c5;
}

/* Inputs */
.form-control,
.input-group .form-control,
.input-group .input-group-addon,
.input-group .btn,
*[class*='input-group-'] .form-control,
*[class*='input-group-'] .input-group-addon,
*[class*='input-group-'] .btn {
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  background-clip: padding-box;
}

.form-control {
  font-size: 0.9rem;
}

.input-group-addon {
  font-size: 1.3rem;
  padding: 0.375rem 1rem 0.375rem 1.1rem !important;
}

.form-control,
.form-control:focus {
  box-shadow: none;
}

.input-group > .input-group-btn > .btn {
  height: 3.05rem;
}

.input-group-addon.form-control-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn >
.input-group-addon.btn {
  font-size: 0.25rem !important;
}

.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  line-height: 1.33 !important;
}

.input-group-lg > .input-group-btn > .btn {
  font-size: 2.0rem;
  height: 4.4rem;
}
.input-group-lg .form-control {
  font-size: 2.0rem;
}
.input-group-lg .input-group-addon .icons {
  font-size: 2.0rem;
}

.input-group-sm > .input-group-btn > .btn {
  font-size: 1.2rem;
  height: 2.5rem;
}
.input-group-sm .form-control {
  font-size: 1.2rem;
}
.input-group-sm .input-group-addon .icons {
  font-size: 1.2rem;
}

.form-control.form-control-sm {
  font-size: 1.2rem;
}
.form-control.form-control-lg {
  font-size: 2.0rem;
}

.iconed-input > .form-control {
  padding-left: 34px;
}
.iconed-input > .form-control.form-control-sm {
  padding-left: 30px;
}
.iconed-input > .form-control.form-control-lg {
  padding-left: 44px;
}
.iconed-input.right-iconed-input > .form-control {
  padding-left: 10px;
  padding-right: 34px;
}
.iconed-input.right-iconed-input > .form-control.form-control-sm {
  padding-left: 10px;
  padding-right: 30px;
}
.iconed-input.right-iconed-input > .form-control.form-control-lg {
  padding-left: 14px;
  padding-right: 42px;
}
.iconed-input.right-iconed-input > i.fa {
  float: right;
  position: relative;
  right: 10px;
}
.iconed-input > i.fa.fa-sm, .iconed-input > i.icons.icons-sm {
  font-size: 1.4rem;
  margin: 5px 2px 4px 10px;
}
.iconed-input > i.fa.fa-lg, .iconed-input > i.icons.icons-lg {
  font-size: 2.4rem;
  margin: 9px 2px 4px 10px;
}
.iconed-input > i.fa.fa-lg {
  line-height: 1em !important;
}
.iconed-input > i.fa, .iconed-input > i.icons {
  color: #e0e0e0;
  display: block;
  font-size: 1.7rem;
  margin: 7px 2px 4px 10px;
  position: absolute;
  text-align: center;
  z-index: 3;
}
.iconed-input > i.fa-spin, .iconed-input > i.fa-pulse {
  color: #c9c9c9 !important;
}

.dl-horizontal dt {
  clear: left;
  float: left;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 160px;
}

.dl-horizontal dd {
  margin-left: 180px;
}

/* Form layouts */
.form-horizontal .form-group {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.form-bordered .form-group {
  border-top: 1px solid #e9e9e9;
  margin-bottom: 0;
  padding: 7px 0;
  margin-bottom: 0px;
}

.form-striped .form-group:nth-child(2n+1) {
  background-color: whitesmoke;
}
.form-striped .form-group:first-child {
  border-top: medium none;
}
.form-striped .form-group {
  padding: 7px 0;
}
.form-striped .form-group {
  margin-bottom: 0px;
}

form .form-group.form-separator {
  background-color: whitesmoke;
  font-weight: 400;
  margin-bottom: 0;
  padding: 8px 0px 8px 32px;
}
form .form-group label {
  margin: 0px;
  margin-top: 0px;
}
form .form-group span.form-sublabel {
  color: #9d9d9d;
  display: block;
  font-size: 12px;
}

/* File browser */
.file-custom, .file-custom::before {
  height: 3.2rem;
}

/* Pagination */
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  background-clip: padding-box;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  font-size: 1.0rem !important;
}

/* Color swatches */
.color-swatch .swatch {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.color-swatch .light {
  border-radius: 4px 0 0;
}
.color-swatch .dark {
  border-radius: 0 4px 0 0;
}
.color-swatch .light,
.color-swatch .dark,
.color-swatch .normal {
  height: 50px;
}
.color-swatch .light,
.color-swatch .dark {
  width: 33%;
}
.color-swatch .normal {
  width: 34%;
}
.color-swatch .swatch-info {
  padding: 5px 10px;
}
.color-swatch .swatch-info h4 {
  font-weight: 400;
}

/* Cursors */
.cur-move {
  cursor: move;
}

.cur-pointer {
  cursor: pointer;
}

/* Calendar */
.pending-event {
  cursor: pointer;
}

/* Sticker */
.sticker {
  background: #ecf1f4 none repeat scroll 0 0;
  color: #c8d0d4;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  background-clip: padding-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-size: 36px;
  line-height: 64px;
  margin: 16px auto;
  position: relative;
  text-align: center;
  height: 64px;
  width: 64px;
}
.sticker .sticker-icon {
  position: relative;
}
.sticker.sticker-sm, .sticker.sticker-s {
  height: 32px;
  width: 32px;
  font-size: 18px;
  line-height: 32px;
}
.sticker.sticker-lg, .sticker.sticker-l {
  height: 80px;
  width: 80px;
  font-size: 40px;
  line-height: 80px;
}
.sticker.sticker-xl {
  height: 128px;
  width: 128px;
  font-size: 72px;
  line-height: 128px;
}

.va-top {
  vertical-align: top;
}

.va-bottom {
  vertical-align: bottom;
}

.va-middle {
  vertical-align: middle !important;
}

.boxList {
  display: inline-block;
}

.boxList ul {
  list-style: none;
  margin-bottom: 0px;
  padding: 0px;
}

.boxList ul li {
  background: #DDD;
  border: 1px solid #CCC;
  display: inline-block;
  margin: 2px 4px;
  padding: 4px 10px;
}

.boxList.blue ul li {
  background: #4b86d1;
  border: 1px solid #4869b1;
}

.boxList.green ul li {
  background: #169c78;
  border: 1px solid #168460;
}

.boxList.blue ul li, .boxList.green ul li, .boxList.blue ul li a, .boxList.green ul li a {
  color: #FFF !important;
}

.boxList ul li a {
  color: #999;
  padding-left: 4px;
}

.boxList ul li a i {
  font-size: 12px;
}

/* **************** */
/*    Responsive    */
/* **************** */
@media screen and (max-width: 860px) {
  #container-navbar .l-container-navbar #navbar-search {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #container-navbar .l-container-navbar {
    margin-right: 5px;
    float: left;
  }
  #container-navbar .r-container-navbar {
    text-align: left;
    float: left;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  #container-navbar .r-container-navbar {
    display: none;
  }
}
/* Font sizes */
.font-sm {
  font-size: 0.8rem !important;
}

.font-xs {
  font-size: 0.7rem !important;
}

/* Shake animation */
.shake {
  animation: shake 0.85s cubic-bezier(0.36, 0.07, 0.19, 0.97) 3;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.ui-inputgroup-addon {
  background: #DDD;
  padding: 9px 5px 10px 10px;
  color: #FFF;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #CCC;
  border-right: 0px !important;
}
