﻿/* DEFAULTS
----------------------------------------------------------*/

:root {
  --form-control-color: Black;
  --form-control-disabled: #959495;
}

*,
*:before,
*:after {
  box-sizing: border-box;

}
/*
body {
  margin: 0;
}*/

/*form {
  display: grid;
  place-content: center;
  min-height: 100vh;
}*/

.form-control {
  font-family: system-ui, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

  .form-control + .form-control {
    margin-top: 1em;
  }

.form-control--disabled {
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

input[type="number"]:focus {
  outline: none !important;
  border: 1px solid rgba(81, 180, 84,100);
}
input[type="text"]:focus {
  outline: none !important;
  border: 1px solid rgba(81, 180, 84,100);
}
*:focus {
  outline: none !important;
   border: 1px solid rgba(81, 180, 84,100);

}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  /*  appearance: none;*/
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.3em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(0em);
  display: grid;
  place-content: center;

}


  input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: black;
  }

  input[type="checkbox"]:checked::before {
    transform: scale(1);
  }

  input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }

  input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);
    color: var(--form-control-disabled);
    cursor: not-allowed;
  }

.btn-grad1Disabled {
  background-image: linear-gradient(to right, rgba(115, 115, 115, 100) 0%, rgba(191, 191, 191) 0%, rgba(115, 115, 115,100) 100%)
}

.btn-grad1Disabled {
  /* margin: 10px;*/
  padding: 1px 6px;
  font-size: smaller;
  text-align: center;
  font-weight: normal;
  /*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
/*  height: 26px;*/
  border-bottom-color: rgba(115, 115, 115);
  border-right-color: rgba(115, 115, 115);
  border-top-color: rgba(191, 191, 191);
  border-left-color: rgba(191, 191, 191);
}

  .btn-grad1Disabled:hover {
 /*   background-position: right center;*/ /* change the direction of the change here */
    text-decoration: none;
  }

.btn-grad1Disabledwr {
  background-image: linear-gradient(to right, rgba(191, 191, 191, 100) 0%, rgba(230, 230, 230) 0%, rgba(191, 191, 191,100) 100%)
}

.btn-grad1Disabledwr {
  /* margin: 10px;*/
  padding: 1px 6px;
  font-size: smaller;
  text-align: center;
  font-weight: normal;
  /*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
  /*  height: 26px;*/
  border-bottom-color: rgba(115, 115, 115);
  border-right-color: rgba(115, 115, 115);
  border-top-color: rgba(191, 191, 191);
  border-left-color: rgba(191, 191, 191);
}

  .btn-grad1Disabledwr:hover {
    /*   background-position: right center;*/ /* change the direction of the change here */
    text-decoration: none;
  }



.btn-gradDisabled {
  background-image: linear-gradient(to right, rgba(225, 255, 218,100) 0%, rgba(225, 255, 218) 30%, rgba(225, 255, 218,100) 100%)
}

.btn-gradDisabled {
  /* margin: 10px;*/
  padding: 1px 6px;
  font-size: smaller;
  text-align: center;
  font-weight: normal;
  /*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: rgba(90, 90, 90);
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
  /*height: 26px;*/
  border-bottom-color: rgba(81, 145, 81);
  border-right-color: rgba(81, 145, 81);
  border-top-color: rgba(81, 180, 84);
  border-left-color: rgba(81, 180, 84);
}


  .btn-gradDisabled:hover {
    background-position: right center; /* change the direction of the change here */
   
    text-decoration: none;
  }

.btn-grad {
  background-image: linear-gradient(to right, rgba(81, 180, 84,100) 0%, rgba(81, 145, 81) 30%, rgba(81, 180, 84,100) 100%)
}

.btn-grad {
  /* margin: 10px;*/
  padding: 1px 6px;
  font-size: smaller;
  text-align: center;
  font-weight: normal;
  /*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
  /*height: 26px;*/
  border-bottom-color: rgba(81, 145, 81);
  border-right-color: rgba(81, 145, 81);
  border-top-color: rgba(81, 180, 84);
  border-left-color: rgba(81, 180, 84);
}


  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #FFFFFF;
    text-decoration: none;
  }

.btn-grad1 {
  background-image: linear-gradient(to right, rgba(191, 191, 191, 100) 0%, rgba(164, 164, 164) 30%, rgba(191, 191, 191,100) 100%)
}

.btn-grad1 {
  /* margin: 10px;*/
/*  padding: 1px 6px;*/
  font-size: smaller;
  text-align: center;
  font-weight: normal;
/*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
 /* height: 26px;*/
  border-bottom-color: rgba(191, 191, 191);
  border-right-color: rgba(191, 191, 191);
  border-top-color: rgba(219, 219, 219);
  border-left-color: rgba(219, 219, 219);
}

  .btn-grad1:hover {
    background-position: right center; /* change the direction of the change here */
    color: #FFFFFF; 
    text-decoration: none;
  }

