﻿/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

/*body {
  line-height: 1; }*/
.timeframe{
    width:200px !important;
}
    .timeframe img:first-of-type {
        margin-right: 46px;
    }
    .timeframe img:last-of-type {
        margin-top: 5px;
    }
.italic {
    font-style: italic!important;
}
.note {
    color: darkred !important;
    padding-bottom:15px!important;
    width:60%;
    margin-left:20px;
}   
ol, ul {
    list-style: none;
}

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

header .top-content {
  display: flex;
  margin: 10px 0; }
  header .top-content .navigation {
    flex-grow: 4;
    display: flex;
    justify-content: flex-end; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }

.logo {
  max-width: 100px;
  flex-grow: 1;
  justify-content: space-between; }
  .logo img {
    width: 75px;
    display: inline-block; }

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  header .top-content {
    padding: 0 10px; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }
  .logo {
    max-width: 100px;
    flex-grow: 1;
    justify-content: space-between; }
    .logo img {
      width: 55px;
      display: inline-block; } }


.btn {
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent; }
  .btn:hover {
    border: 1px solid #6c6c6c; }

.background-yellow {
  background: #FEEF35; }

.background-gray {
    background: #BBBCBE;
}

.color-bk, header .top-content .navigation > a, a, a:visited {
  color: black; }

a {
  text-decoration: none; }

header .header-bar {
  background: black;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.2em; }

.main form .btn {
  margin: 10px auto;
  text-align: center;
  padding: 10px;
  height: 35px;
  font-weight: bold;
  box-sizing: border-box; }

.main form .add-hotel {
  text-align: center;
  margin: 0 auto 10px; }
  .main form .add-hotel h3 {
    display: inline-block; }
  .main form .add-hotel label {
    margin: 0 10px;
    color: #808080; }
    .main form .add-hotel label input[type="radio"] {
      margin-right: 5px; }

.main form section {
  margin: 20px 0;
  display: none;
  opacity: 0;
  transition: opacity .2s ease-out; }
  .main form section.active {
    display: block;
    opacity: 1; }
  .main form section h1 {
    font-weight: 100;
    text-align: center;
    font-size: 2.1em;
    margin: 0 0 20px;
    font-family: Raleway, sans-serif; }
  .main form section .slide-container {
    height: 0;
    position: relative;
    overflow: hidden;
    transition: height .2s ease-out; }
    .main form section .slide-container .form-row {
      position: absolute;
      opacity: 0;
      transition: opacity .2s ease-out; }
    .main form section .slide-container.active {
      height: 80px; }
      .main form section .slide-container.active .form-row {
        opacity: 1; }
  .main form .table-data {
    margin: 35px 0;
    height: 30px;
    border: 1px solid #9e9e9e;
    color: #6c6c6c;
    display: table;
    width: 100%;
    font-weight: 200; }
    .main form  .table-data .heading-row, .main form section .table-data .data-row {
      width: 100%;
      display: table-row; }
      .main form  .table-data .heading-row .data, .main form section .table-data .heading-row .table-btn, .main form section .table-data .data-row .data, .main form section .table-data .data-row .table-btn {
        display: table-cell;
        padding: 5px 10px; }
      .main form  .table-data .heading-row .table-btn, .main form section .table-data .data-row .table-btn {
        text-align: center;
        width: 50px; }
    .main form  .table-data .heading-row {
      color: black;
      margin-bottom: 5px; }
      .main form  #passenger-table thead{
        padding: 4px 10px;
        text-transform: capitalize;
        border-bottom: 3px solid #FEEF35;
        font-weight: 500; }
    .main form  .table-data .data-row:nth-child(odd) {
      background-color: #ededed; }
    .main form  .table-data .data-row:nth-child(even) {
      background-color: #f8f8f8; }
  .main form #passenger-detail .include-checkbox.data {
    display: none; }

.main form .form-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 15px 0; }
  .main form .form-row.centered {
    justify-content: center;
    flex-direction: column;
    margin: 10px auto; }
    .main form .form-row.centered .input-text-wrapper {
      margin-bottom: 10px; }

    .main form .form-row .input-text-wrapper h3 {
      text-align: justify;
      margin: 0; }
    .main form .form-row .input-text-wrapper label {
      display: block;
      text-transform: uppercase;
      font-size: .7em;
      margin-bottom: 3px; }
    .main form .form-row .input-text-wrapper input[type="text"], .main form .form-row .input-text-wrapper select {
      width: 100%;
      height: 35px;
      box-sizing: border-box; }
    .main form .form-row .input-text-wrapper p {
      font-size: .8em;
      margin: 10px 0; }
    .main form .form-row .input-text-wrapper .info-text {
      font-size: .8em;
      margin: 2px 0;
      color: #9e9e9e; }

.main form .row-btn-wrapper {
  display: flex;
  justify-content: flex-end; }
  .main form .row-btn-wrapper .add-btn {
    width: 150px;
    display: inline-block;
    background: #d2d2d2;
    font-size: .8em;
    padding: 8px 20px;
    box-sizing: border-box;
    font-weight: bold;
    line-height: 1.3em;
    cursor: pointer;
    transition: background-color .1s linear, color .1s linear; }
    .main form .row-btn-wrapper .add-btn:hover {
      background-color: #9e9e9e;
      color: white; }
    .main form .row-btn-wrapper .add-btn:first-letter {
      font-size: 1.5em; }

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

/*body {
  line-height: 1; }*/

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

header .top-content {
  display: flex;
  margin: 10px 0; }
  header .top-content .navigation {
    flex-grow: 4;
    display: flex;
    justify-content: flex-end; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }

.logo {
  max-width: 100px;
  flex-grow: 1;
  justify-content: space-between; }
  .logo img {
    width: 75px;
    display: inline-block; }

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  header .top-content {
    padding: 0 10px; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }
  .logo {
    max-width: 100px;
    flex-grow: 1;
    justify-content: space-between; }
    .logo img {
      width: 55px;
      display: inline-block; } }

.btn {
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent; }
  .btn:hover {
    border: 1px solid #6c6c6c; }

.background-yellow {
  background: #FEEF35; }

.color-bk, header .top-content .navigation > a, a, a:visited {
  color: black; }

.color-red {
  color: darkred; }

a {
  text-decoration: none; }

header .header-bar {
  background: black;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.2em; }


.main h1 {
  font-weight: 100;
  text-align: center;
  font-size: 2.1em;
  margin: 0 0 20px;
  font-family: Raleway, sans-serif; }
  .main h1.no-section {
    margin-top: 20px; }

.main .columns {
  display: flex; }
  .main .columns .column {
    flex-grow: 1; }
    .main .columns .column.no-form {
      margin-top: 50px; }
    .main .columns .column .review-wrapper {
      margin: 25px 0; }
      .main .columns .column .review-wrapper h4 {
        font-size: .7em;
        font-weight: bold;
        text-transform: uppercase; }
      .main .columns .column .review-wrapper h3 {
        color: #9e9e9e;
        margin: 6px 0 8px; }
        .main .columns .column .review-wrapper h3.bold-h3 {
          font-weight: bold;
          color: #525252; }
    .main .columns .column .info-text {
      font-size: .8em;
      margin: 2px 0;
      color: #9e9e9e; }

.main form h2 {
    font-weight: 100;
    color: #9e9e9e;
    font-size: 1.2em;
    transition: margin-top .2s ease-out;
    margin: 15px 0;
}

.main form h3 {
  font-weight: 200;
  color: black;
  font-size: 1.2em;
  transition: margin-top .2s ease-out;
  margin: 15px 0; }

.main form .btn {
  margin: 10px auto;
  text-align: center;
  padding: 10px;
  height: 35px;
  font-weight: bold;
  box-sizing: border-box; }

.main form section {
  margin: 20px 0;
  display: none;
  opacity: 0;
  transition: opacity .2s ease-out; }
  .main form section.active {
    display: block;
    opacity: 1; }
  .main form section label.stand-alone-small {
    margin: 5px 0 20px;
    font-size: .8em;
    color: #9e9e9e; }
    .main form section label.stand-alone-small input[type="checkbox"] {
      margin-right: 10px; }

.main form .form-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 15px 0; }
  .main form .form-row.centered {
    justify-content: center;
    flex-direction: column;
    margin: 10px auto; }
    .main form .form-row.centered .input-text-wrapper {
      margin-bottom: 10px; }
    .main form .form-row.centered h3 {
      text-align: justify; }
    .main form .form-row.centered .review-wrapper {
      margin: 25px 0; }
      .main form .form-row.centered .review-wrapper h3 {
        font-size: 1em; }
    .main form .form-row .input-text-wrapper label {
      display: block;
      text-transform: uppercase;
      font-size: .7em;
      margin-bottom: 3px;
      font-weight: bold;
      color: black; }
    .main form .form-row .input-text-wrapper input[type="text"], .main form .form-row .input-text-wrapper select {
      width: 100%;
      height: 35px;
      box-sizing: border-box; }
    .main form .form-row .input-text-wrapper p {
      font-size: .8em;
      margin: 10px 0; }

.main form .row-btn-wrapper {
  display: flex;
  justify-content: flex-end; }
  .main form .row-btn-wrapper .add-btn {
    display: inline-block;
    background: #d2d2d2;
    font-size: .8em;
    padding: 8px 20px;
    box-sizing: border-box;
    font-weight: bold;
    line-height: 1.3em;
    cursor: pointer;
    transition: background-color .1s linear, color .1s linear; }
    .main form .row-btn-wrapper .add-btn:hover {
      background-color: #9e9e9e;
      color: white; }
    .main form .row-btn-wrapper .add-btn:first-letter {
      font-size: 1.5em; }
    .main form .row-btn-wrapper .add-btn.add-promo-code {
      text-align: center; }
      .main form .row-btn-wrapper .add-btn.add-promo-code:first-letter {
        font-size: inherit; }


      /* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

/*body {
  line-height: 1; }*/

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

header .top-content {
  display: flex;
  margin: 10px 0; }
  header .top-content .navigation {
    flex-grow: 4;
    display: flex;
    justify-content: flex-end; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }

.logo {
  max-width: 75px;
  flex-grow: 1;
  justify-content: space-between; }
  .logo img {
    width: 75px;
    display: inline-block; }

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  header .top-content {
    padding: 0 10px; }
    header .top-content .navigation > a {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      cursor: pointer; }
  .logo {
    max-width: 55px;
    flex-grow: 1;
    justify-content: space-between; }
    .logo img {
      width: 55px;
      display: inline-block; } }

body {
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

.btn {
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent; }
  .btn:hover {
    border: 1px solid #6c6c6c; }

.background-yellow {
  background: #FEEF35; }

.color-bk, header .top-content .navigation > a, a, a:visited {
  color: black; }

a {
  text-decoration: none; }

#container .main .hero-image {
  position: relative; }
  #container .main .hero-image img {
    max-width: 100%; }

#container .main .hero-chart {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 25px;
  max-width: 50%;
  background: white;
  border: 2px solid lightgray;
  border-radius: 10px; }
  #container .main .hero-chart h1 {
    margin: 0;
    padding: 0 0 15px;
    text-align: center;
    font-size: 2.2em; }
  #container .main .hero-chart a:visited {
    color: black; }
  #container .main .hero-chart .table-wrapper {
    border: 2px solid lightgray;
    border-radius: 10px;
    text-align: center;
    overflow: hidden; }
    #container .main .hero-chart .table-wrapper table {
      border-collapse: collapse;
      font-size: .9em; }
      #container .main .hero-chart .table-wrapper table tr {
        color: black; }
      #container .main .hero-chart .table-wrapper table tr:last-child td {
        border-bottom: none; }
      #container .main .hero-chart .table-wrapper table tr:first-child {
        font-weight: bold;
        color: black; }
        #container .main .hero-chart .table-wrapper table tr:first-child td {
          border-top: none; }
      #container .main .hero-chart .table-wrapper table td {
        border: 2px solid lightgray;
        padding: 7px;
        width: 20%; }
        #container .main .hero-chart .table-wrapper table td:last-child {
          border-right: none; }
        #container .main .hero-chart .table-wrapper table td:first-child {
          border-left: none; }
        #container .main .hero-chart .table-wrapper table td[rowspan="2"] {
          border-bottom: none;
          font-weight: bold; }
  #container .main .hero-chart .cta {
    width: 75%;
    margin: 15px auto 0;
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
    font-weight: bold; }

