html {
    position: relative;
    min-height: 100%;
}

/* adjust body when menu is open */
body.slide-active {
    /* /* overflow-x: hidden; * */
    margin-bottom: 30px;
}
/*first child of #page-content so it doesn't shift around*/
.no-margin-top {
    margin-top: 0px !important
}
/*wrap the entire page content but not nav inside this div if not a fixed top, don't add any top padding */
#page-content {
    position: relative;
    padding-top: 70px;
    left: 0;
}
#page-content.slide-active {
    padding-top: 0
}
.footer {
    position: static;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 30px;

}
/* CSS FIX TO KEEP FOOTER ON THE BOTTOM */
.container-if-fixed-footer {
    margin-bottom:40px;
}

.form label {
    margin-left: 0px;
    color: #999999;
}
.submit input {
    width: 100px;
    height: 40px;
    background-color: #474E69;
    color: #FFF;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

/* CSS FOR MAP */
#map {
    position: relative;
    width:100%;
    height: 100%;
}

/* .map-popup {
    color: black !important;
} */

.map-popup > table {
    border-collapse: collapse;
}

div.map-popup table tbody tr td {
    color: black !important;
    padding: 4px 4px 4px 6px;
}

.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{
    top:0;left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:focus>.dropdown-menu{
    display:block;
}
.dropdown-submenu>a:after{
    display:block;content:" ";
    float:right;width:0;height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:focus>a:after{
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left{
    float:none;
}.dropdown-submenu.pull-left>.dropdown-menu{
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;}


/* CENTERING CONTAINERS */
.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.navbar-brand,
.navbar-nav li a {
    min-height:0px;
    line-height: 65px;
    height: 70px;
    padding-top: 0;
    font-size: 18px;
}
.emphasis{
    font-weight: bold;
    font-size:  20px !important;
}

.non-emphasised{
    font-weight: normal;
    font-size:  14px !important;
}

.fill{
    max-width: 100vw;
    height: auto;
    width: auto;
    max-height: 100vh;

}

.form-inline .form-group{
    margin-left: 0;
    margin-right: 0;
}

.checkbox-fix{
    position: relative !important;
}

.container-table {
    display: table;
}
.vertical-center-row {
    display: table-cell;
    vertical-align: middle;
}

@import url(http://fonts.googleapis.com/css?family=Open+Sans);
#circle-shape-example {
    font-family: Open Sans, sans-serif;
    margin: 3rem;
}


#circle-shape-example p {
    line-height: 1.5;
    font-size: 18px;

}
#circle-shape-example .curve {
    width: 30%; height: auto;
    min-width: 100px;
    float: left;
    margin-right:5rem;
    /*border-radius: 50%;*/
/*-webkit-shape-outside:circle();
  shape-outside:ellipse();*/
}

/*----- Cookie Bar STARTS HERE -----*/
#cookie-bar {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-top: 10px !important;
    height: 70px !important;
    border-top: 1px solid #303030;
    z-index: 2000 !important;
}
/*----- Cookie Bar ENDS HERE -----*/

/*----- Image Overlay STARTS HERE -----*/
.overlay-bottom {
    position: absolute;
    bottom: 0%;
    left: 50%;
    background-color: white;
    opacity: 0.6;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.overlay-center {
    display: block;
    position: absolute;
    z-index: 10;
    width: 90%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1 !important;
    transition: 1s ease-in-out;
}

.overlay-center-out {
    opacity: 0 !important;
    transform: scale(0.1, 0.1) translateX(-500%);
    top: 80%;
    transition: 1s ease-in-out;
}

.overlay-text {
    text-shadow: 2px 2px 1px black;
    font-weight: bold;
}

.btn-overlay {
    font-size: 2em;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    padding: 10px 50px;
    margin-left: 20px;
    margin-right: 20px;
    transition: 0.25s ease-in-out !important;
}

.btn-overlay:hover, .btn-overlay:focus, .btn-overlay:visited {
    color: white;
    text-decoration: none;
}

.btn-overlay:hover {
    transition: 0.25s ease-in-out !important;
    /* background-color: rgba(0, 0, 0, 0.7); */
    background: linear-gradient(to right, #4169e1, #87ceeb);
}

@media screen and (max-width: 600px) {
    .overlay-center h1,
    .overlay-center h2,
    .overlay-center h3 {
        margin-top: 5px !important;
    }

    .overlay-center h1 {
        font-size: 1em;
        margin-top: 5px !important;
    }

    .overlay-center h2,
    .overlay-center h3 {
        font-size: 0.9em;
    }

    .btn-overlay {
        font-size: 0.9em;
        padding: 5px 10px;
    }
}
/*----- Image Overlay ENDS HERE -----*/

.fullscreen {
    width: 10%;
    height: 10%;
}

/*carousel*/
.item{
    transition: .2s ease-in-out left;
}
/*Image for the background image on index*/
.background-home{
    background-image: url("/images/background.jpg");
    background-size: cover;
}

/*Text color for text on background in index*/
.textcolor{
    color: white;
}

/*Map Resize*/
.resize {
    margin-left: 20px;
}

#slide-nav {
    margin-bottom: 0px !important;
}
#page-content {
    padding-top: 0px !important;
}
/*Background on staff */
.box {
    border: solid 2px black;
}
/*Wrinting under navbar-brand*/
.navbar-brand {
    line-height:12px;
    padding-top:20px;
    padding-bottom:5px;
    /* padding-right: 0px !important; */
}
.navbar-right {
    padding-right: 5px !important;
    padding-left: 5px !important;
}
.navbar-brand small {
    display:block;
    font-size:12px;
}
/* .peopleCarouselImg {
    height: 100%;
    max-height: 100vh;
} */
.thumbnail-image-center {
    text-align: center;
}
.icon-bar{
    height: 12px !important;
    width: 40px !important;
}
.gplay{
    height: 45px !important;
}
.graphCenter{
    position:relative;
    top:50%;
    transform:translate(0,50%);
}
.hand {
    cursor: pointer; cursor: hand;
}
.hand:hover{
    opacity: 0.3;
    filter: alpha(opacity=30);
}
.google-visualization-tooltip{
    z-index: 1000;
}

