
/* ========================================================================
   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%;
  }
}

.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;
  color: #555;
}
.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;
}

/* ========================================================================
   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;
}

/* Remove from the flow and screen readers on any device */
.cd-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.cd-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.cd-visible-hover:hover .cd-hidden,
.cd-visible-hover:hover .cd-invisible {
  display: block !important;
  visibility: visible !important;
}
.cd-visible-hover-inline:hover .cd-hidden,
.cd-visible-hover-inline:hover .cd-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `cd-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .cd-description-list-horizontal {
    overflow: hidden;
  }
  .cd-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cd-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `cd-description-list-line`
 ========================================================================== */
.cd-description-list-line > dt {
  font-weight: normal;
}
.cd-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #eaeaea;
}
.cd-description-list-line > dd {
  color: #aaaaaa;
}

/*
 * Form
 */
.cd-form {
  margin: 0;
}
.cd-form label {
  display: inline-block;
  margin: 0;
}
.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"] {
  height: auto;
  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;
}
/* Modifier: `cd-progress-striped`
 ========================================================================== */
.cd-progress-bar {
  width: 0;
  height: 100%;
  float: left;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
background: rgb(135,224,253); /* Old browsers */
background: -moz-linear-gradient(top, rgba(135,224,253,1) 0%, rgba(83,203,241,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(135,224,253,1)), color-stop(100%,rgba(83,203,241,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(135,224,253,1) 0%,rgba(83,203,241,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(135,224,253,1) 0%,rgba(83,203,241,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(135,224,253,1) 0%,rgba(83,203,241,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(135,224,253,1) 0%,rgba(83,203,241,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87e0fd', endColorstr='#53cbf1',GradientType=0 ); /* IE6-9 */
}

.cd-progress-striped .cd-progress-bar {
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}

/* 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;
  }
}
/* Sub-object: `cd-form-icon`
 ========================================================================== */
.cd-form-icon {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.cd-form-icon > [class*='cd-icon-'] {
  position: absolute;
  top: 50%;
  width: 36px;
  margin-top: -8px;
  font-size: 16px;
  color: #aaaaaa;
  text-align: center;
  /* 1 */
  pointer-events: none;
}
.cd-form-icon:not(.cd-form-icon-flip) > input {
  padding-left: 36px !important;
}
/*
 * Sub-modifier: `cd-form-icon-flip`
 */
.cd-form-icon-flip > [class*='cd-icon-'] {
  right: 0;
}
.cd-form-icon-flip > input {
  padding-right: 36px !important;
}
.cd-form legend {
  color: #525252;
  text-transform: uppercase;
  font-weight: 700;
}


/* ========================================================================
   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: #999;
}

/* 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%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='cd-align-'] {
  display: block;
  margin-bottom: 20px;
}
.cd-align-left {
  margin-right: 20px;
  float: left;
}
.cd-align-right {
  margin-left: 20px;
  float: right;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .cd-align-medium-left {
    margin-right: 20px;
    margin-bottom: 20px;
    float: left;
  }
  .cd-align-medium-right {
    margin-left: 20px;
    margin-bottom: 20px;
    float: right;
  }
}
.cd-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.cd-vertical-align {
  font-size: 0.001px;
}
/*
 *  The `cd-vertical-align` container needs a specific height
 */
.cd-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.cd-vertical-align-middle,
.cd-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
}
.cd-vertical-align-middle {
  vertical-align: middle;
}
.cd-vertical-align-bottom {
  vertical-align: bottom;
}
/*
 *  This helper class is very useful to extend the `html` and `body` element to the full height of the page.
 */
.cd-height-1-1 {
  height: 100%;
}
/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects max-width/max-height behavior if padding and border are used
 */
.cd-responsive-width,
.cd-responsive-height {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 */
.cd-responsive-width {
  max-width: 100%;
  height: auto;
}
/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.cd-responsive-height {
  max-height: 100%;
  width: auto;
}
/* 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;
}


/*
 * 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;
  }
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.cd-text-nowrap {
  white-space: nowrap;
}
/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.cd-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*
 * Break strings if their length exceeds the width of their container
 */
.cd-text-break {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*Buttons */

.cd-button {
    /* 1 */
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    /* 2 */
    border: none;
    /* 3 */
    line-height: 32px;
    /* 4 */
    min-height: 36px;
    /* 5 */
    /* 6 */
    padding: 0 12px;
    color: #9f9f9f;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #eaeaea;
    background-image: -webkit-linear-gradient(top, #fcfcfc, #fafafa);
    background-image: linear-gradient(to bottom, #fcfcfc, #fafafa);
    box-shadow: inset 0 -1px rgba(0, 0, 0, 0.09);
    font-size: 14px;
    border-radius: 2px;
    text-transform: uppercase;
}

.cd-button:hover,
.cd-button:focus {
  background-color: #b1bd61;
  color: #fff;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  border-color: rgba(0, 0, 0, 0.08);
  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-color: #b1bd61;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.09);
  background-image: none;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.04), inset 0 0 1px rgba(0, 0, 0, 0.1);
}


/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `cd-button-primary`
 */
.cd-button-primary {
  background-color: #b1bd61;
  color: #ffffff;
    background: rgb(136,191,232); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(136,191,232,1) 0%, rgba(112,176,224,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(136,191,232,1)), color-stop(100%,rgba(112,176,224,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(136,191,232,1) 0%,rgba(112,176,224,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(136,191,232,1) 0%,rgba(112,176,224,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(136,191,232,1) 0%,rgba(112,176,224,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(136,191,232,1) 0%,rgba(112,176,224,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88bfe8', endColorstr='#70b0e0',GradientType=0 ); /* IE6-9 */
    border-color: transparent;
}
/* Hover */
.cd-button-primary:hover,
.cd-button-primary:focus {
    background-color: #70b0e0;
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    background-image: none;
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.025);
    text-shadow: none;
}
/* Active */
.cd-button-primary:active,
.cd-button-primary.cd-active {
  background-color: #88bfe8;
  color: #ffffff;
  background-image: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  text-shadow: none;
}
/*
 * Modifier: `cd-button-success`
 */
.cd-button-success {
  background-color: #89b356;
    color: #ffffff;
    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 */

    border-color: rgba(0, 0, 0, 0.06);
}
/* Hover */
.cd-button-success:hover,
.cd-button-success:focus {
    background-color: #96c56f;
    color: #ffffff;
    background-image: none;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}
/* Active */
.cd-button-success:active,
.cd-button-success.cd-active {
    background-color: #a9db80;
    color: #ffffff;
    background-image: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}
/*
 * Modifier: `cd-button-danger`
 */
.cd-button-danger {
    background-color: #ef6d38;
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    background: rgb(255,168,76); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,168,76,1) 0%, rgba(255,123,13,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,168,76,1)), color-stop(100%,rgba(255,123,13,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,168,76,1) 0%,rgba(255,123,13,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,168,76,1) 0%,rgba(255,123,13,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,168,76,1) 0%,rgba(255,123,13,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,168,76,1) 0%,rgba(255,123,13,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa84c', endColorstr='#ff7b0d',GradientType=0 ); /* IE6-9 */
}
/* Hover */
.cd-button-danger:hover,
.cd-button-danger:focus {
  background-color: #ff7b0d;
  color: #ffffff;
  background-image: none;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2);
  text-shadow: none;
  cursor: pointer
}
/* Active */
.cd-button-danger:active,
.cd-button-danger.cd-active {
  background-color: #ffa84c;
  color: #ffffff;
  background-image: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.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 {
  display: inline-block;
  padding: 0 10px;
  background: #007bba;
  font-size: 12px;
  font-weight: inherit;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  padding: 2px 10px;
  text-transform: uppercase;
}
/* Modifier: `cd-badge-notification`;
 ========================================================================== */
.cd-badge-notification {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 24px;
  border-radius: 30%;
  font-size: 14px;
  line-height: 24px;
}

.cd-badge-small {
    font-size: 11px;
    line-height: 18px;
    padding: 0 10px;
}

.cd-badge-large {
    font-size: 150%;
    line-height: 28px;
    padding: 0 15px;
}

/* Color modifier
 ========================================================================== */
/*
 * Modifier: `cd-badge-success`
 */
.cd-badge-success {
  background-color: #a5c956;
}
/*
 * Modifier: `cd-badge-warning`
 */
.cd-badge-warning {
  background-color: #ff7b0d;
}
/*
 * Modifier: `cd-badge-danger`
 */
.cd-badge-danger {
  background-color: #ff5757;
}

/* ========================================================================
   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;
}

/* Modifier: `cd-dropdown-navbar`
 ========================================================================== */
.cd-dropdown-navbar {
  margin-top: 0;
  background: #f1f1f1;
  color: #525252;
  box-shadow: 1px 0 0 rgba(47, 49, 53, 0.05), -1px 0 0 rgba(47, 49, 53, 0.05), 0 1px 0 rgba(47, 49, 53, 0.05);
}
.cd-dropdown-navbar .cd-panel a {
  color: #525252;
}
.cd-dropdown-navbar .cd-panel a:hover {
  color: #ffffff;
}
.cd-dropdown-navbar ul.cd-nav-sub {
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cd-open > .cd-dropdown-navbar {
  -webkit-animation: cd-slide-top-fixed 0.2s ease-in-out;
  animation: cd-slide-top-fixed 0.2s ease-in-out;
}

/* ========================================================================
   Component: Nav
 ========================================================================== */
.cd-nav,
.cd-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Items
 */
.cd-nav li > a {
  display: block;
  text-decoration: none;
}
.cd-nav > li > a {
  padding: 7px 15px;
}
/*
 * Nested items
 */
.cd-nav ul {
  padding-left: 15px;
}
.cd-nav ul a {
  padding: 2px 0;
}
/*
 * Item subtitle
 */
.cd-nav li > a > div {
  font-size: 14px;
  line-height: 21px;
}
/* Sub-object: `cd-nav-header`
 ========================================================================== */
.cd-nav-header {
  padding: 7px 15px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}
.cd-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Sub-object: `cd-nav-divider`
 ========================================================================== */
.cd-nav-divider {
  margin: 0 0;
  border-width: 3px !important;
}
/* Sub-object: `cd-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.cd-nav-sub {
  padding: 10px 0 10px 0;
  padding: 10px 20px;
  border-top: 1px solid #eaeaea;
  background: #fafafa;
}
/* Modifier: `cd-nav-parent-icon`
 ========================================================================== */