.btngradlogin {
  background-image: linear-gradient(to right, rgba(191, 191, 191, 100) 0%, rgba(164, 164, 164) 30%, rgba(191, 191, 191,100) 100%)
}

.btngradlogin {
  /* margin: 10px;*/
  padding: 1px 6px;
  font-size: smaller;
  text-align: center;
  font-weight: normal;
  /*  text-transform: uppercase;*/
  transition: 0.5s;
  background-size: 200% auto;
  color: black;
  box-shadow: 0 0 4px #FFFFFF;
  border-radius: 4px;
  /*height: 26px;*/
  border-bottom-color: rgba(191, 191, 191);
  border-right-color: rgba(191, 191, 191);
  border-top-color: rgba(219, 219, 219);
  border-left-color: rgba(219, 219, 219);
}

  .btngradlogin:hover {
    background-position: right center; /* change the direction of the change here */
    color: black;
    text-decoration: none;
  }



.containerPDF {
  width: 75%;
  height: auto;
  overflow: hidden;
  font-family: Arial;
  text-align: justify;
  margin: 0% 5% 0% 5%;
  padding: 0% 5% 0% 5%;
  font-size: small;
  background-color: white;
}

.right {
  float: right;
}

.toprow {
  background-image: linear-gradient( rgba(51, 153, 59,0.80), rgba(255,255,255,0), rgba(51, 153, 59,0.80) );
  /*background: linear-gradient(to right, rgba(51, 153, 59,0.80), rgba(255,0,0,0) , to left, rgba(255,0,0,0), rgba(51, 153, 59,0.80));*/
  /*box-shadow: inset 0 0 10px rgba(51, 153, 59,0.80);*/
}

.errorSet {
  background-color: red;
}

.left {
  float: left; /* not needed, just for clarification */
  /* the next props are meant to keep this block independent from the other floated one */
  /*width: auto;
    overflow: hidden;*/
}

​​ div.justify {
  text-align: justify;
}

div.centered {
  text-align: center;
}

div.columns {
  width: 100%;
}

ffff div.columns div {
  width: 49%;
  height: 100%;
  float: left;
}


div.clear {
  clear: both;
}

.modalBackground {
  background-color: Black;
  filter: opacity(30);
  opacity: 0.5;
}

#progressBackgroundFilter {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  /*padding:;
    margin:;*/
  background-color: #000;
  filter: opacity(30);
  opacity: .5;
  z-index: 1000;
}

#processMessage {
  position: fixed;
  top: 30%;
  left: 30%;
  width: 480px;
  height: 192px;
  z-index: 1001;
}

