/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  /*Image only BG fallback*/

  /*background = gradient + image pattern combo*/
  background: linear-gradient(
    to top,
    #34abfb,
    #e7a63f,
    #e7a63f
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

a {
  text-decoration: none;
}

.red {
  color: red;
}

.head-div {
  color: #34abfb;
  text-align: center;
  width: 400px;
  height: 50px;
  background-color: white;
  font-weight: bold;
  border-radius: 20px;
  margin: 50px auto;
}

.response-div {
  background-color: white;
  border-radius: 20px;
  width: 500px;
  margin: 50px auto;
  padding: 20px 30px;
  text-align: center;
  position: relative;
}

body {
  font-family: montserrat, arial, verdana;
}

.success-img {
  width: 100%;
}

/*form styles*/
#form {
  width: 500px;
  margin: 50px auto;
  text-align: center;
  position: relative;
}
#form fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;

  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#form fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#form input,
#form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  font-size: 13px;
}
/*buttons*/
#form .action-button {
  width: 100px;
  background: #34abfb;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#form .action-button:hover,
#form .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #34abfb;
}
.api-fail-action-button {
  width: 150px;
  background: #64bbf5;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
.api-fail-action-button:hover,
.api-fail-action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #34abfb;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #34abfb;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 25%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #34abfb;
  color: white;
}

.select_wrapper {
  line-height: 36px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}
.select_wrapper span {
  background: #f5f5f5 url("https://image.flaticon.com/icons/svg/118/118738.svg")
    no-repeat top 15px right 12px;
  background-size: 15px;
}
.select_wrapper:hover {
  background: #fff url("https://image.flaticon.com/icons/svg/118/118738.svg")
    no-repeat top 15px right 12px;
}