.cd-nav-parent-icon > .cd-parent > a:after {
  content: "\f104";
  width: 24px;
  margin-right: 0;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}
.cd-nav-parent-icon > .cd-parent.cd-open > a:after {
  content: "\f107";
}
/* Modifier `cd-nav-side`
 ========================================================================== */
/*
 * Items
 */
.cd-nav-side > li > a {
  color: rgba(82, 82, 82, 0.6);
  padding: 7px 0;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-nav-side > li > a:hover,
.cd-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0);
  color: #525252;
  /* 2 */
  outline: none;
}
/* Active */
.cd-nav-side > li.cd-active > a {
  background: rgba(0, 0, 0, 0);
  color: #f64f4f;
}
/*
 * Sub-object: `cd-nav-header`
 */
.cd-nav-side .cd-nav-header {
  color: rgba(82, 82, 82, 0.85);
  padding: 7px 0;
}
/*
 * Sub-object: `cd-nav-divider`
 */
.cd-nav-side .cd-nav-divider {
  border-top: 1px solid #eaeaea;
}
/*
 * Nested items
 */
.cd-nav-side ul a {
  color: #aaaaaa;
}
.cd-nav-side ul a:hover {
  color: #525252;
}
/* Modifier `cd-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.cd-nav-dropdown > li > a {
  color: #9f9f9f;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-nav-dropdown > li > a:hover,
.cd-nav-dropdown > li > a:focus {
  background: rgba(0, 0, 0, 0);
  color: #111111;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `cd-nav-header`
 */