.controls {
    margin-top: 5px;
    border: 1px solid transparent;
    border-radius: 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 40px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input {
    background-color: #fff !important;
    color: #000 !important;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 75%;
}

#pac-input:focus {
    border-color: #4d90fe;
}

.pac-container {
    font-family: Roboto;
}

#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}

#type-selector label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}

.dropdown-menu .divider {
    margin: 0px !important;
}

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

.footer-fix {
    margin-bottom: 0px !important;
}

/*/// change this
@media (min-width: 768px)*/
.navbar {
    border-radius: 0px !important;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
    height: 75vh;
}

/*----- HOME STARTS HERE -----*/

/* Platform devices colour */
.indexPage__devices i.fa.fa-mobile.fa-2x {
    color: #4285f4;
}

.indexPage__devices i.fa.fa-tablet.fa-2x {
    color: #4285f4;
}

.indexPage__devices i.fa.fa-desktop.fa-2x {
    color: #4285f4;
}

/* 1st tables check colour */
.indexPage__table i.fa.fa-check {
    color: #04AA6D;
}

/* 1st tables check colour */
/* a > i.fa.fa-check, button > i.fa.fa-check {
    color: #FFFFFF;
} */

/* 2nd tables, nav and header menus icons colours */
/* Profile Dashboard */
.navbar-nav i.fa.fa-indent,
.sidebar-nav i.fa.fa-indent, 
.indexPage__table i.fa.fa-indent {
    color: #4285f4;
}

/* i.fa.fa-fort-awesome {
    color: #4285f4;
} */

/* .homepage-table i.fa.fa-list {
    color: #4285f4;
} */

/* .homepage-table i.fa.fa-bar-chart {
    color: #4285f4;
} */

/* Financials */

.navbar-nav i.fa.fa-line-chart,
.sidebar-nav i.fa.fa-line-chart, 
.indexPage__table i.fa.fa-line-chart {
    color: #87ceeb;
}

.navbar-nav i.fa.fa-calculator,
.sidebar-nav i.fa.fa-calculator, 
.indexPage__table i.fa.fa-calculator {
    color: #87ceeb;
}

.navbar-nav i.fa.fa-database,
.sidebar-nav i.fa.fa-database, 
.indexPage__table i.fa.fa-database {
    color: #87ceeb;
}

.navbar-nav i.fa.fa-money,
.sidebar-nav i.fa.fa-money, 
.indexPage__table i.fa.fa-money {
    color: #87ceeb;
}

.navbar-nav i.fa.fa-clipboard,
.sidebar-nav i.fa.fa-clipboard, 
.indexPage__table i.fa.fa-clipboard {
    color: #87ceeb;
}

.navbar-nav i.fa.fa-wrench,
.sidebar-nav i.fa.fa-wrench, 
.indexPage__table i.fa.fa-wrench {
    color: #87ceeb;
}


/* Actions */
.navbar-nav i.fa.fa-map-marker,
.sidebar-nav i.fa.fa-map-marker, 
.indexPage__table i.fa.fa-map-marker {
    color:#30d5c8;
}

.navbar-nav i.fa.fa-tasks,
.sidebar-nav i.fa.fa-tasks, 
.indexPage__table i.fa.fa-tasks {
    color:#30d5c8;
}

.navbar-nav i.fa.fa-skyatlas,
.sidebar-nav i.fa.fa-skyatlas, 
.indexPage__table i.fa.fa-skyatlas {
    color:#30d5c8;
}

.navbar-nav i.fa.fa-retweet,
.sidebar-nav i.fa.fa-retweet, 
.indexPage__table i.fa.fa-retweet {
    color:#30d5c8;
} 

.navbar-nav i.fa.fa-th,
.sidebar-nav i.fa.fa-th, 
.indexPage__table i.fa.fa-th {
    color:#30d5c8;
} 

.navbar-nav i.fa.fa-anchor,
.sidebar-nav i.fa.fa-anchor, 
.indexPage__table i.fa.fa-anchor {
    color:#30d5c8;
}

.navbar-nav i.fa.fa-users,
.sidebar-nav i.fa.fa-users, 
.indexPage__table i.fa.fa-users {
    color:#30d5c8;
} 

.navbar-nav i.fa.fa-flask,
.sidebar-nav i.fa.fa-flask, 
.indexPage__table i.fa.fa-flask {
     color:#30d5c8;
}

/* Pet Management */
.navbar-nav i.fa.fa-balance-scale,
.sidebar-nav i.fa.fa-balance-scale, 
.indexPage__table i.fa.fa-balance-scale {
/* color:  #4362F2; */
    color: #FFA500;
}

.navbar-nav i.fa.fa-microchip,
.sidebar-nav i.fa.fa-microchip, 
.indexPage__table i.fa.fa-microchip {
color:  #FFA500;
}

.navbar-nav i.fa.fa-file,
.sidebar-nav i.fa.fa-file, 
.indexPage__table i.fa.fa-file {
color:  #FFA500;
}

.navbar-nav i.fa.fa-venus-mars,
.sidebar-nav i.fa.fa-venus-mars, 
.indexPage__table i.fa.fa-venus-mars {
color:  #FFA500;
}

.navbar-nav i.fa.fa-sticky-note,
.sidebar-nav i.fa.fa-sticky-note, 
.indexPage__table i.fa.fa-sticky-note {
color:  #FFA500;
}

.navbar-nav i.fa.fa-truck,
.sidebar-nav i.fa.fa-truck, 
.indexPage__table i.fa.fa-truck {
color:  #FFA500;
}

