@import url('../fonts/futura/futura.css');
@import url('../fonts/tahoma/tahoma.css');

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #ccc;
}

form {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}

img {
  margin: 0px;
  padding: 0px;
  border: none;
}

#Wrapper {
  width: 940px;
  height: 616px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.Masthead, .MainMenu, .Canvas, .Title, .WorkSpace, .Footer {
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
}

.Masthead {
  top: 0;
  height: 96px;
  display: inline-block;
}

.Masthead a {
  display: block;
  height: 100%;
}

.Masthead img {
  display: block;
  height: 100%;
  width: auto;
}

.MainMenu {
  width: 100%;
  height: 30px;
  top: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.MainMenu a {
  display: flex; 
  height: 24px;
}

.MainMenu img {
  display: block;
  margin: 0;         
  padding: 0;        
  border: none;      
}

.Canvas {
  position: absolute;
  z-index: 0;
  top: 150px; 
  width: 940px;
  height: 466px;
  background-color: white;
  border: 1px solid black;
  border-radius: 16px;
  pointer-events: none;
}

.Title {
  width: 800px;
  height: 36px;
  top: 158px;
  text-align: center;
  font: 36px/36px 'FuturaPTCond-ExtraBoldObl';
}

.WorkSpace {
  position: absolute;
  width: 800px;
  height: 330px;
  top: 226px;
  display: flex;
  justify-content: center;
}

.Footer {
  height: 40px;
  width: 910px;
  position: absolute;
  top: 568px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ProductGrid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.ProductGrid .Option .Head {
  font: 20px/1.25 'FuturaPTCond-Bold';
  margin-bottom: 16px;
}

.ProductGrid .Option .Text {
  font: 12px/1.25 'Tahoma';
  margin-top: 16px;
}

.ButtonGrid {
  width: 100%;
  position: relative;
  top: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.ButtonGrid .Option {
  height: 144px;
  flex: 0 0 32%;
  text-align: center;
}

.ButtonGrid .Option .Head {
  font: 20px/1.25 'FuturaPTCond-Bold';
  margin-bottom: 32px;
}

.ButtonGrid .Option .Text {
  font: 12px/1.25 'Tahoma';
  margin-top: 32px;
}

.CalendarGrid {
  width: 100%;
  position: relative;
  top: 0px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.CalendarGrid .Option {
  height: 144px;
  flex: 0 0 32%;
  text-align: center;
  padding: 6px;
  background-color: #e5e5e5;
}

.CalendarGrid .Option .Head {
  font: 24px/1.25 'FuturaPTCond-ExtraBoldObl';
  margin-top: 2px;
  margin-bottom: 8px;
}

.CalendarGrid .Option .Text {
  font: 12px/1.25 'Tahoma';
  margin-bottom: -4px;
}

.SignInStatusOrder {
  font: 11px/1.25 'Tahoma-Bold';
  position: absolute;
  top: -4px;
  right: 10px;
  width: 250px;
  height: 20px;
  text-align: right;
  z-index: 10;
}

.Calculator {
  left: 48px;
  position: absolute;
  bottom: 0px;
  height: 295px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding: 0;
  margin: 0;
}

.Calculator tbody {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.Calculator tr {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0; 
  padding: 0;
}

.Calculator td {
  display: block;
  padding: 0;
  margin: 0;
}

.Calculator td.Label {
  width: 170px;
  height: 22px;
  border-radius: 24px 0 0 24px;
  background-color: #eaeaea;
  text-align: right;
  padding-right: 30px;
  font: 12px/22px 'Tahoma-Bold';
  color: black;
  box-sizing: border-box;
}

.CalcValue {
  width: 210px;
  height: 22px;
  position: relative;
}

.CalcValueSelect {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  left: -20px;
}

.CalcValueSelect select {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid black;
  background-color: white;
  font: 12px/1.25 'Tahoma';
  color: black;
  padding-left: 10px;
  padding-right: 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.CalcValueSelect select:focus {
  outline: none;
}

.CalcValueSelect::after {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: 12px;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}

.Calculator td.Help {
  position: relative;
  left: -16px;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
}

.InstaTipBlock {
  position: absolute;
  width: 300px;
  height: 138px;
  right: 48px;
  overflow: hidden;
  top: 35px;
  border-radius: 16px;
  border: 1px solid black;
}

.InstaTipBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.InstaTipBlock .Text {
  width: 286px;
  text-align: justify;
  font: 12px/1.25 'Tahoma';
  margin: 6px;
  overflow: hidden;
  background-color: white;
  position: absolute;
  top: 20px;
  left: 0;
}

.PriceQuoteBlock {
  position: absolute;
  width: 300px;
  right: 48px;
  background-color: #ffffcc;
  overflow: hidden;
  bottom: 0;
  height: 138px;
  border-radius: 16px;
  border: 1px solid black;
}

.PriceQuoteBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.PriceQuoteBlock .Text {
  width: 286px;
  text-align: center;
  font: 12px/1.25 'Tahoma';
  position: absolute;
  top: 18px;
  left: 0;
  margin: 6px;
}

.SignInForm {
  position: relative;
  height: auto;
  top: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.SignInForm table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 15px;
}

.SignInForm tr {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.SignInForm tr#display_new_user_password {
  height: 32px;
}

.SignInForm td {
  display: block;
  padding: 0;
  margin: 0;
}

.SignInForm td.Label {
  width: 180px;
  height: 22px;
  border-radius: 24px 0 0 24px;
  background-color: #eaeaea;
  text-align: right;
  padding-right: 30px;
  font: 12px/22px 'Tahoma-Bold';
  color: black;
  box-sizing: border-box;
}

.SignInForm td.Value {
  width: 240px;
  height: 22px;
  position: relative;
  left: -20px;
}

.SignInForm td input {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid black;
  background-color: white;
  font: 12px/1.25 'Tahoma';
  color: black;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.SignInForm input:focus {
  outline: none;
  border-color: black;
}

.SignInText {
  position: relative;
  width: 100%;
  top: 60px;
  text-align: center;
}

.SignInTextToggleContainer {
  position: relative;
  height: 20px;
  width: 100%;
}

.SignInTextOld, 
.SignInTextNew {
  font: 12px/1.25 'Tahoma';
  color: black;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.SignInText hr {
  width: 400px;
  margin: 0 auto;
}

.SignInText a {
  color: black;
  text-decoration: underline;
  font-weight: bold;
}

.SignInText a:hover {
  text-decoration: none;
}

.AddressBlock {
  width: 390px;
  position: absolute;
  top: 12px;
  overflow: hidden;
  height: 290px;
}

/* Match the flexbox table container structure */
.AddressBlock table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 10px; 
}

/* Transform rows into flexbox containers */
.AddressBlock tr {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

/* Clear default cell styling */
.AddressBlock td {
  display: block;
  padding: 0;
  margin: 0;
}

/* Styled to mirror the SignInForm pill layout */
.AddressBlock td.Label {
  width: 130px;
  height: 22px;
  border-radius: 24px 0 0 24px;
  background-color: #eaeaea;
  text-align: right;
  padding-right: 26px;
  font: 10px/22px 'Tahoma-Bold';
  color: black;
  box-sizing: border-box;
}

/* Wrapper column for inputs */
.AddressBlock td:nth-child(2):not(.Disclaimer) {
  width: 260px;
  height: 22px;
  position: relative;
  left: -20px; /* Shifts the input to overlay the rounded label */
  display: flex; /* Keeps multi-inputs on a single line */
  gap: 4px;
}

/* Master Input Styling */
.AddressBlock input {
  /* Define a variable for width. If no individual override is present, it uses 100% */
  width: var(--input-width, 100%); 
  height: 100%;
  border-radius: 24px;
  border: 1px solid black;
  background-color: white;
  font: 10px/10px 'Tahoma';
  color: black;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  margin-bottom: 0; 
}

/* ==================================================================
   INDIVIDUAL CONTROLS (Adjust these values so they total 100% later)
   ================================================================== */
#b_city, #s_city {
  --input-width: 66%;  /* Adjust your City width percentage here */
}

#b_state, #s_state {
  --input-width: 14%;  /* Adjust your State width percentage here */
  text-align: center;
}

#b_zip, #s_zip {
  --input-width: 20%;  /* Adjust your ZIP width percentage here */
  text-align: center;
}
/* ================================================================== */

.AddressBlock input:focus {
  outline: none;
  border-color: black;
}

.AddressBlock .Head {
  font: 24px/1.25 'FuturaPTCond-Bold';
  text-align: center;
  color: black;
  top: 0;
  position: relative;
  padding-bottom: 12px;
}

.AddressBlock td.Disclaimer {
  text-align: center;
  font: italic 12px/1.25 'Tahoma';
  padding-top: 8px;
  width: 100%; 
  position: relative;
  left: -10px;
}

.AddressBlock input button {
  width: auto;
  text-align: center;
}

.ProductConfirmBlock {
  position: absolute;
  width: 270px;
  height: 294px;
  left: 0;
  background-color: #ffffcc;
  overflow: hidden;
  bottom: 0;
  border: 1px solid black;
  border-radius: 16px;
}

.ProductConfirmBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.ProductConfirmBlock .Text {
  text-align: center;
  font: 12px/1.25 'Tahoma';
  position: absolute;
  bottom: 6px;
  width:100%;
}

#ProductConfirmBlock {
  width: 270px;
  height: 188px;
  position: relative;
  left: 0;
  margin-top: 6px;
  margin-right: 8px;
  margin-bottom: 6px;
  margin-left: 0px;
}

.ProductConfirmBlock td.Label {
  text-align: left;
  font: 10px/1.25 'Tahoma-Bold';
  padding-left: 12px;
  width: 110px;
}

.ProductConfirmBlock td.Value {
  text-align: left;
  font: 10px/1.25 'Tahoma';
  padding-left: 2px;
}

.ProductConfirmBlock > a {
  display: block;
  text-align: center;
  margin: 0 auto;
}
    
.BillingShippingConfirmBlock .EditButton {
  display: flex;
  justify-content: center;
}

.BillingShippingConfirmBlock {
  position: absolute;
  width: 222px;
  height: 137px;
  left: 288px;
  background-color: #ffffcc;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid black;
}

.BillingShippingConfirmBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.BillingShippingConfirmBlock .Text {
  font: 12px/1.25 'Tahoma';
  text-align: center;
  width: 204px;
  position: relative;
  left: 0;
  padding: 6px 8px 14px;
  height: 72px;
}

.BillingShippingConfirmBlock .EditButton {
  width: 100%;
  position: absolute;
  bottom: 6px;
}

.InstructionsConfirmBlock {
  position: absolute;
  width: 270px;
  height: 294px;
  overflow: hidden;
  bottom: 0;
  right: 0;
  border-radius: 16px;
  border: 1px solid black;
}

.InstructionsConfirmBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.InstructionsConfirmBlock .Text {
  text-align: justify;
  font: 12px/1.25 'Tahoma';
  width: 252px;
  height: 245px;
  position: absolute;
  top: 20px;
  left: 0;
  overflow: hidden;
  margin-right: 8px;
  margin-left: 8px;
  margin-top: 6px;
}

.InstructionsConfirmBlock .Foot {
  font: 12px/1.25 'Tahoma-Bold';
  text-align: center;
  vertical-align: middle;
  width: 268px;
  position: absolute;
  bottom: 0;
  padding-bottom: 4px;
  padding-left: 0;
  left: 0;
}

.UsePayPal {
  position: absolute;
  overflow: hidden;
  width: 390px;
  height: 294px;
  bottom: 0;
  left: 0;
  border: 1px solid black;
  border-radius: 16px;
}

.UsePayPal .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.UsePayPal .Text {
  position: relative;
  height: 300px;
  font: 12px/1.25 'Tahoma';
  text-align: justify;
  overflow: hidden;
  margin: 8px;
}

.MailCheck {
  position: absolute;
  overflow: hidden;
  width: 390px;
  height: 294px;
  bottom: 0;
  right: 0;
  border-radius: 16px;
  border: 1px solid black;
}

.MailCheck .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.MailCheck .Text {
  position: relative;
  height: 300px;
  font: 12px/1.25 'Tahoma';
  text-align: justify;
  overflow: hidden;
  margin: 8px;
}

.PayPalPaySelectButton {
  position: absolute;
  width:90px;
  height:24px;
  top: 260px;
  left: 151px;
  opacity: 1;
  position: absolute;
}

.OtherPaySelectButton {
  position: absolute;
  width:90px;
  height:24px;
  top: 260px;
  right: 151px;
  opacity: 1;
  position: absolute;
}

.ThankYouFileBlock {
  position: relative;
  width: 600px;
  height: 220px;
  overflow: hidden;
  top: 40;
  border-radius: 16px;
  border: 1px solid black;
}

.ThankYouFileBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.ThankYouFileBlock .Text {
  text-align: justify;
  font: 12px/1.25 'Tahoma';
  overflow: hidden;
  margin-right: 8px;
  margin-left: 8px;
  margin-top: 6px;
}

.ThankYouFileBlock .Foot {
  font: 14px/1.25 'Tahoma-Bold';
  text-align: center;
  position: absolute;
  width:100%;
  bottom: 0;
  padding-bottom: 6px;
}

.CalendarSelect {
  text-align: center;
}

.CalendarTerms {
  text-align: center;
}

#subscriber_email {
    border: 1px solid black;
    border-radius: 16px;
    text-align: center;
    padding: 6px 12px;
    box-sizing: border-box;
    width: 100%;
}

#subscriber_email:focus {
    outline: none;
}

#subscriber_email::placeholder {
    text-align: center;
    opacity: 1;
}

.BulletBlock {
  position: absolute;
  width: 430px;
  height: 100%;
  overflow: hidden;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.BulletBlock > span {
  font: 14px/1.25 'Tahoma-Bold';
  text-align: left;
  cursor: pointer;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.BulletDetailsBlock {
  position: absolute;
  width: 350px;
  height: 100%;
  overflow: hidden;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  border: 1px solid black;
}

.BulletDetailsBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.BulletDetailsBlock .Text {
  font: 12px/1.25 'Tahoma';
  text-align: justify;
  padding: 6px;
  overflow: hidden;
  background-color: white;
  left: 0;
  bottom: 0;
}

.InlineBullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  margin-right: 12px;
  background-color: black;
  color: white;
  font: 14px/1.25 'Tahoma-Bold';
}

.OrderListBlockHead {
  position: absolute;
  width: 798px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: black;
  border: 1px solid black;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.OrderListBlockHead table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 798px;
  position: absolute;
  font: 10px/1.25 'Tahoma-Bold';
  top: 0;
  left: 0;
  height: 20px;
  color: white;
  text-align: center;
}

.OrderListBlockHead td {
  padding: 0px;
  margin: 0;
}

.OrderListBlockBody {
  position: absolute;
  width: 798px;
  height: 307px;
  left: 0;
  bottom: 0;
  background-color: white;
  border: 1px solid black;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: auto;
}

.OrderListBlockBody table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 798px;
  position: absolute;
  font: 10px/1.4 'Tahoma';
  top: 0;
  left: 0;
  text-align: center;
}

.OrderListBlockBody tr:nth-child(even) {
  background-color: #e5e5e5;
}

.OrderListBlockBody td {
  padding: 0px;
  margin: 0;
  height: 56px;
}

.OfflinePaymentBlock {
  position: relative;
  border-radius: 16px;
  border: 1px solid black;
  width: 298px;
  height: 275px;
  left: 0;
  background-color: #ffffcc;
  overflow: hidden;
}

.OfflinePaymentBlock .Head {
  font: 14px/1.25 'Tahoma-Bold';
  padding-top: 1px;
  padding-bottom: 3px;
  text-align: center;
  background-color: black;
  color: white;
}

.OfflinePaymentBlock .Text {
  background-color: #ffffcc;
  text-align: center;
  font: 12px/1.25 'Tahoma';
  padding: 8px;
}

.OfflinePaymentBlock table {
  height: 150px;
  padding: 8px;
  position: absolute;
  top: 85px;
  border: 0;
}

.OfflinePaymentBlock td.Label {
  font: 12px/1.25 'Tahoma-Bold';
  width: 80px;
}

.OfflinePaymentBlock td.Value input {
  font: 12px/1.25 'Tahoma';
  width: 185px;
}

.ContactAboutUsBlock {
  font: 16px/1.25 'Tahoma';
  text-align:justify;
  position: relative;
  height: 330px;
  overflow: auto;
}

.Terms {
  height: 256px;
  padding: 12px;
  border: 1px solid black;
  background-color: white;
  text-align: left;
  overflow: auto;
  white-space: pre-line;
  font: 12px/1.25 'Tahoma';
}

.Thanks {
  position: relative;
  top: -32px;
}

.ThanksHead {
  font: 144px/1.25 'FuturaPTCond-ExtraBoldObl';
}

.ThanksBody {
  font: 16px/1.25 'Tahoma';
}