
/****** FILE: mysite/css/globalStyle.css *****/
/* Set up the custom web fonts. */
@font-face {
    font-family: sans-serif, Arial;
     font-weight: normal;
    font-style: normal;
}

@font-face {
      font-family: sans-serif, Arial;
    font-weight: bold;
    font-style: normal;
}

@font-face {
       font-family: sans-serif, Arial;
    font-weight: bold;
    font-style: normal;
}

/* These two are only needed on certain pages. Included here for simplicity in copy/paste
   To the right css file.
    
@font-face {
    font-family: 'Droid Sans Mono';
    src: url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.eot');
    src: url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.woff') format('woff'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.ttf') format('truetype'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.svg#droid_sans_monoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
       font-family: sans-serif, Arial;
    font-weight: normal;
    font-style: italic;
}
*/
/*removes the cross on IE*/
*::-ms-clear {
    display: none;
}


body, html{
    background-color:#FFF;
    height:100%;
    color:#4B4C4A;
}



body, html, h1,h2, h3,h4,h5,h6{
    font-family:  Kievit, "Trebuchet MS", sans-serif;
}

h1{
    color:#62BD18;
    font-weight:normal;
    font-size: 36px;
}

/* ONLY CAPITALIZE SPECIFIC */
h1,
.title-bar h2,
.container > h2,
.login-aside h2{
    font-family:  'Kievit Black', Kievit, "Trebuchet MS", sans-serif;
    text-transform: uppercase;
}

a,
a:visited,
.like-links,
.drillDownClickable{
    font-weight:normal;
    text-decoration:none;
    color: #23529B;
}

a:hover,
.like-links:hover,
.drillDownClickable:hover{
    text-decoration:none;
    color:#41B0ED;
    cursor: pointer;
}

/* Little snippet to truly mask Angular template markup before JS loads */
/*[ng:cloak],*/
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
    display: none !important;
}

/*Common layout */
.coming-soon-page.container,
.standard-page.container {
    width: 1030px;
    padding: 0 50px;
}

#wrap {/* Wrapper for page content to push down footer overrides #wrap defined in global for logged in pages */
    min-height: 100%;
    height: auto;
    /* Negative indent footer by its height */
    margin: 0 auto -230px;
    /* Pad bottom by footer height */
    padding: 0 0 210px;
    width: auto;
    background-color:#E3ECD8;
}

.footer{
    width:100%;
    height: 100px;
    padding: 0px;
    text-align:center;
}

.clear{
    clear:both;
}

/* After SSO these following two styles were missing from Custom Reports page causing odd layout issues.
 * Refer: FS-4856
 */