.navbar-nav i.fa.fa-eyedropper,
.sidebar-nav i.fa.fa-eyedropper, 
.indexPage__table i.fa.fa-eyedropper {
color:  #30d5c8;
}

/* Nitrate Management */
.navbar-nav i.fa.fa-leaf,
.sidebar-nav i.fa.fa-leaf, 
.indexPage__table i.fa.fa-leaf {
    color:#00ff00;
}

.navbar-nav i.fa.fa-paw,
.sidebar-nav i.fa.fa-paw, 
.indexPage__table i.fa.fa-paw {
    color: #00ff00;
}

.navbar-nav i.fa.fa-cubes,
.sidebar-nav i.fa.fa-cubes, 
.indexPage__table i.fa.fa-cubes {
    color: #00ff00;
}

.navbar-nav i.fa.fa-codepen,
.sidebar-nav i.fa.fa-codepen, 
.indexPage__table i.fa.fa-codepen {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-cube,
.sidebar-nav i.fa.fa-cube, 
.indexPage__table i.fa.fa-cube {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-hourglass-end,
.sidebar-nav i.fa.fa-hourglass-end, 
.indexPage__table i.fa.fa-hourglass-end {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-sliders,
.sidebar-nav i.fa.fa-sliders, 
.indexPage__table i.fa.fa-sliders {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-recycle,
.sidebar-nav i.fa.fa-recycle, 
.indexPage__table i.fa.fa-recycle {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-sliders,
.sidebar-nav i.fa.fa-sliders, 
.indexPage__table i.fa.fa-sliders {
    color:  #00ff00;
}

.navbar-nav i.fa.fa-recycle,
.sidebar-nav i.fa.fa-recycle, 
.indexPage__table i.fa.fa-recycle {
    color:  #00ff00;
}

/* right top plus menu */
.sidebar-nav i.fa.fa-fw.fa-product-hunt.fa-m-fix {
    color:   #87ceeb !important;
}

/* Telemetry */
.navbar-nav i.fa.fa-map-o,
.sidebar-nav i.fa.fa-map-o, 
.indexPage__table i.fa.fa-map-o {
    color: #ffff00;
}

.navbar-nav i.fa.fa-map-pin,
.sidebar-nav i.fa.fa-map-pin, 
.indexPage__table i.fa.fa-map-pin {
    color: #ffff00;
}

/* left side navigation menu and in the top right user account menu */
.navbar-nav i.fa.fa-fw.fa-th-large.fa-m-fix,
.sidebar-nav i.fa.fa-fw.fa-th-large.fa-m-fix {
    color: #00ffff;
}

.navbar-nav i.fa.fa-fw.fa-cogs.fa-m-fix,
.sidebar-nav i.fa.fa-fw.fa-cogs.fa-m-fix {
    color: #00ffff;
}


.navbar-nav i.fa.fa-fw.fa-sign-out.fa-m-fix,
.sidebar-nav i.fa.fa-fw.fa-sign-out.fa-m-fix {
    color: #00ffff;
}

/* left side navigation menu and on the top right corner (still keep the white background on hover) */
/* left nav */
.navbar-header i.fa.fa-fw.fa-sign-in.fa-m-fix {
    color: #4285f4;
}

.navbar-header i.fa.fa-fw.fa-user-plus.fa-m-fix {
    color: #4285f4;
}
/* i.fa.fa-fw.fa-user-plus.fa-m-fix {
    color: #00ffff;
} */
/* homepage top right corner before signup-login */
.navbar-header i.fa.fa-sign-in.fa-2x {
    color: #4285f4;
    /* font-size: inherit; */
    /* font-size: 18px; */
}

.navbar-header i.fa.fa-sign-in.fa-2x:hover {
    color: #ffffff;
}
/* i.fa.fa-user-plus.fa-2x {
    color: #4285f4;
} */
.navbar-header i.fa.fa-user-plus.fa-2x {
    color: #4285f4;
    /* font-size: inherit; */
    /* font-size: 18px; */
}
.navbar-header i.fa.fa-user-plus.fa-2x:hover {
    color: #ffffff;
}

/* Pricing Plans bacground */
.panel-body {
    background-color: #0000ff !important;
}

.features {
    margin-bottom: 40px;
}

.features > h4 {
    /* font-style: italic !important; */
    font-size: 1.2em;
}

/* .farm-management {
    color: #337ab7;
} */

.farm-management {
    color: #ff550b !important;
}

/* .software-functions {
    color: #3c763d;
}

.enterprise-hardware-technologies {
    color: #a94442;
}

.enterprise-services {
    color: #31708f;
} */

.software-functions {
    color: #0000ff !important;
}

.enterprise-hardware-technologies {
    color: #4169e1 !important;
}

.enterprise-services {
    color: #87ceeb !important;
}

table.table-orange,
table.table-orange thead tr th,
table.table-orange tbody tr td {
    /* border-color: #ff550b !important; */
    vertical-align: middle;
    text-align: center;
}

table.table-orange thead tr th {
    background-color: #000 !important;
}

table.table-orange tbody tr td {
    white-space: nowrap !important;
}

table.table-fa-right i {
    float: right;
    margin-right: 10px;
}

.bg-gray {
    background: #1C1C1B;
}

table.table-orange {
    border: none;
    border-top: 1px solid #ff550b !important;
}


/*----- HOME ENDS HERE -----*/

/*----- HELPERS STARTS HERE -----*/
.text-white {
    color: white !important;
}

.text-blue {
    color: #679fff !important;
}

.text-lg {
    font-size: 4em;
}

.separator-sm {
    height: 2rem !important;
}

.separator {
    height: 4rem !important;
}

.separator-lg {
    height: 6rem !important;
}

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

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

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pt-1 {
    padding-top: 1rem !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pl-1 {
    padding-left: 1rem !important;
}

.pr-1 {
    padding-right: 1rem !important;
}

.pt-2 {
    padding-top: 2rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

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

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

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

.mb-1 {
    margin-bottom: 1rem !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

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

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

.ml-2 {
    margin-left: 2rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

/* .chart-shadow {
    box-shadow: 5px 5px 10px black;
} */

hr.faded-short {
    width: 50% !important;
    border-top: 1px solid #444;
}

.my-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.py-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.border-none {
    border: none !important;
}

.border-bottom-none {
    border-bottom: none !important;
}
/*----- HELPERS ENDS HERE -----*/

/*----- Navigation STARTS HERE -----*/
#menu-toggle {
    margin: -6px -5px 0px 0px !important;
}

.navbar-brand-fa-fix {
    margin-top: -6px !important;
}

#sidebar-wrapper {
    margin-left: -310px;
    left: 0;
    width: 310px;
    background: #222;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.15s ease-in 0s;
    -webkit-transition: all 0.15s ease-in 0s;
    -moz-transition: all 0.15s ease-in 0s;
    -ms-transition: all 0.15s ease-in 0s;
    -o-transition: all 0.15s ease-in 0s;
}

#sidebar-wrapper.active {
    left: 310px;
    width: 310px;
    transition: all 0.15s ease-out 0s;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
}

#sidebar-wrapper-user {
    margin-right: -310px;
    right: 0;
    width: 310px;
    background: #222;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.15s ease-in 0s;
    -webkit-transition: all 0.15s ease-in 0s;
    -moz-transition: all 0.15s ease-in 0s;
    -ms-transition: all 0.15s ease-in 0s;
    -o-transition: all 0.15s ease-in 0s;
}

#sidebar-wrapper-user.active {
    right: 310px;
    width: 310px;
    transition: all 0.15s ease-out 0s;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
}


#sidebar-wrapper-create {
    margin-right: -310px;
    right: 0;
    width: 310px;
    background: #222;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.15s ease-in 0s;
    -webkit-transition: all 0.15s ease-in 0s;
    -moz-transition: all 0.15s ease-in 0s;
    -ms-transition: all 0.15s ease-in 0s;
    -o-transition: all 0.15s ease-in 0s;
}

#sidebar-wrapper-create.active {
    right: 310px;
    width: 310px;
    transition: all 0.15s ease-out 0s;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 310px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 500px;
    padding-bottom: 50px;
}

@media all and (max-width: 430px) {
    .sidebar-nav {
        padding-bottom: 150px;
    }
}

.sidebar-nav li {
    line-height: 35px;
    text-indent: 10px;
}

.sidebar-nav li a {
    color: #999999;
    display: block;
    text-decoration: none;
    padding-left: 10px;
    transition: 0.5s;
}

.sidebar-nav li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: 0.5s;
}

.sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
    font-size: 22px;
    font-weight: bold;
}

