﻿@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

html {
    margin: 0 auto;
}

body {
    background: #ffffff;
    font-family: Open Sans, sans-serif;
    margin: 0;
    min-width: 700px;
}

.page-content {
    margin: 0 auto 0 auto;
    padding: 0;
    max-width: 1600px;
}

input {
    font-family: Open Sans, sans-serif;
    box-sizing: border-box;
}

select {
    padding: 3px 4px;
}

div,span,p,h1,h2,h3,h4,h5,h6,table,tr,td {
    box-sizing: border-box;
}

p {
    white-space: normal;
}

.floatLeft{
    float: left;
}
.floatRight {
    float: right;
}
.smallerFont {
    font-size: smaller;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.translucent {
    opacity: 0.6;
}

.disabled {
    color: #555;
}

select.disabled,
input.disabled {
    background-color: rgba(238,238,238,0.75);
    border: 1px solid #777;
    pointer-events: none;
}

.topalign {
    vertical-align: top;
}

.inlineblock {
    display: inline-block;
}

.hidden {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.00);
}
.nowrap {
    white-space: nowrap;
}

.thinborder {
    border: 1px solid #555;
}

.nounderline {
    text-decoration: none;
}

.lightgraybackground {
    background-color: #ddd;
}

.yellowBackground {
    background-color: #ffff77;
}

.tanBackground {
    background-color: #FFE4C4;
}

.spacer-100px {
    display: inline-block;
    width: 100px;
}

.spacer-150px {
    display: inline-block;
    width: 150px;
}

.spacer-200px {
    display: inline-block;
    width: 200px;
}

.width320px {
    width: 320px
}

.nonwrappingdiv {
    display: inline-block;
    text-wrap: none;
    overflow: visible;
}

.indent-20px {
    margin-left: 20px;
}

.indent-both-sides-20px {
    margin-left: 20px;
    margin-right: 20px;
}

.indent-both-sides-10px {
    margin-left: 10px;
    margin-right: 10px;
}

.black-link:hover,
.black-link:visited,
.black-link {
    color: #000;
    text-decoration: none;
}

.force-width-700px {
    min-width: 700px;
    max-width: 700px;
    width: 700px;
}

.fa-center {
    line-height: inherit !important;
    vertical-align: middle;
    margin-right: 4px;
}

#draw-attention-left-arrow {
    display: none;
    margin-left: 4px;
    margin-right: 100px;
    opacity: 0;
    position: absolute;
    color: #A50a0e;
    font-weight: 700;
    vertical-align: top;
}

.draw-attention-left-arrow-visible {
    display: inline-block !important;
    animation: bounce-in-right 1.2s ease 1s 1 normal forwards;
}

@media only screen and (max-width:900px) {
    .draw-attention-left-arrow-visible {
        display: block !important;
        margin: 4px 0px !important;
        position: unset !important;
    }
    .draw-attention-left-arrow-visible i {
        display: none !important;
    }
}