header:not(#farm-source-header)::after,
.main::after,
#Root::after,
header:not(#farm-source-header) .inner::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.main {
    clear: both;
}

/* Common form elements */

.custom-field-label {
    font-size: 18px;
    font-weight: normal;
    color: #4b4c4a;
    line-height: 18px;
}

.custom-field { /* TODO rename to custom-text */
    height:50px;
    padding:5px;
    border:1px solid #c5c6c2;
    font-size:20px;
    /*color:#000000;*/
}
.custom-field:disabled {
    background-color: #edefea;
    color: GrayText;
}


.gmp-main-content-container .custom-btn{
    min-height: 50px;
    height:auto;
}

button:focus {
    outline:0;
}
.custom-btn{
    display: inline-block;
    height: 50px;
    line-height: 21px;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}
button.custom-btn,
.btn.custom-btn{
    /* button labels are already vertically centred, so let's leave room for two lines */
    padding-bottom: 0;
    padding-top: 0;
}
button:focus {outline:0;}
.custom-btn + .custom-btn{
    margin-left:6px;
}
/* BUTTONS CUT OFF
button.custom-btn:before,
input[type=button].custom-btn:before,
input[type=submit].custom-btn:before{
 content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    border-bottom: 10px solid white;
    border-left: 10px solid rgba(0,0,0,0);
    width: 0;
}

.controls button.custom-btn:before{
  bottom: -1px; right: -1px;
}
button.custom-btn,
input[type=button].custom-btn,
input[type=submit].custom-btn{
 position:relative;
}*/

.cutcorner.custom-btn.primary:before{
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    border-bottom: 10px solid white;
    border-left: 10px solid rgba(0,0,0,0);
    width: 0;
}
.cutcorner.custom-btn.primary{
    position:relative;
}

.cutcorner.custom-btn.secondary{
    position: relative;
}

.cutcorner.custom-btn.secondary:before{
    content: '';
    position: absolute;
    bottom: 0px; right: 0px;
    border-bottom: 13px solid #c5c6c2;
    border-left: 13px solid rgba(0,0,0,0);
    width: 0;
}

/* for different color background duplicate this and change #ffffff to the background color
   note this technique wont work on gradient backgrounds, you'll probably need to get an image*/

.cutcorner.custom-btn.secondary:after{
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    border-bottom: 13px solid #ffffff;
    border-left: 13px solid rgba(0,0,0,0);
    width: 0;
}

.custom-btn.primary{

    background-color: #23529B;
    border: 1px solid transparent; /* ensures internal dimensions are consistent with secondary buttons */
    /*border: 0; /*necessary for the corner cut*/
    color: #FFFFFF;
    font-weight: bold;
}

.custom-btn.primary:hover{
    background-color: #41B0ED;
    border-color: #41B0ED;
    color: #FFFFFF;
    cursor:pointer;
}

.custom-btn.secondary{
    border: 1px solid #c5c6c2;
    background-color: #ffffff;
    color: #23529B;
}

.custom-btn.secondary:hover{
    background-color: #6DC139;
    border-color: #6DC139;
    color: #fff;
    font-weight: bold;
}

.custom-btn.primary.green{
    background-color: #07793d;
}

.custom-btn.primary.green:hover{
    background-color: #6DC139;
    font-weight: bold;
    border: 1px solid transparent; /* ensures internal dimensions are consistent with secondary buttons */
}

.custom-btn.secondary.green{
    border: 1px solid #07793d;
    background-color: #ffffff;
    color: #07793d;
}

.custom-btn.secondary.green:hover{
    border-color: #6DC139;
    background-color: #ffffff;
    color: #6DC139;
}

.custom-btn.secondary.green.cutcorner:before{
    border-bottom-color: #07793d;
}

.custom-btn.secondary.green.cutcorner:hover:before{
    border-bottom-color: #6dc139;
}

.custom-btn.primary.light-green{
    background-color: #73bc4c;
}

.custom-btn.primary.light-green:hover{
    background-color: #07793d;
    border: 1px solid transparent; /* ensures internal dimensions are consistent with secondary buttons */
}


.custom-btn.thin{
    height: 34px;
    padding: 8px 15px;
}


/* disabled overrides hover */
.custom-btn.primary:disabled,
.custom-btn.secondary:disabled {
    background-color: #FFFFFF !important;
    border: solid #EDEFEA 1px;
    color: #C5C6C2;
    cursor: default;
}

.custom-btn.primary.cutcorner:disabled,
.custom-btn.secondary.cutcorner:disabled {
    background-color: #FFFFFF !important;
    border: solid #EDEFEA 1px;
    color: #C5C6C2;
    cursor: default;
}

.custom-btn.primary.cutcorner:disabled:before,
.custom-btn.secondary.cutcorner:disabled:before{
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    border-bottom: 13px solid #EDEFEA;
    border-left: 13px solid rgba(0,0,0,0);
    width: 0;
}

/* for different color background duplicate this and change #ffffff to the background color
   note this technique wont work on gradient backgrounds, you'll probably need to get an image*/
.custom-btn.primary.cutcorner:disabled:after,
.custom-btn.secondary.cutcorner:disabled:after{
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    border-bottom: 12px solid #ffffff;
    border-left: 12px solid rgba(0,0,0,0);
    width: 0;
}

/* fakes the button like a link */
.custom-btn.like-links {
    font-size: inherit;
    padding: 0;
    height: auto;
    border: 0;
    background: transparent;
    color: #1F60AC;
    vertical-align: inherit;
}

.custom-btn.like-links:hover {
    color: #0099FF;
}

.custom-btn.like-links.danger {
    color: #aa0c00;
}

.custom-btn.like-links.danger:hover {
    color: #dd0010;
}
a.waiting {
    background-image: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/e218485a-dce9-4c6c-969b-81def3ef4775.gif");
    background-repeat: no-repeat;
    background-position: center;
    min-height: 33px;
    min-width: 33px;
}

.custom-btn.waiting {
    background-image: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/e218485a-dce9-4c6c-969b-81def3ef4775.gif");
    background-repeat: no-repeat;
    background-position: center;
}

.custom-btn.tab-btn{
    display:inline-block;
    width:153px;
    height:50px;
    padding:0 10px;
    border:1px solid #DDDDDD;
    margin: 0 -1px 0 0;

    background-color:#fff;

    font-size:18px;
    line-height:50px;
    text-align:center;
    vertical-align:middle;
}

.custom-btn.tab-btn:hover{
    background-color:#6DC139;
    border-color:#6DC139;
    color: #fff;
    cursor: pointer;
}

.custom-btn.tab-btn:hover .dropdown-icon{
    background-position: 0 0;
}


.custom-btn.tab-btn.active{
    background-color:#13783B;
    border-color:#13783B;
    color:#ffffff;
    font-weight:bold;
    cursor: default;
}

.custom-dropdown.primary.open .btn.dropdown-toggle:hover,
.custom-dropdown.primary.open .btn.dropdown-toggle
{
    background-color:#62BD18;
    border-color:#62BD18;
    color:#ffffff;
    cursor: default;
}

/*toggle button*/

.toggle-buttons .btn {
    border-radius: 0;
}

.toggle-buttons input[type=radio] {
    display: none;
}

.toggle-buttons:not(.lite) input[type=radio] + label:not(:first-of-type) {
    margin-left: -1px;
}

.toggle-buttons:not(.lite) input[type=radio]:checked + label {
    background-color: #62BD18;
    color: #ffffff;
    border-color: #62BD18;
}

.toggle-buttons.lite label {
    color: #1F60AC;
}

.toggle-buttons.lite label.btn:active {
    box-shadow: none;
}

.toggle-buttons.lite input[type=radio]:checked + label {
    color: #0099FF;
}

/*switch for tick and cross*/
label.tick-switch {
    background-color: #ffffff;
    border: 1px solid #c5c6c2;
    height: 50px;
    width: 80px;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

label.tick-switch:before {
    background-image: none !important;
}

label.tick-switch.tick {
    background-image: url('/mysite/images/icons/toggle-yes-no-tick-grey.svg');
}

label.tick-switch.cross {
    background-image: url(/mysite/images/icons/toggle-yes-no-cross-grey.svg);
}

input[type=radio]:checked + label.tick-switch.tick {
    background-color: #13783b;
    border-color: #13783b;
    background-image: url(/mysite/images/icons/toggle-yes-no-tick-white.svg);
}

input[type=radio]:checked + label.tick-switch.cross {
    background-color: #b65a39;
    border-color: #b65a39;
    background-image: url(/mysite/images/icons/toggle-yes-no-cross-white.svg);
}

label.tick-switch.small {
    width: 64px;
    height: 40px;
    background-size: 25px;
}


/* Checkboxes and radios */

input.custom[type=checkbox],
input.custom[type=radio]{
    display: none;
}

input.custom[type=radio]:checked     + label,
input.custom[type=checkbox]:checked  + label {
    color:#62BD18;
    font-weight:bold;
}

input.custom[type=radio]:disabled     + label,
input.custom[type=checkbox]:disabled  + label {
    color: GrayText;
}

input.custom[type=radio]    + label span,
input.custom[type=checkbox] + label span {

    display:inline-block;
    width:18px;
    height:18px;
    margin:-4px 5px 0 0;
    vertical-align:middle;
    background:url(/themes/farmsource/images/radio-and-checkbox.svg) 0 0 no-repeat;
    background-size: 126px 18px;
    cursor:pointer;
}

input.custom[type=checkbox] + label span {
    background-position: 0 0;
}
input.custom[type=checkbox]:checked + label span {
    background-position: -18px 0;
}
input.custom[type=checkbox]:checked.partial + label span {
    background-position: -36px 0;
}
input.partial.custom[type=checkbox] + label span {
    background-position: -36px 0;
}
input.disabled[type="checkbox"] + label span {
    background-position: -90px 0;
}
input.disabled[type="checkbox"]:checked + label span {
    background-position: -108px 0;
}


input.custom[type=radio] + label span {
    background-position: -54px 0;
}
input.custom[type=radio]:checked + label span {
    background-position: -72px 0;
}




.custom-selector {
    /*border: none;*/
    position:relative;
    z-index: 0;
}

/*firefox 31 workaround*/
.custom-selector {
    border: 1px solid #C5C6C2;
    overflow: hidden;
    background-color: #ffffff;
}
.custom-selector select {
    display: inline-flex;
    border: none;
}
/*workaround end*/

.custom-selector select {
    /*border: 1px solid #C5C6C2;*/
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    background: none repeat scroll 0 0 transparent;
    font-size: 16px;
    text-indent: 0.01px;
    padding: 1px 25px 0 5px;
    outline: none;
    color: #5D5D5D;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-selector select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.custom-selector select::-ms-expand {
    display: none;
}

.custom-selector > .dropdown-arrow {
    background: url("/mysite/images/icons/sprite-dropdown-arrows-farmsource.svg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 10px;
    position: absolute;
    right: 10px;
    top: 17px;
    width: 12px;
    z-index:-1;
}

.custom-selector.middleColumn select,
.custom-selector.tall select {
    /*to make it the same height with other inputs, which is 50px, not sure why it is 2px taller*/
    height: 48px;
}

.custom-selector.middleColumn > .dropdown-arrow,
.custom-selector.tall > .dropdown-arrow {
    top: 22px;
}

.new-style.custom-selector {
    background-color: #EEEEEE;
    border-color: #EEEEEE;
}

.new-style.custom-selector > .dropdown-arrow {
    background: url("/mysite/images/icons/sprite-dropdown-arrows.svg") no-repeat scroll -32px 0 rgba(0, 0, 0, 0);
    /*z-index: 2;*/
}

/* Dropdowns */
.custom-dropdown .dropdown-menu,
.custom-dropdown .dropdown-utility{
    padding:0;
    border:none;
    border-radius:0 0 0 0;
    margin:0;
}

.custom-dropdown .dropdown-toggle{
    z-index: 500;
    border-radius:0 0 0 0;
    color: #4b4c4a;
}

.custom-dropdown.open .dropdown-menu li{
    width:100%;
    text-align: left;
}

.custom-dropdown .dropdown-toggle .icon{
    margin-left:10px;
}

.open.custom-dropdown .dropdown-toggle,
.custom-dropdown .dropdown-toggle:active{
    box-shadow:none;
}

.custom-dropdown.primary button.dropdown-toggle,
.custom-dropdown.primary .btn.dropdown-toggle{
    position:relative;
    width:100%;
    height:100%;
    border: 1px solid #E3ECD8;
    background:#fff;
}

.custom-dropdown.primary button.dropdown-toggle:hover,
.custom-dropdown.primary .btn.dropdown-toggle:hover{
    background-color: #6DC139;
    color:#fff;
}

.custom-dropdown.two-line.primary .dropdown-toggle .title{
    width:100%;
    font-size: 18px;
    font-weight: normal;
    line-height:20px;
    text-align: left;
}


.custom-dropdown.two-line.primary .dropdown-toggle .value{
    width:100%;
    color: #b65a39;
    font-size: 16px;
    font-weight: bold;
    line-height:17px;
    text-align: left;
}

.custom-dropdown.two-line.primary .dropdown-toggle .value.special{
    white-space: normal;
}

.custom-dropdown.responsive.two-line.primary .dropdown-toggle{
    border: 1px solid #c5c6c2;
}

.custom-dropdown.responsive.two-line.primary > .dropdown-toggle .title{
    line-height:24px;
}

.custom-dropdown.responsive.two-line.primary > .dropdown-toggle .value{
    line-height:21px;
}

.custom-dropdown.two-line.primary .dropdown-toggle .icon{
    position:absolute;
    display:block;
    top:-1px;
    right:-1px;
    width:40px;
    height:50px;
    padding: 16px 14px;
    margin:0;
    background-color: transparent;
}

.custom-dropdown.responsive.two-line.primary > .dropdown-toggle .icon{
    position:absolute;
    display:block;
    top:0px;
    right:0px;
    background-color: transparent;
}

.custom-dropdown.responsive.two-line.primary > .dropdown-toggle .icon .dropdown-icon{
    background-position:-32px 0px;
}



.open.custom-dropdown > .dropdown-toggle .icon,
.open.custom-dropdown > .dropdown-toggle .icon .dropdown-icon{
    background-position: right 0 top 0;
}

.custom-dropdown .dropdown-utility{
    background-clip: padding-box;
    background-color: #FFFFFF;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    display: none;
    float: left;
    margin-top:1px;
    font-size: 14px;
    left: 0;
    list-style: none outside none;
    width: 420px;
    position: absolute;
    top: 100%;
    z-index: 1001;
}
.custom-dropdown.open > .dropdown-utility{
    display:block;
}

/*modal*/
.modal-open {
    overflow: visible;
}

.modal-open .modal-backdrop {
    opacity: 0.5;
}

/* error message bubble (use fp-field-message unless you need the bubble shown below its field)*/
.error-bubble {
    background-color: #e12e1a;
    padding: 14px;
    color: #ffffff;
    font-size:18px;
    position: relative;
    text-transform: none;
}

.error-bubble:not(.site-notice .error-bubble) {
    margin-bottom: 20px;
}

.error-bubble.top:after {
    border-color: #e12e1a #e12e1a transparent transparent;
    border-style: solid;
    /*to make it no an exact square*/
    border-width: 6px 8px;
    position: absolute;
    bottom: -12px;
    content: "";
    display: block;
    left: calc(50% - 8px);
}

.error-bubble.bottom:after {
    border-color: transparent #e12e1a #e12e1a transparent;
    border-style: solid;
    /*to make it no an exact square*/
    border-width: 6px 8px;
    position: absolute;
    top: -12px;
    content: "";
    display: block;
    left: calc(50% - 8px);
}

/* double class name to improve specificity */
.fp-form-message {
    padding: 10px 14px;
    font-size: 18px;
}
.fp-form-message {
    background-color: #e12e1a;
    color: #f3f3f3;
}
.fp-form-message.good {
    background-color: #59a511;
    color: #F3F3F3;
}
.fp-form-message.bad {
    background-color: #e12e1a;
    color: #F3F3F3;
}

.fp-field-message {
    padding: 10px 14px;
    margin: 10px 0;
}
.fp-field-message {
    background-color: #e12e1a;
    color: #ffffff !important;
    position:relative;
}
.fp-field-message:after {
    border-left: 10px solid transparent;
    border-top: 10px solid #e12e1a;
    bottom: -8px;
    content: "";
    display: block;
    left: calc(50% - 8px);
    position: absolute;
}

.fp-form-message.good{
    padding-left: 50px;
    padding-right: 10px;
}
.fp-form-message.good {
    background-image: url(/themes/farmsource/images/tick-white.svg) ;
    background-position: left 12px center;
    background-repeat: no-repeat;
}


.fp-form-message{
    width:100%;
    position:relative;
    display:table;
    vertical-align:middle;
    margin: 10px 0px;
}

.messages .fp-form-message strong.main{
    padding-left:20px;
}

.fp-form-message a.dismiss,
.fp-form-message p,
.fp-form-message span,
.fp-form-message strong.main{
    display: table-cell;
    vertical-align: middle;
}
.fp-form-message a.dismiss:before{
    content:'\002715';
}


.fp-form-message strong.main{
    padding-right:20px;
    font-size:20px;
    white-space: pre;
    word-wrap: break-word;
}
.fp-form-message a.dismiss {
    text-align: center;
    width:45px;
    border-left: 1px solid #E3ECD8;
    font-size: 25px;
    color: #000;
}

.fp-form-message.good a.dismiss {
    color: #FFFFFF !important;
}

/* EVENT STYLES
--------------------------------*/
.event-rsvp-status {
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: 15px 13px;
    float: right;
    font-weight: bold;
    padding-left: 20px;
    padding-top: 3px;
}

.homepage-widget-events .event-rsvp-status {
    float: none;
}

.event-rsvp-status.attending {
    color: #72BC4B;
    background-image: url(/mysite/images/icons/events/icon-event-attending.png);

}

.event-rsvp-status.not-attending {
    color: #ED7768;
    background-image: url(/mysite/images/icons/events/icon-event-not-attending.png);
}

.event-rsvp-status.invited,
.event-rsvp-status.waitlist {
    color: #999999;
    background-image: url(/mysite/images/icons/events/icon-event-rsvp.png);
}


/* PAGE TILES
--------------------------------*/
.fs-tiles{
    text-align: justify;
}

.fs-tiles .tile{
    display: inline-block; /* safari fallback*/
    vertical-align: top;
}

.fs-tiles.top-tiles .tile:first-of-type{
    margin-right: 1px;
}

.fs-tiles.top-tiles .tile + .tile{
    margin-left: 2px;
}

.fs-tiles .tile .mobile{
    display: none;
}

.fs-tiles .tile.has-action{
    cursor: pointer;
}

.top-tile.tile{
    width: 316px;
}

.bottom-tile{
    width: 237px;
}

/* Icons */
.chevron.left{
    padding-left:18px;
    background:url(/mysite/images/icons/icon-left-chevron-11x16.svg) left 2px no-repeat;
}

.chevron.left:hover{
    background:url(/mysite/images/icons/icon-left-chevron-11x16.svg) left -19px no-repeat;
}

.chevron.right{
    padding-right:18px;
    background:url(/mysite/images/icons/icon-right-chevron-11x16.svg) right 2px no-repeat;
}

.chevron.right:hover{
    background:url(/mysite/images/icons/icon-right-chevron-11x16.svg) right -19px no-repeat;
}

.icon-top-chevron {
    display: inline-block;
    background: url(/mysite/images/icons/icon-top-chevron-white-16x10.svg) no-repeat 0 0;
    width: 21px;
    height: 10px;
}

.help{
    display:inline-block;
    width:16px;
    height:16px;
    background:url(/mysite/images/icons/icon-help-16x16.svg) left 0px no-repeat;
}

.help:hover{
    background:url(/mysite/images/icons/icon-help-16x16.svg) left -26px no-repeat;
    cursor: pointer;
}

.search-icon{
    display:inline-block;
    background: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png") no-repeat scroll left -71px top -47px transparent;
    height: 20px;
    width: 20px;
}

.alert-icon, .grade{
    display:inline-block;
    width:23px;
    height:20px;
    margin-top: 4px;
}

.alert-icon{
    background:url(/mysite/images/icons/icon-alert-23x20.svg) left 0px no-repeat;
}

.grade{
    background:url(/mysite/images/icons/icon-grade-23x20.svg) left 0px no-repeat;
}

.up-green, .down-green, .up-red, .down-red, .up-grey, .down-grey, .dropdown-icon, .down-dropdown-blue{
    display:inline-block;
    width:15px;
    height:13px;
    background: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png) no-repeat;
}

.up-green{
    background-position: -27px 0;
}

.down-green{
    background-position: -27px -15px;
}

.up-red{

    background-position: -43px 0px;
}

.down-red{
    background-position: -43px -15px;
}

.up-grey{
    background-position: -59px 0;
}

.down-grey{
    background-position: -59px -15px;
}

.dropdown-icon, .down-dropdown-blue{
    width:12px;
    height:10px;
}

.dropdown-icon{
    background:url(/mysite/images/icons/sprite-dropdown-arrows-farmsource.svg) 0px 0px no-repeat;
}

.dropdown-icon.white{
    background-position: -40px 0px;
}

.down-dropdown-blue{
    background:url(/mysite/images/icons/sprite-dropdown-arrows.svg) -32px 0px no-repeat;
}

.lightbox-icon{
    width: 14px;
    height: 14px;
}

.lightbox-icon{
    background: url(/mysite/images/icons/icon-lightbox.svg) 0px 0px no-repeat;
}

.lightbox-icon:hover{
    background: url(/mysite/images/icons/icon-lightbox.svg) 0px -32px no-repeat;
}

.plus-box-icon{
    background:url(/mysite/images/icons/icon-plus.svg) 0px 0px no-repeat;
}

.plus-box-icon:hover{
    background:url(/mysite/images/icons/icon-plus.svg) 0px -38px no-repeat;
}

.minus-box-icon{
    background:url(/mysite/images/icons/icon-minus.svg) 0px 0px no-repeat;
}

.minus-box-icon:hover{
    background:url(/mysite/images/icons/icon-minus.svg) 0px -38px no-repeat;
}

.avg{
    display: inline-block;
    height: 20px;
    width: 23px;
    background:url(/mysite/images/icons/icon-avg-23x20.svg) 0 0 no-repeat;
}

.checkmark {
    background: url(/mysite/images/icons/sprite-checkmarks.svg) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.info-icon {
    background: url(/mysite/images/icons/sprite-square-i.svg) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}
.collapse-icon{
    background: url(/mysite/images/icons/icon-collapse.svg) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.expand-icon{
    background: url(/mysite/images/icons/icon-expand.svg) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.collapse-icon:hover,
.expand-icon:hover{
    background-position: 0 -31px;
}

.collapse-icon-green{
    background: url(/mysite/images/icons/arrows-up-icon-up.png) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.expand-icon-green{
    background: url(/mysite/images/icons/arrows-down-icon-up.png) 0 0 no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.collapse-toggle:hover .collapse-icon-green{
    background: url(/mysite/images/icons/arrows-up-icon-hover.png) 0 0 no-repeat;
}

.expand-toggle:hover .expand-icon-green{
    background: url(/mysite/images/icons/arrows-down-icon-hover.png) 0 0 no-repeat;
}


.download{
    background: url(/mysite/images/icons/download.png) 0 0 no-repeat;
    display: inline-block;
    height: 18px;
    width: 18px;
}
.download:hover{
    background: url(/mysite/images/icons/download-hover.png) 0 0 no-repeat;
}

.print:hover{
    background: url(/mysite/images/icons/print-hover.png) 0 0 no-repeat;
    background-size: 20px 20px;
}

.print{
    background: url(/mysite/images/icons/print.png) 0 0 no-repeat;
    background-size: 20px 20px;
    display: inline-block;
    height: 20px;
    width: 20px;
}


.action-arrow{
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png) no-repeat right -153px top -329px;
}

.action-arrow.white {
    background-position: right -153px top -386px;
}

/*pagination*/
.pagination {
    margin: 0px;
}

.pagination > li > span,
.pagination > li > a{
    color: #4B4C4A;
    /*padding: 7px 15px;*/
}

.pagination > li > span:hover,
.pagination > li > a:hover{
    background-color: #6ec13a;
    color: #ffffff;
    border-color: #6ec13a;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #378439;
    border-color: #378439;
    font-weight: bold;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-left-color: #ffffff;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right-color: #ffffff;
}

/*pager*/
.pager {
    margin: 0;
}

.pager li > a {
    border-radius: 0;
    border-width: 1px 0;
    border-color: #E3ECD8;
    color: #4B4C4A;
    font-size: 18px;
    padding: 7px 15px;
}

.pager li > a:hover, .pager li > a:focus {
    background-color: #6ec13a;
    color: #ffffff;
}

/* Popover Tooltips */
.popover{
    border-radius: 0px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    max-width: 450px;
    min-width: 220px;
}

.modal-backdrop.in + .popover {
    z-index: 1060;
}

.popover-title{
    font-size: 18px;
    line-height: 22px;
    color: #4b4c4a;
    text-align: center;
    background-color: #fff;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 0px;
}

.popover-content{
    font-size: 16px;
    color: #4b4c4a;
}

.popover-close{
    float: right;
    right: 0px;
    top: 0px;
    position: absolute;
    width: 50px;
    height: 30px;
    background: url(/themes/farmsource/images/sprite-menu-close.svg) 30px -26px no-repeat;
}
.popover-close:hover{
    background: url(/themes/farmsource/images/sprite-menu-close.svg) 30px -58px no-repeat;
    cursor: pointer;
}

.fs-tooltip-hide {
    display: none;
}

.area-button {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.area-button:hover {
    background-color: #F1F9FF;
}

.area-button.alert-dismiss {
    background-size: 12px 12px;
    border-color: #E3ECD8;
    border-style: none none none solid;
    border-width: 0 0 0 1px;
    color: #23529B;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    padding-right: 6px; /* Was 15px */
    /*padding-top: 2px;*/
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    width: 40px; /* Was 109px */
}

.area-button.alert-dismiss span {
    display: inline-block;
    height: 12px;
    width: 14px;
    margin-right: 5px;
    background: url(/mysite/images/icons/sprite-notification-close.svg) no-repeat scroll left top;
}

.area-button.alert-dismiss:hover {
    color: #41B0ED;
}

.area-button.alert-dismiss:hover span {
    background-position: left -32px;
}

/*hint, help-text*/
.hint .hint-content {
    background-color: #6d6e71;
    color: #ffffff;
    height: 30px;
    padding: 6px 20px 0;
}

.hint .explanation {
    background-color: #fde799;
    padding: 15px 20px;
    position: relative;
}

.hint .explanation:after {
    content: "";
    border-style: solid;
    border-color: #fde799 transparent;
    border-width: 0 6px 6px;
    top: -6px;
    position: absolute;
    left: calc(50% - 6px);
}

.hint .explanation.good {
    display: none;
}


/* Main Content Pages 
-------------------------------------------------------------- */
.content {
    padding-top: 60px;
}

.ContentPage .standard-page.typography .content {
    margin-top: 20px;
    padding-top: 40px;
}

.ContentPage .standard-page.typography .content > h1 {
    width: 600px;
    margin: 0 auto 10px;
    font-size: 40px;
    color:  #594a42;
}
.main-content-container {
    width: 600px;
    margin: 0 auto 30px;
}

.gmp-main-content-container {
    max-width: 850px;
    margin: 0 auto 45px;
}

.typography hr {
    border-top: 10px solid #E3ECD8;
    margin: 20px -190px;
}

/* Main Content Pages - Navigation Panels
-------------------------------------------------------------- */
/* mat here */

.navigation-panel {
    border: 10px solid #E3ECD8;
    border-left: 0;
    border-right: 0;
    padding: 30px;
    margin: 0 -190px;
}
/* this removes the extra top border if nav-panels are daisy chained */
.navigation-panel + .navigation-panel {
    border-top: medium none;
}

.center-container {
    position: relative;
}

.col-sm-3.absolute-center {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

@media
all and (min-width: 680px) {

    .navigation-panel .col-sm-6 {
        margin-left: 25%;
        margin-right: 25%;
    }
    .col-sm-3.absolute-center.left {
        left: 0;
        right: auto;
    }
}
/*Small screens: remove image, widen text size*/
@media
all and (max-width: 680px) {

    .navigation-panel .col-sm-6 {
        margin-left: 0%;
        margin-right: 0%;
    }
    .col-sm-3.absolute-center.left {
        left: 0;
        right: auto;
        display: none;
    }

    .ContentPage .standard-page.typography .content > h1 {
        width: 264px;
    }
}

.navigation-panel .col-sm-3.no-image {
    display: none;
}

.navigation-panel .col-sm-6.no-image {
    margin-left: 0;
    width: 75%;
}

.col-sm-3.absolute-center.right {
    position: relative;
    float: right;
    right: 0;
    left: auto;
    height: 48px;
}

/* Main AdvanceRate Pages 
-------------------------------------------------------------- */
.AdvanceRatePage .standard-page.typography .content {
    margin-top: 20px;
    padding-top: 40px;
}

.AdvanceRatePage .standard-page.typography .content > h1 {
    width: 600px;
    margin: 0 auto 10px;
    font-size: 40px;
    color:  #594a42;
}
.AdvanceRatePage .baseAdvanceRate {
    text-align: right;
}

@media
all and (max-width: 974px) {

    .HelpPageHolder .typography .content, .HelpTopicPage .typography .content {float: none !important;}

    .main-content-container {
        width: 100% !important;
    }

    .navigation-panel {
        margin-left: -55px;
        margin-right: -55px;
    }

    .ContentPage .standard-page.typography .content > h1 {
        margin: 0 0 10px;
    }

}


/* Modal dialog boxes
-------------------------------------------------------------- */
.modal-footer {
    border-top: none;
    margin-top: 0;
    text-align: center;
}

.modal-footer form,
.modal-footer .custom-btn {
    display: inline-block;
    width: 150px;
}

/* Modal confirm dialog boxes
-------------------------------------------------------------- */
.fp-confirm-dialog .modal-header {
    background-color: #E3ECD8;
}
.fp-confirm-dialog .modal-title {
    font-weight: bold;
}
.fp-confirm-dialog .modal-body {
    font-size: 18px;
    padding-bottom: 0;
}
/* TODO handle disabled */
.fp-confirm-dialog.danger .primary {
    background-color: #dd0010;
    border-color: #dd0010;
}
.fp-confirm-dialog.danger .primary:hover {
    background-color: #9c0017;
    border-color: #9c0017;
}


/* Loading Animation
-------------------------------------------------------------- */

.loading-animation-holder {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.loading-animation {
    background: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/e218485a-dce9-4c6c-969b-81def3ef4775.gif") no-repeat scroll 10px 10px rgba(255, 255, 255, 0.5);
    height: 100%;
    margin-top: 49px;
    width: 100%;
}

/**
 * CMS Login page styles
 */
#FarmSourceCMSLoginForm_LoginForm input[type=text],
#FarmSourceCMSLoginForm_LoginForm input[type=password],
#FarmSourceCMSLoginForm_LostPasswordForm input[type=email] {
  width: 400px;
  height: 35px;
  margin-bottom: 10px;
  font-size: 20px;
}

#FarmSourceCMSLoginForm_LoginForm #ForgotPassword {
  margin-top: 10px;
}



/* Ensure Angular cloaking works even before Angular has loaded */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

@media
all and (max-width: 974px){

    .standard-page.container {
        padding: 20px;
        width: auto;
    }

    .pagination-lg {
        display: none;
    }

    .pager {
        display: block !important;
    }

}

@media
all and (max-width: 640px){
    .main-content-container {
        padding: 0;
        width: auto;
    }
    .fp-form-message.good .main {
        display: block;
        width: 100%;
        float: left;
    }
    .fp-form-message.good span {
        display: block;
        width: 100%;
        float: left;
    }
}

@media
all and (max-width: 420px){

    .modal-footer .custom-btn {
        margin-bottom: 6px;
        width: 45%;
    }
}


a.externalLink{
    /*background: url(/themes/farmsource/images/external-link.svg) no-repeat scroll right 2px;*/
    padding: 0 18px 0 0;

    background: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png) no-repeat right -153px top -329px;
}

a.externalLink.white{
    background: url(/themes/farmsource/images/white-external-link-icon.svg) no-repeat scroll right 2px;
    background-size: 14px 14px;
    padding: 0 20px 0 0;
    overflow: hidden;
}

a.externalLink:hover{
    background-position: right -153px top -357px;
}



/* homepage tabs */

ul.fs-tabs {
    margin:0 0 1px;
    padding:0;
    font-family:  'Kievit Black', Kievit, "Trebuchet MS", sans-serif;
    text-transform: uppercase;
    display:table;
    width:100%;
    table-layout: fixed;
    font-weight:bold;
}

ul.fs-tabs li {
    display:table-cell;
    background:#EEF4E8;
    color: #73BB4D;
    border-bottom: 4px solid #72BC4B;
    font-size:18px;
    height:48px;
    vertical-align:middle;
    text-align: center;
    border-right: 0;
}

ul.fs-tabs li:not(.active){
    cursor:pointer;
}

ul.fs-tabs li.active {
    background:white;
    color: #11773B;
    border-top: 4px solid #13793A;
    border-bottom:0;
}
/* print view logo*/
.print-logo{
    width:140px;
    display:none;
    margin-top:-14px;
    margin-right:15px;
}
@media print {
    h2 {
        text-align: left;
    }
    .print-logo{
        display: inline;
    }

}


/****** FILE: themes/farmsource/css/typography.css *****/
/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-family: Kievit, "Trebuchet MS", sans-serif; /* This references one of the custom @font-face fonts - the other fonts that are referenced are fallbacks for browsers that don't support @fontface */
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
    color: #59a511;
}
.typography h1 {
  font-size: 30px;
  line-height: 35px;
  margin: 0 0 5px 0;
  color: #594a42;
  font-weight: normal;
}
.typography h2 { font-size: 26px; line-height: 30px; }
.typography h3 { font-size: 21px; line-height: 28px; }
.typography h4 { font-size: 18px; line-height: 25px; }
.typography h5 { font-size: 16px; line-height: 20px; }
.typography h6 { font-size: 14px; line-height: 20px; }

.typography .content {
 background-color: white;
 margin: 25px -25px;
 padding: 25px;
 position: relative; 
}

.ContentPage .typography .content > h1 {
  margin-left: auto;
  margin-right: auto;
  width: 600px;
}

/* PARAGRAPHS */
.typography  p { font-size: 18px; line-height: 22px ; margin: 0 0 20px; color: #4b4c4a; }
  .typography .intro {
      font-family: Kievit, "Trebuchet MS", sans-serif;
      font-size: 21px;
      line-height: 25px;
      margin-bottom: 20px;
  }
.typography p.small {
 font-size: 16px; 
 line-height: 20px; 
}

.typography strong { font-weight: bold; }
.typography em { font-style: italic; }
.typography center { text-align: center; }

::selection,
::-moz-selection { /* Applies style to highlighted portion of a page */
    background: #b80000;
    color: #fff;
    text-shadow: none;
}

/* LINKS */
.typography a, 
.typography a.intro {
    color: #23529B;
    text-decoration: none;
}
  .typography a:hover { 
    color: #41B0ED;
  }
  .typography a:focus { }


/* LIST STYLES
-------------------------------------------- */
.typography ul, 
.typography ol,
.typography dl { margin: 0 0 20px 25px; }
.typography ul li { list-style-type: disc; } /* adds disc style bullet to the list */
.typography li { margin-bottom: 5px; font-size: 18px; line-height: 22px; }


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
    border: 1px solid #d4d4d4;
    border-spacing: 0; /* The border-spacing property sets the distance between the borders of adjacent cells - acts as a backup to border-collapse: collapse */
    margin: 0 0 20px;
    width: 100%;
    /*margin: 0 -50px 20px;*/
 /*max-width: 700px;*/
 /*width: 700px;*/
}

.typography table thead td{
 border-bottom:1px solid #E3ECD8;
 font-size:18px;
 font-weight:normal;
 background-color:#F0F2ED;
}

.typography table thead td.narrow{
 width:88px; 
}

.typography table thead td.wide{
 width:164px; 
}

.typography table:not(.ui-datepicker-calendar) td{
 padding: 5px 20px;
 border-right:1px solid #E3ECD8;
 font-size: 18px; 
 line-height:28px;
 vertical-align:middle;
}

.typography table tr:nth-of-type(odd){
 background-color:#ffffff;
}
.typography table tr:nth-of-type(even){
 background-color:#F0F2ED;
}

.typography table.layout-table {
    border: medium none;
}

.typography table.layout-table tr {
    background-color: transparent;
}

.typography table.layout-table td {
    border: medium none;
}




/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}


/* IMAGES 
-------------------------------------------- */
.typography img {
/*    border: 5px solid #d7d7d7;*/
    height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
    background: transparent url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/e218485a-dce9-4c6c-969b-81def3ef4775.gif) no-repeat center center;
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography .captionImage { width: 100%; max-width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; border: none; }
  .typography .captionImage.left {
    float: left;
    margin: 5px 20px 20px -20px;
  }
  .typography .captionImage.right{
    float: right;
    margin: 5px -20px 20px 20px;
  }
  .typography .captionImage.left img,
  .typography .captionImage.right img {
    float: none;
    max-width: 100%;
    width: 100%;
  }
  .typography .captionImage.left img {
    margin-right: -10px;
  }
  .typography .captionImage.right img {
    margin-left: -10px;
  }
  .typography .captionImage.right p {
  }
  
.typography .captionImage.leftAlone{
  float:none;
  margin: 0 20px 20px 0px;
}

.typography .captionImage.center{
  margin: 0 auto 20px;
}

.typography .captionImage p {
 background: none repeat scroll 0 0 #EDEFEA;
 clear: both;
 color: #656664;
 height: 42px;
 text-align: center;
 font-size: 16px;
 font-weight: normal;
 line-height: 20px;
 padding: 11px 20px;
}


/* BLOCKQUOTES
-------------------------------------------- */
.typography blockquote {
  background: transparent url(../images/blockquote.png) no-repeat 0px 6px;
  font-family: Kievit, "Trebuchet MS", sans-serif;
  color: #777;
  display: block;
  font-style: italic;
  margin: 0 0 20px;
  float: right;
  text-indent: 30px;
  width: 50%;
  margin-left: 5%;
  clear: both;
}
.typography blockquote p {
  font-size: 17px;
  line-height: 25px;
}
.typography pre {
  background: #F7F7F7;
  border: 1px solid #E4E4E4;
  font-family: Courier, monospace;
  margin: 0 0 20px 0;
  padding: 15px;
  clear: both;
}

/* ADDRESS
-------------------------------------------- */
address {
  display: block;
  margin-bottom: 20px;
}

/* Generic Content header image.
-------------------------------------------- */
.typography .ContentHeader {
 margin: 0 -25px 15px;
 text-align: center;
}

.typography .ContentHeader img {
 margin: 0 auto;
 border: none;
 max-width: 100%;
}


/* Topic Box
-------------------------------------------- */
.typography div.topic-box {
 background-color: #62BD18;
 margin: 0 0 20px 0;
 width: 290px;
 padding: 20px;
 position: relative;
 top: 5px;
}

.typography div.topic-box.topic-box-right {
 float: right;
 right: -20px;
}

.typography div.topic-box.topic-box-left {
 float: left;
 left: -20px;
}

.typography div.topic-box h1,
.typography div.topic-box h2,
.typography div.topic-box h3,
.typography div.topic-box h4,
.typography div.topic-box h5,
.typography div.topic-box h6 {
 font-weight: bold;
 color: #fff;
 font-size: 21px;
 margin-top: 0;
}

.typography div.topic-box,
.typography div.topic-box p{
 font-size: 18px;
 line-height: 22px;
 font-weight: normal;
 color: #fff;
}

.typography div.topic-box a {
 font-size: 18px;
 line-height: 22px;
 font-weight: normal;
 color: #fff;
 text-decoration: underline;
}

.typography div.topic-box a:hover {
 text-decoration: none;
}

.typography div.topic-box ul { margin: 0 0 20px 15px; } 
.typography div.topic-box ol { margin: 0 0 20px 20px; }

.typography div.topic-box li {
 margin-bottom: 6px;
}

/* Expanded Content Blocks
-------------------------------------------- */

.typography div.expanded-content-holder .expanded-content-switch {
 border-top: 1px solid #c5c6c2;
}

.typography div.expanded-content-holder.collapsed div.expanded-content {
    display: none;
}

.typography span.expanded-content-holder.collapsed span.expanded-content {
    display: none;
}

.typography div.expanded-content-holder.expanded div.expanded-content {
 display: block;
}

.typography span.expanded-content-holder.expanded span.expanded-content {
 display: inline;
}

.typography div.expanded-content-holder button {
 text-align: center;
 background-color: #ffffff;
 border: 1px solid #c5c6c2;
 color: #23529B;
 display: inline-block;
 font-size: 18px;
 height: 50px;
 line-height: 20px;
 padding: 15px 0;
 text-align: center;
 vertical-align: middle;
 width: 150px;
 display: block;
 margin: 0 auto;
 position: relative;
 top: -1px;
}

.typography div.expanded-content-holder button span.icon {
 top: 5px;
 position: relative;
}

.typography div.expanded-content-holder button:hover {
 background-color: #f1f9ff;
 border-color: #23529B;
 cursor: pointer;
}

.typography div.expanded-content-holder button:hover span.icon {
 background-position: 0 -31px;
}

.typography .expanded-content-holder span.expanded-content-toggle {
 display: inline-block;
 color: #23529B;
 font-weight: bold;
 cursor: pointer;
 margin-left: 6px;
}

.typography .expanded-content-holder span.expanded-content-toggle span.icon {
 top: 5px;
 position: relative;
 background-position: 0 -31px;
}

.typography .expanded-content-holder span.expanded-content-toggle:hover {
 color: #41B0ED;
}

.typography .expanded-content-holder span.expanded-content-toggle:hover span.icon {
 background-position: 0 0;
}

.typography .expandable-subtopic {
  border-bottom: 1px solid #C5C6C2;
  border-top: 1px solid #C5C6C2;
}

.typography .expandable-subtopic .expanded-content-holder span.expanded-content-toggle {
 margin-left: 0;
}

.typography .expandable-subtopic .expanded-content-holder span.expandable-subtopic-toggle {
 font-size: 16px;
 font-weight: normal;
 text-transform: none;
 margin-left: 6px;
}

.typography .expandable-subtopic h2 {
 color: #1F60AC;
 font-size: 21px;
}

/* General Content Last Updated block.
-------------------------------------------------------------- */
.typography #UpdatedBlock {
 background-color: #EDEFEA;
 color: #656664;
 font-size: 16px;
 height: 50px;
 text-align: center;
 width: 170px;
 line-height: 50px;
 position: absolute;
 left: 0;
}

/* Page Top link
-------------------------------------------------------------- */

.typography a.PageTopLink {
 background-color: #23529B;
 bottom: 0;
 color: white;
 display: block;
 font-size: 16px;
 height: 50px;
 line-height: 50px;
 margin-left: -25px;
 position: absolute;
 text-align: center;
 width: 170px;
 font-weight:  bold;
}

.typography a.PageTopLink:hover {
 color: white;
 background-color: #41B0ED;
}

.typography a.PageTopLink.fixed {
 position: fixed;
}

@media
all and (max-width: 974px){

 .typography .content {
  margin: 0;
 }

 .typography h1 {
  text-align: left;
 }

 .typography #UpdatedBlock {
  display: none;
 }
}

@media
all and (max-width: 640px) {
 
 /* Move captioned images inline */
 .typography .captionImage.left,
 .typography .captionImage.right {
  float: none;
  margin-left: auto;
  margin-right: auto;
 }
 
}


@media
all and (max-width: 580px) {
 
 /* Move topic boxes inline */
 .typography div.topic-box {
  width: auto;
 }
 .typography div.topic-box.topic-box-left,
 .typography div.topic-box.topic-box-right {
  float: none;
  position: static;
 }
}


/****** FILE: themes/farmsource/css/globalStyle.css *****/
h1{
    color:#62BD18;
}

#wrap {
 /* Wrapper for page content to push down footer overrides #wrap defined in global for logged in pages */
    min-height: 100%;
    /* Negative indent footer by its height */
    margin: 0 auto -230px;
    background-color:#E3ECD8;
}

.custom-btn.secondary:hover{
    background-color: #6DC139;
    border-color: #6DC139;
}

.custom-btn.primary.green{
    background-color: #07793d;
}

.custom-btn.primary.green:hover{
    background-color: #6DC139;
}

.custom-btn.secondary.green{
    border: 1px solid #07793d;
    color: #07793d;
}

.custom-btn.secondary.green:hover{
    border-color: #6DC139;
    color: #6DC139;
}

.custom-btn.secondary.green.cutcorner:before{
    border-bottom-color: #07793d;
}

.custom-btn.secondary.green.cutcorner:hover:before{
    border-bottom-color: #6dc139;
}

.custom-btn.primary.light-green:hover{
    background-color: #07793d;
}

/* disabled overrides hover */
.custom-btn.primary:disabled,
.custom-btn.secondary:disabled {
    border: solid #EDEFEA 1px;
}

.custom-btn.primary.cutcorner:disabled,
.custom-btn.secondary.cutcorner:disabled {
    border: solid #EDEFEA 1px;
}

.custom-btn.primary.cutcorner:disabled:before,
.custom-btn.secondary.cutcorner:disabled:before{
    border-bottom: 13px solid #EDEFEA;
}

.custom-btn.tab-btn:hover{
    background-color:#6DC139;
    border-color:#6DC139;
}

.custom-btn.tab-btn.active{
    background-color:#13783B;
    border-color:#13783B;
}

.custom-dropdown.primary.open .btn.dropdown-toggle:hover,
.custom-dropdown.primary.open .btn.dropdown-toggle
{
    background-color:#62BD18;
    border-color:#62BD18;
}

/*toggle button*/
.toggle-buttons:not(.lite) input[type=radio]:checked + label {
    background-color: #62BD18;
    border-color: #62BD18;
}

label.tick-switch.cross {
    background-image: url(/mysite/images/icons/toggle-yes-no-cross-grey.svg);
}

input[type=radio]:checked + label.tick-switch.tick {
    background-color: #13783b;
    border-color: #13783b;
    background-image: url(/mysite/images/icons/toggle-yes-no-tick-white.svg);
}

input[type=radio]:checked + label.tick-switch.cross {
    background-image: url(/mysite/images/icons/toggle-yes-no-cross-white.svg);
}

input[type=radio]:checked + label.tick-switch.number {
    background-color: #13783b;
    border-color: #13783b;
    color: #ffffff;
}

/* Checkboxes and radios */

input.custom[type=radio]:checked     + label,
input.custom[type=checkbox]:checked  + label {
    color:#62BD18;
}

.custom-dropdown.primary button.dropdown-toggle,
.custom-dropdown.primary .btn.dropdown-toggle{
    border: 1px solid #E3ECD8;
}

.custom-dropdown.primary button.dropdown-toggle:hover,
.custom-dropdown.primary .btn.dropdown-toggle:hover{
    background-color: #6DC139;
}

.fp-form-message.good {
    background-color: #59a511;
}

.fp-form-message a.dismiss {
    border-left: 1px solid #E3ECD8;
}

/* Icons */
.chevron.left{
    background-image:url(/mysite/images/icons/icon-left-chevron-11x16.svg);
}

.chevron.left:hover{
    background-image:url(/mysite/images/icons/icon-left-chevron-11x16.svg);
}

.chevron.right{
    background-image:url(/mysite/images/icons/icon-right-chevron-11x16.svg);
}

.chevron.right:hover{
    background-image:url(/mysite/images/icons/icon-right-chevron-11x16.svg);
}

.icon-top-chevron {
    background-image: url(/mysite/images/icons/icon-top-chevron-white-16x10.svg);
}

.help{
    background-image:url(/mysite/images/icons/icon-help-16x16.svg);
}

.help:hover{
    background-image:url(/mysite/images/icons/icon-help-16x16.svg);
}

.alert-icon{
    background-image:url(/mysite/images/icons/icon-alert-23x20.svg);
}

.grade{
    background-image:url(/mysite/images/icons/icon-grade-23x20.svg);
}

.up-green, .down-green, .up-red, .down-red, .up-grey, .down-grey, .dropdown-icon, .down-dropdown-blue{
    background-image: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png);
}