.sidebar-nav > .sidebar-brand a {
    color: #c2c2c2;
    padding-left: 0px;
    padding-top: 10px;
    margin-left: -10px;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

.sidebar-nav > .sidebar-sub-brand {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
}

.sidebar-nav > .sidebar-sub-brand a {
    color: #c2c2c2;
    padding-left: 0px;
    margin-left: 0px;
}

.sidebar-nav > .sidebar-sub-brand a:hover {
    color: #fff;
    background: none;
}

.toggle {
    margin: 5px 5px 0 0;
}

.nav-filler {
    height: 70px;
}

.fa-m-fix {
    margin-right: 10px !important;
}

.sidebar-hr {
    margin: 5px auto;
    border-top: 1px solid #444;
}

.sidebar-short {
    width: 80%;
}
/*----- Navigation ENDS HERE -----*/

/*----- Weather STARTS HERE -----*/
#forecast-embed-parent {
    background-color: #EEE !important;
}
/*----- Weather ENDS HERE -----*/

/*----- Scrollbars styling STARTS HERE -----*/
/* width */
::-webkit-scrollbar {
    width: 13px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #222;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #999;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #777;
}
/*----- Scrollbars styling ENDS HERE -----*/

/*----- Mascot STARTS HERE -----*/
#mascot {
    z-index: 1000;
    position: fixed;
    bottom: 0px;
    left: -50px;
    opacity: 0;
    transition: 1s ease-out;
}

#mascot.in {
    left: 10px;
    bottom: 20px;
    opacity: 1;
}
/*----- Mascot ENDS HERE -----*/

/*----- Font Awesome STARTS HERE -----*/
.fa-1-5x {
    font-size: 1.75em !important;
}

@media screen and (max-width: 800px) {
    .fa-5x {
        font-size: 2em !important;
    }
}
/*----- Font Awesome ENDS HERE -----*/

/*----- Data Tables STARTS HERE -----*/
table thead th {
    background-color: white !important;
}

table.dataTable {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.form-group.required .control-label:after {
  content:"*";
  color:red;
}
.dataTables_scrollHeadInner,
.dataTables_scrollFootInner{
    margin: 0 auto;
}

/* Scroll bar only on the top */

/* .dataTables_scrollBody { */
/*     transform:rotateX(180deg); */
/* } */

/* .dataTables_scrollBody table { */
/*     transform:rotateX(180deg); */
/* } */

/*----- Tables ENDS HERE -----*/
/*PRICING SECTION*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
.content-pricing {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 0;
  /*background: #007bff;*/
  /*background: linear-gradient(to right, #4169e1, #87ceeb);*/
  text-align: center;
}
.content-pricing h1, .content-pricing h2, .content-pricing h3, .content-pricing h4, .content-pricing h5, .content-pricing h6{
  font-family: "Roboto", sans-serif;
}
.content-pricing  p {
    margin: 0 0 15px;
    font-weight: 300;
} 
.content-pricing  a {
  text-decoration: none;
  color: #ddd;
}
.content-pricing  a:hover {
  text-decoration: none;
}
.content-pricing  ol, .content-pricing ul {
  list-style: none;
}
.content-pricing  h2 {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1.125em;
    margin: 0 0 .625em;
    letter-spacing: .05em;
}
.btn.blue:hover, .btn.blue.active {
  border-color: #02b3f5;
  background-color: #02b3f5;
  color: #fff;
}
.btn.orange:hover, .btn.orange.active {
  border-color: #FF550B;
  background-color: #FF550B;
  color: #fff;
}


