﻿

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #1a1a1a;
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: white;
    }

        #header .logo a {
            color: #111;
        }

            #header .logo a span {
                color: #1bbd36;
            }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

/*.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #1bbd36;
    }

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-top: 2px solid #1bbd36;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #111;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #1bbd36;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}*/

/* Mobile Navigation */
/*.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #1bbd36;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #111;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: #1bbd36;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }*/

.btn-ssa {
  color: #fff;
  background-color: #1bbd36;
  border-color: #7B9B0F;
}
.btn-ssa:focus,
.btn-ssa.focus {
  color: #fff;
  background-color: #7B9B0F;
  border-color: #50640B;
}
.btn-ssa:hover {
  color: #fff;
  background-color: #7B9B0F;
  border-color: #66800D;
}
.btn-ssa:active,
.btn-ssa.active,
.open > .dropdown-toggle.btn-ssa {
  color: #fff;
  background-color: #7B9B0F;
  border-color: #66800D;
}
.btn-ssa:active:hover,
.btn-ssa.active:hover,
.open > .dropdown-toggle.btn-ssa:hover,
.btn-ssa:active:focus,
.btn-ssa.active:focus,
.open > .dropdown-toggle.btn-ssa:focus,
.btn-ssa:active.focus,
.btn-ssa.active.focus,
.open > .dropdown-toggle.btn-ssa.focus {
  color: #fff;
  background-color: #7B9B0F;
  border-color: #50640B;
}
.btn-ssa:active,
.btn-ssa.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-ssa.disabled,
.btn-ssa[disabled],
fieldset[disabled] .btn-ssa,
.btn-ssa.disabled:hover,
.btn-ssa[disabled]:hover,
fieldset[disabled] .btn-ssa:hover,
.btn-ssa.disabled:focus,
.btn-ssa[disabled]:focus,
fieldset[disabled] .btn-ssa:focus,
.btn-ssa.disabled.focus,
.btn-ssa[disabled].focus,
fieldset[disabled] .btn-ssa.focus,
.btn-ssa.disabled:active,
.btn-ssa[disabled]:active,
fieldset[disabled] .btn-ssa:active,
.btn-ssa.disabled.active,
.btn-ssa[disabled].active,
fieldset[disabled] .btn-ssa.active {
  background-color: #1bbd36;
  border-color: #A4CE13;
}
.btn-ssa .badge {
  color: #1bbd36;
  background-color: #fff;
}

.card-ssa {
  border-color: #1bbd36;
}
.card-ssa > .card-header {
  color: #728E0D;
  background-color: #1bbd36;
  border-color: #1bbd36;
}
.card-ssa > .card-header + .card-collapse > .card-body {
  border-top-color: #1bbd36;
}
.card-ssa > .card-header .label {
  color: #1bbd36;
  background-color: #728E0D;
}
.panecard-ssa > .card-footer + .card-collapse > .card-body {
    border-bottom-color: #1bbd36;
}


.label-ssa {
  background-color: #1bbd36;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #7B9B0F;
}

.label-ssa-field
{
    font-size:medium;
}

.card-ssabold {
  border-color: #1bbd36;
}
.card-ssabold > .card-header {
  color: white;
  font-weight :bolder;
  background-color: #1bbd36;
  border-color: #1bbd36;
}
.card-ssabold > .card-header + .card-collapse > .card-body {
  border-top-color: #1bbd36;
}
.card-ssabold > .card-header .badge {
  color: #BBEA1A;
  background-color: #627259;
}
.card-ssabold > .card-footer + .card-collapse > .card-body {
    border-bottom-color: #1bbd36;
}

.modal-contentssa {
  position: relative;
  background-color: #222;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-headerssa {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #1bbd36;
  color: #fff;
  height:45px;
}
.modal-headerssa .close {
  margin-top: -2px;
}

.modal-bodyssa {
  position: relative;
  padding: 15px;
  color: #fff;
}

.modal-footerssa {
  padding: 5px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footerssa .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footerssa .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footerssa .btn-block + .btn-block {
  margin-left: 0;
}

.modal-footerssa:before,
.modal-footerssa:after {
  display: table;
  content: " ";
}

.modal-footerssa:after {
  clear: both;
}


.tablessa {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;

}
.tablessa > thead > tr > th,
.tablessa > tbody > tr > th,
.tablessa > tfoot > tr > th,
.tablessa > thead > tr > td,
.tablessa > tbody > tr > td,
.tablessa > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.tablessa > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
  background-color: #1bbd36;
}
.tablessa > caption + thead > tr:first-child > th,
.tablessa > colgroup + thead > tr:first-child > th,
.tablessa > thead:first-child > tr:first-child > th,
.tablessa > caption + thead > tr:first-child > td,
.tablessa > colgroup + thead > tr:first-child > td,
.tablessa > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.tablessa > tbody + tbody {
  border-top: 2px solid #ddd;
}
.tablessa .table {
  background-color: #1bbd36;
}

.affix {
    top: 0;
    width: 100%;
}

#forecastdiv {
    position: fixed;
    z-index: 1200;
    top:15%;
}


#forecastdiv a { 
  display: block; 
  background-image:url("../images/forecastfh.png");
  background-position-x: -60px;
  height:44px;
  width:42px;
  transition: all 0.5s linear; 
}

#forecastdiv a:hover { 
  width:102px;
  background-position-x: 0px;
}