#container .main h2 {
  margin: 30px 0;
  font-size: 2em;
  font-weight: bold; }

#container .main .content-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  min-height: 200px; }
  #container .main .content-row .content-box {
    width: 49%;
    border: 2px solid lightgray;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 15px; }
    #container .main .content-row .content-box h3 {
      background: #6c6c6c;
      color: white;
      padding: 10px 25px;
      margin: 0; }
    #container .main .content-row .content-box p, #container .main .content-row .content-box h4 {
      margin: 20px 0; }
    #container .main .content-row .content-box .content-box-main {
      padding: 0 25px; }
    #container .main .content-row .content-box .btn {
      display: inline-block;
      padding: 8px;
      text-align: center;
      font-weight: bold; }
    #container .main .content-row .content-box .content-img-wrapper {
      display: flex;
      margin: 0 auto; }
      #container .main .content-row .content-box .content-img-wrapper img {
        height: 60px; }

#container footer {
  display: flex;
  margin-top: 45px;
  border-top: 2px solid lightgray;
  padding: 10px 0; }
    #container footer .company-info {
        flex-grow: 1;
        padding-left: 10px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 20px;
    }
    #container footer .company-info a {
        text-decoration:underline;
        color:black;
    }
  #container footer .social-icons {
    flex-grow: 3;
    display: flex;
    justify-content: flex-end; }
    #container footer .social-icons img {
      height: 30px;
      margin-left: 10px; }

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  #container .main .hero-image {
    border-top: 1px solid #535353;
    padding-bottom: 30px; }
  #container .main .hero-chart {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #f9f9f9 10px, #f9f9f9 20px);
    border: none;
    border-radius: 0px;
    padding: 15px 10px;
    box-sizing: border-box; }
    #container .main .hero-chart h1 {
      text-align: left;
      font-size: 1.7em;
      padding: 0 0 10px; }
    #container .main .hero-chart a:visited {
      color: black; }
    #container .main .hero-chart .table-wrapper {
      border: 1px solid #535353;
      border-radius: 5px;
      overflow: hidden;
      box-sizing: content-box; }
      #container .main .hero-chart .table-wrapper table tr {
        color: black; }
      #container .main .hero-chart .table-wrapper table td {
        border: 1px solid #535353;
        padding: 7px 4px;
        width: 20%; }
    #container .main .hero-chart .cta {
      width: 50%;
      text-align: center;
      padding: 5px;
      font-size: 1.3em; }

  #container .main .content-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px; }
    #container .main .content-row .content-box {
      width: 100%;
      border: none;
      border-radius: 0px;
      overflow: hidden;
      padding-bottom: 5px;
      margin-bottom: 10px; }
      #container .main .content-row .content-box h3 {
        background: lightgrey;
        font-size: 1.3em;
        color: black; }
        #container .main .content-row .content-box h3:first-letter {
          font-weight: bold; }
      #container .main .content-row .content-box p {
        font-size: 1.1em;
        margin: 15px 0 0; }
      #container .main .content-row .content-box h4 {
        font-size: 1.3em;
        margin-bottom: 0; }
      #container .main .content-row .content-box .btn {
        margin: 10px 0; }
      #container .main .content-row .content-box .content-img-wrapper {
        margin: 10px auto 0; }
  #container footer {
    padding: 5px 10px 10px;
    position: relative; }
    #container footer .trademark {
      margin-top: 25%; }
    #container footer .call-customer-care {
      position: absolute;
      width: 80%;
      top: 100%;
      left: 0;
      margin: 0 0 0 10%; }
      #container footer .call-customer-care p {
        display: inline-block; } }