.select_wrapper span {
  display: block;
  margin: 0;
  border-radius: 4px;
  transition: 0.4s ease;
  z-index: 9;
  position: relative;
}
.select_wrapper.openSelect span {
  display: block;
  margin: 0;
  transform: scale(1.04);
  box-shadow: 0 15px 35px rgba(49, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}
.select_wrapper .select_inner {
  background: #fff;
  color: #687278;
  display: none;
  position: absolute;
  left: 0;
  top: 47px;
  width: 100%;
}

.select_wrapper .select_inner li {
  border-bottom: 1px solid #eee;
  padding: 5px 15px;
  transition: 0.4s ease;
}
.select_wrapper .select_inner li:hover {
  background: #2c5364;
  color: #fff;
}
.select_wrapper .select_inner ul {
  border-radius: 5px;
  background: #fff;
}

.sub-menu-parent {
  position: relative;
}

.sub-menu-parent:focus .sub-menu,
.sub-menu-parent:focus-within .sub-menu,
.sub-menu-parent:hover .sub-menu {
  visibility: visible; /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}

nav ul,
nav ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav > ul {
  background: #eee;
  text-align: center;
}
nav > ul > li {
  display: inline-block;
  border-left: solid 1px #fff;
}

/* The alert message box */
.alert {
  padding: 20px;
  background-color: #f44336; /* Red */
  color: white;
  margin-bottom: 15px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}
/* Input focus color change */
input:focus {
  outline: none !important;
  border: 1px solid #2c5364;
  box-shadow: 0 0 0 2px white, 0 0 0 3px #34abfb;
}
/* * Footer */
/* - Footer Main */
.footer-main {
  overflow: hidden;
}

.footer-widgetblock {
  background-color: #063b5b;
  position: relative;
  padding-bottom: 30px;
}

  .footer-widgetblock::before {
      position: absolute;
      content: "";
      left: 0;
      right: 0;
      top: -90px;
      bottom: 0;
      background: url("../images/footer-bg.png");
      background-position: top center;
      background-repeat: no-repeat;
  }

  .footer-widgetblock .row {
      padding-top: 90px;
  }

/* - Footer:: Footer Widget */
.ftr-widget {
  margin-bottom: 10px;
}

  /* - Footer:: Widget Title */
  .ftr-widget .widget-title {
      position: relative;
      color: #fff;
      font-size: 22px;
      font-weight: 600;
      font-family: Frutiger, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Clearview;
      text-transform: uppercase;
      margin: 0 0 30px;
      padding-bottom: 23px;
      word-wrap: break-word;
  }

      .ftr-widget .widget-title::after {
          content: "";
          background-color: #3abefb;
          height: 3px;
          width: 50px;
          position: absolute;
          bottom: 0;
          left: 0;
      }

      .ftr-widget .widget-title span {
          color: #f3a316;
      }

/* - Footer :: About Widget */
.footer-widgetblock .about_widget p {
  color: #dadada;
  font-size: 12px;
  line-height: 25px;
  text-align: justify;
}

.footer-widgetblock .about_widget ul {
  padding-left: 0;
  margin-bottom: 0;
  display: block;
  margin-top: 35px;
}

  .footer-widgetblock .about_widget ul li {
      display: inline-block;
      margin-right: 4px;
  }

      .footer-widgetblock .about_widget ul li:last-of-type {
          margin-right: 0;
      }

      .footer-widgetblock .about_widget ul li a {
          width: 37px;
          height: 37px;
          line-height: 37px;
          text-align: center;
          background-color: #313131;
          font-size: 15px;
          color: #fff;
          border-radius: 3px;
          display: inline-block;
          position: relative;
          z-index: 1;
      }

          .footer-widgetblock .about_widget ul li a:before {
              position: absolute;
              content: "";
              left: 0;
              right: 0;
              top: 0;
              bottom: 0;
              height: 0;
              background-color: #f3a316;
              transition: all 1s ease 0s;
              -webkit-transition: all 1s ease 0s;
              -moz-transition: all 1s ease 0s;
              -o-transition: all 1s ease 0s;
              z-index: -1;
          }

          .footer-widgetblock .about_widget ul li a:hover:before {
              height: 100%;
          }

/* - Footer:: Link Widget */
.footer-widgetblock .link_widget {
  padding-left: 25px;
}

  .footer-widgetblock .link_widget a {
      color: #dadada;
      line-height: 38px;
      text-transform: capitalize;
      text-decoration: none;
      font-size: 15px;
      transition: all 1s ease 0s;
      -webkit-transition: all 1s ease 0s;
      -moz-transition: all 1s ease 0s;
      -o-transition: all 1s ease 0s;
      display: block;
      word-wrap: break-word;
  }

      .footer-widgetblock .link_widget a:hover {
          color: #f3a316;
          margin-left: 3px;
      }

/* - Footer:: OpeningHours Widget */
.footer-widgetblock .openinghours_widget {
  padding-left: 65px;
  padding-right: 45px;
}

  .footer-widgetblock .openinghours_widget p {
      display: inline-block;
      width: 100%;
      color: #dadada;
      font-size: 15px;
      line-height: 28px;
      text-transform: capitalize;
      float: left;
      position: relative
  }

      .footer-widgetblock .openinghours_widget p::before {
          position: absolute;
          content: "";
          background-color: #fff;
          width: 5px;
          height: 1px;
          left: 40%;
          top: 13px;
      }

      .footer-widgetblock .openinghours_widget p span {
          float: right;
      }

/* - Footer:: Popular DestinationHours Widget */
.footer-widgetblock .populardestination_widget ul {
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
}

  .footer-widgetblock .populardestination_widget ul li {
      display: inline-block;
      margin-bottom: 10px;
      margin-right: 4.5px;
      position: relative;
      transition: all 1s ease 0s;
      -webkit-transition: all 1s ease 0s;
      -moz-transition: all 1s ease 0s;
      -o-transition: all 1s ease 0s;
      position: relative;
  }

      .footer-widgetblock .populardestination_widget ul li:nth-child(2n) {
          margin-right: 0;
      }

      .footer-widgetblock .populardestination_widget ul li:hover {
          opacity: 0.5;
      }

/* - Footer:: NewsLetter */
.ftr-newsletter {
  /*padding: 5px 10px;
max-width: 1170px;
margin: 19px 0px 0;*/

  background-color: #222;
  padding: 43.5px 89px;
  max-width: 1170px;
  margin: 19px 15px 0;
}

  .ftr-newsletter h3 {
      color: #fff;
      font-size: 24px;
      line-height: 28px;
      word-wrap: break-word;
      text-transform: uppercase;
      font-family: Frutiger, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Clearview;
      /*float: left;*/
      margin: 10px 38px 0 0;
  }

  .ftr-newsletter .input-group {
      display: flex;
      justify-content: center;
  }

      .ftr-newsletter .input-group .form-control {
          /*border-radius: 4px;
box-shadow: none;
-webkit-box-shadow: none;
-webkit-appearance: none;
font-size: 12px;
color: #000;
background-color: #fff;
padding: 0 15px;
min-height: 44px;
border: none;
max-width: 517px;*/
          border-radius: 15px;
          box-shadow: none;
          -webkit-box-shadow: none;
          -webkit-appearance: none;
          font-size: 12px;
          color: #000;
          background-color: #fff;
          padding: 0 35px;
          min-height: 44px;
          border: none;
          max-width: 200px;
      }
      /* -- Footer:: NewsLetter Placeholder */
      .ftr-newsletter .input-group ::-webkit-input-placeholder {
          color: #b0b0b0;
          text-transform: uppercase;
      }

      .ftr-newsletter .input-group :-moz-placeholder { /* Firefox 18- */
          color: #b0b0b0;
          text-transform: uppercase;
      }

      .ftr-newsletter .input-group ::-moz-placeholder { /* Firefox 19+ */
          color: #b0b0b0;
          text-transform: uppercase;
      }

      .ftr-newsletter .input-group :-ms-input-placeholder {
          color: #b0b0b0;
          text-transform: uppercase;
      }

      .ftr-newsletter .input-group .btn {
          /*background-color: #0775B8;
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
letter-spacing: 0.48px;
padding: 8px 33px 5px;
border-radius: 4px;
min-height: 44px;
color: #fff;
transition: all 1s ease 0s;
-webkit-transition: all 1s ease 0s;
-moz-transition: all 1s ease 0s;
-o-transition: all 1s ease 0s;	
outline: none;
word-wrap: break-word;*/

          background-color: #f3a316;
          text-decoration: none;
          text-transform: uppercase;
          font-size: 12px;
          font-family: Frutiger, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Clearview;
          font-weight: 600;
          letter-spacing: 0.48px;
          padding: 8px 33px 5px;
          border-radius: 30px;
          min-height: 44px;
          color: #fff;
          transition: all 1s ease 0s;
          -webkit-transition: all 1s ease 0s;
          -moz-transition: all 1s ease 0s;
          -o-transition: all 1s ease 0s;
          outline: none;
          word-wrap: break-word;
      }

          .ftr-newsletter .input-group .btn:hover {
              background-color: #3abefb;
          }

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

/* - Footer Bottom */
.footer-bottom {
  background-color: #0775B8;
}

  .footer-bottom .col-md-8 span {
      color: #fff;
      font-size: 11px;
      letter-spacing: 0.52px;
      text-transform: uppercase;
      margin-top: 25px;
      display: inline-block;
  }

/* - Footer Menu */
.footer-menu .ow-navigation {
  background-color: transparent;
  float: right;
}

  .footer-menu .ow-navigation .nav > li {
      margin-right: 43px;
  }

      .footer-menu .ow-navigation .nav > li:last-of-type {
          margin-right: 0;
      }

  .footer-menu .ow-navigation .navbar-nav > li > a {
      font-weight: 400;
      letter-spacing: 0.48px;
  }

      .footer-menu .ow-navigation .navbar-nav > li > a::before {
          height: 0;
      }

      .footer-menu .ow-navigation .navbar-nav > li > a:hover {
          color: #f3a316;
      }
/* - max-width: 991 */
@media (max-width: 991px) {
  /* - Menu Block */
  .menu-block::before {
      height: 0;
  }
  /* - SlidePanel */
  #slidepanel {
      display: none;
  }
  #slideit,
  #toggle {
      display: block;
      position: relative;
      z-index: 1;
  }
  #loginpanel {
      position: absolute;
      right: 107px;
      text-align: center;
      top: 12px;
  }
  #slideit,
  #closeit {
      position: relative;
      color: #000;
      font-size: 24px;
      right: -35px;
  }
  .mobile-hide {
      display: none;
  }
  .text-logo {
      color: #000;
      display: inline-block;
      font-weight: 700;
      font-size: 18px;
      line-height: normal;
      text-decoration: none;
      text-transform: capitalize;
      margin-left: 40px;
      margin-top: 15px;
      transition: all 1s ease 0s;
      -webkit-transition: all 1s ease 0s;
      -moz-transition: all 1s ease 0s;
      -o-transition: all 1s ease 0s;
  }
      .text-logo:focus,
      .text-logo:active,
      .text-logo:hover {
          color: #f7c51d;
          text-decoration: none;
      }
  /* - Menu:: Search */
  .menu-block .menusearch {
      position: absolute;
      top: 0;
      right: 105px;
      padding-left: 2px;
      padding-right: 2px;
      background-color: transparent;
  }
      .menu-block .menusearch .form-control {
          padding: 0;
          position: relative;
          top: 58px;
          right: -30px;
          width: 0;
          min-height: 40px;
          float: right;
      }
      .menu-block .menusearch .input-group-btn {
          height: 58px;
      }
  .menu-block.navbar-fixed-top .menusearch .form-control {
      top: 50px;
  }
  .ow-navigation .menusearch .search-show {
      width: 100%;
      padding: 0 12px;
  }
  /* - Heade Middle */
  .header-middle {
      padding-top: 10px;
      padding-bottom: 0;
  }
      .header-middle .logo-block {
          display: none;
      }
  .header-contactinfo-block {
      float: none;
      margin-top: 0;
  }
  .header-middle .contactinfo-box {
      width: 33.33%;
      float: left;
      margin-right: 0;
      padding-right: 5px;
  }
      .header-middle .contactinfo-box:last-of-type {
          padding-right: 0;
      }
      .header-middle .contactinfo-box p a:last-of-type,
      .header-middle .contactinfo-box p {
          font-size: 12px;
      }
  /* - Footer WidgetBlock */
  .footer-widgetblock .ftr-widget:nth-child(2n+1) {
      clear: both;
  }
  /* - Footer:: Footer Widget */
  .ftr-widget {
      position: relative;
      z-index: 1;
  }
  .footer-widgetblock .openinghours_widget,
  .footer-widgetblock .link_widget {
      padding-left: 15px;
  }
  .footer-widgetblock .openinghours_widget {
      padding-right: 15px;
  }
  /* - Footer NewsLetter */
  .ftr-newsletter {
      display: inline-block;
      width: 100%;
      padding: 43.5px 20px;
  }
      .ftr-newsletter .input-group .form-control {
          max-width: 250px;
      }
  /* - Footer Menu */
  .footer-menu .ow-navigation .navbar-toggle {
      background-color: #f3a316;
  }
      .footer-menu .ow-navigation .navbar-toggle:hover {
          background-color: transparent;
      }
  .footer-menu .ow-navigation {
      margin-top: -45px;
  }
      .footer-menu .ow-navigation .navbar-nav {
          border-color: #f3a316;
      }
          .footer-menu .ow-navigation .navbar-nav > li > a {
              color: #fff;
          }
}
/* header */
/* - max-width: 767 */
@media (max-width: 767px) {
  /* - Footer NewsLetter */
  .ftr-newsletter h3 {
      font-size: 20px;
      font-size: 18px;
      margin: 10px 20px 0 0;
  }
  .ftr-newsletter .input-group .btn {
      padding: 8px 20px 5px;
  }
  .ftr-newsletter .input-group .form-control {
      max-width: 230px;
      padding: 0 15px;
  }
  .resultContainer {
      width: 100% !important;
  }
  .filterDiv, .resultDiv {
      display: block !important;
      width: 100%;
  }
}
/* -  max-width: 639 */
@media (max-width: 639px) {
  /* -  Header Middle */
  .header-middle .contactinfo-box {
      width: 50%;
  }
  /* - Footer */
  .ftr-widget .widget-title {
      font-size: 18px;
  }
  .footer-widgetblock .about_widget p,
  .footer-widgetblock .link_widget a {
      font-size: 14px;
  }
  .footer-widgetblock .openinghours_widget p::before {
      left: 37%;
  }
  .footer-widgetblock .openinghours_widget p {
      font-size: 13px;
  }
  .populardestination_widget img {
      max-width: 98px;
  }
  .pt-150 {
    padding-top: 20px;
  }
  /* - Footer NewsLetter */
  .ftr-newsletter {
      padding: 43.5px 30px 43.5px 15px;
  }
      .ftr-newsletter h3 {
          font-size: 13px;
          margin: 10px 10px 0 0;
      }
      .ftr-newsletter .input-group .btn {
          padding: 8px 15px 5px;
          font-size: 11px;
      }
      .ftr-newsletter .input-group .form-control {
          max-width: 175px;
          padding: 0 15px;
      }
  /* - Section Header */
  .section-header h3 {
      font-size: 30px;
      margin: 0 0 8px;
  }
}
/* -  max-width: 479 */
@media (max-width: 479px) {
  .pt-150 {
    padding-top: 20px;
  }
  /* - Header Top */
  .header-top [class*="col-xs-"] {
      width: 100%;
      text-align: center;
  }
  .header-top ul {
      text-align: center;
  }
  /* - Header Middle */
  .header-middle {
      padding-top: 11px;
      padding-bottom: 0;
  }
      .header-middle [class*="col-xs-"] {
          width: 100%;
          text-align: center;
      }
  .header-contactinfo-block {
      margin-top: 0;
      float: none;
  }
  .header-middle .contactinfo-box {
      width: 100%;
      text-align: left;
      margin-right: 0;
  }
  /* - Footer */
  .footer-widgetblock .ftr-widget {
      width: 100%;
  }
  .footer-widgetblock .link_widget a {
      float: left;
      width: 50%;
  }
  .footer-widgetblock .openinghours_widget p::before {
      left: 40%;
  }
  .populardestination_widget img {
      max-width: 105px;
  }
  /* - Footer NewsLetter */
  .ftr-newsletter .input-group,
  .ftr-newsletter h3 {
      display: inline-block;
      width: 100%;
      text-align: center;
      margin-bottom: 8px;
  }
      .ftr-newsletter .input-group .form-control {
          max-width: 100%;
      }
      .ftr-newsletter .input-group .btn {
          margin-top: 15px;
      }
  /* - Section Header */
  .section-header h3 {
      font-size: 22px;
      margin: 0 0 5px;
  }
  /* - PageBanner */
  .pagebanner h3 {
      font-size: 36px;
  }
  .input-date-group {
      position: relative;
  }
      .input-date-group .js-input-date {
          padding-right: 35px;
      }
      .input-date-group #AddNewLeg {
          position: relative;
          right: 0;
          bottom: 0;
      }
      .input-date-group #RemoveNewLeg {
          position: absolute;
          bottom: 0;
          left: 52px;
      }
  @media (max-width: 767px) {
      #exTab3 .tab-content {
          color: #000;
          background-color: #fff;
      }
      .tab-pane .col-md-2, .col-md-5, .col-md-6, .col-md-3, .col-md-1, .col-md-4 {
          padding-left: 15px !important;
          padding-right: 15px !important;
      }
      .tab-pane .form-group {
          margin-bottom: 10px !important;
      }
      .sumbit-btn .row1 {
          display: block;
      }
      .tab-pane .col-md-5, .fromTo .col-md-2, .tab-pane .col-md-6 {
          padding-right: 15px !important;
      }
      .flightDiv {
          display: block !important;
          color: #fff;
      }
          .flightDiv .flex2 label {
              display: none !important;
          }
      #exTab3 .nav-tabs > li {
          margin-left: 2px !important;
      }
      .changeBtn {
          position: absolute !important;
          z-index: 1 !important;
          left: 45% !important;
          top: 68px !important;
          border-radius: 20px !important;
          transform: rotate(0deg) !important;
          transition: transform 600ms ease-in-out 0s !important;
          transform: rotate(89deg) !important;
      }
      .fromTo {
          position: relative;
      }
      #exTab3 .tab-content {
          color: #000;
          background-color: #fff;
          width: 100%;
      }
      #exTab3 .nav-tabs {
          border: 0;
          padding-left: 10px;
      }
          #exTab3 .nav-tabs > li > a {
              border-radius: 0;
              color: white;
              font-size: 21px;
              padding: 10px 30px;
              background: #0775B8;
              border: 0;
          }
          #exTab3 .nav-tabs > li.active > a,
          #exTab3 .nav-tabs > li.active > a {
              color: #000;
              background: #fff;
              border: 0;
          }
      .container-booking {
          position: absolute;
          top: 50%;
          width: 85%;
          transform: translate(-50%, -50%);
          left: 50%;
      }
      .inner-card {
          background: #B8860B;
          padding: 30px;
          box-shadow: 0px 0px 18px rgb(0 0 0 / 7%);
          -webkit-box-shadow: 0px 0px 18px rgb(0 0 0 / 7%);
          -moz-box-shadow: 0px 0px 18px rgb(0 0 0 / 7%);
      }
      .mb-20 {
          margin-bottom: 20px;
      }
      .inner-card .form-control {
          border: 1px #cdcdcd solid;
          box-shadow: none;
          height: 42px;
          border-radius: 0;
      }
      form#quoteForm {
          position: relative;
      }
      a.biz-btn {
          background: whitesmoke;
          border: 0;
          width: 120px;
          height: 40px;
          padding: 0;
      }
      button.biz-btn2 {
          text-align: center;
          line-height: 40px;
          color: #fff;
          background: blue;
          border-radius: 25px;
          font-size: 20px;
          width: 35%;
          margin-top: 23px;
          height: 45px;
      }
      button:hover {
          background-color: rgb(247, 115, 7);
          color: white;
      }
      ul.list {
          padding-left: 0;
      }
          ul.list li {
              list-style: none;
              font-size: 14px;
          }
              ul.list li:not(:first-child) {
                  margin-top: 10px;
              }
      span.current {
          margin: 0 0 20px;
          display: block;
      }
      [type="radio"]:checked + label,
      [type="radio"]:not(:checked) + label {
          position: relative;
          padding-left: 28px;
          cursor: pointer;
          line-height: 20px;
          display: inline-block;
          color: white;
          font-size: 20px;
      }
          [type="radio"]:checked + label:before,
          [type="radio"]:not(:checked) + label:before {
              content: '';
              position: absolute;
              left: 0;
              top: 0;
              width: 18px;
              height: 18px;
              border: 1px solid #ddd;
              border-radius: 100%;
              background: #fff;
          }
          [type="radio"]:checked + label:after,
          [type="radio"]:not(:checked) + label:after {
              content: '';
              width: 10px;
              height: 10px;
              background: #005dad;
              position: absolute;
              top: 4px;
              left: 4px;
              border-radius: 100%;
              -webkit-transition: all 0.2s ease;
              transition: all 0.2s ease;
          }
          [type="radio"]:not(:checked) + label:after {
              opacity: 0;
              -webkit-transform: scale(0);
              transform: scale(0);
          }
          [type="radio"]:checked + label:after {
              opacity: 1;
              -webkit-transform: scale(1);
              transform: scale(1);
          }
      .pl-0 {
          padding-left: 0;
      }
      .pr-0 {
          padding-right: 0;
      }
      .margin-top {
          margin-top: 20px;
      }
      .inner-card .border-left-radius {
          border-top-left-radius: 20px !important;
          border-bottom-left-radius: 20px !important;
      }
      .inner-card .border-right-radius {
          border-top-right-radius: 20px !important;
          border-bottom-right-radius: 20px !important;
      }
      .swap-icon {
          display: flex;
          position: relative;
      }
      img.swap-img {
          width: 20px;
          display: flex;
          /* position: absolute; */
      }
      input:focus::placeholder {
          color: transparent;
      }
      button.btn.btn-secondary.btn--round.align-self-center {
          background: blue;
          color: white;
          float: right;
          height: 40px;
          width: 7%;
          border-radius: 20px;
      }
          button.btn.btn-secondary.btn--round.align-self-center:hover {
              background-color: rgb(247, 115, 7);
              color: white;
          }
      label {
          display: inline-block;
          max-width: 100%;
          margin-bottom: 5px;
          font-weight: 700;
          color: white;
      }
  }
}