.btn span {
  position: absolute;
  top: -25%;
  right: 4px;
  display: inline-block;
  padding: 1px 2px;
  border-radius: 2px;
  background-color: #427a06;
  font-size: 10px;
  color: #fff;
}
.content-pricing section.plans .tools .inline a {
  position: relative;
}
/*.btn:first-of-type {
  border-radius: 2px 0 0 2px;
}*/
.btn.green:hover, .btn.green.active {
  border-color: #02b3f5;
  background-color: #02b3f5;
  color: #fff;
}
.content-pricing section.plans .tools {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
/*.content-pricing section.plans .tools .type {
  margin-bottom: 16px;
}*/
.content-pricing section.plans .tools .inline {
  color: #414042;
  font-size: 12px;
  text-align: left;
  line-height: normal;
}
.l-price {
  margin-top: 64px;
  margin-bottom: 80px;
}
.c-price-slider__overlay {
  max-width: 530px;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.c-price-slider {
  position: relative;
  z-index: 2;
  max-width: 786px;
  margin: 0 auto;
  padding: 32px;
  background-color: #fff;
  box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, .15);
}
.c-price-slider .swiper-wrapper {
  font-size: 17px;
  line-height: 1.705;
}
.c-price-slider .swiper-slide img {
  margin-top: 32px;
  max-width: 320px;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-price-slider .swiper-button-prev, .c-price-slider .swiper-button-next {
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  left: 8px;
  top: 50%;
  width: 20px;
  height: 30px;
  background-image: url(../images/slider-arrow.svg);
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev, .swiper-button-next {
  width: 16px;
  height: 59px;
  background-size: 100%;
  outline: none;
}
.c-price-slider .swiper-button-next {
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
  left: auto;
  right: 8px;
}
.c-price-slider .swiper-pagination {
  position: relative;
  margin-top: 32px;
}
.plans {
  padding-top: 32px;
  /*background-image: linear-gradient(to bottom, #fff, #fff, #e6e6e6);*/
}
.content-pricing section h2 {
  margin-bottom: 32px;
  margin-top: 45px;
  color: #414042;
  font-size: 28px;
}

.content-pricing .c-price-packages__btn {
  margin: auto;
  display: block;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background-color ease .3s;
  box-shadow: 0 1px 1px 0 rgba(4, 34, 70, .53);
  color: #fff;
  /*background-color: #02b3f5;*/
  background-color: #FF550B;
  font-size: 15px;
  padding: 16px 24px;
  font-weight: 800;
  line-height: 1.6;
}
.plans .btn {
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  position: relative;
  display: inline-block;
  padding: 8px 25px;
  background-color: #fff;
  color: #414042;
  border: 1px solid #ccc;
  font-size: 12px;
  border-radius: 4px;
  box-shadow: unset;
}
.c-price-packages__item {
  margin: 60px auto;
  padding: 80px 16px 32px;
  position: relative;
  text-align: center;
  border-radius: 4px;
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  background-color: #fff;
}
.c-price-packages__figure {
  width: 160px;
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.c-price-packages__month {
  display: flex;
  justify-content: center;
  font-size: 17px;
  margin: 0 auto 16px;
}
.c-price-packages__month-size {
  display: flex;
  font-size: 42px;
  font-weight: 900;
  line-height: 43px;
  margin-right: 4px;
}
.c-price-packages__month-text {
  margin-left: 8px;
  text-align: left;
  width: 55px;
  line-height: 1.2;
}
.c-price-packages__period {
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 16px;
}
.c-price-packages__signature {
  text-transform: none;
  padding-bottom: 0;
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 32px;
  color: #02b3f5;
}
.c-price-packages__signature-size {
  font-size: 30px;
  margin-right: 8px;
}
.c-price-packages__item:hover {
  /*background-color: #02b3f5;*/
  background-color:#FF550B;
  color: #fff
}
.c-price-packages__item:hover .c-price-packages__signature {
  color: #fff
}
.c-price-packages__item:hover .c-price-packages__btn {
  /*color: #02b3f5;*/
  color: #FF550B;
  background-color: #fff;
}
.c-price-free {
  font-size: 17px;
  color: #222;
  line-height: 1.4;
  padding-top: 30px;
  padding-bottom: 48px;
  margin: 0 auto;
}
.cont h3 {
  text-transform: none;
  padding-bottom: 0;
  letter-spacing: 0;
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  margin-bottom: 8px;
  font-size: 20px;
}
.benefits .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}
.benefits {
  padding: 32px 0 0;
}
.benefits h2 {
      margin: 0 auto;
    margin-bottom: 32px;
}
.cont p {
  font-size: 17px;
  line-height: 1.705;
}
.benefits .item {
  display: flex;
  flex-direction: row;
  margin: 32px 0 16px;
  padding: 0 16px;
  text-align: left;
}
.benefits .item .figure {
  -moz-transition: -moz-transform .3s ease;
  -o-transition: -o-transform .3s ease;
  -webkit-transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
  flex: none;
}
.benefits .item .figure img {
  max-width: 120px;
  height: auto;
}

.benefits .item .figure {
  margin: 0 16px 0 0;
}
.faq-block {
  padding: 65px 0 145px;
  /*background-color: #fff;*/
  text-align: left;
}
.faq-block h2 {
  text-align: center;
}
.faq-block .container h2 {
  color: #414042;
  font-size: 20px;
  line-height: normal;
}
.faq-block .subtitle {
  display: block;
  margin: 15px 0 30px;
  color: #414042;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.faq-block .accordeon-item {
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  position: relative;
  width: 100%;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  overflow: hidden;
}
.faq-block .accordeon-item:before {
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  content: '';
  position: absolute;
  top: 30px;
  left: 8px;
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/accordeon-arrow.svg) no-repeat;
  cursor: pointer;
}
.faq-block .accordeon-item .title {
  padding: 25px;
  color: #414042;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
}
.faq-block .accordeon-item .body-container {
  -moz-transition: max-height .6s ease-in-out;
  -o-transition: max-height .6s ease-in-out;
  -webkit-transition: max-height .6s ease-in-out;
  transition: max-height .6s ease-in-out;
  max-height: 0;
  color: #414042;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
}
.faq-block .accordeon-item .body-container .body {
  margin: 0 25px 25px;
}
.faq-block .container ul {
  margin-left: 15px;
  margin-top: 15px;
}
.faq-block .accordeon-item.active:before {
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.faq-block .accordeon-item.active .body-container {
  max-height: 1000px
}
.banner.banner-signup {
  position: relative;
  padding: 50px 0;
}
.banner {
  position: relative;
  width: 100%;
  background-color: #22bada;
  overflow: hidden;
  text-align: center;
}
.banner .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  overflow: hidden;
}
.banner .parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.banner.banner-signup .cont {
  position: relative;
  z-index: 20;
}
.banner-signup .cont h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2.5px;
}
.banner-signup .cont .signup {
  -moz-transition: ease .3s;
  -o-transition: ease .3s;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  display: inline-block;
  margin: 25px auto 0;
  padding: 0 45px;
  border-radius: 6px;
  /*background: #ff8400;*/
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 44px;
}
.banner-signup .parallax:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #22bada;
  opacity: .8;
  z-index: 19;
}
.scheme {
  position: relative;
  padding: 80px 0 48px;
}
.scheme .ball {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #4374b9;
  background-image: url(../images/diagram-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px auto;
  z-index: 11;
}
.content-pricing section.scheme .container img {
  display: none;
}
.content-pricing section.scheme .block {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 32px;
  padding: 30px;
  border-radius: 2px;
  background-color: #fff;
  color: #414042;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
  box-sizing: border-box;
  vertical-align: top;
  text-align: left;
  z-index: 11;
}
section.scheme .block ul {
  padding-left: 15px;
}
.c-price-packages__custom {
  font-size: 35px;
  font-weight: 900;
  line-height: 37px;
  min-height: 74px;
  margin-bottom: 23px;
}

.m-left {
   margin-left: 24px;
}
.m-right {
   margin-right: 24px;
}

ul.fa-ul {
    text-align: left;
}
p.plans-element__lead {
    margin: 20px 0 10px;
    font-size: 18px;
    text-align: center !important;
  }
p.plans-element__trial-info {
    margin-bottom: 10px;
    text-align: center !important;
}
.c-price-packages {
    box-sizing: border-box;
    margin: 0 -16px;
    padding: 32px 0 0;
}
.c-price-packages ul.fa-ul {
    font-size: 16px;
}
.content-pricing .plans h2, .content-pricing .plans h4, .content-pricing .plans p {
    color: #fff;
}
.content-pricing .c-price-free {
    color: #fff;
}
.content-pricing .benefits h2{
    color: #fff;
}
.benefits {
    color: #fff;
}
.faq-block h2{
   color: #fff!important;
}
.faq-block span{
   color: #fff!important;
}
.faq-block .accordeon-item .title {
    color: #fff;
}
.faq-block .accordeon-item .body-container {
    color: #fff;
}

.m-right {
    position: relative;
}
.m-right:after {
    position: absolute;
    right: -24px;
    content: "|";
    color:#000;
}
@media (min-width: 620px) {
  .content-pricing section.plans .tools {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content-pricing section.plans .tools .inline {
    margin-left: 24px;
  }
  .content-pricing section.plans .tools .period {
    flex-basis: 100%;
  }
}
@media (min-width: 900px) {
  .content-pricing section.scheme {
    padding-top: 145px;
  }
  .content-pricing section.scheme .container {
    width: 890px;
    position: relative;
    padding: 0;
  }
  .content-pricing section.scheme .container img {
    display: block;
    position: absolute;
    top: -94px;
    z-index: 10;
  }
  .content-pricing section.scheme .container img.line-1 {
    top: -80px;
    left: 208px;
    width: 215px;
  }
  .content-pricing section.scheme .container img.line-2 {
    top: -100px;
    left: 208px;
    width: 232px;
  }
  .content-pricing section.scheme .container img.line-3 {
    top: -110px;
    right: 209px;
    width: 232px;
  }
  .content-pricing section.scheme .container img.line-4 {
    top: -96px;
    right: 208px;
    width: 215px;
  }
  .content-pricing section.scheme .container .col {
    width: 420px;
  }
  .left {
    float: left;
  }
  .right {
    float: right;
  }
  .clearfix:after {
    content: '';
    display: table;
    clear: both;
  }
  .content-pricing section.scheme .block {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 32px;
    padding: 30px;
    border-radius: 2px;
    /*background-color: #fff;*/
    /*color: #414042;*/
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    box-sizing: border-box;
    vertical-align: top;
    text-align: left;
    z-index: 11;
  }
    .content-pricing section.plans {
        background: #007bff;
        background: linear-gradient(to right, #4169e1, #87ceeb);
    }

  .content-pricing section.scheme .block {
    margin-top: 75px;
  }
  .content-pricing section.scheme .container .col:first-of-type .block:first-of-type {
    margin-top: 0;
  }
  .content-pricing section.scheme .block:before {
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: '';
    position: absolute;
    left: 50%;
    top: -7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff8400;
  }
  section.scheme .block h2 {
    margin: 0;
    font-size: 30px;
    line-height: 34px;
  }
  section.scheme .block p {
    margin-top: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .content-pricing section.scheme .block h3 {
    margin-top: 25px;
    font-size: 14px;
    line-height: 18px;
  }
  section.scheme .block ul {
    padding-left: 15px;
  }
  section.scheme .block ul li {
    padding: 8px 0;
    font-size: 12px;
    line-height: normal;
  }
  section.scheme .block .btn {
    margin-top: 25px;
    padding: 0 40px;
    border: 0;
    /*border-radius: 2px;*/
   /* background-color: #02b3f5;*/
    /*background-color: #fd7e14;*/
    color: #fff;
    line-height: 40px;
  }
  .content-pricing section.plans .tools .type {
    margin-bottom: 0;
  }
  .content-pricing section.plans .tools .period {
    margin-top: 0;
    /*margin-left: 24px;*/
    flex-basis: auto;
  }
}

@media (max-width: 768px) {
.m-left {
   margin-left: 2px;
}
.m-right {
   margin-right: 2px;
}
.plans .btn {
    padding: 8px 22px;
    margin-bottom: 10px;
  }
.content-pricing section.plans .tools {
    text-align: center;
}
.m-right:after {
    content: "";
}
}

/*updates*/
@media (min-width: 900px) {
.c-price-slider .swiper-slide img {
    margin-top: 32px;
    max-width: 430px;
}
}
@media (max-width: 415px) {
.c-price-slider .swiper-slide img {
    margin-top: 32px;
    max-width: 260px;
}
}

.c-price-slider .swiper-button-prev, .c-price-slider .swiper-button-next {
    display: none;
}
/*End updates*/

i.fa.fa-check-circle {
    color: #00CC6F;
}
.c-price-packages__item:hover i.fa.fa-check-circle {
    color: #fff;
}
.c-price-packages__item:hover .text-muted {
  color: #373737 !important;
}
.arrow {
  text-align: center;
  margin: 20px 0;
}
.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
/* banner image on sign up footer*/
}
   .banner.banner-signup {
    background-image: url(../images/footer-liw-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 480px;
    height: 100%;
    position: relative;
}


    .banner.banner-signup::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-color: rgba(34, 186, 218, 0.8);
}
/*End banner image on sign up footer*/

/* card container */
.card-container {
  background-color: #161616;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
}
/* End card container */

b, strong {
    font-weight: bolder;
}
.c-price-packages__item li:not(.text-muted) {
color:#373a3c;
}
.c-price-packages__item:hover li:not(.text-muted) {
  color: #fff
}
.price_per {
   color:#373a3c; 
}
.c-price-packages__item:hover .price_per {
   color:#fff; 
}
.c-price-slider {
    color: #373a3c;
}
hr {
    border-top: 1px solid rgba(0,0,0,.1);
}


/* home page - crossfading */
#homepage-crossfading {
    position: relative;
    height: calc(100vh - 70px);
}
#homepage-crossfading .crossfading-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}
#homepage-crossfading .crossfading-images img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 2s;
}
.home__slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

#image {
    border-radius: 5px;
    height: 220px;
}