.dropdown-icon{
    background-image:url(/mysite/images/icons/sprite-dropdown-arrows-farmsource.svg);
}

.down-dropdown-blue{
    background-image:url(/mysite/images/icons/sprite-dropdown-arrows.svg);
}

.lightbox-icon{
    background-image: url(/mysite/images/icons/icon-lightbox.svg);
}

.lightbox-icon:hover{
    background-image: url(/mysite/images/icons/icon-lightbox.svg);
}

.plus-box-icon{
    background-image:url(/mysite/images/icons/icon-plus.svg);
}

.plus-box-icon:hover{
    background-image:url(/mysite/images/icons/icon-plus.svg);
}

.minus-box-icon{
    background-image:url(/mysite/images/icons/icon-minus.svg);
}

.minus-box-icon:hover{
    background-image:url(/mysite/images/icons/icon-minus.svg);
}

.avg{
    background-image:url(/mysite/images/icons/icon-avg-23x20.svg);
}

.checkmark {
    background-image: url(/mysite/images/icons/sprite-checkmarks.svg);
}

.info-icon {
    background-image: url(/mysite/images/icons/sprite-square-i.svg);
}
.collapse-icon{
    background-image: url(/mysite/images/icons/icon-collapse.svg);
}

.expand-icon{
    background-image: url(/mysite/images/icons/icon-expand.svg);
}