@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(400px);
    }
    82% {
        opacity: 1;
        transform: translateX(-3px);
    }
    93% {
        opacity: 1;
        transform: translateX(7px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* ** BEGIN Simple Modal Box ** */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    padding-top: 40px;
    min-width: 700px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-header {
    padding: 2px 0px 2px 16px ;
    background-color: #336633;
    color: white;
}

.modal-header h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.modal-body {
    display: inline-block;
    padding: 2px 16px;
    margin: 16px 0px;
}

.modal-body p {
    font-size: 16px;
}

.modal-body td {
    padding-right: 8px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #336633;
    color: white;
}

.modal-content {
    position: relative;
    background-color: #fafaff;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 1200px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5),0 6px 20px 0 rgba(0,0,0,0.5);
    animation-name: modal-animate;
    animation-duration: 0.4s
}

@media only screen and (max-width: 1000px) {
    .modal-content {
        width: 85%;
    }
}

@media only screen and (max-width: 900px) {
    .modal-content {
        width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .modal-content {
        width: 95%;
    }
}

.modal-close {
    color: #ffffff;
    float: right;
    font-size: 32px;
    font-weight: 600;
    padding: 0px 16px;
}

.modal-close:hover,
.modal-close:focus {
    background-color: rgba(0,0,0,0.25);
    text-decoration: none;
    cursor: pointer;
}

.modal-error {
    color: #cc0000;
    font-weight: 700;
}

@keyframes modal-animate {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
} 


/* ** END Simple Modal Box ** */


.topBannerLogo {
    width:172px;
}

.topBannerSection {
    background-color: #ffffff;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #363636;
    text-decoration-color: #363636;
    grid-gap: 0.25rem;
    gap: 0.25rem;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 700px;
    min-height: 68px;
}

.topBannerSection a {
    display: inherit;
    cursor: pointer;
    color: #363636;
    text-decoration: none;
}

.topnav-selleraccount,
.topnav-buyeraccount {
    background-color: #efefef;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-left: 24px;
    min-width: 160px;
}
.topnav-selleraccount {
    margin-left: 6px;
}


.topnav-account-account-dropmenu,
.topnav-selleraccount-dropmenu,
.topnav-buyeraccount-dropmenu {
    position: relative;
    overflow: visible;
}

.topnav-account-account-dropmenu a,
.topnav-selleraccount-dropmenu a,
.topnav-buyeraccount-dropmenu a {
    font-size: 14px;
    padding: 8px 16px;
}

.topnav-account-account ul,
.topnav-selleraccount ul,
.topnav-buyeraccount ul {
    padding: 0px 16px;
    margin: 0;
    overflow: hidden;
    list-style: none;
}

.topnav-account-account-dropmenu a:hover,
.topnav-selleraccount-dropmenu a:hover,
.topnav-buyeraccount-dropmenu a:hover {
    background-color: #ddd;
}

.topnav-buyeraccount .topnav-buyeraccount-dropmenu-inner,
.topnav-selleraccount .topnav-selleraccount-dropmenu-inner,
.topnav-account-account ul {
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    position: absolute;
    padding-top: 8px;
    padding-bottom: 8px;
}

.topnav-buyeraccount:hover .topnav-buyeraccount-dropmenu-inner,
.topnav-selleraccount:hover .topnav-selleraccount-dropmenu-inner,
.topnav-account-account:hover ul {
    z-index: 9;
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.topnav-buyeraccount:hover .topnav-buyeraccount-dropmenu-inner,
.topnav-selleraccount:hover .topnav-selleraccount-dropmenu-inner {
    top: 8px;
}

.topnav-account-account:hover ul {
    top: 0px;
}

.topnav-account-account {
    min-width: 132px;
}

.topnav-selleraccount .topnav-selleraccount-dropmenu-inner,
.topnav-buyeraccount .topnav-buyeraccount-dropmenu-inner,
.topnav-account-account ul {
    box-shadow: 0 4px 8px -1px rgba(0, 0, 0, 0.2);
}

.topnav-selleraccount .topnav-selleraccount-dropmenu-inner,
.topnav-buyeraccount .topnav-buyeraccount-dropmenu-inner {
    margin: 0;
    background-color: #efefef;
    top: 32px;
    left: -16px;
    min-width: 160px;
}

.topnav-selleraccount ul,
.topnav-buyeraccount ul {
    background-color: #efefef;
}

.topnav-dropmenu-title {
    background-color: #efefef;
    font-weight: 700;
    padding: 12px 0px 12px 16px;
}
.topnav-dropmenu-title:first-child {
    padding-top: 0px;
}

.topnav-account-account ul {
    background-color: #ffffff;
    right: -12px;
    top: 24px;
}

.topnav-account-account ul li,
.topnav-selleraccount ul li,
.topnav-buyeraccount ul li {
    margin: 0px -16px;
    padding: 0;
    list-style-type: none;
}

.topnav-menu {
    margin-left: auto;
    padding: 0;
}

.topnav-menu-items,
.topnav-account {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.topnav-menu-items li,
.topnav-account li {
    padding-left: 12px;
    padding-right: 12px;
}

.topnav-account-logon  {
    display: table;
}

.topnav-account-logon-logon {
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}

.topnav-account-contact,
.topnav-account-account-outercontainer {
    display: flex;
}

.topnav-account > li:first-child {
    border-right-color: #ECECEC;
    border-right-style: solid;
    border-right-width: 1px;
}

.topnav-account li:last-child {
    padding-right: 0px;
}

.topnav-account-icon {
    display: block;
    vertical-align: middle;
    width: 36px;
    height: 36px;
}

.topnav-account-contact-container,
.topnav-account-account-container {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
}

.topnav-account-contact-calltollfree,
.topnav-account-account-welcome {
    display: block;
    font-size: 11px;
    line-height: 11px;
}

.topnav-account-contact-number {
    display: block;
    font-weight: 700;
}

.topnav-account-account-downarrow {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
}

@media only screen and (max-width:1200px) {
    .topnav-account-account {
        min-width: 0px;
    }

    .topnav-account-account-welcome, 
    .topnav-account-account-user {
        display: none;
        visibility: hidden;
        margin: 0;
        padding: 0;
        width: 0px;
    }
    .topnav-account-account ul {
        left: -120px !important;
        width: 150px !important;
        right: 0px !important;
    }

    .topnav-selleraccount,
    .topnav-buyeraccount {
        min-width: 150px;
    }
}

@media only screen and (max-width:1040px) {
    .topnav-account-contact,
    .topnav-account li {
        padding-left: 0;
        margin: 0;
    }
    .topnav-account > li:first-child {
        display: none;
        visibility: hidden;
        margin: 0;
        padding: 0;
        width: 0px;
    }
}

@media only screen and (max-width:900px) {
    .topnav-buyeraccount {
        margin-left: 12px;
    }
    .topnav-selleraccount,
    .topnav-buyeraccount {
        min-width: 125px;
    }
    .topnav-selleraccount,
    .topnav-buyeraccount,
    .topnav-menu-items li {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
    }
    .topnav-account-account ul {
        left: -90px !important;
        width: 120px !important;
    }
    .topnav-selleraccount ul,
    .topnav-buyeraccount ul {
        width: 100%;
        margin-left: 4px;
        padding: 0px 12px;
    }
    .topnav-selleraccount ul li,
    .topnav-buyeraccount ul li {
        margin: 0px -12px;
    }
    .topnav-account-account-dropmenu a,
    .topnav-selleraccount-dropmenu a,
    .topnav-buyeraccount-dropmenu a {
        font-size: 12px;
        padding: 3px 12px;
    }
}
@media only screen and (max-width:780px) {
    .topnav-buyeraccount {
        margin-left: 6px;
    }
    .topnav-menu-items li,
    .topnav-account li {
        padding-left: 6px;
        padding-right: 6px;
        font-size: 12px;
    }
}


.vertical-separator {
    border-left: 2px solid #000000; /* Sets the color and width of the separator */
    height: 100px; /* Adjust the height as needed */
    margin-left: 10px; /* Optional: space on the left */
    margin-right: 10px; /* Optional: space on the right */
}

.bodyContainer {
    background-color: #d6e3cc;
    margin: 20px 60px 60px 60px;
    padding: 30px;
    border-radius: 35px;
}

/* Base table style */
.table-modern {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.table-modern thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.table-modern th,
.table-modern td {
    padding: 12px 15px;
}

.table-modern tbody tr {
    border-bottom: 1px solid #dddddd;
}

/* Zebra stripes for rows */
.table-modern tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* Hover effect for rows */
.table-modern tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .table-modern thead {
        display: none;
    }

    .table-modern, .table-modern tbody, .table-modern th, .table-modern td, .table-modern tr {
        display: block;
    }

    .table-modern tr {
        margin-bottom: 15px;
    }

    .table-modern td {
        text-align: right;
        padding-left: 50%;
        text-align: right;
        position: relative;
    }

    .table-modern td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}


.standard-body-margins {
    margin-left: 70px;
    margin-right: 70px;
}

@media screen and (max-width: 1000px) {
    .standard-body-margins {
        margin-left: 48px;
        margin-right: 48px;
    }
}

@media screen and (max-width: 900px) {
    .standard-body-margins {
        margin-left: 35px;
        margin-right: 35px;
    }
}

@media screen and (max-width: 800px) {
    .standard-body-margins {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.buyer-background {
    background-color: #fafaff;
}

.top-message-box {
    position: relative;
    display: block;
    clear: both;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 46px;
    margin: 16px;
    color: #fff;
    background-color: #336633;
    font-size: 15px;
    font-weight: 500;
}

@keyframes top-message-box-flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.top-message-box-attention {
    background-color: #d97500;
}

.top-message-box-error {
    background-color: #880000;
    font-weight: 600;
}

.top-message-box-attention .fa-exclamation-triangle,
.top-message-box-error .fa-exclamation-triangle {
    animation: top-message-box-flash 0.6s ease-in-out 3;
}

.top-message-box-smaller {
    font-size: 12px;
}

.top-message-box-closebutton {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    display: inline-block;
    padding: 4px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 24px;
    font-weight: 600;
}



.site-alert-message-box {
    position: relative;
    display: table;
    clear: both;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 46px;
    margin: 16px;
    color: #fff;
    background-color: #663333;
    font-weight: 600;
}

.site-alert-message-box-closebutton {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    display: inline-block;
    padding: 4px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 24px;
}

.generic-message-box {
    position: relative;
    display: block;
    clear: both;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 46px;
    margin: 16px;
    color: #fff;
    background-color: #444444;
    border: 1px solid #ccc;
    font-size: 14px;
    font-weight: 400;
}

.generic-message-box-closebutton {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    display: inline-block;
    padding: 4px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 24px;
    font-weight: 600;
}

.generic-message-box a,
.generic-message-box a:hover,
.site-alert-message-box a,
.site-alert-message-box a:hover,
.top-message-box a,
.top-message-box a:hover {
    color: #fff;
}

.site-alert-message-box-closebutton:hover,
.top-message-box-closebutton:hover,
.generic-message-box-closebutton:hover {
    color: #fff !important;
    background-color: rgba(0,0,0,0.6) !important;
}




.hero-section {
    max-width: 100%;
    background-color: #952a2e;
    color: #ffffff;
    display: flex;
    flex-direction: row;
}

.hero-section > div {
    flex: 1;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: 70px;
    padding-right: 70px;
}

.hero-section-image {
    background-image: url(/images/hero_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media screen and (max-width: 990px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-section > div {
        padding: 0px;
        margin-top: 48px;
        margin-bottom: 48px;
        margin-left: 70px;
        margin-right: 70px;
    }

    .hero-section > div > h1 {
        margin-top: 0px;
    }

    .hero-section-image {
        margin-top: 0px !important;
        min-height: 300px;
    }
}





.nyp-section {
    z-index: 1;
    width: 70%;
    max-width: 1100px;
    min-height: 100px;
    min-width: 600px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    border-radius: 6px;
    position: relative;
}

.nyp-section-container {
    padding: 30px;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

.nyp-section-message {
    box-sizing: border-box;
    flex: 4;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
}

.nyp-section-message-title {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
    .nyp-section-message {
        font-size: 12px;
    }

    .nyp-section-message-title {
        font-size: 18px;
    }
}


.nyp-section-searchbox {
    flex: 6;
    margin-top: auto;
    margin-bottom: auto;
}

.nyp-section-searchbox-container {
    display: flex;
    flex-direction: row;
    border: 1px solid #e5e5e7;
    border-radius: 6px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 10px;
    padding-top: 8px;
}

.nyp-section-searchbox-container > i {
    flex-grow: 0;
    color: #555555;
    margin-top: auto;
    margin-bottom: auto;
}

.nyp-section-searchbox-container > input {
    flex-grow: 1;
    outline: none;
    border: none;
    margin: 0;
    padding-left: 12px;
    font-size: 15px;
    font-weight: 500;
}

.nyp-section-searchbox-container > button {
    cursor: pointer;
    flex-grow: 0;
    background-color: #d61d25;
    color: #ffffff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    padding: 17px;
    transition: all 0.4s ease-in-out;
}

.nyp-section-searchbox-container > button:hover {
    background-color: #952a2e;
}

.top-products-traded-section,
.recent-trades-section {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 70px;
    padding-right: 70px;
}

.top-products-traded-header,
.recent-trades-header {
    display: flex;
    flex-direction: row;
}

.top-products-traded-header-title,
.recent-trades-header-title {
    flex: 2;
    padding-bottom: 24px;
}

.top-products-traded-header-title-title,
.recent-trades-header-title-title {
    padding-top: 0px;
    color: #363636;
    display: block;
    font-size: 36px;
    font-weight: 700;
    padding-top: 8px;
    padding-bottom: 18px;
}

.top-products-traded-header-title-subtitle,
.recent-trades-header-title-subtitle {
    color: #363636;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
}

.top-products-traded-header-title-help,
.recent-trades-header-title-help {
    color: #8A8A8A;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 8px;
}

.top-products-traded-header-showmore,
.recent-trades-header-showmore {
    flex: 1;
    margin-top: auto;
    margin-bottom: auto;
}

.top-products-traded-header-showmore > a,
.recent-trades-header-showmore > a {
    display: table;
    margin-left: auto;
    margin-right: 0px;
    background-color: rgba(0, 0, 0, 0);
    border-color: #DDDDF7;
    border-radius: 80px;
    border-style: solid;
    border-width: 2px;
    padding: 16px 32px 16px 32px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #9898B5;
    transition: all 0.4s ease-in-out;
}

.top-products-traded-header-showmore > a:hover,
.recent-trades-header-showmore > a:hover {
    color: #000000;
    border-color: #000000;
}




.top-products-traded-items,
.recent-trades-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    max-height: 900px;
    overflow-y: auto;

}

    .top-products-traded-items > *,
    .recent-trades-items > * {
        flex: 0 0 18%;
    }

@media only screen and (max-width:1450px) {
    .top-products-traded-items > *,
    .recent-trades-items > * {
        flex: 0 0 23%;
    }
}

@media only screen and (max-width:1250px) {
    .top-products-traded-items > *,
    .recent-trades-items > * {
        flex: 0 0 30%;
    }
}

@media only screen and (max-width:950px) {
    .top-products-traded-items > *,
    .recent-trades-items > * {
        flex: 0 0 45%;
    }
}



.top-products-traded-items-item,
.recent-trades-items-item {
    display: block;
    font-size: 14px;
    line-height: 21px;
    max-width: 260px;
}

.top-products-traded-items-item-container,
.recent-trades-items-item-container {
    background-color: #FFFFFF;
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.04);
    border-width: 1px;
    border-color: #f9eeee;
    border-radius: 6px;
    border-style: solid;
    padding-top: 24px;
    padding-left: 12px;
    padding-right: 12px;
}

    .top-products-traded-items-item-container > a,
    .recent-trades-items-item-container > a {
        text-decoration: none;
        color: #000000;
    }

.top-products-traded-items-item-title,
.recent-trades-items-item-title {
    line-height: 19px;
    font-size: 16px;
    font-weight: 600;

    overflow: clip;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-products-traded-items-item-price,
.recent-trades-items-item-price {
    margin-top: 4px;
    line-height: 19px;
    font-size: 16px;
    font-weight: 700;
    color: #d5ab37;
}

.top-products-traded-items-item-dashedline {
    padding-top: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #dedede !important;
    width: 100%;
}

.top-products-traded-items-item-genericcount {
    line-height: 1.2;
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 16px;
}

.top-products-traded-items-item-generics {
    line-height: 1.2;
    font-weight: 700;
    font-size: 16px;
}


.top-products-traded-items-item-generics ul {
    margin: 0px;
    padding-top: 4px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 12px;
}

.top-products-traded-items-item-generics ul li {
    padding-top: 8px;
    padding-bottom: 4px;
    list-style-type: none;
    font-weight: 600;
    color: #363636;
}

.top-products-traded-items-item-details,
.recent-trades-items-item-details {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-align: center;
    line-height: 27px;
}

.top-products-traded-items-item-details {
    font-size: 18px;
    color: #D61D25;
    background-color: #FFF7F7;
}

.recent-trades-items-item-details {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #242377;
    background-color: #F6F6FF;
    transition: all 0.4s ease-in-out;
}

a:hover .recent-trades-items-item-details {
    background-color: #EEEEEE;
}

.top-products-traded-items-item-details-text,
.recent-trades-items-item-details-text {
    margin-right: 8px;
}

.top-products-traded-items-item-details-text {
    border-bottom: solid 2px;
}

.top-products-traded-items-item-details > i,
.recent-trades-items-item-details > i {
    vertical-align: middle;
}





.our-users-section {
    color: #363636;
    margin-left: 70px;
    margin-right: 70px;
    background-color: #d7e2cc;
    border-radius: 32px;
    background-image: url(/images/men_with_green.png);
    background-repeat: no-repeat;
    background-size: auto 400px;
    background-position: bottom right;
}

.our-users-container {
    padding: 48px;
}

.our-users-title {
    font-size: 32px;
    font-weight: 700;
    max-width: 700px;
}

.our-users-text {
    font-size: 16px;
    font-weight: 600;
    max-width: 700px;
}

.our-users-customerservice-title {
    font-size: 24px;
    font-weight: 700;
}

.our-users-customerservice-phone > *,
.our-users-customerservice-email > * {
    padding-left: 75px;
}

.our-users-customerservice-phone,
.our-users-customerservice-email {
    padding-top: 20px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: auto 56px;
    background-position: left center;
}

.our-users-customerservice-phone {
    background-image: url(/images/phone_green_icon.svg);
}

.our-users-customerservice-email {
    background-image: url(/images/envelope_green_icon.svg);
}

.our-users-customerservice-phone-title,
.our-users-customerservice-email-title {
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
}

.our-users-customerservice-phone-number,
.our-users-customerservice-email-address {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.our-users-customerservice-phone-number > a,
.our-users-customerservice-email-address > a {
    text-decoration: none;
    color: inherit;
}

.our-users-bottomspacing {
    min-height: 325px;
}



.price-rating-section {
    display: flex;
    background-image: url(/images/truck_img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 70px;
    margin-right: 70px;
    border-radius: 32px;
}

.price-rating-section-container {
    background-color: #FFFFFF;
    margin-top: 35px;
    margin-bottom: 35px;
    margin-left: 35px;
    margin-right: auto;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    transition: all 0.4s ease-in-out;

}

.price-rating-section-searchbox-container input::-webkit-outer-spin-button,
.price-rating-section-searchbox-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-rating-section-searchbox-container input[type=number] {
    -moz-appearance: textfield;
}

.price-rating-section-container-left {
    min-width: 500px;
    max-width: 500px;
    flex: 0 0 500px;
    z-index: 1;
}

.price-rating-section-container-right {
    transition: all 0.4s ease-in-out;
    min-width: 0px;
    max-width: 0px;
    opacity: 0;
    flex: 1 1 auto;
    z-index: 0;
}

.price-rating-section-container-right-stretch {
    min-width: 400px;
    max-width: 400px;
}

.price-rating-section-container-right-visible {
    opacity: 1;
}

.price-rating-section-message,
.price-rating-section-brand,
.price-rating-section-searchbox,
.price-rating-section-whatis {
    margin-left: 36px;
    margin-right: 36px;
}

.price-rating-section-message {
    margin-top: 36px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.price-rating-section-whatis {
    margin-bottom: 48px;
}

.price-rating-section-message-title {
    font-size: 36px;
    font-weight: 700;
}

.price-rating-section-searchbox {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

.price-rating-section-searchbox-container,
.price-rating-section-brand {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    border: 1px solid #e5e5e7;
    border-radius: 6px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 4px;
    padding-top: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.price-rating-section-searchbox-container > input,
.price-rating-section-brand > select {
    flex-grow: 1;
    padding: 0;
    outline: none;
    border: none;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}

.price-rating-section-brand > select {
    padding-top: 10px;
    padding-bottom: 10px;
}

.price-rating-section-brand:focus-within {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.price-rating-section-searchbox-container-unit {
    background-color: #EBEBEB;
    flex-grow: 0;
    border-radius: 4px;
    font-size: 13px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
    vertical-align: middle;
    margin-left: auto;
    margin-right: 0;
    margin-top: auto;
    margin-bottom: auto;
    white-space: nowrap;
}

.price-rating-section-searchbox-container-unit-bold {
    font-weight: 600;
}

.price-rating-section-searchbox > button {
    cursor: pointer;
    flex-grow: 0;
    background-color: #d61d25;
    color: #ffffff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    padding: 17px;
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    min-width: 170px;
    transition: all 0.4s ease-in-out;
}

.price-rating-section-searchbox > button:hover {
    background-color: #952a2e;
}


.price-rating-section-whatis > a {
    font-size: 13px;
    font-weight: 600;
    color: #363636;
}

.price-rating-result-outer-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.price-rating-result-container {
    margin: 0 10px 0 10px;
    position: absolute;
    width: 200%;
    padding-left: 50%;
    padding-right: calc(50% + 50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.price-rating-result-container-error {
    color: #A50a0e;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}
.price-rating-result-container-product {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.price-rating-result-container-price {
    padding-top: 10px;
    font-size: 28px;
    text-align: center;
}
.price-rating-result-container-rating {
    padding-top: 10px;
    font-size: 34px;
    text-align: center;
}

@media only screen and (max-width:1125px) {
    .price-rating-section-container {
        flex-direction: column;
    }

    .price-rating-section-container-left {
        flex: 0 1;
        margin-bottom: -15px;
    }

    .price-rating-section-container-right {
        min-height: 0px;
    }

    .price-rating-section-container-right-stretch {
        min-width: unset;
        max-width: unset;
        min-height: 160px;
    }

    .price-rating-result-container {
        display: inline;
        margin: 0;
        position: static;
        width: unset;
        padding: 0;
        top: unset;
        left: unset;
        transform: none;
    }
}

.footer-outer-container {
    background-color: #20222C;
    max-width: 100%;
    width: 100%;
}

.footer-section {
    background-color: #20222C;
    margin: 80px auto 0px auto;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    padding: 24px;
    max-width: 1600px;
}

.footer-section-menu {
    display: flex;
    flex-direction: row;
}

.footer-section ul {
    margin: 0px;
    padding: 0px;
}

.footer-section ul li {
    list-style-type: none;
    color: #ffffff;
}

.footer-section-menu-follow {
    flex: 1;
    margin-right: 48px;
}

.footer-section-menu-follow-message {
    margin-top: 12px;
    margin-bottom: 12px;
}

.footer-section-menu-follow-follow {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.footer-section-menu-follow ul {
    display: flex;
    flex-direction: row;
    z-index: 1;
    position: absolute;
}

.footer-section-menu-follow ul li {
    padding-right: 24px;
    width: 24px;
    height: 24px;
}

.footer-section-menu-follow-fb {
    width: auto;
    height: 24px;
}

.footer-section-menu-follow-x {
    margin-top: 1px;
    width: 24px;
    height: auto;
}

.footer-section-menu-follow-linkedin {
    margin-top: 1px;
    width: auto;
    height: 22px;
}

.footer-section-menu-lists {
    flex: 2;
    display: flex;
    flex-direction: row;
    margin-left: 48px;
    padding-left: 48px;
    padding-right: 48px;
}

    .footer-section-menu-lists > * {
        flex: 1;
        padding-left: 12px;
        padding-right: 12px;
    }

.footer-section-menu-title {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}


.footer-section-menu-lists ul {
    display: grid;
    grid-gap: 16px;
}

.footer-section-menu-lists a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
}

.footer-section-contact {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
    margin-bottom: 24px;
}

    .footer-section-contact > * {
        flex: 0 1 auto;
    }

.footer-section-contact-dashed-line {
    flex: 1 1 auto;
    transform: translateY(-50%);
    margin: 0;
    border-bottom: 1px dashed #4b4e5f;
}

.footer-section-contact-contact {
    background-color: #222530;
    border-radius: 6px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 2px;
    margin-right: 2px;
}

    .footer-section-contact-contact ul {
        display: flex;
        flex-direction: row;
        margin-left: 12px;
        margin-right: 12px;
    }

        .footer-section-contact-contact ul li {
            flex: 1 1 auto;
            display: flex;
            flex-direction: row;
            margin: 24px;
        }

.footer-section-contact-contact-container {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.footer-section-contact-contact-title {
    flex: 1;
    display: flex;
    font-size: 13px;
    text-transform: uppercase;
}

    .footer-section-contact-contact-title > span {
        align-self: flex-end;
    }

.footer-section-contact-contact-message {
    flex: 1;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 7px;
}

    .footer-section-contact-contact-message > span {
        align-self: flex-start;
    }

    .footer-section-contact-contact-message a {
        text-decoration: none;
        color: #FFFFFF;
    }

.footer-section-timestamp,
.footer-section-external-trademark,
.footer-section-copyright {
    color: #CCCCCC;
    font-size: 12px;
    text-align: center;
    max-width: 900px;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 26px;
    padding-right: 26px;
}

.footer-section-copyright {
    padding-bottom: 12px;
}


@media only screen and (max-width:1160px) {
    .footer-section-menu-lists {
        margin-left: 0;
    }
}

@media only screen and (max-width:1060px) {
    .footer-section-menu-lists {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media only screen and (max-width:1010px) {
    .footer-section-menu-lists {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width:1010px) {
    .footer-section-menu-follow {
        margin-right: 4px;
    }
}


.maintenance-section,
.logon-section,
.useragreement-section {
    display: flex;
    justify-content: center;
}

.maintenance-container,
.logon-container,
.useragreement-container {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    padding: 24px 48px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fafaff;
    border-radius: 24px;
}

.maintenance-container,
.useragreement-container {
    min-width: 950px;
    max-width: 950px;
}

.useragreement-container textarea {
    margin-left: auto;
    margin-right: auto;
    width: 850px;
}

@media only screen and (max-width:1000px) {
    .maintenance-container,
    .useragreement-container {
        min-width: 850px;
        max-width: 850px;
    }
    .useragreement-container textarea {
        width: 750px;
    }
}

@media only screen and (max-width:800px) {
    .maintenance-container,
    .useragreement-container {
        min-width: 700px;
        max-width: 700px;
    }
    .useragreement-container textarea {
        width: 600px;
    }
}

.maintenance-container > img,
.logon-container > img,
.useragreement-container > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}

.maintenance-title,
.logon-welcome,
.useragreement-title {
    width: 100%;
    display: block;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 36px;
}

.maintenance-title {
    padding-top: 48px;
}

.logon-container input[type=text],
.logon-container input[type=password] {
    width: 280px;
    border-width: 1px;
    border-radius: 4px;
    border-style: solid;
    border-color: #DEE2E6;
    color: #212529;
    padding: 8px 16px 8px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.logon-container > form {
    display: flex;
    flex-direction: column;
}

.logon-username {
    display: block;
    margin: 8px auto 8px auto;
}
.logon-username-helptext {
    display: block;
    margin: 8px auto 8px auto;
    max-width: 275px;
    font-size: 12px;
    color: #e48c8c;
}

.logon-password {
    display: block;
    margin: 8px auto 8px auto;
}

.logon-password > img {
    position: absolute;
    margin-top: 8px;
    margin-left: -32px;
}

.logon-forgotpassword {
    padding: 0px;
}

.logon-forgotpassword a {
    display: block;
    width: 280px;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    margin: 0 auto 0 auto;
    padding: 8px 0px 8px 0px;
}

.logon-submit button {
    cursor: pointer;
    display: block;
    width: 280px;
    margin: 24px auto 0 auto;
    padding: 12px;
    background-color: #198754;
    border-width: 0;
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
}

.logon-submit button:hover {
    background-color: #146C43;
}

.logon-forgot-register {
    display: block;
    width: 280px;
    font-size: 16px;
    margin: 32px auto 0 auto;
}

    .logon-forgot-register a {
        color: #000000;
    }

.useragreement-container textarea {
    margin-top: 25px;
    margin-bottom: 10px;
}

.useragreement-container p {
    text-align: center;
}

.useragreement-container-printarea p {
    text-align: left;
}

.useragreement-selection,
.useragreement-buttons {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.useragreement-selection {
    font-weight: 600;
    font-size: 18px;
}

.useragreement-buttons {
    padding-top: 5px;
}

.useragreement-selection > input {
    margin-right: 7px;
}

.useragreement-selection > input:last-child {
    margin-left: 25px;
}

.useragreement-button {
    cursor: pointer;
    flex-grow: 0;
    background-color: #198754;
    color: #ffffff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 17px;
    margin-left: 10px;
    min-width: 150px;
    transition: all 0.4s ease-in-out;
}

.useragreement-button:hover {
    background-color: #146C43;
}

.useragreement-agreement {
    position: relative;
}

#useragreement-print {
    position: absolute;
    top: 33px;
    right: 25px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s linear;
}

#useragreement-print > img {
    width: 32px;
    height: 32px;
}

.useragreement-agreement:hover #useragreement-print {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}
.topproducts-container,
.buy-sell-container,
.buy-sell2-container,
.info-pages-container,
.register-container,
.my-nyp-container,
.profile-container,
.licenses-container,
.paymentoptions-container,
.shippingstatus-container,
.addresslist-container {
    background-color: #d7e2cc;
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: right bottom;
    border-radius: 32px;
    margin-top: 32px;
    padding: 32px;
    min-height: 500px;
    padding-bottom: 50px;
}

.register-container,
.shippingstatus-container {
    background-image: url(/images/table_bg.webp);
}

.buy-sell2-container,
.addresslist-container {
    background-image: url(/images/farmtradebg_corn1.webp);
}

.paymentoptions-container {
    background-image: url(/images/farmtradebg_wheat1.webp);
}

.topproducts-container,
.licenses-container {
    background-image: url(/images/farmtradebg_corn2.webp);
}

.info-pages-container,
.profile-container {
    background-image: url(/images/farmtradebg_wheat2.webp);
}

.buy-sell-container,
.my-nyp-container {
    background-image: url(/images/farmtradebg_wheat3.webp);
}

.info-pages-container {
    padding-bottom: 100px;
}

.shippingstatus-pleasenote {
    min-width: 300px;
    width: 45%;
    font-size: 12px;
    margin-bottom: 80px;
}

.paymentoptions-flexboxitem {
    min-width: 280px;
    flex-wrap: wrap;
}

.paymentoptions-paymenticon {
    float: left;
    width: 75px;
    height: auto;
    padding-right: 16px;
}

.paymentoptions-paymenttext {
    overflow: hidden;
    margin-bottom: 16px;
}

.paymentoptions-exampleimage {
    margin: 10px;
    border: 1px solid #000;
}







.inline-fixed-width-100px {
    display: inline-block;
    min-width: 100px;
    width: 100px;
}

.inline-fixed-width-150px {
    display: inline-block;
    min-width: 150px;
    width: 150px;
}

.inline-fixed-width-175px {
    display: inline-block;
    min-width: 175px;
    width: 175px;
}

.inline-fixed-width-200px {
    display: inline-block;
    min-width: 200px;
    width: 200px;
}

.inline-fixed-width-250px {
    display: inline-block;
    min-width: 250px;
    width: 250px;
}

.inline-fixed-width-300px {
    display: inline-block;
    min-width: 300px;
    width: 300px;
}

.inline-fixed-width-400px {
    display: inline-block;
    min-width: 400px;
    width: 400px;
}





.data-grid-1-container,
.data-flex-1-container,
.data-table-1-container {
    background-color: #D1E7DD;
    border-radius: 4px;
    border-width: 1px;
    border-color: #D0E2D7;
    border-style: solid;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.data-flex-1-horizontal-split-container,
.data-flex-1-container {
    display: flex;
    flex-direction: column;
}

.data-flex-1-veritcal-split-container {
    display: flex;
    flex-direction: row;
}


.data-grid-1-container {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fit, 1fr);
}

.data-grid-1-item-boxed,
.data-grid-1-item {
    margin: 8px;
}

.data-grid-1-item-content {
    padding: 16px;
}

.data-grid-1-flex {
    display: flex;
    flex-direction: column;
}

.data-grid-1-flex-normal {
    flex: 1 1 auto;
}

.data-grid-1-flex-end {
    flex: 0 1 auto;
    align-self: flex-end;
}

.data-grid-1-container a,
.data-grid-1-container a:hover,
.data-flex-1-container a,
.data-flex-1-container a:hover,
.data-table-1-container a,
.data-table-1-container a:hover {
    text-decoration: none;
    color: #003300;
}

.data-grid-1-titlebox a,
.data-flex-1-titlebox a,
.data-table-1-titlebox a,
.data-grid-1-titlebox a:hover,
.data-flex-1-titlebox a:hover,
.data-table-1-titlebox a:hover,
.data-grid-1-titlebox,
.data-flex-1-titlebox,
.data-table-1-titlebox {
    width: 100%;
    color: #ffffff;
    background-color: #336633;
    font-weight: 700;
    font-size: 16px;
    padding: 8px;
}

.data-flex-1-titlebox {
    flex: 0 0 auto;
}

.data-grid-1-subtitlebox a,
.data-flex-1-subtitlebox a,
.data-table-1-subtitlebox a,
.data-grid-1-subtitlebox a:hover,
.data-flex-1-subtitlebox a:hover,
.data-table-1-subtitlebox a:hover,
.data-grid-1-subtitlebox,
.data-flex-1-subtitlebox,
.data-table-1-subtitlebox {
    width: 100%;
    color: #ffffff;
    background-color: #738073;
    font-weight: 600;
    font-size: 14px;
    padding: 6px;
    text-decoration: none;
}

.data-flex-1-subtitlebox {
    flex: 0 0 auto;
}

.data-grid-1-subtitlebox:hover a .showlink,
.data-flex-1-subtitlebox:hover a .showlink,
.data-table-1-subtitlebox:hover a .showlink {
    text-decoration: underline;
}

.data-flex-1-row-scale-1 {
    flex: 1;
}

.data-flex-1-row-scale-2 {
    flex: 2;
}

.data-flex-1-row-scale-3 {
    flex: 3;
}

.data-flex-1-row-boxed,
.data-flex-1-row {
    flex: 1 1 auto;
    margin: 8px;
}

.data-flex-1-row-thin-top-bottom-margin {
    margin-top: 1px;
    margin-bottom: 1px;
}

.data-grid-1-item-boxed,
.data-flex-1-row-boxed {
    border: 1px solid #738073;
}

.data-flex-1-split-horizontal {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 48px;
}

.data-flex-1-split-vertical {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 700px) {
    .data-flex-1-split-vertical-below-700px {
        flex-direction: column !important;
    }
}

.data-flex-1-wrap {
    flex-wrap: wrap;
}

.data-flex-1-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.data-flex-1-basis-20pct {
    flex-basis: 20%;
}

.data-flex-1-basis-25pct {
    flex-basis: 25%;
}

.data-flex-1-basis-30pct {
    flex-basis: 30%;
}

.data-flex-1-basis-40pct {
    flex-basis: 40%;
}

.data-flex-1-basis-45pct {
    flex-basis: 45%;
}

.data-flex-1-basis-50pct {
    flex-basis: 50%;
}

.data-flex-1-basis-60pct {
    flex-basis: 60%;
}

.data-flex-1-basis-75pct {
    flex-basis: 75%;
}

.data-flex-1-row-fixed {
    flex: 0;
}

.data-flex-1-row-nonfield {
    flex: 1;
}

.data-flex-1-row-fieldname {
    flex: 0 0 200px;
}

.data-flex-1-row-fielddata {
    flex: 1 0 auto;
}

.data-table-1-row-fielddata-input-teenytiny input[type=number],
.data-table-1-row-fielddata-input-teenytiny input[type=text],
.data-table-1-row-fielddata-input-teenytiny input[type=password],
.data-flex-1-row-fielddata-input-teenytiny input[type=number],
.data-flex-1-row-fielddata-input-teenytiny input[type=text],
.data-flex-1-row-fielddata-input-teenytiny input[type=password] {
    min-width: 50px !important;
    width: 50px !important;
}

.data-table-1-row-fielddata-input-tinier input[type=number],
.data-table-1-row-fielddata-input-tinier input[type=text],
.data-table-1-row-fielddata-input-tinier input[type=password],
.data-flex-1-row-fielddata-input-tinier input[type=number],
.data-flex-1-row-fielddata-input-tinier input[type=text],
.data-flex-1-row-fielddata-input-tinier input[type=password] {
    min-width: 75px !important;
    width: 75px !important;
}

.data-table-1-row-fielddata-input-tiny input[type=number],
.data-table-1-row-fielddata-input-tiny input[type=text],
.data-table-1-row-fielddata-input-tiny input[type=password],
.data-flex-1-row-fielddata-input-tiny input[type=number],
.data-flex-1-row-fielddata-input-tiny input[type=text],
.data-flex-1-row-fielddata-input-tiny input[type=password] {
    min-width: 100px !important;
    width: 100px !important;
}

.data-flex-1-row-fielddata input[type=text],
.data-flex-1-row-fielddata input[type=password] {
    width: 60%;
    min-width: 300px;
    max-width: 600px;
}

.data-flex-1-row input[type=checkbox] {
    margin-left: 0px;
    margin-right: 10px;
}

@media only screen and (max-width:1000px) {
    .data-flex-1-row-fielddata input[type=text],
    .data-flex-1-row-fielddata input[type=password] {
        width: 80%;
    }
}

@media only screen and (max-width:800px) {
    .data-flex-1-row-fielddata input[type=text],
    .data-flex-1-row-fielddata input[type=password] {
        width: 100%;
    }
}

.data-flex-1-row-fielddata-input-small {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
}

.data-flex-1-row-fielddata-input-small-but-less {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
}

.data-flex-1-row-fieldname-short {
    flex: 0 1 120px;
}

.data-flex-1-row-fieldname-medium {
    flex: 0 1 160px;
}

.data-flex-1-row-fielddata-short {
    flex: 1 1 auto;
}

.data-flex-1-row-fielddata-block {
    flex: 1 1 auto;
    display: inline-table;
    width: unset !important;
}

.data-flex-1-row-flow-item {
    flex: 1 1 0;
    width: 0;
}


.data-flex-1-row-fielddata-short input[type=text],
.data-flex-1-row-fielddata-short input[type=password] {
    width: 100%;
    min-width: 100px;
    max-width: 300px;
}

.data-flex-1-titlebox-back,
.data-table-1-titlebox-back {
    margin-left: 15px;
    float: right;
    list-style: none;
    display: list-item;
}

.data-flex-1-titlebox-back a,
.data-table-1-titlebox-back a {
    color: #e2f7e2;
    cursor: pointer;
    text-decoration: none;
}

.data-flex-1-titlebox-back-subtext,
.data-table-1-titlebox-back-subtext {
    font-weight: 500;
    font-size: 14px;
    margin: auto 0px auto 4px;
}

.data-table-1 {
    width: 100%;
}

.data-table-1,
.data-table-1 th,
.data-table-1 td {
    border-collapse: collapse;
    border-radius: 0px;
    border-width: 1px;
    border-color: #BCD0C7;
    border-style: solid;
    border-spacing: 0px;
}

.data-table-1 th {
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.data-table-1 tbody > tr:nth-child(odd) {
    background-color: #C7DBD2;
}

.data-table-1 tbody > tr:hover {
    background-color: #C1D6CC;
}

.data-table-1.data-table-1-no-alternating-rows tbody > tr {
    background-color: inherit !important;
}

.data-table-1.data-table-1-no-row-hover-effect tbody > tr:hover,
.data-table-1-no-row-hover-effect:hover {
    background-color: inherit !important;
}


.data-table-1 td {
    font-size: 13px;
    font-weight: normal;
    padding: 10px;
    text-align: center;
}

.data-table-1 td a {
    color: #336633;
    font-weight: 700;
    text-decoration: none;
    padding: 8px;
}

.data-table-cells-inherit-font td {
    font-size: inherit !important;
}

.data-table-cells-no-a-padding td a {
    padding: 0;
}

.data-table-cells-less-topbottom-padding td {
    padding-top: 4px;
    padding-bottom: 4px;
}

.data-flex-1-topmargin,
.data-table-1-topmargin {
    margin-top: 23px;
}

.data-flex-1-bottommargin,
.data-table-1-bottommargin {
    margin-bottom: 23px;
}

.data-flex-1-toppadding,
.data-table-1-toppadding {
    padding-top: 15px;
}

.data-flex-1-toppadding-less,
.data-table-1-toppadding-less {
    padding-top: 8px;
}

.data-flex-1-topbottom-margin-none {
    margin-top: 0px;
    margin-bottom: 0px;
}

.data-flex-1-topbottom-margin-narrow {
    margin-top: 2px;
    margin-bottom: 2px;
}

.data-flex-1-topbottom-margin-medium {
    margin-top: 4px;
    margin-bottom: 4px;
}

@media only screen and (max-width: 700px) {
    .data-flex-1-top-margin-neg8-less-than-700px {
        margin-top: -8px !important;
    }
}

.data-table-cells-left td {
    text-align: left;
}

.data-flex-1-left,
.data-table-1-left {
    text-align: left !important;
}

.data-flex-1-center,
.data-table-1-center {
    text-align: center !important;
}

.data-flex-1-right,
.data-table-1-right {
    text-align: right !important;
}

.data-flex-1-container-left,
.data-table-1-container-left {
    margin-left: 0;
    margin-right: auto;
}

.data-flex-1-container-center,
.data-table-1-container-center {
    margin-left: auto;
    margin-right: auto;
}

.data-flex-1-container-right,
.data-table-1-container-right {
    margin-left: auto;
    margin-right: 0;
}

.data-table-1-mindwidth-550px {
    min-width: 550px;
}

.data-flex-1-container-maxwidth-1200px,
.data-table-1-container-maxwidth-1200px {
    max-width: 1200px;
}

.data-flex-1-container-maxwidth-1000px,
.data-table-1-container-maxwidth-1000px {
    max-width: 1000px;
}


.data-flex-1-container-maxwidth-900px,
.data-table-1-container-maxwidth-900px {
    max-width: 900px;
}

.data-flex-1-container-maxwidth-800px,
.data-table-1-container-maxwidth-800px {
    max-width: 800px;
}


.data-flex-1-container-maxwidth-700px,
.data-table-1-container-maxwidth-700px {
    max-width: 700px;
}

.data-flex-1-container-maxwidth-500px,
.data-table-1-container-maxwidth-500px {
    max-width: 500px;
}

.data-flex-1-container-maxwidth-400px,
.data-table-1-container-maxwidth-400px {
    max-width: 400px;
}

.data-flex-1-container-maxwidth-70pct,
.data-table-1-container-maxwidth-70pct {
    max-width: 70%;
}

.data-flex-1-container-maxwidth-60pct,
.data-table-1-container-maxwidth-60pct {
    max-width: 60%;
}

.data-flex-1-container-maxwidth-50pct,
.data-table-1-container-maxwidth-50pct {
    max-width: 50%;
}

.data-table-1-fixed-width-200px,
.data-flex-1-fixed-width-200px {
    min-width: 200px;
    width: 200px;
}

.data-table-1-fixed-width-400px,
.data-flex-1-fixed-width-400px {
    min-width: 400px;
    width: 400px;
}


.data-table-1-fixed-width-600px,
.data-flex-1-fixed-width-600px {
    min-width: 600px;
    width: 600px;
}


.data-flex-1-strong,
.data-table-1-strong {
    font-weight: 700 !important;
}

.data-flex-1-semibold,
.data-table-1-semibold {
    font-weight: 600 !important;
}

.data-flex-1-emphasis,
.data-table-1-emphasis {
    font-style: italic;
}

.data-flex-1-inlineflex {
    display: inline-flex;
}

.data-flex-1-lightred {
    color: #FF9393;
}

.data-table-1-red,
.data-flex-1-red {
    color: #A50a0e;
}

.data-table-1-green, 
.data-flex-1-green {
    color: #0a750e;
}

.data-table-1-gray,
.data-flex-1-gray {
    color: #666;
}

.data-flex-1-tinyfont,
.data-flex-1-tinyfont input,
.data-flex-1-tinyfont select,
.data-flex-1-tinyfont td,
.data-flex-1-tinyfont a,
.data-flex-1-tinyfont td a,
.data-table-1-tinyfont,
.data-table-1-tinyfont input,
.data-table-1-tinyfont select,
.data-table-1-tinyfont td,
.data-table-1-tinyfont a,
.data-table-1-tinyfont td a {
    font-size: 10px;
}

.data-flex-1-smallerfont,
.data-flex-1-smallerfont input,
.data-flex-1-smallerfont select,
.data-flex-1-smallerfont td,
.data-flex-1-smallerfont a,
.data-flex-1-smallerfont td a,
.data-table-1-smallerfont,
.data-table-1-smallerfont input,
.data-table-1-smallerfont select,
.data-table-1-smallerfont td,
.data-table-1-smallerfont a,
.data-table-1-smallerfont td a {
    font-size: 12px;
}

.data-flex-1-mediumfont,
.data-flex-1-mediumfont input,
.data-flex-1-mediumfont select,
.data-flex-1-mediumfont td,
.data-flex-1-mediumfont a,
.data-flex-1-mediumfont td a,
.data-table-1-mediumfont,
.data-table-1-mediumfont input,
.data-table-1-mediumfont select,
.data-table-1-mediumfont td,
.data-table-1-mediumfont a,
.data-table-1-mediumfont td a {
    font-size: 16px;
}

.data-flex-1-largefont,
.data-flex-1-largefont input,
.data-flex-1-largefont select,
.data-flex-1-largefont td,
.data-flex-1-largefont a,
.data-flex-1-largefont td a,
.data-table-1-largefont,
.data-table-1-largefont input,
.data-table-1-largefont select,
.data-table-1-largefont td,
.data-table-1-largefont a,
.data-table-1-largefont td a {
    font-size: 20px;
}

.data-flex-1-xlargefont,
.data-flex-1-xlargefont input,
.data-flex-1-xlargefont select,
.data-flex-1-xlargefont td,
.data-flex-1-xlargefont a,
.data-flex-1-xlargefont td a,
.data-table-1-xlargefont,
.data-table-1-xlargefont input,
.data-table-1-xlargefont select,
.data-table-1-xlargefont td,
.data-table-1-xlargefont a,
.data-table-1-xlargefont td a {
    font-size: 24px;
}

.data-flex-1-topmargin,
.data-table-1-topmargin {
    margin-top: 25px !important;
}

.data-flex-1-topmargin-less,
.data-table-1-topmargin-less {
    margin-top: 15px !important;
}

.data-flex-1-toppadding,
.data-table-1-toppadding {
    padding-top: 25px !important;
}

.data-flex-1-bottompadding,
.data-table-1-bottompadding {
    padding-bottom: 25px !important;
}

.data-flex-1-bottompadding-less,
.data-table-1-bottompadding-less {
    padding-bottom: 15px !important;
}

.data-flex-1-bottompadding-none,
.data-table-1-bottompadding-none {
    padding-bottom: 0px !important;
}

.data-flex-1-topbottompadding,
.data-table-1-topbottompadding {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.data-table-1-lightlinkcolor a {
    color: #F4FFF4 !important;
}

.data-grid-1-button-container,
.data-flex-1-button-container,
.data-table-1-button-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.data-grid-1-button-tiny,
.data-flex-1-button-tiny,
.data-table-1-button-tiny,
.data-grid-1-button-wide,
.data-flex-1-button-wide,
.data-table-1-button-wide,
.data-grid-1-button,
.data-flex-1-button,
.data-table-1-button {
    cursor: pointer;
    display: inline-block;
    width: 200px;
    margin: 6px 6px 0px 0px;
    padding: 12px;
    background-color: #336633;
    border-width: 0;
    border-radius: 4px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.data-grid-1-button-tiny,
.data-flex-1-button-tiny,
.data-table-1-button-tiny {
    width: 60px;
    margin: 0px;
    padding: 3px;
    font-size: 14px;
}

.data-grid-1-button-wide,
.data-flex-1-button-wide,
.data-table-1-button-wide {
    width: 300px;
}

.data-grid-1-button-tiny:hover,
.data-flex-1-button-tiny:hover,
.data-table-1-button-tiny:hover,
.data-grid-1-button-wide:hover,
.data-flex-1-button-wide:hover,
.data-table-1-button-wide:hover,
.data-grid-1-button:hover,
.data-flex-1-button:hover,
.data-table-1-button:hover {
    background-color: #114411;
}

.data-grid-1-button-wide:last-of-type,
.data-flex-1-button-wide:last-of-type,
.data-table-1-button-wide:last-of-type,
.data-grid-1-button:last-of-type,
.data-flex-1-button:last-of-type,
.data-table-1-button:last-of-type {
    margin: 6px 0px;
}

.data-table-1-button-red,
.data-flex-1-button-red,
.data-grid-1-button-red {
    background-color: #d61d25;
}

.data-table-1-button-red:hover,
.data-flex-1-button-red:hover,
.data-grid-1-button-red:hover {
    background-color: #952a2e;
}

.data-table-1-button-large-margin,
.data-flex-1-button-large-margin,
.data-grid-1-button-large-margin {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.data-flex-1-row-fielddata-hint {
    padding-left: 205px;
    font-size: 13px;
    font-style: italic;
    display: block;
}


.data-table-1-extra-top-margin {
    margin-top: 15px;
}

.data-table-1-extra-bottom-margin {
    margin-bottom: 15px;
}

.data-table-1-extra-top-margin-more {
    margin-top: 30px;
}

.data-cell-fill-1 {
    background: #C7DBD2;
}

.data-cell-fill-2 {
    background: #C1D6CC;
}

.data-cell-fill-3 {
    background: #407C40;
    color: #fff;
    font-weight: 600 !important;
    border-color: #407C40 !important;
}

.data-cell-width-30pct {
    width: 30%;
}

.data-cell-width-50pct {
    width: 50%;
}


:root {
    --wizardMainColor: #346534;
    --wizardBaseColor: #999;
    --wizardCompleteColor: #fff;
    --wizardInProgressColor: #D1E7DD;
    --wizardNotCompleteColor: #fff;
    --wizardFontColor: #000;
}

.wizard-progress-container {
    display: block;
    min-width: 850px;
    max-width: 850px;
    margin: 30px auto 0px auto;
    padding-bottom: 25px;
}

.wizard-progress {
    display: table;
    width: 100%;
    table-layout: fixed;
    position: relative;
}

.wizard-progress .step {
    display: table-cell;
    text-align: center;
    vertical-align: top;
    overflow: visible;
    position: relative;
    font-size: 14px;
    color: var(--wizardFontColor);
    font-weight: bold;
}

.wizard-progress .step:not(:last-child):before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 37px;
    background-color: var(--wizardBaseColor);
    height: 6px;
    width: 100%;
}

.wizard-progress .step .node {
    display: inline-block;
    border: 6px solid var(--wizardBaseColor);
    background-color: var(--wizardNotCompleteColor);
    border-radius: 30px;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 25px;
    left: 50%;
    margin-left: -15px;
}

.wizard-progress .step.complete:before {
    background-color: var(--wizardMainColor);
}

.wizard-progress .step.complete .node {
    border-color: var(--wizardMainColor);
    background-color: var(--wizardMainColor);
}

.wizard-progress .step.complete .node:before {
    font-size: 18px;
    font-family: FontAwesome;
    color: var(--wizardCompleteColor);
    content: "";
}

.wizard-progress .step.in-progress:before {
    background-color: var(--wizardBaseColor);
}

.wizard-progress .step.in-progress .node {
    background-color: var(--wizardInProgressColor);
    border-color: var(--wizardMainColor);
}

@media only screen and (max-width: 850px) {
    .wizard-progress-container {
        min-width: 650px;
        max-width: 650px;
    }

    .wizard-progress .step {
        font-size: 11px;
    }

    .wizard-progress .step .node {
        top: 20px;
    }

    .wizard-progress .step:not(:last-child):before {
        top: 32px;
    }
}
                