.removeCropItem {
    background: #FF550B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    height: 34px;
    width: 34px;
    color: #fff;
    cursor: pointer;
}

.required__asterisk {
    position: absolute;
    right: 30px;
    margin-left: 5px;
    top: 30px;
}
.indexPage__table td, .indexPage__table th {
    position: relative;
    text-align: center;
    width: 16.6%;
    /*max-width: 180px !important;*/
}
.indexPage__table i {
    position: absolute;
    right: 0;
    top: 10px;
}


/*----- Home STARTS HERE -----*/
.farm-management {
    color: #ff550b !important;
}
.farm-management + i {
    color: #ffffff !important;
}

.software-functions {
    color: #0000ff !important;
}
.software-functions + i {
    color: #ffffff !important;
}

.enterprise-hardware-technologies {
    color: #4169e1 !important;
}
.enterprise-hardware-technologies + i {
    color: #ffffff !important;
}

.enterprise-services {
    color: #87ceeb !important;
}
.enterprise-services + i {
    color: #ffffff !important;
}
/*----- Home ENDS HERE -----*/

/* Homepage tables */
.table-borderless>tbody>tr>td, .table-borderless>tbody>tr>th, .table-borderless>tfoot>tr>td, .table-borderless>tfoot>tr>th, .table-borderless>thead>tr>td, .table-borderless>thead>tr>th {
    border: none;
}

