:root{
  --accent1:#ffd740;
  --accent2:#148F51;
  --accent2light:#34AF71;
  --accent2dark:#006F31;
  --background:#e6e6e6;
  --go-light:#a9d388;
  --go-dark:#89b368;
  --stop:red;
  --idle:grey;
}

body {
  font-family: Sans-Serif;
  font-size: 18pt;
  margin:0px;
  box-sizing: border-box;
}

/*caution when modifying colors of base div. May affect toastr messages. Those divs are below to reinforce the settings if you need to.*/
/* TOASTR DIVS */
/*outer box of a default toastr*/
/*div.toast {
  color: white;
  background-color: black;
}*/
/*outer box of a warning-level toastr*/
/*div.toast-warning {
  color:green;
  background-color: grey;
}*/
/*outer box of an error-level toastr*/
/*div.toast-error {
  color:pink;
  background-color: magenta;
}*/
/*inner box of a toastr*/
/*div.toast-message {
  color:red;
  background-color: purple;
}*/
div#wholebody {
  position:relative;
  min-height: 90vh;
}
div#content {
  padding-bottom: 2.5rem;
}
footer {
  position: absolute;
  bottom: 0;
  width: 90%;
  left: 5%;
  height: 2.5rem;    
  text-align:center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 60%;
  color: var(--accent2);
}

div#rootheader {
  margin: auto;
  width: 400px;
  margin-top: 10px;
  margin-bottom: 20px;
}
div#rootheader img{
  width: 400px;
}
div.rootmenu_container {
  width: 95%;
  margin: auto;
  text-align: center;
  vertical-align: top;
}
div.rootmenu {
  vertical-align: top;
  display: inline-block;
  width: 400px;
  text-align: center;
  border: 3px solid var(--accent2);
  margin-bottom: 20px;
  padding: 5px;
}
div.rootmenu h3 {
  margin: 5px;
}
div.rootmenu a {
  display: block;
  border: 0px solid black;
  color: white;
  background-color:var(--accent2);
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  margin: 10px 25px;
  border-radius: 5px;
}

div.header {
  width: 100%;
  display: block;
  height: fit-content;
}
@media screen and (min-width: 855px){
  div.header {
  }
}
@media screen and (max-width: 854px){
  div.header {
  }
}
div.header img#logo {
  margin: 0px;
  max-width: 100%;
  max-height: 100%;
  min-width: 200px;
}


div.header-logo,
div.header-right-space {
  height: 50px;
  margin: 5px 5px 20px 5px;
  margin: 0;
  padding: 0px;
}
@media screen and (min-width: 855px){
  div.header-logo,
  div.header-right-space {
    float: left;
    width: 25%;
  }  
}
@media screen and (max-width: 854px){
  div.header-logo {
    display: block;
    width: 100%;
  }
  div.header-right-space {
    display: none;
  }

}


div.header div.masthead {
  text-align: center;
  vertical-align: top;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20pt;
  color: #444;
  margin: 0;
  padding: 0;
  padding-top: 12px;
}
@media screen and (min-width: 855px){
  div.header div.masthead {
    float: left;
    width: 50%;
  }
}
@media screen and (max-width: 854px){
  div.header div.masthead {
    display: block;
    width: 100%;
  }
}

div.container {
  padding: 20px;
}
div.third {
  width: 30%;
  display: inline-block;
}
/* label.required::before { content:"*"; color: red;} */
div.input-pt {
  font-size: 20px;
  display: inline-flex;
  flex-flow: column nowrap; 
  min-width: 24%;
  margin-bottom: 10px;
  vertical-align: top;
  padding: 0.1rem;
}
div.input-pt-checkbox {
  display: inline-flex;
  flex-flow: row nowrap; 
}
div.input-pt label {
  order: 1;
  display:block;
  font-weight: bold;
}
div.input-pt-checkbox label {
  order: 3;
  display:block;
  font-weight: bold;
  width: 90%;
}
div.input-pt input {
  order: 2;
  font-size: 1rem;
  height: 30px;
  width: 90%;
}
div.input-pt-checkbox input {
  order: 2;
  font-size: 1rem;
  height: 30px;
  width: 10%;
}
div.input-pt textarea {
  order: 2;
  font-family: Sans-Serif;
  font-size: 1rem;
  width: 90%;
  height: fit-content;
}
select, 
div.input-pt select {
  order: 2;
  background-color: white;
  width: 90%;
  height: 30px;
}
div.input-pt option {
  background-color: white;
}

div.input-pt textarea[required] + label:before,  
div.input-pt textarea[required] + span + label:before,  
div.input-pt input[required] + span + label:before, 
div.input-pt input[required] + label:before { 
  content: '*';
  color:red; 
}
div.input-pt span.error {
  order: 3;
  color: red;
  font-family:'Times New Roman', Times, serif;
  font-size: 75%;
}
div.input-pt-checkbox span.error {
 order: 1;
}

div.input-pt textarea[name="ref_address"]{
  min-height: 5em;
}

