html {
    touch-action: manipulation;
}

body {
    background-image: url('../img/large_bg.jpg');
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}

.jimmy-container {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    margin: 16px 56px 56px 56px;
}

.inner-container {
    padding-top: 10px;
    padding-left: 100px;
    padding-right: 100px;
}

.header {
    color: #1D4333;
    font-size: 60px;
    font-weight: 800;
    text-align: center;
}

.sub-header {
    color: #000000;
    font-weight: 400;
    font-size: 26px;
    text-align: center;
    margin-top: 35px;
    padding-left: 50px;
    padding-right: 50px;
}

.select-header {
    color: #797979;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin-top: 35;
    margin-bottom: 50px;
    width: 100%;
    letter-spacing: 0.1em;
}

.icon-container {
    border-radius: 6px;
    background-color: #FFFFFF;
    width: 200px;
    height: 200px;
    padding-top: 5px;
    padding-bottom: 30px;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    border-color: #ffffff;
    border-width: 3px;
    border-style: solid;
    box-shadow: 10px 10px 40px 0px rgba(173, 173, 173, 0.2)
}

.icon-container-selected {
    border-color: #396A55;
    border-width: 3px;
    border-style: solid;
}

.icon-container img {
    height: 77px;
    margin-bottom: 30px;
}

.icon-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 450px;
}

.icon-box {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.jimmy-form {
    margin: auto;
    margin-top: 25px;
    width: 400px;
}

.form-text {
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    text-align: right;
}

.form-input {
    border-style: solid;
    border-color: #000000;
    border-width: 1px;
    width: 100%;
    height: 30px;
    padding: 2px;
}

.checkbox {
    float: right;
    border-style: solid;
    border-color: #000000;
    background-color: #FFFFFF;
    border-width: 1px;
    border-radius: 6px;
    height: 30;
    width: 30;
}

.arrow {
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 247px;
    height: 240px;
    z-index: 1;
    top: 0;
    right: -150;
}

.checkmark {
    background-image: url('../img/checkmark.svg');
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 999;
    top: -20;
    right: -183;
}

.checkmark-hidden {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 999;
    top: -20;
    right: -183;
}

.news {
    width: 100%;
    font-size: 16px;
    color: #000000;
}

.checkbox-container {
    width: 100%;
}

.jimmy-button {
    margin: auto;
    width: 100px;
    height: 30px;
    font-weight: 700;
    color: #000000;
    border: 2px solid #000000;
    background-color: #FFFFFF;
}

.jimmy-button:disabled {
    color: #797979;
    border: 2px solid #797979;
}

.jimmy-footer {
    background-image: url('../img/farm.png');
    background-size: 100%;
    border-radius: 0px 0px 10px 10px;
    height: 325px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin-top: -75px;
}

.error {
    border: 2px solid #D02D2D;
    color: #D02D2D;
    text-align: center;
    padding: 3px;
}

.success {
    border: 2px solid #56AD6A;
    background-color: #ECFEEF;
    color: #56AD6A;
    text-align: center;
    padding: 3px;
}

.error p {
    margin: auto;
}

.success p {
    margin: auto;
}

.hidden {
    visibility: hidden;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}