.spray__select__wrapper {
    position: relative;
}

.spray__select__wrapper .removeCropItem {
    position: absolute;
    top: 0;
    right: -49px;
}

@media screen and (max-width: 765px){
    .spray__select__wrapper .removeCropItem {
        right: 0;
        width: 8%;
    }

    .spray__select__wrapper:first-child .form-control {
        width: 100%;
    }

    .spray__select__wrapper .form-control {
        width: 90%;
    }
}

#sprayContainer .spray__select__wrapper:first-child, #cropContainer .spray__select__wrapper:first-child {
    margin-top: 0;
}

#sprayContainer .spray__select__wrapper, #cropContainer .spray__select__wrapper  {
    margin-top: 15px;
}
.task__button {
    margin-left: 15px;
}

@media screen and (max-width: 349px) {
    .task__button:first-child {
        margin-bottom: 15px;
    }
}


@media screen and (max-width: 557px){
    .task__button:last-child {
        margin-top: 15px;
    }
}

/* .indexPage__table tr th {
    border: 1px solid #ff550b !important;
} */

.login__btn {
    color: #fff;
    background-color: #c00;
    border-color: #c00;
}
.login__btn:hover {
    background-color: #d94707;
    border-color: #d94707;
    color: #fff;
}


.secondary__btn {
    color: #fff;
    background-color: #04AA6D;
    border-color: #04AA6D;
}
.secondary__btn:hover {
    background-color: #d94707;
    border-color: #d94707;
    color: #fff;
}

.tools {
    justify-content: center;
}

.tools .btn {
    min-width: 160px;
}

.content-pricing section.scheme .block {
    background-color: #080808;
}
.content-pricing section.scheme .block h2 {
    color: #eee;
}