.collapse-icon-green{
    background-image: url(/mysite/images/icons/arrows-up-icon-up.png);
}

.expand-icon-green{
    background-image: url(/mysite/images/icons/arrows-down-icon-up.png);
}

.collapse-toggle:hover .collapse-icon-green{
    background-image: url(/mysite/images/icons/arrows-up-icon-hover.png);
}

.expand-toggle:hover .expand-icon-green{
    background-image: url(/mysite/images/icons/arrows-down-icon-hover.png);
}

.download{
    background-image: url(/mysite/images/icons/download.png);
}
.download:hover{
    background-image: url(/mysite/images/icons/download-hover.png);
}

.print:hover{
    background-image: url(/mysite/images/icons/print-hover.png);
}

.print{
    background-image: url(/mysite/images/icons/print.png);
}

.action-arrow{
    background-image: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png);
}

.pagination > li > span:hover,
.pagination > li > a:hover{
    background-color: #6ec13a;
    border-color: #6ec13a;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #378439;
    border-color: #378439;
}

.pager li > a {
    border-color: #E3ECD8;
}

.pager li > a:hover, .pager li > a:focus {
    background-color: #6ec13a;
}

/* Popover Tooltips */
.popover-close{
    background-image: url(/themes/farmsource/images/sprite-menu-close.svg);
}
.popover-close:hover{
    background-image: url(/themes/farmsource/images/sprite-menu-close.svg);
}