.modalPopup {
  background-color: #FFFFFF;
  border-width: 3px;
  border-style: solid;
  border-color: rgba(51, 153, 59,.80);
  padding-top: 10px;
  padding-left: 10px;
  width: 90%;
  height: 90%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modalPopupfull {
  background-color: #FFFFFF;
  border-width: 3px;
  border-style: solid;
  border-color: rgba(51, 153, 59,.80);
  padding-top: 10px;
  padding-left: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.modalPopup2 {
  background-color: #FFFFFF;
  border-width: 3px;
  border-style: solid;
  border-color: rgba(51, 153, 59,.80);
  padding-top: 10px;
  padding-left: 10px;
  width: 30%;
  height: 30%;
}

.modalPopup2w {
  background-color: #FFFFFF;
  border-width: 3px;
  border-style: solid;
  border-color: rgba(51, 153, 59,.80);
  padding-top: 10px;
  padding-left: 10px;
  width: 50%;
  height: 30%;
}

.modalPopup3w {
  background-color: #FFFFFF;
  border-width: 3px;
  border-style: solid;
  border-color: rgba(51, 153, 59,.80);
  padding-top: 10px;
  padding-left: 10px;
  width: 50%;
  height: 70%;
}

.modalPopupDiv2 {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.modalPopupDiv {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

div.centered table {
  margin: 0 auto;
  text-align: left;
}

div.right {
  text-align: right;
}

  div.right table {
    margin: 0 auto;
    text-align: right;
  }

.wrapper {
  width: 100%;
  height: 95%;
  background: white;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 25px black, 0 0 50px rgba(51, 153, 59,.80);
  -moz-box-shadow: 0px 0px 25px black, 0 50px rgba(51, 153, 59,0.80);
  box-shadow: 0px 0px 25px black, 0 0 50px rgba(51, 153, 59,0.80);
  position: relative;
  z-index: 90;
  top: 0px;
  left: 0px;
}

.styled-select.slate select {
  border: 1px solid #ccc;
  font-size: 16px;
  height: 34px;
  width: 268px;
}




.ribbon-wrapper-green {
  width: 185px;
  height: 188px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
}

.ribbon-green {
  font: bold 15px Sans-Serif;
  color: black;
  border-radius: 5px;
  position: relative;
  padding: 7px 0;
  width: 100%;
  background-color: gray;
  color: #6a6340;
  box-shadow: 0 0 25px black inset, 0px 0px 300px #babfc4 inset;
  top: 0px;
  left: 6px;
  height: 99px;
}

a:link, a:visited {
  color: #034af3;
}

li a:link, a:visited {
  color: #ffffff;
}

a:hover {
  color: #1d60ff;
  text-decoration: none;
}

a:active {
  color: #034af3;
}

p {
  margin-bottom: 10px;
  line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-size: 1.5em;
  color: #424949;
  text-transform: none;
  font-weight: 200;
  margin-bottom: 0px;
}

h1 {
  font-size: 1.6em;
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-weight: bold;
}

h2 {
  font-size: 1.5em;
  font-weight: 600;
  font-weight: bold;
}

h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0px;
}

h4 {
  font-size: 1.1em;
}

h5, h6 {
  font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
  margin-top: 0px;
}


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page {
  width: 100%; /*  && 960 was what was used before or 1060 or 1280 */
  /*background-image: url('~/img/bg_1.jpg');*/
  background-color: transparent;
  margin: 20px auto 0px auto;
  /*  border: 1px solid #424949;*/
}

.header {
  position: relative;
  margin: 0px;
  padding: 0px;
  background: transparent;
  width: 100%;
  top: 0px;
  left: 0px;
}

  .header h1 {
    font-weight: 700;
    margin: 0px;
    padding: 10px 0px 0px 10px;
    color: White;
    border: none;
    line-height: 2em;
    font-size: 2em;
  }

.main {
  padding: 0px 12px;
  margin: 12px 8px 8px 8px;
}

.leftCol {
  padding: 6px 0px;
  margin: 12px 8px 8px 8px;
  width: 200px;
  min-height: 200px;
}

.footer {
  color: #4e5766;
  margin: 0px auto;
  text-align: center;
  line-height: normal;
  /* position: fixed;*/
  bottom: 0px;
  z-index: 99;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink {
  background-color: #424949;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
}

div.menu {
  padding: 4px 0px 4px 8px;
  text-align: center;
  position: relative;
}

.showDropDownMenu, showDropDownMenuHoverEffect {
  display: inline-block;
}

div.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: auto;
}

  div.menu ul li a, div.menu ul li a:visited {
    background-color: #424949;
    color: white;
    display: block;
    line-height: 1.35em;
    padding: 4px 20px;
    text-decoration: none;
    white-space: nowrap;
  }

    div.menu ul li a:hover {
      background-color: #424949;
      color: #909497;
      text-decoration: none;
    }

    div.menu ul li a:active {
      background-color: #424949;
      color: #909497;
      text-decoration: none;
    }

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
  margin: 1em 0px;
  padding: 1em;
  border: 1px solid #ccc;
}

  fieldset p {
    margin: 2px 12px 10px 10px;
  }

  fieldset.login label, fieldset.register label, fieldset.changePassword label {
    display: block;
  }

  fieldset label.inline {
    display: inline;
  }

legend {
  font-size: 1.1em;
  font-weight: 600;
  padding: 2px 4px 8px 4px;
}

.tab {
  tab-size: 2;
}


input.textEntry {
  width: 320px;
  border: 1px solid #ccc;
  height: 30px;
}

input.textEntryBody {
  border: None;
  text-decoration-color: #424949;
  background-color: #DDDDDD;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input.textEntryBodyError {
  border: 2px solid red;
  text-decoration-color: #424949;
  background-color: #DDDDDD;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
}


input.passwordEntry {
  width: 320px;
  border: 1px solid #ccc;
}

div.accountInfo {
  width: 42%;
}

input.textEntryddl {
  width: 100%;
  border: none;
  height: 18px;
  background-color: #DDDDDD;
  text-decoration-color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* MISC  
----------------------------------------------------------*/

.clear {
  clear: both;
}

.title {
  display: block;
  float: left;
  text-align: left;
  width: auto;
}

.loginDisplay {
  font-size: 1.1em;
  display: block;
  text-align: right;
  padding: 10px;
  color: forestgreen;
}

  .loginDisplay a:link {
    color: forestgreen;
  }

  .loginDisplay a:visited {
    color: forestgreen;
  }

  .loginDisplay a:hover {
    color: forestgreen;
  }

.failureNotification {
  font-size: 1.2em;
  color: Red;
}


.submitButton {
  text-align: right;
  padding-right: 10px;
}

#myslider {
  z-index: -1000;
}

div.menu li {
  z-index: 9999;
}


.thumb {
  height: 500px;
  /*border: 1px solid #000;*/
  margin: 10px 5px 0 0;
  margin: 10px 5px 0 0;
}

.input-icon {
  position: relative;
  height: 17px
}

.colFooter {
  flex: 1; /* additionally, equal width */
  padding: 1em;
  /*border: thin solid #D6D6D6;*/
  width: 100%;
  background-color: white;
  text-align: left;
  font-size: small;
}

.kbw-signature {
  width: 100px;
  height: 100px;
}

.btnGo {
  -webkit-box-shadow: 0px 0px 25px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0px 0px 25px rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 100px rgba(51, 153, 59,0.8);
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: rgba(0, 0, 0,0.8);
}


.btnHold {
  -webkit-box-shadow: 0px 0px 25px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0px 0px 25px rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 100px rgba(255, 165, 0,0.8);
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: rgba(0, 0, 0,0.8);
}

div.inline {
  float: left;
}

.clearBoth {
  clear: both;
}

#yourimage {
  width: 100%;
}

.toprow {
  background-image: linear-gradient( rgba(51, 153, 59,0.80), rgba(255, 255, 255,0) );
  text-align: center;
  /*background: linear-gradient(to right, rgba(51, 153, 59,0.80), rgba(255,0,0,0) , to left, rgba(255,0,0,0), rgba(51, 153, 59,0.80));*/
  /*box-shadow: inset 0 0 10px rgba(51, 153, 59,0.80);*/
}

.wrap1 {
  /*background: white;*/
  border-radius: 2px;
  -webkit-box-shadow: 0 0 2px black, 0 0 5px rgba(51, 153, 59,.80);
  -moz-box-shadow: 0px 0px 2px black, 0 5px rgba(51, 153, 59,0.80);
  box-shadow: 0px 0px 2px black, 0 0 5px rgba(51, 153, 59,0.80);
}

.col {
  flex: 1; /* additionally, equal width */
  padding: 1em;
  border: thin solid #D6D6D6;
  width: 100%;
  background-color: white;
  text-align: left;
  font-size: small;
}

.thumb {
  height: 500px;
  /*border: 1px solid #000;*/
  margin: 10px 5px 0 0;
  margin: 10px 5px 0 0;
}

.blank_row {
  height: 65px;
  background-color: #FFFFFF;
}

/*.row {
  display: flex;*/ /* equal height of the children */
  /*-ms-flex: 1 0 0;
  flex: 1 0 0;
  width: 100%;
}*/

#swatches {
  width: 100%;
  height: 50px;
}