.cd-nav-dropdown .cd-nav-header {
  color: #525252;
  font-weight: bold;
}
/*
 * Sub-object: `cd-nav-divider`
 */
.cd-nav-dropdown .cd-nav-divider {
  border-top: 1px solid #eaeaea;
}
/*
 * Nested items
 */
.cd-nav-dropdown ul a {
  color: #aaaaaa;
}
.cd-nav-dropdown ul a:hover {
  color: #525252;
}
/* Modifier `cd-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.cd-nav-navbar > li > a {
  color: #525252;
  -webkit-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-nav-navbar > li > a:hover,
.cd-nav-navbar > li > a:focus {
  background: #fafafa;
  color: #525252;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `cd-nav-header`
 */
.cd-nav-navbar .cd-nav-header {
  color: #525252;
  padding-left: 15px;
}
/*
 * Sub-object: `cd-nav-divider`
 */
.cd-nav-navbar .cd-nav-divider {
  border-top: 1px solid rgba(234, 234, 234, 0.5);
}
/*
 * Nested items
 */
.cd-nav-navbar ul a {
  color: rgba(82, 82, 82, 0.5);
}
.cd-nav-navbar ul a:hover {
  color: #525252;
}
/* Modifier `cd-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.cd-nav-offcanvas > li > a {
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-nav-offcanvas > .cd-open > a,
html:not(.cd-touch) .cd-nav-offcanvas > li > a:hover,
html:not(.cd-touch) .cd-nav-offcanvas > li > a:focus {
  background: #373737;
  color: #ffffff;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `html .cd-nav` needed for higher specificity to override hover
 */