.area-button.alert-dismiss {
    border-color: #E3ECD8;
}

.area-button.alert-dismiss span {
    background-image: url(/mysite/images/icons/sprite-notification-close.svg);
}

/* Main Content Pages 
-------------------------------------------------------------- */
.typography hr {
    border-top: 10px solid #E3ECD8;
}

/* Main Content Pages - Navigation Panels
-------------------------------------------------------------- */
.navigation-panel {
    border: 10px solid #E3ECD8;
}

/* Modal confirm dialog boxes
-------------------------------------------------------------- */
.fp-confirm-dialog .modal-header {
    background-color: #E3ECD8;
}

/* Loading Animation
-------------------------------------------------------------- */
.loading-animation {
    background-image: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/e218485a-dce9-4c6c-969b-81def3ef4775.gif");
}

a.externalLink{
    background-image: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png);
}

a.externalLink.white{
    background-image: url(/themes/farmsource/images/white-external-link-icon.svg);
}

/* homepage tabs */
ul.fs-tabs li {
    background:#EEF4E8;
    color: #73BB4D;
    border-bottom: 4px solid #72BC4B;
}

ul.fs-tabs li.active {
    color: #11773B;
    border-top: 4px solid #13793A;
}




/****** FILE: themes/farmsource/css/mainFooter.css *****/
/* FOOTER */
footer.footer {
 text-align: left !important;
    color: #767676;
    padding: 40px 0 0;
    font-size: 15px;
    line-height: 22px;
    background-color:#F1F1F1;
    height: auto;
    min-height:210px;
    margin-top:20px;
}
footer .inner.container {
 position:relative;
    width: 100%;
    max-width: 970px;
    margin: 0 auto -20px;
    /*padding:0;*/
}
footer ul{
 margin:0;
}