/*******************
    CSS BY ADAM
******************/

.btn.center {
    display:block;
    margin: 0 auto;
}

label {
    display: block;
    text-transform: uppercase;
    font-size: .7em;
    margin-bottom: 3px;
    font-weight: bold;
    color: black;
}
.help-block {
    font-size: .9em;
}


.flexselect_dropdown {
  display: none;
  position: absolute;
  z-index: 999999;
  margin: 0;
	padding: 0;
	border: 1px solid WindowFrame;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
	background-color: Window;
  color: WindowText;
  text-align: left;
  box-shadow: 0 6px 12px #ccc;
  -webkit-box-shadow: 0 6px 12px #ccc;
}

.flexselect_dropdown ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.flexselect_dropdown li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	width: 100%;
	font: Menu;
	overflow: hidden;
}

.flexselect_dropdown li.disabled {
  cursor: not-allowed;
  color: GrayText;
}

.flexselect_selected {
	background-color: Highlight;
	color: HighlightText;
}

#baggage-table {
    table-layout: fixed;
    word-wrap: break-word;
    width: 100%;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color:black;
}
.ui-front {
    z-index: 100;
}
.ui-dialog-titlebar{
    background-color:white;
    border-radius:10px;
    /*border-left: 2px solid lightgray;
    border-right: 2px solid lightgray;
    border-top: 2px solid lightgray;*/
}

