@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * Micro clearfix
 */
.cd-grid:before,
.cd-grid:after {
  content: " ";
  display: table;
}
.cd-grid:after {
  clear: both;
}
/*
 * 1. Needed for the gutter
 * 2. Makes grid more robust so that it can be used with other block elements like lists
 */
.cd-grid {
  /* 1 */
  margin: 0 0 0 -30px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * 1. Makes grid more robust so that it can be used with other block elements
 * 2. Create horizontal gutter
 * 3. `float` is set by default so columns always behave the same and create a new block format context
 */
.cd-grid > * {
  /* 1 */
  margin: 0;
  /* 2 */
  padding-left: 30px;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.cd-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Vertical gutter
 */
.cd-grid + .cd-grid {
  margin-top: 30px;
}
/*
 * This class is set by JavaScript and applies a vertical gutter if the columns stack or float into the next row
 * Higher specificity to override margin
 */
.cd-grid > .cd-grid-margin {
  margin-top: 30px;
}
/*
 * Vertical gutter for panels
 */
.cd-grid > * > .cd-panel + .cd-panel {
  margin-top: 30px;
}
/*
 * Larger gutter for large screens
 */
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal gutter */
  .cd-grid:not(.cd-grid-preserve) {
    margin-left: -35px;
  }
  .cd-grid:not(.cd-grid-preserve) > * {
    padding-left: 35px;
  }
  /* Vertical gutter */
  .cd-grid:not(.cd-grid-preserve) + .cd-grid {
    margin-top: 35px;
  }
  .cd-grid:not(.cd-grid-preserve) > .cd-grid-margin {
    margin-top: 35px;
  }
  /* Vertical gutter for panels */
  .cd-grid:not(.cd-grid-preserve) > * > .cd-panel + .cd-panel {
    margin-top: 35px;
  }
}
/*
 * Small gutter
 * Higher specificity to override large gutter
 */
.cd-grid.cd-grid-small {
  margin-left: -10px;
}
.cd-grid.cd-grid-small > * {
  padding-left: 10px;
}
.cd-grid.cd-grid-small + .cd-grid-small {
  margin-top: 10px;
}
.cd-grid.cd-grid-small > .cd-grid-margin {
  margin-top: 10px;
}
.cd-grid.cd-grid-small > * > .cd-panel + .cd-panel {
  margin-top: 10px;
}
/* Modifier: `cd-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Does not work with `cd-push-*`, `cd-pull-*` and not if the columns float into the next row
 */
.cd-grid-divider:not(:empty) {
  margin-left: -30px;
  margin-right: -30px;
}
.cd-grid-divider > * {
  padding-left: 30px;
  padding-right: 30px;
}
.cd-grid-divider > [class*='cd-width-1-']:not(.cd-width-1-1):nth-child(n+2),
.cd-grid-divider > [class*='cd-width-2-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-3-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-4-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-5-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-6-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-7-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-8-']:nth-child(n+2),
.cd-grid-divider > [class*='cd-width-9-']:nth-child(n+2) {
  border-left: 2px solid #eaeaea;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .cd-grid-divider > [class*='cd-width-medium-']:not(.cd-width-medium-1-1):nth-child(n+2) {
    border-left: 2px solid #eaeaea;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .cd-grid-divider > [class*='cd-width-large-']:not(.cd-width-large-1-1):nth-child(n+2) {
    border-left: 2px solid #eaeaea;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .cd-grid-divider:not(.cd-grid-preserve):not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .cd-grid-divider:not(.cd-grid-preserve) > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .cd-grid-divider:not(.cd-grid-preserve):empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/*
 * Vertical divider
 */
.cd-grid-divider:empty {
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 2px solid #eaeaea;
}
/* Even grid cell widths
 ========================================================================== */
[class*='cd-grid-width'] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.cd-grid-width-1-2 > * {
  width: 50%;
}
.cd-grid-width-1-3 > * {
  width: 33.333%;
}
.cd-grid-width-1-4 > * {
  width: 25%;
}
.cd-grid-width-1-5 > * {
  width: 20%;
}
.cd-grid-width-1-6 > * {
  width: 16.666%;
}
.cd-grid-width-1-10 > * {
  width: 10%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .cd-grid-width-small-1-2 > * {
    width: 50%;
  }
  .cd-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .cd-grid-width-small-1-4 > * {
    width: 25%;
  }
  .cd-grid-width-small-1-5 > * {
    width: 20%;
  }
  .cd-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .cd-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .cd-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .cd-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .cd-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .cd-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .cd-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .cd-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .cd-grid-width-large-1-2 > * {
    width: 50%;
  }
  .cd-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .cd-grid-width-large-1-4 > * {
    width: 25%;
  }
  .cd-grid-width-large-1-5 > * {
    width: 20%;
  }
  .cd-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .cd-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .cd-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .cd-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .cd-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .cd-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .cd-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .cd-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `cd-width-*`
 ========================================================================== */
[class*='cd-width'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.cd-width-1-1 {
  width: 100%;
}
/* Halves */
.cd-width-1-2,
.cd-width-2-4,
.cd-width-3-6,
.cd-width-5-10 {
  width: 50%;
}
/* Thirds */
.cd-width-1-3,
.cd-width-2-6 {
  width: 33.333%;
}
.cd-width-2-3,
.cd-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.cd-width-1-4 {
  width: 25%;
}
.cd-width-3-4 {
  width: 75%;
}
/* Fifths */
.cd-width-1-5,
.cd-width-2-10 {
  width: 20%;
}
.cd-width-2-5,
.cd-width-4-10 {
  width: 40%;
}
.cd-width-3-5,
.cd-width-6-10 {
  width: 60%;
}
.cd-width-4-5,
.cd-width-8-10 {
  width: 80%;
}
/* Sixths */
.cd-width-1-6 {
  width: 16.666%;
}
.cd-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.cd-width-1-10 {
  width: 10%;
}
.cd-width-3-10 {
  width: 30%;
}
.cd-width-7-10 {
  width: 70%;
}
.cd-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .cd-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .cd-width-small-1-2,
  .cd-width-small-2-4,
  .cd-width-small-3-6,
  .cd-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .cd-width-small-1-3,
  .cd-width-small-2-6 {
    width: 33.333%;
  }
  .cd-width-small-2-3,
  .cd-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .cd-width-small-1-4 {
    width: 25%;
  }
  .cd-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .cd-width-small-1-5,
  .cd-width-small-2-10 {
    width: 20%;
  }
  .cd-width-small-2-5,
  .cd-width-small-4-10 {
    width: 40%;
  }
  .cd-width-small-3-5,
  .cd-width-small-6-10 {
    width: 60%;
  }
  .cd-width-small-4-5,
  .cd-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .cd-width-small-1-6 {
    width: 16.666%;
  }
  .cd-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .cd-width-small-1-10 {
    width: 10%;
  }
  .cd-width-small-3-10 {
    width: 30%;
  }
  .cd-width-small-7-10 {
    width: 70%;
  }
  .cd-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .cd-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .cd-width-medium-1-2,
  .cd-width-medium-2-4,
  .cd-width-medium-3-6,
  .cd-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .cd-width-medium-1-3,
  .cd-width-medium-2-6 {
    width: 33.333%;
  }
  .cd-width-medium-2-3,
  .cd-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .cd-width-medium-1-4 {
    width: 25%;
  }
  .cd-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .cd-width-medium-1-5,
  .cd-width-medium-2-10 {
    width: 20%;
  }
  .cd-width-medium-2-5,
  .cd-width-medium-4-10 {
    width: 40%;
  }
  .cd-width-medium-3-5,
  .cd-width-medium-6-10 {
    width: 60%;
  }
  .cd-width-medium-4-5,
  .cd-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .cd-width-medium-1-6 {
    width: 16.666%;
  }
  .cd-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .cd-width-medium-1-10 {
    width: 10%;
  }
  .cd-width-medium-3-10 {
    width: 30%;
  }
  .cd-width-medium-7-10 {
    width: 70%;
  }
  .cd-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .cd-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .cd-width-large-1-2,
  .cd-width-large-2-4,
  .cd-width-large-3-6,
  .cd-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .cd-width-large-1-3,
  .cd-width-large-2-6 {
    width: 33.333%;
  }
  .cd-width-large-2-3,
  .cd-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .cd-width-large-1-4 {
    width: 25%;
  }
  .cd-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .cd-width-large-1-5,
  .cd-width-large-2-10 {
    width: 20%;
  }
  .cd-width-large-2-5,
  .cd-width-large-4-10 {
    width: 40%;
  }
  .cd-width-large-3-5,
  .cd-width-large-6-10 {
    width: 60%;
  }
  .cd-width-large-4-5,
  .cd-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .cd-width-large-1-6 {
    width: 16.666%;
  }
  .cd-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .cd-width-large-1-10 {
    width: 10%;
  }
  .cd-width-large-3-10 {
    width: 30%;
  }
  .cd-width-large-7-10 {
    width: 70%;
  }
  .cd-width-large-9-10 {
    width: 90%;
  }
}

/* Panel
 ========================================================================== */

.cd-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
  border: 1px solid #dbdbdb;
}
/*
 * Micro clearfix to make panels more robust
 */
.cd-panel:before,
.cd-panel:after {
  content: " ";
  display: table;
}
.cd-panel:after {
  clear: both;
}
/*
 * Remove margin from the last-child if not `cd-widget-title`
 */
.cd-panel > :not(.cd-panel-title):last-child {
  margin-bottom: 0;
}
/* Sub-object: `cd-panel-title`
 ========================================================================== */
.cd-panel-title {
  margin-top: 0;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  padding: 0 0 0 10px;
  text-transform: uppercase;
}
/* Sub-object: `cd-panel-badge`
 ========================================================================== */
.cd-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
/* Modifier: `cd-panel-box`
 ========================================================================== */
.cd-panel-box {
  padding: 10px;
  background: #ffffff;
}
.cd-panel-border-box {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
.cd-panel-box .cd-panel-badge {
  top: -1px;
  right: 10px;
}
.cd-panel-large-box {
  padding: 25px;
  background: #ffffff;
  color: #525252;
}
.cd-panel-shadow {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);

}

/* ========================================================================
   Component: List
 ========================================================================== */
.cd-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.cd-list > li:before,
.cd-list > li:after {
  content: " ";
  display: table;
}
.cd-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.cd-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.cd-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
/* Modifier: `cd-list-line`
 ========================================================================== */
.cd-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #eaeaea;
}
/* Modifier: `cd-list-striped`
 ========================================================================== */
.cd-list-striped > li {
  padding: 5px 5px;
}
.cd-list-striped > li:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `cd-list-space`
 ========================================================================== */
.cd-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
.cd-list > li > a {
  color: rgba(82, 82, 82, 0.6);
}
.cd-list > li > a:hover {
  color: #525252;
}

/*
 * Form
 */
.cd-form {
  margin: 0;
}
.cd-form label {
  display: inline-block;
  margin-bottom: 5px;
}
@media (max-width: 959px) {
  /* Behave like `cd-form-stacked` */
  .cd-form label {
    margin-top: 10px;
  }
}
.cd-form legend {
  display: inline-block;
  margin-bottom: 0;
  color: inherit;
}
.cd-form label,
.cd-form input,
.cd-form select,
.cd-form textarea {
  font-weight: normal;
}
.cd-form textarea {
  line-height: normal;
}
.cd-form input:not([class*='cd-form-width-']):not([class*='cd-width-']),
.cd-form select:not([class*='cd-form-width-']):not([class*='cd-width-']),
.cd-form textarea:not([class*='cd-form-width-']):not([class*='cd-width-']) {
  /*width: auto;*/
}
.cd-form select,
.cd-form textarea,
.cd-form input[type="text"],
.cd-form input[type="password"],
.cd-form input[type="datetime"],
.cd-form input[type="datetime-local"],
.cd-form input[type="date"],
.cd-form input[type="month"],
.cd-form input[type="time"],
.cd-form input[type="week"],
.cd-form input[type="number"],
.cd-form input[type="email"],
.cd-form input[type="url"],
.cd-form input[type="search"],
.cd-form input[type="tel"],
.cd-form input[type="color"] {
  margin: 0;  
}
.cd-form select:focus,
.cd-form textarea:focus,
.cd-form input[type="text"]:focus,
.cd-form input[type="password"]:focus,
.cd-form input[type="datetime"]:focus,
.cd-form input[type="datetime-local"]:focus,
.cd-form input[type="date"]:focus,
.cd-form input[type="month"]:focus,
.cd-form input[type="time"]:focus,
.cd-form input[type="week"]:focus,
.cd-form input[type="number"]:focus,
.cd-form input[type="email"]:focus,
.cd-form input[type="url"]:focus,
.cd-form input[type="search"]:focus,
.cd-form input[type="tel"]:focus,
.cd-form input[type="color"]:focus {
  box-shadow: none;
}
.cd-form input[type="file"] {
  height: auto;
}
.cd-form input[type="radio"],
.cd-form input[type="checkbox"] {
  margin: 0;
  vertical-align: baseline;
}
.cd-form input[disabled],
.cd-form input[readonly] {
  background: none;
}
.cd-form .cd-form-small {
  font-size: 14px;
}
.cd-form .cd-form-large {
  font-size: 18px;
}


/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.cd-form textarea,
.cd-form select[multiple],
.cd-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.cd-form-danger {
  border-color: #e7dee0 !important;
  background: #fef8f9 !important;
  color: #d3b8b6 !important;
}
/*
 * Success state
 */
.cd-form-success {
  border-color: #e0e7d5 !important;
  background: #eff7ee !important;
  color: #afc4b0 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.cd-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.cd-form-blank:focus {
  border-color: #eaeaea !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.cd-form-width-mini {
  width: 40px;
}
select.cd-form-width-mini {
  width: 65px;
}
.cd-form-width-small {
  width: 130px;
}
.cd-form-width-medium {
  width: 200px;
}
.cd-form-width-large {
  width: 500px;
}
/* Sub-objects: `cd-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `cd-form-horizontal` modifier
 */
.cd-form-row:before,
.cd-form-row:after {
  content: " ";
  display: table;
}
.cd-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.cd-form-row + .cd-form-row {
  margin-top: 20px;
}
/* Help text
 * Sub-object: `cd-form-help-inline`, `cd-form-help-block`
 ========================================================================== */
.cd-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.cd-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `cd-form-controls`, `cd-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.cd-form-controls > :first-child {
  margin-top: 0;
}
.cd-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.cd-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `cd-form-stacked`
 * Requires sub-object: `cd-form-label`
 ========================================================================== */
.cd-form-stacked .cd-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `cd-form-horizontal`
 * Requires sub-objects: `cd-form-label`, `cd-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `cd-form-stacked` */
  .cd-form-horizontal .cd-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .cd-form-horizontal .cd-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .cd-form-horizontal .cd-form-controls {
    margin-left: 215px;
  }
  .cd-form-horizontal .controls {
      margin-left: 0!important;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .cd-form-horizontal .cd-form-controls-text {
    padding-top: 5px;
  }
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.cd-text-small {
  font-size: 12px;
  line-height: 17px;
}

.cd-text-large {
  font-size: 150%;
  line-height: 27px;
}

.cd-text-upper {
    text-transform: uppercase;
}

.cd-text-grey {
    color: #696e6e;
}

/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.cd-float-left {
  float: left;
}
.cd-float-right {
  float: right;
}
/* 1 */
[class*='cd-float-'] {
  max-width: 100%;
}

/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.cd-margin {
  margin-bottom: 20px;
  margin-top: 20px;
}
.cd-margin-top {
  margin-top: 20px !important;
}
.cd-margin-bottom {
  margin-bottom: 20px !important;
}
.cd-margin-left {
  margin-left: 20px !important;
}
.cd-margin-right {
  margin-right: 20px !important;
}
/*
 * Larger margins
 */
.cd-margin-large {
  margin-bottom: 40px;
  margin-top: 40px;
}
.cd-margin-large-top {
  margin-top: 40px !important;
}
.cd-margin-large-bottom {
  margin-bottom: 40px !important;
}
.cd-margin-large-left {
  margin-left: 40px !important;
}
.cd-margin-large-right {
  margin-right: 40px !important;
}
/*
 * Smaller margins
 */
.cd-margin-small {
  margin-bottom: 5px;
}
* + .cd-margin-small {
  margin-top: 5px;
}
.cd-margin-small-top {
  margin-top: 5px !important;
}
.cd-margin-small-bottom {
  margin-bottom: 5px !important;
}
.cd-margin-small-left {
  margin-left: 5px !important;
}
.cd-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.cd-margin-remove {
  margin: 0 !important;
}
.cd-margin-top-remove {
  margin-top: 0 !important;
}
.cd-margin-bottom-remove {
  margin-bottom: 0 !important;
}

/* Padding
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add padding if adjacent element
 */

.cd-padding {
    padding: 10px;
}

.cd-padding-top {
    padding-top: 10px;
}

.cd-padding-bottom {
    padding-bottom: 10px;
}

.cd-padding-left {
    padding-left: 10px;
}

.cd-padding-right {
    padding-right: 10px;
}

.cd-padding-small {
    padding: 5px;
}
.cd-padding-small-left {
    padding-left: 5px;
}

.cd-padding-small-right {
    padding-right: 5px;
}

.cd-padding-large {
    padding: 25px;
}
.cd-padding-large-top {
    padding-top: 25px;
}
.cd-padding-large-bottom {
    padding-bottom: 25px;
}
.cd-padding-large-left {
    padding-left: 25px;
}
.cd-padding-large-right {
    padding-right: 25px;
}


/*
 * Display
 */
.cd-display-block {
  display: block !important;
}
.cd-display-inline {
  display: inline !important;
}
.cd-display-inline-block {
  display: inline-block !important;
}

/* Alignment modifiers
 ========================================================================== */
.cd-text-left {
  text-align: left !important;
}
.cd-text-right {
  text-align: right !important;
}
.cd-text-center {
  text-align: center !important;
}
.cd-text-justify {
  text-align: justify !important;
}
.cd-text-top {
  vertical-align: top !important;
}
.cd-text-middle {
  vertical-align: middle !important;
}
.cd-text-bottom {
  vertical-align: bottom !important;
}
/* Only tablets portrait */
@media (max-width: 959px) {
  .cd-text-center-medium {
    text-align: center !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .cd-text-center-small {
    text-align: center !important;
  }
}


/* Buttons
 ========================================================================== */

.cd-button {
    /* 1 */
   -moz-user-select: none;
    background-image: none;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.57143;
    margin-bottom: 0;
    padding: 5px 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: #ffffff;
    color: #464646;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.2s ease 0s;
}


.cd-button:hover,
.cd-button:focus {
  /* 3 */
  text-decoration: none;
  background-image: none;
  box-shadow: inset 1px 3px 2px rgba(0, 0, 0, 0.025), inset 0 -1px 1px rgba(0, 0, 0, 0.07);
}
/* Active */
.cd-button:active,
.cd-button.cd-active {
  background-image: none;
  box-shadow: inset 1px 3px 2px rgba(0, 0, 0, 0.025), inset 0 -1px 1px rgba(0, 0, 0, 0.07);
}


/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `cd-button-primary`
 */
.cd-button-primary {
    background-color: #2196f3;
    border-color: #1c94f3;
    color: #ffffff!important;
}
/* Hover */
.cd-button-primary:hover,
.cd-button-primary:focus {
    background-color: #007399;
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    background-image: none;
}
/* Active */
.cd-button-primary:active,
.cd-button-primary.cd-active {
  background-color: #007399;
  color: #ffffff;
  background-image: none;
}
/*
 * Modifier: `cd-button-success`
 */
.cd-button-success {
    background-color: #4caf50;
    border-color: #25a25a;
    color: #ffffff;
}
/* Hover */
.cd-button-success:hover,
.cd-button-success:focus {
    background-color: #25a25a;
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background-image: none;
}
/* Active */
.cd-button-success:active,
.cd-button-success.cd-active {
    background-color: #25a25a;
    color: #ffffff;
    background-image: none;
}
/*
 * Modifier: `cd-button-danger`
 */
.cd-button-danger {
    background-color: #ee413c;
    border-color: #ff4800;
    color: #ffffff;
}
/* Hover */
.cd-button-danger:hover,
.cd-button-danger:focus {
  background-color: #ce402f;
  color: #ffffff;
  background-image: none;
  border-color: #d96557;
}
/* Active */
.cd-button-danger:active,
.cd-button-danger.cd-active {
  background-color: #ce402f;
  color: #ffffff;
  background-image: none;
}

/*
 * Modifier: `cd-button-white`
 */
.cd-button-white {
   box-shadow: none!important;
}


.cd-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 12px;
}
.cd-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 12px;
}
.cd-button-large {
    font-size: 20px;
    line-height: 50px;
    min-height: 50px;
    padding: 0 20px;
}

/* Sub-object `cd-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.cd-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.cd-button-group > * {
  display: inline-block;
}
/* 5 */
.cd-button-group .cd-button {
  vertical-align: top;
}
/* Sub-object: `cd-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.cd-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
.cd-button,
a.cd-button,
button.cd-button {
  font-weight: 400;
}
/* Sub-object `cd-button-group`
     ========================================================================== */
/*
     * Collapse border
     */
.cd-button-group > .cd-button:nth-child(n+2),
.cd-button-group > div:nth-child(n+2) .cd-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.cd-button-group .cd-button:active {
  position: relative;
}

/* ========================================================================
   Component: Badge
 ========================================================================== */
.cd-badge,
.jc-state, 
.badge,
.tags .label-info {
  display: inline-block;
  padding: 0 10px;
  background: #007bba;
  font-size: 12px;
  font-weight: normal;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  padding: 2px 10px;
  text-transform: uppercase;
  border-radius: 2px;
  text-shadow: none;
}
/* Modifier: `cd-badge-notification`;
 ========================================================================== */
.cd-badge-notification {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 24px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 24px;
}

.cd-badge-small,
.tags .label-info {
    font-size: 11px;
    line-height: 18px;
    padding: 2px 10px;
}

.cd-badge-large {
    font-size: 150%;
    line-height: 28px;
    padding: 0 15px;
}

/* Color modifier
 ========================================================================== */
/*
 * Modifier: `cd-badge-success`
 */
.cd-badge-success,
.jc-state-complete {
  background-color: #a5c956;
}
/*
 * Modifier: `cd-badge-warning`
 */
.cd-badge-warning,
.jc-state-pending {
  background-color: #ff7b0d;
}
/*
 * Modifier: `cd-badge-danger`
 */
.cd-badge-danger,
.jc state-failed {
  background-color: #ff5757;
}

.cd-badge-info {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  color: #555;
}

.tags .label-info {
   background-color: #fff!important;
   border: 1px solid #ccc;
   color: #555;
   text-transform: none;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.cd-alert {
  margin-bottom: 20px;
  padding: 10px;
  background: #f7f7f7;
  color: #a5b337;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 0 2px 2px 0;
  text-transform: uppercase;
  font-weight: 400;
}
.cd-alert h2 + p {
  text-transform: none;
}
.cd-alert:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -3px;
  width: 6px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #007bba;
  background-image: -webkit-linear-gradient(top, #bbc46a, #abb95b);
  background-image: linear-gradient(to bottom, #bbc46a, #abb95b);
}
/*
 * Add margin if adjacent element
 */
* + .cd-alert {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.cd-alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.cd-alert h1,
.cd-alert h2,
.cd-alert h3,
.cd-alert h4,
.cd-alert h5,
.cd-alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.cd-alert > .cd-close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.cd-alert > .cd-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `cd-alert-success`
 ========================================================================== */
.cd-alert-success {
  background: #f7f7f7;
  color: #a9db80;
}
.cd-alert-success:before {
background: rgb(169,219,128); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(169,219,128,1) 0%, rgba(150,197,111,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(169,219,128,1)), color-stop(100%,rgba(150,197,111,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(169,219,128,1) 0%,rgba(150,197,111,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(169,219,128,1) 0%,rgba(150,197,111,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(169,219,128,1) 0%,rgba(150,197,111,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(169,219,128,1) 0%,rgba(150,197,111,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9db80', endColorstr='#96c56f',GradientType=0 ); /* IE6-9 */

}
/* Modifier: `cd-alert-warning`
 ========================================================================== */
.cd-alert-warning {
  background: f7f7f7;
  color: #EFD632;
}
.cd-alert-warning:before {
background: rgb(249,238,77); /* Old browsers */
}
/* Modifier: `cd-alert-danger`
 ========================================================================== */
.cd-alert-danger {
  background: f7f7f7;
  color: #cc0000;
}
.cd-alert-danger:before {
background: rgb(204,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(204,0,0,1) 0%, rgba(204,0,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,0,0,1)), color-stop(100%,rgba(204,0,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(204,0,0,1) 0%,rgba(204,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(204,0,0,1) 0%,rgba(204,0,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(204,0,0,1) 0%,rgba(204,0,0,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(204,0,0,1) 0%,rgba(204,0,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc0000', endColorstr='#cc0000',GradientType=0 ); /* IE6-9 */
}
/* Modifier: `cd-alert-large`
 ========================================================================== */
.cd-alert-large {
  padding: 20px;
}
.cd-alert-large > .cd-close:first-child {
  margin: -10px -10px 0 0;
}

/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * Block element behavior
 */
.cd-table {
  width: 100%;
  margin-bottom: 20px;
}
/*
 * Add margin if adjacent element
 */
* + .cd-table {
  margin-top: 20px;
}
.cd-table th,
.cd-table td {
  padding: 10px 10px;
}
/*
 * Set alignment
 */
.cd-table th {
  text-align: left;
}
.cd-table td {
  vertical-align: top;
}
.cd-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.cd-table caption,
.cd-table tfoot {
  font-size: 14px;
  font-style: italic;
}
.cd-table caption {
  text-align: left;
  color: #aaaaaa;
}
/* Sub-modifier: `cd-table-middle`
 ========================================================================== */
.cd-table-middle,
.cd-table-middle td {
  vertical-align: middle !important;
}
/* Modifier: `cd-table-striped`
 ========================================================================== */
.cd-table-striped tbody tr:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `cd-table-condensed`
 ========================================================================== */
.cd-table-condensed td {
  padding: 4px 8px;
}
/* Modifier: `cd-table-hover`
 ========================================================================== */
.cd-table-hover tbody tr:hover {
  background: #fafafa;
}
.cd-table thead th {
  border: 1px solid #eaeaea;
  color: #525252;
  text-transform: uppercase;
  text-align: center;
}
.cd-table thead th:first-child,
.cd-table td:first-child {
  border-left: none;
  text-align: left;
}
.cd-table thead th:last-child {
  border-right: none;
}
.cd-table td {
  position: relative;
  border-left: 1px solid #eaeaea;
  vertical-align: middle;
  text-align: center;
}


/* ========================================================================
   Component: Navbar
 ========================================================================== */
.cd-navbar {
  color: #ddd;
    /* RGBa with 0.6 opacity */
    background-color: #35444c;
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
    
    border: bottom 1px solid rgba(0, 0, 0, 0.6);
  
}
/*
 * Micro clearfix
 */
.cd-navbar:before,
.cd-navbar:after {
  content: " ";
  display: table;
}
.cd-navbar:after {
  clear: both;
}
/* Sub-object: `cd-navbar-nav`
 ========================================================================== */
.cd-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
/*
 * 1. Create position context for dropdowns
 */
.cd-navbar-nav > li {
  float: left;
  /* 1 */
  position: relative;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.cd-navbar-nav > li > a {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 60px;
  padding: 0 10px;
  line-height: 60px;
  /* 2 */
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.cd-navbar-nav > .cd-parent > a:after {
  content: "\f107";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}

.cd-navbar-nav > .cd-parent > a:before {
    font-family: FontAwesome;
}

/* Appear not as link */
.cd-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.cd-navbar-nav > li:hover > a,
.cd-navbar-nav > li > a:focus,
.cd-navbar-nav > li.cd-open > a {
  background-color: #f1f1f1;
  color: #525252;
  /* 3 */
  outline: none;
  background-position: 0 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* OnClick */
.cd-navbar-nav > li > a:active {
  background-color: #dddddd;
  color: #525252;
}
/* Active */
.cd-navbar-nav > li.cd-active > a {
  background-color: rgba(0, 0, 0, 0);
  color: #FFF;

}
.cd-navbar-nav > li.cd-active > a:hover {
  color: #525252;
  background: #f1f1f1;
}
/* Sub-objects: `cd-navbar-nav-subtitle`
 ========================================================================== */
.cd-navbar-nav .cd-navbar-nav-subtitle {
  line-height: 48px;
}
.cd-navbar-nav-subtitle > div {
  margin-top: -16px;
  font-size: 10px;
  line-height: 12px;
}
/* Sub-objects: `cd-navbar-content`, `cd-navbar-brand`, `cd-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.cd-navbar-content,
.cd-navbar-brand,
.cd-navbar-toggle {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 60px;
  padding: 0 15px;
  float: left;
}
/*
 * Helper to center all child elements vertically
 */
.cd-navbar-content:before,
.cd-navbar-brand:before,
.cd-navbar-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* Sub-objects: `cd-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.cd-navbar-content + .cd-navbar-content:not(.cd-navbar-center) {
  padding-left: 0;
}
/*
 * Link colors
 */
.cd-navbar-content > a:not([class]) {
  color: #007bba;
}
.cd-navbar-content > a:not([class]):hover {
  color: #a5b337;
}
/* Sub-objects: `cd-navbar-brand`
 ========================================================================== */
.cd-navbar-brand {
  font-size: 20px;
  color: #525252;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-navbar-brand:hover,
.cd-navbar-brand:focus {
  color: #525252;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/* Sub-object: `cd-navbar-toggle`
 ========================================================================== */
.cd-navbar-toggle {
  font-size: 20px;
  color: #525252;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-navbar-toggle:hover,
.cd-navbar-toggle:focus {
  color: #525252;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * 1. Center icon vertically
 */
.cd-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}
.cd-navbar-toggle-alt:after {
  content: "\f002";
}
/* Sub-object: `cd-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.cd-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Corrects max-width behavior (2.) if padding and border are used
 * 2. Responsive behavior
 * 3. Required for `figure` element
 * 4. Style
 */
.cd-thumbnail {
   background: none repeat scroll 0 0 #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    padding: 4px;
}
/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.cd-thumbnail:hover,
a.cd-thumbnail:focus {
  border-color: #dddddd;
  background-color: #ffffff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}
/* Caption
 ========================================================================== */
.cd-thumbnail-caption {
  padding-top: 10px;
  text-align: center;
  color: #525252;
  padding-bottom: 10px;
}
/* Sizes
 ========================================================================== */
.cd-thumbnail-mini {
  width: 100px;
}
.cd-thumbnail-small {
  width: 200px;
}
.cd-thumbnail-medium {
  width: 300px;
}
.cd-thumbnail-large {
  width: 400px;
}
.cd-thumbnail-expand,
.cd-thumbnail-expand > img {
  width: 100%;
}


/* Position 
 ========================================================================== */

.cd-position-absolute {
    position: absolute;
}

.cd-position-relative {
    position: relative;
}

.cd-position-static {
    position: static;
}

/* Box Sizing
 ========================================================================== */
.cd-box-sizing {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}


/* Colors
 ========================================================================== */

.cd-orange {
    background: #fe6f20;
    border: 1px solid #fe6f20;
    color: #fff;    
}

.cd-white {
    background: #FFF;
}

.cd-font-white {
    color: #FFF;
}

/* Clearix
 ========================================================================== */

.cd-clearfix {
  *zoom: 1;
}
.cd-clearfix:before,
.cd-clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.cd-clearfix:after {
  clear: both;
}


/* Other
 ========================================================================== */

.cd-min-width {
    width: 160px;
}

.cd-panel-box li {
    list-style: none;
}

.cd-panel ul,
.tab-content ul {
    margin: 0;
}

.cd-form .cd-form-checkbox {
    margin-right: 5px;
}

/* Boxes`
 ========================================================================== */

.cd-scroll-box {
    overflow:auto; 
    max-height: 400px
}

.cd-smooth-box {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 25px;
    display: block;
}

.cd-smooth-panel {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    transition: transform 300ms ease-in-out 0s, opacity 300ms ease 0s;
}


/*
 * Boxes color modifiers
 */

.cd-red-lighten {
    background-color: #e57373;
    color: #FFF;
}

.cd-blue-lighten {
    background-color: #64b5f6;
    color: #FFF;
}

.cd-green-lighten {
    background-color: #81c784;
    color: #FFF;
}

.cd-grey-lighten {
    background-color: #f9f9f9;
}


/* UL LI Grid
 ========================================================================== */

ul.cd-ugrid {
    list-style: none;
    margin-left: -2.5%; /* should match li left margin */
    padding: 0;
}
ul.cd-ugrid li {
    display: inline-block;
    margin: 0 0 2.0% 2.0%;
    vertical-align: top;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
ul.cd-ugrid li img {
    max-width: 100%;
    height: auto;
}

/* class for1 columns */
ul.cd-ugrid.columns-1 li {
    width: 97.5%; /* this value + 2.5 should = 50% */
}

ul.cd-ugrid.columns-2 li {
    width: 47.5%; /* this value + 2.5 should = 50% */
}
/* class for 3 columns */
ul.cd-ugrid.columns-3 li {
    width: 30.83%; /* this value + 2.5 should = 33% */
}
/* class for 4 columns */
ul.cd-ugrid.columns-4 li {
    width: 22.5%; /* this value + 2.5 should = 25% */
}

@media (max-width: 480px) {
    ul.cd-ugrid-nav li {
            display: block;
            margin: 0 0 5px;
    }
    ul.cd-ugrid-nav li a {
            display: block;
    }
    ul.cd-ugrid {
            margin-left: 0;
    }
    ul.cd-ugrid  li {
            width: 100% !important; /* over-ride all li styles */
            margin: 0 0 20px;
    }
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.cd-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
}

.cd-pagination ul {
    margin: 0;
}
/*
 * Micro clearfix
 * Needed if `cd-pagination-previous` or `cd-pagination-next` sub-objects are used
 */
.cd-pagination:before,
.cd-pagination:after {
  content: "";
  display: table;
}
.cd-pagination:after {
  clear: both;
}
/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.cd-pagination li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}
.cd-pagination li:nth-child(n+2) {
  margin-left: 5px;
}
/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.cd-pagination li a,
.cd-pagination li span {
  display: inline-block;
  min-width: 20px;
  padding: 3px 5px;
  line-height: 24px;
  text-decoration: none;
  border: 1px solid #f1f1f1;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
  text-align: center;
}
/*
 * Links
 */
.cd-pagination li a {
  background: #ffffff;
  color: #7d8693;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-pagination li a:hover,
.cd-pagination li a:focus {
  background-color: #f5f5f5;
  color: #7d8693;
  /* 2 */
  outline: none;
}
/* OnClick */
.cd-pagination li a:active {
  background-color: #33577b;
  color: #7d8693;
}
/*
 * Active
 */
.cd-pagination .cd-active span {
  background: #33577b;
  color: #ffffff FF;
}
/*
 * Disabled
 */
.cd-pagination .cd-disabled span {
  background-color: #f5f5f5;
  color: #999999;
}
/* Previous and next navigation
 ========================================================================== */
.cd-pagination-previous {
  float: left;
}
.cd-pagination-next {
  float: right;
}
/* Alignment modifiers
 ========================================================================== */
.cd-pagination-left {
  text-align: left;
}
.cd-pagination-right {
  text-align: right;
}

/* ========================================================================
   Component: Panel Clean
 ========================================================================== */


.cd-box-default {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px !important;
    box-shadow: 0 2px #fff inset, 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cd-box-title {
    color: #333;
    margin-bottom: 0;
    padding: 14px 15px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
}

.cd-box-body {
    padding: 10px;
}

.cd-box-body-row {
    margin-bottom: 10px;
}

.cd-box-body label {
    font-weight: bold;
}

.uk-form-icon select {
    -moz-appearance: none;
    background-color: transparent;
    background-image: none;
}