body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    background-color: #ccc;
    margin: 0px;
    color: gray;
    text-align: justify;
}

/********************
 LINKS
********************/

a:link {
    text-decoration: none;
    color: #E35725
}

a:visited {
    text-decoration: none;
    color: #E35725
}

a:hover {
    text-decoration: none;
    color: #E35725
}

a:active {
    text-decoration: none;
    color: #E35725
}

/********************
 HEADINGS
********************/

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    color: #ff6600;
    margin-bottom: 24px;
    line-height: normal;
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 300;
    text-align: center;
    color: #ff6600;
    margin-bottom: 34px;
    line-height: normal;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    color: #ff6600;
    margin-bottom: 34px;
    line-height: normal;
}

/********************
 TEXT
********************/

.text-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
}

.text-intro-with-bottom-margin {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 34px;
    line-height: 30px;
}

/********************
 HEADER
********************/

.header {
    height: 96px;
    background-color: #6c6c6c;
}

.header-logo {
    float: left;
    padding-top: 12px;
    max-width: 200px;
}

.header-menu {
    float: right;
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
    color: #bbb;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 300;
    max-width: 1000px;
}

.header-menu-item {
    margin-left: 16px;
    margin-right: 16px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.header-menu-item:hover {
    color: #e6e6e6;
}

.header-menu-item-active {
    color: #e6e6e6;
}

.header-menu-icon {
    margin-bottom: 8px;
}

/********************
 BANNER ALERT
********************/

.banner-alert {
    padding: 10px;
    text-align: center;
    color: white;
    background-color: #ff4d4d;
    border-bottom: 1px solid #bbb;
    cursor: pointer;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

    .banner-alert:hover {
        background-color: #ff6666;
    }


/********************
 DROPDOWN
********************/

/* https://www.w3schools.com/css/css_dropdowns.asp */

.dropdown-button {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #606060;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    text-align: left;
    font-size: 12px;
}

.dropdown-content a {
    color: #bbb;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: #565656;
    color: #e6e6e6;
}

.dropdown-item:not(:first-child) {
    border-top: 1px solid #777;
}

.dropdown-icon {
    font-size: 18px;
    margin-right: 10px;
    min-width: 20px;
}

/********************
 SPLASH
********************/

.splash {
    border-top: 2px solid #999;
    border-bottom: 2px solid #aaa;
    text-align: center;
}

.splash-home {
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../content/images/splash-home.jpg');

}

.splash-content {
    min-height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.splash-text {
    display: inline-block;
    width: 1200px;
    margin-top: 140px;
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 300;
    color: white;
    text-shadow: 2px 2px 6px #000;
    text-align: center;
}

/********************
 SUB MENU
********************/

.section-submenu {
    padding-top: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #bbb;
    background-color: #999;
}

.submenu-container {
    display: flex;
    justify-content: center;
}

.submenu-item {
    position: relative;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    padding-bottom: 4px;
}

.submenu-item:hover .submenu-icon, .submenu-item:hover .submenu-title {
    color: #eee;
}

.submenu-icon {
    color: #bbb;
    margin-left: 16px; 
    margin-right: 16px; 
    cursor: pointer;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.submenu-icon:hover {
    color: #eee;
}

.submenu-title {
    font-size: 11.5px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ddd;
}

.submenu-active {
    color: #eee;
}

/********************
 SECTION
********************/

section {
    z-index: -1;
}

.section-padding {
    padding-top: 20px;
    padding-bottom: 40px;
}

.content {
    width: 1200px;
    margin: 0px auto;
}

.section-light {
    background-color: #eee;
}

.section-dark {
    background-color: #e6e6e6;
}

.section-dark-gray {
    background-color: #777;
}

.section-blue {
    background-color: #84a3e1;
}

.section-green{
    background-color: #00b359;
}

/********************
 ITEM
********************/

.item {
    margin-bottom: 10px;
    
}

.item-header {
    display: flex;
    /*align-items: baseline;*/
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.item-header:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.item-header-child {
    background-color: rgba(0, 0, 0, 0.04);
}

.item-header-child:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.item-icon {
    text-align: center;
    padding: 12px;
    font-size: 30px;
    color: rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.03);
    margin-top: -10px;
    margin-left: -10px;
    margin-bottom: -10px;
    margin-right: 14px;
    line-height: 0px;
    min-width: 38px;
    align-self: center;
    border-radius: 6px;
}

.item-icon-blue {
    color: rgba(255,255,255,0.65);
    background-color: #4db8ff;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.item-icon-blue:hover {
    background-color: #33adff;
}

.item-icon-lightblue {
    color: rgba(255,255,255,0.65);
    background-color: #80ccff;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.item-icon-lightblue:hover {
    background-color: #66c2ff;
}

.item-title {
    text-align: left;
    font-size: 16px;
    color: #888;
    flex-shrink: 0;
    padding-top: 3px; /* had to kill the align: baseline for parent to accommodate spark */
}

.item-description {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
    color: #999;
    padding-top: 7px; /* had to kill the align: baseline for parent to accommodate spark */
}

.item-actions {
    margin-left: auto;
    display: flex;
    flex-shrink: 0;
    margin-top: 1px;
}

.item-spark {
    margin-left: 5px;
}

.item-tag {
    font-size: 14px;
    padding-top: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 4px;
    margin-left: 5px;
    background: rgba(0, 0, 0, 0.14);
    color: rgba(255, 255, 255, .85);
}

.item-button {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(255, 255, 255, 0.6);

    margin-left: 8px;

    padding-top: 2px;
    padding-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;

    font-size: 17px;
    flex-shrink: 0;

    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.item-button:hover {
    background-color: rgba(0, 0, 0, 0.16);
}

.item-button-green
{
    background-color: #aacd65;
}

.item-button-green:hover
{
    background-color: #a0c752;
}

.item-icon-border-red {
    border-left: 4px solid #ff704d;
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

.item-icon-border-green {
    border-left: 4px solid #95c13e;
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

.item-icon-border-orange {
    border-left: 4px solid #ff9933;
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

.item-icon-border-gray {
    border-left: 4px solid #b9b9b9;
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

.item-icon-border-blue {
    border-left: 4px solid #4db8ff;
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

.item-content {
    display: none;
    margin-top: 10px;
}

/********************
 MESSAGE
********************/

.message-body{
    display: none;
    margin-top: 10px;
    padding: 16px 20px 16px 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-left: 4px solid rgba(0, 0, 0, 0.06);
}

/********************
 INFO BOX
********************/

.infobox-container {
    display: flex;
    justify-content: space-between;
}

.infobox {
    text-align: center;
}

.infobox-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ff6600;
    margin-top: 14px;
    margin-bottom: 8px;
}

.infobox-divider {
    width: 100px;
    background-color: rgba(0, 0, 0, 0.15);
    min-height: 3px;
    margin: 0px auto;
}

.infobox-description {
    width: 340px;
    margin: 0px auto;
    margin-top: 12px;
}

/********************
 ICON BOX
********************/

.iconboxes {
    display: flex; 
    justify-content: space-around; 
    margin-top: 60px; 
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.iconbox {
    flex-basis: 300px; 
    background-color: rgba(0, 0, 0, 0.04); 
    padding: 30px; 
    border-bottom: 4px solid rgba(0, 0, 0, 0.05); 
    border-radius: 10px; 
    text-align: center;
}

.iconbox-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 38px;
    margin-bottom: 34px;
    line-height: 0px;
}

.iconbox-description {

}

.iconbox-icon {
    margin-top: -70px; 
    font-size: 42px;
}

.iconbox:nth-child(n+4)
{
    margin-top: 52px;
}

/********************
 TABS
********************/

.tabs {
    margin: auto;
    border-bottom: 1px solid #99d6ff;
    position: relative;
    text-align: center;
    overflow: hidden;
    display: inline-block;
}

.tab {
    color: #4db8ff;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0px;
    margin-right: 0px;
    cursor: pointer;
}

.tab:hover {
    color: #0099ff;
    border-bottom: 3px solid #0099ff;
}

.tab-active {
    color: #0099ff;
    border-bottom: 3px solid #0099ff;
}

.tab-content {
}

.tab-page {
    display: none;
    margin-top: 40px;
}

.tab-page-active {
    display: block;
}

/********************
 FIELDS
********************/

.field-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.textbox {
    height: 40px;
    padding-left: 4px;
}

.field-caption {
    font-family: 'Raleway', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: gray;
}

/********************
 TAGS
********************/

.tag {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    margin: 1px 1px;
    flex-shrink: 0;
    flex-grow: 1;
    cursor: pointer;
}

.tag:hover {
    opacity: 0.8;
}

/********************
 PAGE ATTRIBUTES
********************/

.page-attributes {
    width: 100%;
    display: flex;
    justify-content: flex-end;

    position: absolute;
    top: 0px;
    
}

.page-attribute-tag {
    padding: 6px 20px 6px 20px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.18);
    color: white;
    margin: 0px 2px 0px 2px;
    flex-shrink: 0;
    flex-grow: 0;
    cursor: pointer;
    position: relative;
    /*z-index: 1;*/

    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.page-attribute-tag:hover {
    background-color: rgba(0, 0, 0, 0.22);
}

.page-attribute-button {
    background-color: rgba(0, 0, 0, 0.06);
    color: #eee;

    margin-left: 8px;

    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;

    font-size: 14px;
    flex-shrink: 0;

    cursor: pointer;

    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.page-attribute-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/********************
 COLORS
********************/

.bg-blue {
    background-color: #4db8ff;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-blue:hover {
    background-color: #33adff;
}

.bg-green {
    background-color: #95c13e;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-green:hover {
    background-color: #86ad38;
}

.bg-lightgreen {
    background-color: #aacd65;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-lightgreen:hover {
    background-color: #a0c752;
}

.bg-red {
    background-color: #ff704d;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-red:hover {
    background-color: #ff5c33;
}

.bg-lightred {
    background-color: #ff9980;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-lightred:hover {
    background-color: #ff8566;
}

.bg-orange {
    background-color: #ff9933;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-orange:hover {
    background-color: #ff8c1a;
}

.bg-gray {
    background-color: rgba(0, 0, 0, 0.16);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.bg-gray:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.color-blue {
    color: #4db8ff;
}

.color-green {
    color: #95c13e;
}

.color-dark-green {
    color: #87ae58;
}

.color-red {
    color: #ff704d;
}

.color-orange {
    color: #ff9933;
}

.color-gray {
    color: #b9b9b9;
}

/********************
 GAUGE
********************/

.gauge-title {
    color: #0099ff;
    text-align: center;
    margin-top: 16px;
}

.gauge-unit {
    color: #4db8ff;
    position: relative;
    top: 130px;
    font-family: 'Verdana';
    color: #aaa;
    font-size: 13px;
}

.gauge-unit-mini {
    color: #4db8ff;
    position: relative;
    top: 93px;
    font-family: 'Verdana';
    color: #aaa;
    font-size: 11px;
}

/********************
 BUTTONS
********************/

.button {
    color: rgba(0, 0, 0, 0.5);
    width: 200px;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.button:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.button-blue {
    color: #0099ff;
    border: 1px solid #80ccff;
}

.button-blue:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.button-green {
    color: white;
    background-color: #aacd66;
    border: 1px solid #87ae58;
}

.button-green:hover {
    background-color: #95c13e;
}

.button-red {
    color: white;
    background-color: #ff9999;
    border: 1px solid #ff8080;
}

.button-red:hover {
    background-color: #ff8080;
}

.button-lightgray {
    border: 1px solid #ccc;
    background-color: #ddd;
}

.button-lightgray:hover {
    background-color: #d6d6d6;
}

.button-gray {
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.03);
}

.button-gray:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.button-darkgray {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.08);
}

.button-darkgray:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.button-transparent {
    border: 1px solid #ccc;
}

.button-transparent:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/********************
 LABELS
********************/

.labels {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 0px;

    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.label-active {
    font-size: 12px;
    padding: 14px 12px 14px 12px;
    cursor: pointer; 
    margin: 6px 4px 0px 4px;
    border: 1px solid #1aa3ff;
    background-color: #1aa3ff;
    color: #eee;
}

.label-inactive {
    color: #0099ff;
    font-size: 12px;
    padding: 14px 12px 14px 12px; 
    cursor: pointer; 
    margin: 6px 4px 0px 4px;
    border: 1px solid #66c2ff;
}

.label-inactive:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/********************
 ALERT
********************/

.alert {
    padding: 14px;
    color: white;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 6px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.alert.success {
    background-color: #66cc66;
    border-left: 4px solid #39ac39;
}

.alert.success:hover {
    background-color: #40bf40;
}

.alert.info {
    background-color: #75b0f0;
    border-left: 4px solid #4796eb;
}

.alert.info:hover {
    background-color: #5ea3ed;
}

.alert.warning {
    background-color: #f4ab57;
    border-left: 4px solid #f19327;
}

.alert.warning:hover {
    background-color: #f39f3f;
}

.alert.fatal {
    background-color: #ef998f;
    border-left: 4px solid #e97063;
}

.alert.fatal:hover {
    background-color: #ec8579;
}

.alert.info {
    background-color: #4db8ff;
    border-left: 4px solid #0099ff;
}

.alert.info:hover {
    background-color: #33adff;
}

.alert a:link {
    color: white;
    text-decoration: underline;
}

.closebtn {
    margin-left: 15px;
    padding-top: 1px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/********************
 BADGE
********************/

.badge {
    position: absolute;
    border-radius: 50%;
    background-color: #ff6666;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}

/********************
 ASSESSMENT URL
********************/

.assessment-url{
    border: 1px solid #ff8000; 
    background-color: #ffa64d; 
    color: white; 
    font-size: 15.5px; 
    padding: 16px; 
    text-align: center; 
    cursor: pointer; 
    margin-bottom: 10px;

    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.assessment-url:hover {
    background-color: #ff9933;
}

/********************
 TOOLTIP
********************/

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    font-size: 13px;
    visibility: hidden;
    width: 140px;
    background-color: #999;
    color: #eee;
    text-align: center;
    border-radius: 6px;
    padding: 4px 8px;
    position: absolute;
    z-index: 1;
    top: 117%;
    left: 50%;
    margin-left: -78px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 98%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #999 transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/********************
 FOOTER
********************/

.footer {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.bg-footer {
    background-color: #6c6c6c;
}

/********************
 FANCYBOX
********************/

.fancybox-slide--video .fancybox-content {
	/*width  : 800px;
	height : 400px;*/
	max-width  : 80%;
	/*max-height : 60%;*/
}

/********************
 BACK TO TOP
********************/

.back-to-top {
    background: none;
    margin: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 100;
    display: none;
    text-decoration: none;
    color: #ccc;
}

.back-to-top i {
    font-size: 40px;
    color: black; 
    opacity: 0.1; 
    margin-right: 20px;

    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.triangle {
    width: 0;
    height: 0;
    border-top: 16px solid #c0df82;
    border-left: 16px solid transparent;
    right: 0px;
    position: absolute;
}

.back-to-top i:hover {
    opacity: 0.2;
}

/********************
 OTHER
********************/

.ellipses {
    /* Element also needs defined width */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-active, .dot:hover {
    background-color: #bbb;
}

.page-icon {
    text-align: center; 
    margin-top: 20px; 
    margin-bottom: 26px; 
    font-size: 60px;
    line-height: 0px;
    color: #ffa64d;
}

.chart-active{
    display: block;
}

.chart-inactive{
    display: none;
}

/********************
 DX Token
********************/

.dx-token{
    line-height: 23px;
}

/********************
 DX grid cell ellipses
********************/

.dxGridCellEllipses
{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/********************
 DX vertical grid
********************/

.dxvgHEC 
{
    background-color: #eee !important;
}

/********************
 Hint
********************/

div.dxhControl .dxh-title {
    background-color: #777;
    color: #eee;
}
/*Main Content*/
div.dxhControl .dxh-content {
    background-color: #777;
    color: #eee;
}
/*Right Callout*/
div.dxhControl.dxh-right .dxh-callout:after {
    border-right-color: #777;
}
/*Top Callout*/
div.dxhControl.dxh-top .dxh-callout:after {
    border-top-color: #777;
}
/*Bottom Callout*/
.dxhControl.dxh-bottom .dxh-callout:after {
    border-bottom-color: #777;
}
/*Left Callout*/
.dxhControl.dxh-left .dxh-callout:after {
    border-left-color: #777;
}

/********************
 Modal
********************/

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 140px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    position: relative;
    background-color: #eee;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 440px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    overflow: auto;

    -webkit-animation-name: animatePopup;
    -webkit-animation-duration: 0.4s;
    animation-name: animatePopup;
    animation-duration: 0.4s
}

.modal-header {
    padding: 16px;
    background-color: #4db8ff;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    color: white;
    min-height: 8px;
    padding: 8px 12px 8px 12px;
    background-color: #4db8ff;
}

@-webkit-keyframes animatePopup {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatePopup {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/********************
 Ajax
********************/

body.wait *, body.wait
{
    cursor: progress !important;
}

/********************
 Animations
********************/

.fadeinout-green {
    color: #bbb;
    -webkit-animation: fadeinout-green 1.5s linear forwards infinite;
    animation: fadeinout-green 1.5s linear forwards infinite;
}

@-webkit-keyframes fadeinout-green {
  50% { color: #00e600; }
}

@keyframes fadeinout-green {
  50% { color: #00e600; }
}

.fadeinout-red {
    color: #bbb;
    -webkit-animation: fadeinout-red 1.5s linear forwards infinite;
    animation: fadeinout-red 1.5s linear forwards infinite;
}

@-webkit-keyframes fadeinout-red {
  50% { color: #ff8080; }
}

@keyframes fadeinout-red {
  50% { color: #ff8080; }
}

/********************
 wow
********************/

.wow {
  visibility: hidden;
}

/********************
 Callout
********************/

.callout {
    position: fixed;
    bottom: 40px;
    right: 40px;
    margin-left: 20px;
    min-width: 300px;
    max-width: 300px;
    background-color: #bbb;
    cursor: pointer;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, .3);
    text-align: left;

    transition: background-color 0.6s ease;

    animation: callout-fadein 0.5s 1s forwards;
    -moz-animation: callout-fadein 0.5s 1s forwards;
    -webkit-animation: callout-fadein 0.5s 1s forwards;
}

.callout-header {
    background: #00b300;
    font-size: 20px;
    color: white;
    display: flex;
}

.callout:hover #divCallout-Header {
    background-color: #009900;
}

.callout:hover #divCallout-Body {
    background-color: #aaa;
}

.callout-body {
    padding: 14px 18px 14px 18px;
    color: black;
}

.callout-icon {
    font-size: 24px; 
    padding-left: 12px; 
    padding-top: 12px;
}

.callout-hide {
    animation: callout-fadeout 0.5s forwards;
    -moz-animation: callout-fadeout 0.5s forwards;
    -webkit-animation: callout-fadeout 0.5s forwards;
}

@keyframes callout-fadein {
    to { opacity:1; }
}

@keyframes callout-fadeout {
    to {opacity: 0;}
}

@-webkit-keyframes callout-fadein {
    to {right: 40px; opacity: 1;}
}

@-webkit-keyframes callout-fadeout {
    to {opacity: 0;}
}

@-moz-keyframes callout-fadein {
    to {right: 40px; opacity: 1;}
}

@-moz-keyframes callout-fadeout {
    to {opacity: 0;}
}

/********************
 FAQ
********************/

.faqs
{

}

.faq:last-child 
{
    border-bottom: none;
}

.faq
{
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.faq-header {
    font-size: 17px;
    padding-top: 10px;
    text-align: left;
}

.faq-panel {
    padding-top: 6px;
    padding-bottom: 6px;
    display: none;
}


/********************
 OTHER
********************/

@media screen and (max-device-width: 480px) {
    body {
        -webkit-text-size-adjust: none;
    }
}