footer .block-group{
    display: inline-table;
    width: 510px;
}

footer .block-group:last-of-type{
    width: calc(100% - 515px);
    min-width: 390px;
}

footer ul li{
 display:inline-block;
}

footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}

/* FOOTER PHONES */

ul.footer-phones{
 font-weight:bold;
 text-transform:uppercase;
 color:#424242;
 font-size:14px; 
}

ul a.footer-send-enquiry{
 font-size:13px;
 padding-left: 30px;
 background: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png") no-repeat;
 background-position: -134px -142px;
 display:inline-block;
 font-weight:bold;
    line-height: 24px;
}
ul a.footer-send-enquiry:hover{
 background-position: -134px -172px;
}

.footer-find-out-more{
    position: relative;
    padding-right: 20px;
    font-size:13px;
    font-weight:bold;
    line-height: 24px;
}

.footer-find-out-more .externalLink{
    content: "";
    position: absolute;
    display: block;
    top: -3px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: url("https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/5bea4e65-05cf-4dbe-a4e2-3470ea9eb9bb.png") no-repeat scroll right -153px top -329px rgba(0, 0, 0, 0);

}

.footer-find-out-more:hover{
    color: #41b0ed;
}

.footer-find-out-more:hover .externalLink{
    background-position: right -153px top -357px;
}