fieldset.section1 {
  margin: 10px;
  border: solid var(--accent2) 3px;
  background-color: rgb(240, 238, 232);
  margin-bottom: 30px;
}
fieldset.section1 legend {
  padding: 5px;
  color: var(--accent2);
  font-weight: bold;
  display: block;
  float:left;
  width: 100%;
  margin-left: -5px;
  margin-top: -5px;
  margin-bottom: 10px;
}

fieldset.section1.vcard legend {
  text-align:center;
}
div.section1.vcard {
  max-width: 400px;
  margin: auto;
}
div.section1.vcard div.input-pt{
  display: block;
  max-width: 400px;
}
div.section1.vcard div.input-pt{
  text-align: center;
}
div.upload-pt {
  width: 90%;
}
div.upload-pt label {
  display:inline-block;
  font-size: 14pt;
  font-weight: bold;
  margin-right: 20px;
}

div.upload-pt input[type=file]::file-selector-button {
  font-size: 14pt;
  margin-left: 10px;
  padding: 3px 8px 3px 8px;
  color: white;
  background-color: var(--accent2);
  text-decoration: bold;
  border-top: 2px solid var(--accent2light);
  border-left: 2px solid var(--accent2light);   
  border-bottom: 2px solid var(--accent2dark); 
  border-right: 2px solid var(--accent2dark);   
}
a.btnAction {
  text-decoration: none;
  border-top: 2px solid var(--accent2light);
  border-left: 2px solid var(--accent2light);   
  border-bottom: 2px solid var(--accent2dark); 
  border-right: 2px solid var(--accent2dark);   
}
div.section1 a.btnAction {
  margin-left: 0px;
  padding: 3px 8px 3px 8px;
  color: white;
  background-color: var(--accent2);
}
div.submit {
  width: 100%;
  text-align: right;
}
div.vcard div.submit {
  text-align: center;
}
div.vcard {
  text-align: center;
}
div#submit_feedback {
  color: red;
}
input[type=submit] {
  color: white;
  background-color: var(--accent2);
  height: 48px;
  min-width: 200px;
  font-size: 16pt;
  margin-right: 10px;
  border-top: 2px solid var(--accent2light);
  border-left: 2px solid var(--accent2light);   
  border-bottom: 2px solid var(--accent2dark); 
  border-right: 2px solid var(--accent2dark);   
}
h4.header {
  font-size: 16px;
  color: var(--accent2);
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin-top: 15px;
  margin-bottom: 10px;
  border-top: solid 1px green;
}
div.vc-card {
  width: 700px;
  height: 400px;
  border: black solid 4px;
  border-radius: 15px;
  margin: auto;
  margin-bottom: 15px;
  text-align: center;
}
div.vc-title {
  margin: auto;
  margin-top: 40px;
  font-size: 30px;
  font-weight: bolder;
}
span.vc-zero {
  color: green;
  font-weight: normal;
  font-size: 60px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  vertical-align: sub;
}
div.vc-card img#cardlogo{
  width: 50%;   
}
div#vc-employer {
  display: inline-block;
  width: 55%;
  text-align: left;
  margin-left: 30px;
  font-size: 24pt;
  color: black;
}
div#vc-groupnumber {
  display: inline-block;
  width: 35%;
  text-align: right;
  margin-right: 30px;
  font-size: 24pt;
  color: red;
}
div#vc-phoneblock {
  font-size: 36pt;
  line-height: 30pt;
  color: white;
  background-color: green;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
}
div#vc-email {
  font-size: 18pt;
  display: inline-block;
  width: 55%;
  text-align: left;
}
div#vc-phone {
  font-size: 18pt;
  display: inline-block;
  width: 35%;
  text-align: right;
}

div#vc-requestblock {
  color: white;
  background-color: black;
}
div.vc-centerlist {
  width: 90%;
  margin: auto;
}
div.vc-centerlist li {
  text-align: left;
}

div.image_cards {
  text-align: center;
} 
div.image_cards img.card {
  max-height: 400px;
  max-width: 90%;
  border: 1px black solid;
  border-radius: 15px;
}
div.instructions {
  font-size: 80%;
}
div.extra_proc div.input-pt{
  vertical-align: bottom;
}
dialog#no_order_confirmation {
  text-align: center;
}
dialog#no_order_confirmation button{
  font-size: 14pt;
  width: 45%;
  font-weight: 150%;
  border-width: 1px 3px 3px 1px;
  border-style: solid;
}
dialog#no_order_confirmation button.noc_cancel{
  border-color: green;
}
dialog#no_order_confirmation button.noc_continue{
  border-color: blue
}

@media screen and (min-width: 855px){
  div.show_only_small {
    display: none;
  }
}
@media screen and (max-width: 854px){
  div.show_only_big {
    display: none;
  }
}

/*
  input#search_npi_name {min-width: 500px;}
  ul.ui-autocomplete li div {font-size: 1rem;}
  ul.ui-autocomplete li:nth-child(even) div { background-color: #DDD;}
*/
