.uk-panel-box {
    background: #fff;
}

@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

/* Panel
 ========================================================================== */

.cd-panel {
    /* 1 */
    display: block;
    /* 2 */
    position: relative;
}

/*
 * 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: 15px;
    background: #ffffff;
}

.cd-panel-box > .cd-panel-teaser {
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
}

.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);
    border: 1px solid #eee;
}

/* ========================================================================
   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;
}

/* ========================================================================
   Component: 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 input,
.cd-form select,
.cd-form textarea {
    /* 1 */
    box-sizing: border-box;
    /* 2 */
    margin: 0;
    /* 3 */
    font: inherit;
    color: inherit;
}

.cd-form legend {
    display: inline-block;
    margin-bottom: 0;
    color: inherit;
}

.cd-form textarea {
    line-height: normal;
}

.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;
    max-width: 100%;
    position: relative;
    height: auto;
}

.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;
    padding: 8px 12px;
}


/*
 * Removes placeholder transparency in Firefox.
 */
.cd-form ::-moz-placeholder {
    opacity: 1;
}


/*
 * Vertical alignment
 */
.cd-form input:not([type="radio"]):not([type="checkbox"]),
.cd-form select {
    vertical-align: middle;
}

/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.cd-form textarea,
.cd-form select[multiple],
.cd-form select[size] {
    height: auto;
}


/* 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;
}

/* 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: Form advanced
   Note: Only works in Webkit at the moment
 ========================================================================== */
/*
 * 1. Style
 * 2. Makes box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 */
.cd-form input[type="radio"],
.cd-form input[type="checkbox"] {
    /* 1 */
    display: inline-block;
    height: 14px;
    width: 14px;
    border: 1px solid #aaaaaa;
    /* 2 */
    overflow: hidden;
    /* 3 */
    margin-top: -4px;
    vertical-align: middle;
    /* 4 */
    -webkit-appearance: none;
    outline: 0;
    /* 5 */
    background: transparent;
}
/* Radio */
.cd-form input[type="radio"] {
    border-radius: 50%;
}
/*
 * Checked
 */
.cd-form input[type=radio]:before,
.cd-form input[type=checkbox]:before {
    display: block;
}
/* Radio */
.cd-form input[type=radio]:checked:before {
    content: '';
    width: 8px;
    height: 8px;
    margin: 2px auto 0;
    border-radius: 50%;
    background: #00a8e6;
}
/* Checkbox */
.cd-form input[type=checkbox]:checked:before,
.cd-form input[type=checkbox]:indeterminate:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    line-height: 12px;
}
.cd-form input[type=checkbox]:indeterminate:before {
    content: "\f068";
}


.cd-form .cd-form-checkbox,
.cd-form input[type="radio"] {
    margin-right: 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;
}

/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.cd-margin {
    margin-bottom: 15px;
    margin-top: 15px;
}

.cd-margin-top {
    margin-top: 15px !important;
}

.cd-margin-bottom {
    margin-bottom: 15px !important;
}

.cd-margin-left {
    margin-left: 15px !important;
}

.cd-margin-right {
    margin-right: 15px !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;
}

/* 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;
}

/* Alignment modifiers
 ========================================================================== */
.cd-text-top {
    vertical-align: top !important;
}

.cd-text-middle {
    vertical-align: middle !important;
}

.cd-text-bottom {
    vertical-align: bottom !important;
}

/* Buttons
 ========================================================================== */

.cd-button,
.uk-form .input-append 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;
    margin-bottom: 0;
    padding: 6px 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 {
    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: #2196f3;
    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: #4caf50;
    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: #ee413c;
    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: 3px 8px;
    line-height: 25px;
    font-size: 12px;
}

.cd-button-large {
    font-size: 20px;
    line-height: 50px;
    min-height: 50px;
    padding: 0 20px;
}

/* ========================================================================
   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: 15px;
    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;
}

.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;
    font-weight: 400;
    color: #5cd1df;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.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;
}

/* ========================================================================
   Component: Navbar
 ========================================================================== */
.cd-navbar {
    background: #2d323e;
    color: #ffffff;
}

/*
 * 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: left;
}

/*
 * 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;
    box-sizing: border-box;
    text-decoration: none;
    /* 1 */
    height: 90px;
    padding: 0 25px;
    line-height: 90px;
    /* 2 */
    color: #adadae;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 100;
}

/* 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: rgba(0, 0, 0, 0);
    color: #ffffff;
    /* 3 */
    outline: none;
}

/* OnClick */
.cd-navbar-nav > li > a:active {
    background-color: rgba(0, 0, 0, 0);
    color: #ffffff;
}

/* Active */
.cd-navbar-nav a.cd-active {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
}

/* ========================================================================
   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%;
}

/* 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;
}

/* Other
 ========================================================================== */

.cd-min-width {
    width: 160px;
}

.cd-panel-box li {
    list-style: none;
}

.cd-panel ul,
.tab-content ul {
    margin: 0;
}

.cd-panel-box-small {
    padding: 15px !important;
}

/* 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-panel-box select,
.cd-panel-box input,
.cd-panel-box table {
    color: initial;
}

.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;
}

/*
 * 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: 15px;
}

.cd-box-body-row {
    margin-bottom: 10px;
}

.cd-box-body label {
    font-weight: bold;
}

.uk-form-icon select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-image: none;
}