.content-pricing section.scheme .block ul li {
    color: #bbb;
}

#starStreamCanvas {
    position: absolute;
    z-index: -1;
}

#eBcardCanvasContainer {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); /* this fixes the overflow:hidden in Chrome/Opera */
}
#eBcardCanvasContainer canvas{
    margin: 0px auto;
 }
#eBcardContainer {
    background: rgb(30, 30, 30);
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 5px;
    
}

div.dataTables_wrapper div.dataTables_info {
    white-space: normal;
}

div.dataTables_wrapper div.dataTables_paginate {
    white-space: normal;
}

/* Footer background override */
#footer-nav {
    background-color: #343a40 !important;
}


/* Footer background fix */
#footer-nav,
#footer-nav * {
    background-color: #343a40 !important;
}


/* ============================================
   FOOTER FIX: override fixed height 30px
   ============================================ */
#footer-nav,
.footer#footer-nav {
    height: auto !important;
    min-height: unset !important;
    background-color: #343a40 !important;
}

/* ============================================
   MOBILE HERO: responsive mosaic grid
   ============================================ */

/* Make d-md-grid work as a Bootstrap-style utility */
@media (min-width: 768px) {
    .d-md-grid {
        display: grid !important;
    }
}

/* On mobile: hide the desktop grid, show mobile hero */
@media (max-width: 767px) {
    .d-none.d-md-grid {
        display: none !important;
    }
    .d-md-none {
        display: block !important;
    }
    /* Mobile hero buttons: stack vertically */
    #homepage-hero .btn-overlay {
        display: block;
        width: 80%;
        margin: 6px auto !important;
        text-align: center;
    }
}

/* On desktop: show grid, hide mobile hero */
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}


/* ============================================
   FIX 1: About page - What's included list white text
   ============================================ */
#page-content ul li,
#page-content ul li a {
    color: #fff !important;
}

/* ============================================
   FIX 2: Footer - override fixed height
   ============================================ */
#footer-nav,
.footer#footer-nav {
    height: auto !important;
    min-height: unset !important;
    background-color: #343a40 !important;
}

/* ============================================
   FIX 3: Login/short pages - no black strip below footer
   ============================================ */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#page-content {
    flex: 1 0 auto;
}
#footer-nav {
    flex-shrink: 0;
}

/* ============================================
   FIX 4: Mobile hero - correct show/hide
   ============================================ */
@media (max-width: 767.98px) {
    /* Hide desktop 4-col grid on mobile */
    #homepage-hero > div:first-child {
        display: none !important;
    }
    /* Show mobile hero on mobile */
    #homepage-hero > div.d-md-none {
        display: block !important;
    }
    /* Stack hero buttons on mobile */
    #homepage-hero .btn-overlay {
        display: inline-block;
        margin: 4px 4px !important;
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
@media (min-width: 768px) {
    /* Hide mobile hero on desktop */
    #homepage-hero > div.d-md-none {
        display: none !important;
    }
    /* Ensure desktop grid shows */
    #homepage-hero > div:first-child {
        display: grid !important;
    }
}


/* ============================================
   COMBINED FIXES - slfanalytics
   ============================================ */

/* FIX 1: About - What's included list text white */
#page-content ul li,
#page-content ul li a {
    color: #fff !important;
}

/* FIX 2: Footer - kill fixed 30px height */
#footer-nav,
.footer#footer-nav {
    height: auto !important;
    min-height: unset !important;
    background-color: #343a40 !important;
}

/* FIX 3: Login/short pages - make body bg match footer so no visible strip */
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    background-color: #343a40 !important;
}
#page-content {
    flex: 1 0 auto !important;
    background-color: #000 !important;
}
#footer-nav {
    flex-shrink: 0 !important;
}

/* FIX 4: Mobile hero - correct responsive display */
@media (max-width: 767.98px) {
    #homepage-hero > div:first-child {
        display: none !important;
    }
    #homepage-hero > div.d-md-none {
        display: block !important;
    }
    #homepage-hero .btn-overlay {
        display: inline-block !important;
        margin: 4px !important;
    }
}
@media (min-width: 768px) {
    #homepage-hero > div.d-md-none {
        display: none !important;
    }
    #homepage-hero > div:first-child {
        display: grid !important;
    }
}


/* ============================================================
   DEFINITIVE FINAL OVERRIDE - added last, beats all previous
   ============================================================ */

/* Kill the flex stretch that creates black gap on short pages */
html > body {
    display: block !important;
    min-height: 0 !important;
}

/* Also kill flex on page-content */
body > #page-content,
html body #page-content {
    flex: 0 0 auto !important;
    min-height: 0 !important;
}


/* ============================================================
   HERO GRID: set display:grid via CSS (not inline !important)
   so Bootstrap d-none can properly hide it on mobile
   ============================================================ */

/* Desktop: show the grid */
@media (min-width: 768px) {
    #desktop-hero-grid {
        display: grid !important;
    }
}

/* Mobile: ensure desktop grid is hidden, mobile hero is shown */
@media (max-width: 767.98px) {
    #desktop-hero-grid {
        display: none !important;
    }
    .d-block.d-md-none {
        display: block !important;
    }
    /* Responsive buttons on mobile hero */
    #homepage-hero .btn-overlay {
        display: inline-block !important;
        font-size: 0.9em !important;
        padding: 8px 18px !important;
        margin: 4px 2px !important;
    }
}

/* Laptop/tablet (768px-1199px): scale down buttons to fit */
@media (min-width: 768px) and (max-width: 1199px) {
    #homepage-hero .btn-overlay {
        font-size: 0.8em !important;
        padding: 6px 12px !important;
    }
    /* Scale the centre text tile on smaller laptops */
    #homepage-hero h1 {
        font-size: 2em !important;
    }
    #homepage-hero h2 {
        font-size: 1em !important;
    }
}