.ui-dialog{
    border-radius: 10px;
    border: 2px solid lightgray;
    background-color:white;
}

.ui-dialog-titlebar-close{
    background-image:url("img/close.png");
    background-color:#cccccc;
    background-repeat:no-repeat;
    width:22px;
    height:23px;
    border:none;
    float:right;
    margin:5px;
}


.show{
    display:normal;
}

.no-show{
    display:none;
}

.iconadd {
    display: none !important;
}

.iconremove {
    display: inline-block !important;
}

.collapsed .iconadd {
    display: inline-block !important;
}

.detail-container .form-label {
    color: black;
}

.collapsed .iconremove {
    display: none !important;
}

.detail-header {
    display: flex;
}

.detail-header button {
    background-color: inherit !important;
    font-size: 2.1em;
    border: none;
}

#payment-detail {
    padding: 10px;
    background-color: #eeeeee;
}

#payment-detail .form-label {
    text-transform: none;
    font-size: 1em;
}

#payment-detail input {
    background-color: #eeeeee;
}

#billing-detail .form-label {
    margin-top: 5px;
    font-size: 1em;
}

#delivery-address-checkbox {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: black;
    margin: 0;
}

#delivery-address-checkbox input {
    margin: 0 10px;
}

#card-Num-Container {
    position: relative;
}

#card-Num-Container i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent the icon from blocking input interactions */
}

.flex-microform {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.flex-microform-focused {
    border-color: #66afe9 !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
}

.flex-microform-focused.flex-microform-valid {
    border-color: #75b798 !important;
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25) !important;
}

.flex-microform-focused.flex-microform-invalid {
    border-color: #ea868f !important;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25) !important;
}

.flex-microform-valid {
    border-color: #75b798 !important;
}

.flex-microform-invalid {
    border-color: #ea868f !important;
}
#loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
    visibility: hidden;
    z-index: 10;
}
label.error {
    color: red !important;
}
select.error {
    border-color: red !important;
    color: black !important;
}
input.error {
    border-color: red !important;
}

.super {
    color: darkred;
}
