:root {
    --container-width: 1440px;
    --panel-width: min(70vw, 700px);
    --controls-max-width: var(--panel-width);
    --step-small: 1;
    /* Override Bootstrap font variables */
    --bs-body-font-family: 'SuisseIntl', Arial, Helvetica, sans-serif;
    --bs-font-sans-serif: 'SuisseIntl', Arial, Helvetica, sans-serif;
    --step-large: 10;
    --zoom-min: 1;
    --zoom-max: 3;
    --zoom-step: 0.1;
    --brand-green: #6fb544;
    --brand-green-dark: #4d8e2f;
    --brand-green-soft: #edf6e6;
    --ink: #253746;
    --ink-soft: #55636f;
    --panel-bg: #f7faf5;
    --surface: #ffffff;
    --border: #dfe7d8;
    --shadow: 0 8px 20px rgba(37, 55, 70, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: 'SuisseIntl', Arial, Helvetica, sans-serif !important;
    line-height: 1.4;
    color: var(--ink);
    padding-bottom: 125px;
}

header {
    min-height: 350px;
    background:url(https://image.e.nufarm.com/lib/fe301171716406797d1576/m/1/5fdd5876-9fa9-4fcb-b4a0-a13a9803e91b.jpg) no-repeat;
    background-size:cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.cool-season {
    background:url(https://image.e.nufarm.com/lib/fe301171716406797d1576/m/1/eb1ad0f7-b183-4312-94bb-8a0296284110.jpg) no-repeat;
}
.title-wrap {
    text-align: center;
    margin-top: 50px;
}
h1 {
    display: inline-block;
    padding: 10px 50px;
    background: #fff;
    background-color: rgb(255, 255, 255);
    color: #1c3f24;
    letter-spacing: -1px;
    text-transform: none;
    font-size: 53px !important;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.nav ul li a {
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none; 
    border-bottom: 5px solid transparent;
}
.nav ul li a:hover {
    border-bottom-color: #bad550;
}

.app {
    width: min(var(--container-width), 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    justify-items: center;
    padding:60px 0;
}

.wheel-panel {
    min-width: 0;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.wheel-heading {
    width: min(100%, calc(var(--panel-width) + 24px));
    text-align: center;
}

.subtitle {
    margin: 6px 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    max-width: 58ch;
}

.wheel-wrap {
    min-width: 900px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: grid;
    gap: 8px;
    justify-items: center;
    margin-top: 20px;
}

.wheel-viewport {
    width: 100%;
    max-width: var(--panel-width);
    height: var(--wheel-viewport-size, var(--panel-width));
    display: grid;
    place-items: center;
    overflow: visible;
    transition: height 120ms ease;
}

.wheel {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    overflow: visible;
}

.wheel:active {
    cursor: grabbing;
}

.wheel:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--brand-green);
    outline-offset: 3px;
}

.wheel-stage {
    position: absolute;
    inset: 0;
    transform-origin: 50% 50%;
    will-change: transform;
}

.layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.bg {
    transform-origin: 50% 50%;
    will-change: transform;
}

.controls-panel {
    width: 100%;
    display: flex;
    padding: 12px 16px;
    background: #1C3F24;
    position: fixed;
    bottom:0;
    left:0;
    right:0;
    z-index: 10;
    min-height: 125px;
}

.control-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}
.control-row.rotate-controls {
    width:450px;
    margin-right: 20px;
}
.compact-label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 187.5% */
}

input[type="range"] {
    width: 100%;
    margin: 0;
    accent-color: #BAD550;
}

button {
    font: inherit;
    font-weight: 600;
    padding: 0.55rem 0.8rem;
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #1C3F24;
    transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
    white-space: nowrap;
}

#zoomOut,
#zoomIn {
    background: #1C3F24;
    border:2px solid #409756;
    width: 47px;
    height: 47px;
    color:#FFF;
}
#zoomOut:hover,
#zoomIn:hover {
    background: var(--brand-green-dark);
}

button:hover {
    color: var(--brand-green-dark);
}

button:active {
    transform: translateY(0);
}

#reset,
#resetZoom {
    background: #409756;
    border-color: var(--brand-green);
    color: #ffffff;
    height: 47px;
    border:none;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 187.5% */
    letter-spacing: 1.6px;
    text-transform: uppercase;    
}

#reset:hover,
#resetZoom:hover {
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    color: #ffffff;
}

.zoom-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.step-labels {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 2px;
    width: 100%;
    margin-top: -2px;
    font-size: 0.62rem;
    color: var(--ink-soft);
    user-select: none;
    line-height: 1.05;
}

.step-labels span {
    text-align: center;
    letter-spacing: -0.01em;
}

.wheel-closing {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}
.wheel-closing a {
    color:#409756;
    font-weight: 700;
    text-decoration: none;
}

.btn {
    border:1px solid #409756;
    display: block;
    border-radius: 50px;
    background: #409756;    
    color: #FFF !important;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 166.667% */
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 20px;
    padding:20px 35px;
}
.btn:hover {
    background: #bad550;
    color: #1c3f24 !important;
    border-color: #1c3f24;    
}
.site-footer {
    position: relative;
    padding: 48px 0;
    border-top: 1px solid #bad550;
    background: #fff;
    font-size: 11px;
}
.site-subfooter.new-subfooter {
  background: #2e2e2e;
  padding: 16px 0;
font-size: 10px;
  line-height: 2.7;  
}
.site-subfooter.new-subfooter .menu {
  display: -webkit-flex;
  display: flex;
  gap: 44px;
}
.site-subfooter ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: table;
}
.site-subfooter.new-subfooter .menu li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.5px;
  text-decoration: none;
}
.site-subfooter ul li a {
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.site-subfooter ul li a:hover {
  border-bottom: 1px solid #fff;
}
.site-subfooter.new-subfooter .footer_copyright_text {
  text-align: right;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.5px;
}
.site-footer__logo img {
  max-width: 125px;
  width: 100%;
}
.control-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: -30px;
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 40px !important;
        line-height: 42px !important;
    }
    .control-row.rotate-controls {
        width:100%;
        margin-right: 0;
    }  
    .control-wrap {
        display: block;
        width: 100%;
    }   
    .nav {
        margin-top: 15px;
    }
    .header-content {
        display: block;
        width: 100%;
        margin-top: 0;
    }   
    body {
        padding-bottom: 177px;
    }    
    .btn {
    font-size: 14px;
    padding: 10px 15px;
    }      
}
@media (max-width: 900px) {
    :root {
    --panel-width: min(90vw, 520px);
    }

    .control-row {
    grid-template-columns: 1fr;
    gap: 8px;
    }

    .zoom-buttons {
    justify-content: flex-start;
    }
}