ul.footer-phones li{
 margin-right: 42px; 
}

ul.footer-phones .footer-phone-number{
 font-size: 28px;
 color:#959595;
    font-weight: normal;
 font-family:  'Kievit Black', Kievit, "Trebuchet MS", sans-serif;
 margin: 3px 0 7px;
}

/* FOOTER LOGO */

ul.footer-phones li.footer-logo{
 float:right;
 background: url(https://image.my.nzfarmsource.co.nz/lib/fe9813727166057b74/m/8/a04772d9-82cc-48bc-b124-e717ea5be6fb.png) no-repeat top left;
 width: 118px;
 height: 106px;
 margin:-17px 0 0;
}

/* FOOTER LINKS */

ul.footer-links{
 border-top:1px solid #DEDEDE;
 padding-top:20px;
 margin-top:13px;
}

ul.footer-links li{
 float:left;
 margin: 0 0 0 20px;
}

ul.footer-links li:first-child {
    margin-left: 0;
}

/* LINK TRANSITION */

.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

/* RESPONSIVE */

@media
all and (max-width: 1000px){
 footer .inner.container {
  padding:0 15px;
  margin:0;
  overflow:auto;
 }
 footer.footer{
        padding-bottom: 25px;
 }


}


@media
all and (max-width: 950px){
    footer.footer{
        padding-top: 25px;
    }

    footer.footer .pushbottom .bottom-links {
        margin-bottom: 5px;
    }

    footer .block-group {
        width:100%;
    }

    footer .block-group:last-of-type{
        min-width: 0;
        width: auto;
    }

    footer .block-group:first-of-type li{
        margin-bottom: 20px;
    }
    
    footer .footer-logo{
        float: right;
    }
}

@media all and (max-width: 815px) {
    footer.footer .bottom-links,
    footer.footer .footer-phones{
        margin-bottom: 0;
    }
    footer.footer .bottom-links > li,
    footer.footer .footer-phones > li{
        margin-bottom: 20px;
    }
    footer.footer .bottom-links > li.last,
    footer.footer .footer-phones > li.last,
    footer.footer .footer-phones > li.footer-logo{
        margin-bottom: 0;
    }
}


/****** FILE: themes/farmsource/css/dataPage.css *****/
@font-face {
    font-family: 'Droid Sans Mono';
    src: url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.eot');
    src: url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.woff') format('woff'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.ttf') format('truetype'),
         url('https://nzfarmsource.co.nz/mysite/fonts/droidsansmono-webfont.svg#droid_sans_monoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.data-page.container{
    max-width:970px;
    min-width:280px;
    width:100%;
    padding:25px 0;
}

.data-page .row{
    width:100%;
    padding:20px;
}

.data-page .measure-selector-wrapper {
    background-color: #F0F2ED; 
}

/* Title bar */
.data-page .title-bar{
    padding:1px 18px 0;
    margin:0 0 -10px 0;
    min-height: 40px;
    position: relative;
}

.data-page .title-bar h2{
    margin:0;
    /*max-width: 400px;*/
    display:inline-block;
    margin-right: 25px;
    float: left;
    width:auto;
}

.data-page .title-bar .right {
    float: right;
    margin: 10px 0 0 10px;
}
.data-page .title-bar .report-controls{
    float: left;
}

.data-page .download-print form{
    display:inline;
}

.data-page .download-print .icon-btn {
    width: auto;
    padding-left: 25px;
    margin-left: 20px;
    font-size: 16px;
    line-height: 18px;
    cursor: pointer;
}

.data-page .download-print .icon-btn.print{
    background-size: 20px 19px;
}

.data-page .download-print .download a.icon-btn{
    color:#4B4C4A;
 }
.data-page .download-print .download:hover{
    color:#71BE44;;
 }
 
.data-page .download-print .print:hover{
    color:#01B1EE;
 }

.data-page .custom-btn.custom-dropdown.active{
}

.data-page .custom-btn.custom-dropdown.active .dropdown-toggle * {
    color: #FFFFFF;
}

.data-page .custom-dropdown.responsive.primary.open > .dropdown-toggle .dropdown-icon,
.data-page .open.custom-dropdown.utility > .dropdown-toggle .icon .dropdown-icon{
    background-position: -20px 0;
}

.data-page .responsive.download-print{
    display: none;
    width:115px;
    padding:10px 15px 8px;
    background-color: #E3ECD8;
    text-align: center;
}

.data-page .responsive.footer-controls{
    display: table;
    width: 100%;
    background-color: #E3ECD8;
    padding-top: 10px;
}

@media 
all and (max-width: 990px){
    .data-page .title-bar .download-print{
        margin-right:15px;
    }
}

@media 
all and (max-width: 830px){
    /* table-section */
    .data-page .title-bar .download-print{
        position:relative;
        float: right;
        display: none ; /*moves below table as per optimal designs*/
        margin: 10px 0;
    }

    .data-page .responsive.download-print{
        display: table-cell;
    }
}


/****** FILE: mysite/css/components/linkBoxes.css *****/
@CHARSET "UTF-8";

/* Link boxes */

.row.link-boxes{
 width: 100%;
 margin: 20px 0 0;
 padding: 0px;
}

a .link-box:hover {
 background-color: #F0F2ED;
}

.link-box{
 /* height:212px; */
 height: 139px;
 border-right: 10px solid transparent;
 padding:0;
 background-color: #ffffff;
 background-clip: padding-box;
}

.link-box.last {
 border-right: 0px;
}

.link-box *{
 padding:10px 15px;
}

.link-box h4{
 width:100%;
 height:67px;
 border-bottom:4px solid #000000;
 padding: 21px 15px 10px;
 margin:0;
 line-height:22px;
 vertical-align: middle; 
}

.link-box h4.two-lines{
 padding-top:10px;
}

.link-box h4.green{
 border-bottom-color:#0060af;
}

.link-box h4.navy{
 border-bottom-color:#013799;
}

.link-box h4.blue{
 border-bottom-color:#41B0ED;
}

.link-box h4.red{
 border-bottom-color:#B65A39;
}

.link-box .blurb{
 height:72px;
 padding:8px 15px;
 border-bottom:1px solid #e9ebf5;
 line-height:18px;
}

.link-box .list{
 padding-top: 7px;
}

.link-box .list *{
 padding: 0px;
}

.mpq-page .link-custom-report,
.mpq-reports-page .link-custom-report {
    display: inline-block;
    float: right;
    width: 235px;
    height: 50px;
    padding: 7px 5px 5px 10px;
    border: 1px solid #DDD;
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    vertical-align: center;
    background-color: #ffffee;
    color: #997f79;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}
.mpq-page .link-custom-report span,
.mpq-reports-page .link-custom-report span {
    display: block;
    font-weight: normal;
    font-size: 17px;
}
.mpq-page .link-custom-report .arrow,
.mpq-reports-page .link-custom-report .arrow {
    display: inline;
    font-size: 40px;
    font-weight: normal;
    position: absolute;
    margin-top: -10px;
    right: 1px;
}
.mpq-page .link-custom-report:hover,
.mpq-reports-page .link-custom-report:hover{
    background-color:#FFFDC5; 
    color:#b65a39 
}

@media 
all and (max-width: 1024px){
 .link-box {
  border-right: 0px;
  margin-bottom: 5px;
 }
}


/****** FILE: mysite/css/navigation2020.css *****/
body {
    margin: 0;
}

/* The navigation menu */
/* .navbar { */
.Navbar {
  display: block;
  overflow: hidden;
  background-color: white;
  font-family: "Helvetica Neue", Kievit,"Trebuchet MS",sans-serif;
  font-weight: 300;
  height: 60px;
}

.MobileNavbar {
  display: none;
}

.Navbar .Navbar-mobileJobsLinkContainer {
  display: none;
}

.Navbar .Navbar-linkContainer ul {
  z-index: 1005;
}

.Navbar .Navbar-subNavButton,
.Navbar .Navbar-link {
  font-size: 18px;
  line-height: 26px;
}

.Navbar .Navbar-linkContainer ul.Navbar-firstChildContainer li,
.Navbar .Navbar-linkContainer ul.Navbar-firstChildContainerSupport li{
  font-size: 17px;
}

.Navbar .Navbar-linkContainer ul.Navbar-secondChildContainer li {
  font-size: 16px;
}

.Navbar .Navbar-link {
  float: left;
  color: black;
  text-align: center;
  padding: 16px 0;
  margin: 0 15px;
  text-decoration: none;
}

.Navbar .Navbar-link .active {
  border-bottom: solid 4px #4FB546;
}

.Navbar .Navbar-link .externalLink {
  height: 20px;
  width: 20px;
  background: url(/themes/farmsource/images/external-link.svg) no-repeat scroll right 0 rgba(0, 0, 0, 0);
  display: inline-block;
  background-position: 8px -43px;
  background-size: 11px;
}

.Navbar .Navbar li a {
  color: black;
}

.Navbar .Navbar li a:hover,
.Navbar .Navbar li a:hover {
  color: #4FB546;
}

/* The subnavigation menu */
/* .subnav { */
.Navbar .Navbar-subNavContainer {
    float: left;
    overflow: hidden;
}

.Navbar .Navbar-firstChildLink {
    display: block;
    padding: 15px 15px;
    border-bottom: 1px solid #E3E3E3;

}

.Navbar .Navbar-firstChildButton {
    display: block;
    padding: 15px 15px;
    border-bottom: 1px solid #E3E3E3;
    text-align: left;
    border-top: none;
    border-right: none;
    border-left: none;
    font-weight: 300;
    outline: none;
    font-weight: normal;
}

.Navbar .Navbar-secondChildContainer {
    display: none;
    position: absolute;
    top: 0;
    left: 255px;
    width: 255px;
    min-height: 100%;
    background: #f8f8f8;
    list-style-type: none;
    padding: 0;
}

.Navbar .Navbar-secondChildLink {
    display: block;
    padding-top: 18px;
    padding-left: 20px;
}

/* Subnav button */
/* .Navbar-subNavContainer .subnavbtn { */

.Navbar .Navbar-subNavContainer {
    border: none;
    outline: none;
    color: black;
    padding: 16px 0;
    background-color: inherit;
    font-family: inherit;
    margin: 0 15px;
    font-weight: inherit;
}

/* Add a red background color to navigation links on hover */
.Navbar .navbar a:hover, .Navbar-subNavContainer:hover {
border-bottom: solid 4px #575757;
}

/* Style the subnav content - positioned absolute */
/* .subnav-content { */
.Navbar .Navbar-firstChildContainer,
.Navbar .Navbar-firstChildContainerSupport {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    color: black;
    background-color: white;
    width: 255px;
    list-style-type: none;
    top: 62px;
    padding: 0;
}

/* Style the subnav links */
.Navbar .Navbar-firstChildContainer a,
.Navbar .Navbar-firstChildContainerSupport a {
color: black;
text-decoration: none;
}

.Navbar .Navbar-subNavCarat {
    position: absolute;
    right: 10px;
}

.Navbar .Navbar-subNavButton {
  color: black;
}

.Navbar .Navbar-subNavButton .Navbar-subNavCarat {
  display: none;
}

/* Add a grey background color on hover */
.Navbar .Navbar-subNavSecondContainer:hover {
  background-color: #F8F8F8;
  color: #4FB546;
}

.Navbar .Navbar-subNavSecondContainer a:hover {
  color: #4FB546;
}

.Navbar .Navbar-subNavSecondContainer:hover .Navbar-firstChildButton {
  color: #4FB546;
}

.Navbar .Navbar-subNavSecondContainer li:last-child {
  padding-bottom: 15px;
}

/* When you move the mouse over the subnav container, open the subnav content */
.Navbar .Navbar-subNavContainer:hover .Navbar-firstChildContainer,
.Navbar .Navbar-subNavContainer:hover .Navbar-firstChildContainerSupport {
  display: block;
  box-shadow: 0 2px 7px 0 rgba(158, 158, 158, 0.5);
}

.Navbar .Navbar-subNavSecondContainer:hover .Navbar-secondChildContainer {
  display: block;
  box-shadow: 6px 2px 7px 0 rgba(158, 158, 158, 0.5);
}


.Navbar .Navbar-parentContainer,
.Navbar .Navbar-searchContainer {
    list-style-type: none;
    margin: 0;
    display: flex;
    position: absolute;
    padding: 0;
}

.Navbar .slide-menu__control {
  display: none;
}

.Navbar .Navbar-parentContainer {
  margin-left: 100px;
  width: 60%;
}

.Navbar .Navbar-searchContainer {
    position: relative;
    float: right;
}

/*************
 * Search Box
 ************/
#farm-source-header .search-box {
  height: 50px;
  margin-top:3px;
  padding-top: 10px;
  width: 100%;
}
#farm-source-header .search-box-mobile{
  display: none;
}
#farm-source-header .search-icon-bar {
  width: 60px;
  height: 34px;
  padding-top: 12px;
  padding-left: 12px;
  cursor: pointer;
  font-size: 16px;
}
#farm-source-header .search-box form div,
#farm-source-header .search-box-mobile form div
{
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}
#farm-source-header .search-box-mobile form .search-field
#farm-source-header .search-box form .search-field {
  width: 80%;
}