html .cd-nav.cd-nav-offcanvas > li.cd-active > a {
  background: #1d1d1d;
  color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
html .cd-nav.cd-nav-offcanvas > li.cd-active > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 44px;
  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);
}
/*
 * Sub-object: `cd-nav-header`
 */
.cd-nav-offcanvas .cd-nav-header {
  color: #777777;
  padding: 10px 15px;
}
/*
 * Sub-object: `cd-nav-divider`
 */
.cd-nav-offcanvas .cd-nav-divider {
  border-top: 1px solid #101010;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.cd-nav-offcanvas ul a {
  color: rgba(255, 255, 255, 0.5);
}
html:not(.cd-touch) .cd-nav-offcanvas ul a:hover {
  color: #ffffff;
}
.cd-nav-dropdown > .cd-active > a {
  color: #525252;
}
.cd-nav-navbar > .cd-active > a {
  background-color: #fafafa;
}
.cd-nav-side > li:not(.cd-nav-header) + li > a {
  border-top: 1px solid #eaeaea;
}
.cd-nav-side > .cd-open > a {
  color: #525252;
}
.cd-nav-navbar.cd-panel > li > a {
  color: #525252;
}
.cd-nav-navbar.cd-panel > li > a:hover {
  color: #525252;
}
.cd-nav-offcanvas {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.cd-nav-offcanvas ul.cd-nav-sub {
  border-top-color: none;
  background: rgba(255, 255, 255, 0.05);
}
/* Sub-object: `cd-nav-sub` */
.cd-nav-offcanvas ul.cd-nav-sub {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.cd-panel-box .cd-nav-side {
  margin: 0;
}
.cd-panel-box .cd-open + li a {
  border-top: transparent;
}
.cd-panel-box .cd-nav-side .cd-nav-header {
  padding-left: 0;
}
.cd-panel-box .cd-nav-side .cd-nav-sub {
  background: none;
  border-top: transparent;
}
.cd-panel-box .cd-open.cd-parent ul.cd-nav-sub {

}
.cd-panel-box .cd-open.cd-parent > a {
  border-bottom: 1px solid #eaeaea;
}
/* ========================================================================
   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;
}
/* Sub-object: `cd-navbar-flip`
 ========================================================================== */
.cd-navbar-flip {
  float: right;
}
.cd-navbar-nav > .cd-active.cd-open > a {
  color: #525252;
  background: #f1f1f1;
}
.cd-navbar-toggle {
  padding: 0;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.cd-subnav {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
}
/* Items
 ========================================================================== */
/*
 * 1. Create position context for dropdowns
 * 2. Reset whitespace hack
 */
.cd-subnav > li {
  /* 1 */
  position: relative;
  /* 2 */
  font-size: 1rem;
  vertical-align: top;
}
.cd-subnav > li,
.cd-subnav > li > a,
.cd-subnav > li > span {
  display: inline-block;
}
.cd-subnav > li:nth-child(n+2) {
  margin-left: 10px;
}
/*
 * Items
 */
.cd-subnav > li > a {
  color: #525252;
}
.cd-subnav > li > a:hover {
  color: rgba(82, 82, 82, 0.7);
}
/*
 * Active
 */
/*
 * Disabled
 */
.cd-subnav > li > span {
  color: #aaaaaa;
}
/* Modifier: 'subnav-line'
 ========================================================================== */
.cd-subnav-line > li:nth-child(n+2):before {
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 10px;
  border-left: 1px solid #d1d1d1;
}
/* Modifier: 'subnav-pill'
 ========================================================================== */
.cd-subnav-pill > li > a,
.cd-subnav-pill > li > span {
  padding: 3px 9px;
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid #eaeaea;
  border-radius: 1px;
  background: #fcfcfc;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.cd-subnav-pill > li > a:hover,
.cd-subnav-pill > li > a:focus {
  background: #fcfcfc;
  color: rgba(82, 82, 82, 0.8);
  /* 2 */
  outline: none;
  border-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: none;
  transition: none;
}
/*
 * Active
 * `li` needed for higher specificity to override hover
 */
.cd-subnav-pill > li.cd-active > a {
  background: #007bba;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
}
.cd-subnav {
  font-weight: 400;
}
.cd-subnav > li > a:hover {
  text-decoration: none;
}

/* ========================================================================
   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.05);
    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: 150px;
}
.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-violet {
    background: #7977c2;
    border: 1px solid #7977c2;
    color: #fff;
}

.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;
}


/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Fix transition in Webkit
 */
.cd-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.8);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  -webkit-transform: translateZ(0);
}
/*
 * Open state
 */
.cd-modal.cd-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.cd-modal-page,
.cd-modal-page body {
  overflow: hidden;
}
/* Sub-object: `cd-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for `cd-modal-dialog-frameless`
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.cd-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #ffffff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .cd-modal-dialog {
    width: auto;
    margin: 10px;
  }
}
/*
 * Open state
 */
.cd-open .cd-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.cd-modal-dialog > :last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.cd-modal-dialog > .cd-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.cd-modal-dialog > .cd-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `cd-modal-dialog-frameless`
 ========================================================================== */
.cd-modal-dialog-frameless {
  padding: 0;
}
/*
 * Close in modal
 */
.cd-modal-dialog-frameless > .cd-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .cd-modal-dialog-frameless > .cd-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `cd-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .cd-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .cd-modal-dialog-large {
    width: 1130px;
  }
}

/* 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-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: 10px;
    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;
}


.cd-smooth-panel-title {
    padding: 5px 1.3rem;
    width: 100%;
    border-bottom: 1px solid #efefef;
    font-size: 16px;
    line-height: 1.6rem;
    margin: 0;
}

.cd-smooth-panel-content {
    padding: 1.3rem;
}
/*
 * 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;
}