.swatch {
  width: 18%;
  height: 50px;
  border-style: solid;
  border-width: thin;
  float: left;
  margin-right: 3px;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: white;
  line-height: 1.5;
  font-size: small;
}

bodyLeft {
  font-family: Arial, sans-serif;
  text-align: left;
  background-color: white;
  line-height: 1.5;
  font-size: small;
}

.loginbutton {
  margin: 0 20px;
  display: inline-block;
  -moz-user-select: none;
  cursor: default;
  height: 21px;
  padding: 0 13px;
  font: 13px / 20px "Lucida Grande", sans-serif;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background: rgb(235, 235, 235);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 0 1px rgba(0, 0, 0, 0.8), inset 0 0 1px #000, inset 0 10px 5px -5px rgba(255, 255, 255, 1), inset 0 -20px 10px -10px rgba(255, 255, 255, 0.8), inset 0 -13px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 0 1px rgba(0, 0, 0, 0.8), inset 0 0 1px #000, inset 0 10px 5px -5px rgba(255, 255, 255, 1), inset 0 -20px 10px -10px rgba(255, 255, 255, 0.8), inset 0 -13px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 0 1px rgba(0, 0, 0, 0.8), inset 0 0 1px #000, inset 0 10px 5px -5px rgba(255, 255, 255, 1), inset 0 -20px 10px -10px rgba(255, 255, 255, 0.8), inset 0 -13px rgba(0, 0, 0, 0.1);
}

.hdr {
  color: #424949;
  font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
}


.error-group .error-message {
  visibility: hidden;
  color: #d63031;
}

.error label {
  color: #d63031;
}

.error input[type=text] {
  background-color: #f5f6fa;
  border: 1px solid #d63031;
  outline: none;
}

.error input[type=date] {
  background-color: #f5f6fa;
  border: 1px solid #d63031;
  outline: none;
}

.error .error-message {
  visibility: visible;
}

.form-label {
  text-align: left;
}