#farm-source-header span.search-icon {
  background: url(/themes/farmsource/images/ic-search.png) no-repeat;
  background-size: 14px 14px;
  height: 34px;
  width: 40px;
  display: block;
  border-left: solid 2px #e6e6e6;
  background-position: 20px 12px;
}

#farm-source-header span.search-icon {
  border-left:  solid 2px #e6e6e6;
}

#farm-source-header .close-icon-wrapper {
  float: right;
}

#farm-source-header span.close-icon {
  background: url(/themes/farmsource/images/ic-close.png) no-repeat;
  background-size: 14px 14px;
  height: 34px;
  width: 40px;
  display: block;
  border-left: 0;
  background-position: 20px 12px;
}
#farm-source-header .search-box span.search-icon {
  border-left: 0;
}
#farm-source-header .search-box-mobile input,
#farm-source-header .search-box input {
  font-size: 18px;
  border: none;
  /*border-bottom: 1px solid #e6e6e6;*/
}
#farm-source-header .search-box-mobile input:focus,
#farm-source-header .search-box input:focus {
  background-color: #ffffff;
  outline: none;
}

@media only screen and (max-width: 1140px) {
    .Navbar-firstChildContainerSupport {
        margin-left: -81px;
    }
}

/**
* MAIN MOBILE MEDIA QUERY
 */
@media only screen and (max-width: 999px) {
  .Navbar {
    display: none;
  }

  /**
   * MOBILE NAVBAR
   */
  .responsive-menu.custom-dropdown .MobileNavbar {
    display: none;
  }

  .responsive-menu.custom-dropdown.open .MobileNavbar {
    display: block;
  }
  
  .MobileNavbar.slide-menu {
    width: 100%;
    top: 67px;
  }

  /* The navigation menu */
  /* .navbar { */
  .MobileNavbar {
    z-index: 999;
    overflow: auto;
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 300;
    height: auto;
    margin-top: 40px;
    width: 100%;
  }

  .responsive-menu.custom-dropdown.open .MobileNavbar {
    height: auto;
    bottom: 0;
  }

  .MobileNavbar .Navbar-link {
    margin: 0;
  }

  .MobileNavbar .Navbar-link.active {
    border-bottom: none;
  }

  .MobileNavbar .Navbar-subNavCarat {
    position: absolute;
    right: 10px;
    font-size: 27px;
  }

  .MobileNavbar .Navbar-parentContainer {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;
  }

  .MobileNavbar .Navbar-linkContainer {
    list-style: none;
    padding: 0;
    line-height: 1.3em;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: #F8F8F8;
    width: 100%;
    margin-left: 0px;
  }

  .MobileNavbar .Navbar-mobileJobsLinkContainer {
    display: block;
  }

  .MobileNavbar .Navbar-searchContainer {
    display: none;
  }

  .MobileNavbar .Navbar-mobileJobsLinkContainer .externalLink {
    height: 20px;
    width: 20px;
    background: url(/themes/farmsource/images/external-link.svg) no-repeat scroll right 0 rgba(0, 0, 0, 0);
    display: inline-block;
    background-position: 5px -60px;
    position: absolute;
    right: 10px;
    background-size: 14px;
  }

  /* a */
  .MobileNavbar .Navbar-subNavButton,
  .MobileNavbar .Navbar-firstChildLink,
  .MobileNavbar .Navbar-firstChildButton,
  .MobileNavbar .Navbar-secondChildLink {
    padding: 15px 26px 15px 16px;
    display: block;
    text-decoration: none;
    color: #000000;
  }

  .MobileNavbar .selected > .Navbar-subNavButton,
  .MobileNavbar .selected > .Navbar-firstChildLink,
  .MobileNavbar .selected > .Navbar-firstChildButton,
  .MobileNavbar .selected > .Navbar-secondChildLink {
    font-weight: 400;
    color: #4FB546;
  }

  .MobileNavbar .slide-menu__control {
    padding: 7px 15px;
    padding-top: 15px;
    color: #000000;
    font-weight: bold;
  }

  .waSlideMenu-back {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAgCAYAAACinX6EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMpJREFUeNpi/P//P8NIBoyjATAaAKMBMBoAA2Y5IyNJ6mnh1qESACpAfGekBkAZEB8D4iMjMQAKgfgqEO8aiVkgC4gfA/HmkVgGJAHxJyBeMxILwWgovXQk1gJBQCwMxLNHYjXoC8SKQDxpJLYD3IBYG4j7R2JDyAaKOwaiJcg0SJrk/0Z6X2BEZwHkQlAWiKeN5M7QiK4GRxtCaE3hD0C8biSPB4zoztBod3h0QAQVyAPxw5EcAMOzDBgMYDQARgNgNABGdgAABBgAASu3w1KbogcAAAAASUVORK5CYII=) no-repeat;
    background-position: 0% 50%;
    background-size: 32px 16px;
    padding-left: 13px !important;
  }

  .waSlideMenu-back a {
    color: #aaa;
    padding: 15px 26px 15px 16px;
    display: block;
    text-decoration: none;
  }

  #farm-source-header #mobile-search-form .search-form div.search-field input {
    margin-top: 0;
  }

}

/****** FILE: mysite/lib/slide-menu/dist/slide-menu.css *****/
.slide-menu{position:fixed;width:320px;max-width:100%;height:100vh;top:0;right:0;display:none;overflow:hidden;box-sizing:border-box;transform:translateX(100%);overflow-y:auto;z-index:1000}.slide-menu,.slide-menu .slide-menu__slider{transition:transform .3s ease-in-out;will-change:transform}.slide-menu .slide-menu__slider{width:100%;transform:translateX(0)}.slide-menu ul{position:relative;width:100%;margin:0;padding-left:0;list-style:none}.slide-menu ul ul{position:absolute;top:0;left:100%;display:none}.slide-menu ul a{display:block}.slide-menu a{cursor:pointer}

