* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #000000;
}
/* common css start*/

/* fonts start */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-LightItalic.woff2") format("woff2"),
    url("../fonts/OpenSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2"),
    url("../fonts/OpenSans-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-BoldItalic.woff2") format("woff2"),
    url("../fonts/OpenSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-ExtraBoldItalic.woff2") format("woff2"),
    url("../fonts/OpenSans-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Italic.woff2") format("woff2"),
    url("../fonts/OpenSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"),
    url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Medium.woff2") format("woff2"),
    url("../fonts/OpenSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-MediumItalic.woff2") format("woff2"),
    url("../fonts/OpenSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/OpenSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"),
    url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"),
    url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"),
    url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* fonts end */

body {
  font-family: "Open Sans";
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-flow: column;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-container {
  margin: 0 160px;
}
.ss-title {
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: var(--black);
  margin-bottom: 40px;
  max-width: 610px;
}
.ss-form-control {
  position: relative;
  display: block;
  padding: 11px 20px 10px;
  border: 1px solid #cfd8da;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
  outline: none;
}
.ss-form-control::placeholder {
  color: #00000066;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url("../images/calander.svg");
  opacity: 1;
  display: block;
  width: 20px;
  height: 20px;
  border-width: thin;
  position: absolute;
  left: 20px;
}
.form-select {
  position: relative;
  display: block;
  padding: 11px 20px 10px;
  border: 1px solid #cfd8da;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
  outline: none;
  box-shadow: unset;
  background-image: url("../images/arrow-down.svg");
  background-size: 13px 8px;
  background-position: right 20px center;
}
.form-select::placeholder {
  color: #00000066;
}
.form-select:focus {
  box-shadow: unset;
  border-color: #d0d8db;
}
textarea {
  resize: unset;
  height: 48px;
}

header.fixed {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
footer.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
}
.colum2 {
  justify-content: space-between;
}
.colum2 .form-group {
  width: 49% !important;
}
.colum3 .form-group {
  width: 32% !important;
}
.select2-container {
  width: 100% !important;
}
.has-error .select2-selection {
  border-color: red !important;
  background-color: #fdeff3 !important;
}

/* common css end*/

header {
  position: relative;
  display: block;
}
header .navbar {
  position: relative;
  display: block;
  padding: 10px 0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}
header .navbar .ss-container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
header .navbar .navbar-brand {
  position: relative;
  display: block;
  padding: 0;
  width: 120px;
  height: auto;
  margin-right: 48px;
}
header .navbar .navbar-nav .nav-item {
  position: relative;
  display: block;
  margin-right: 48px;
}
header .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
header .navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  opacity: 0.6;
}
header .navbar .navbar-nav .nav-item .nav-link.active {
  font-weight: 700;
  opacity: 1;
}
header .navbar .action {
  position: relative;
  display: flex;
  align-items: center;
}
header .navbar .action a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  opacity: 0.6;
  margin-right: 24px;
}
header .navbar .action a.active {
  font-weight: 700;
  opacity: 1;
}
header .navbar .action a.gbp {
  position: relative;
  display: flex;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: var(--black);
  opacity: 1;
  justify-content: center;
  margin-right: 0;
}
header .navbar .action a.fr {
  position: relative;
  display: none;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: var(--black);
  opacity: 1;
  justify-content: center;
  margin-right: 0;
}
header .navbar .action.show a.gbp {
  display: none;
}
header .navbar .action.show a.fr {
  display: flex;
}
header .navbar .action .contact-info {
  position: absolute;
  display: none;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  top: 40px;
  z-index: 1;
  padding: 20px;
  left: -70px;
}
header .navbar .action .contact-info a.contact-call {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  opacity: 1;
  margin: 0 0 20px;
}
header .navbar .action .contact-info a.contact-call span {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
header .navbar .action .contact-info a.policy {
  opacity: 1;
  /* color: rgb(0 0 0 / 60%);  */
  color: #3b608e;
  margin: 0 0 10px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  display: block;
  cursor: pointer;
}
header .navbar .action .contact-info a.policy span,
header .navbar .action .contact-info p {
  display: block;
  color: #3b608e;
  margin-top: 2px;
  opacity: 1;
  margin: 0;
}
header .navbar .action.active .contact-info {
  display: block;
}

.hero-section {
  position: relative;
  display: block;
  background-image: url("../images/TI-Hero.webp");
  width: 100%;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 45px;
  margin-bottom: 40px;
  background-position: center;
  box-shadow: 0px 0px 4px rgb(0 0 0 / 7%);
}
.hero-section .hero-box {
  position: relative;
  display: block;
  width: 445px;
  height: auto;
  background-color: var(--white);
  border-top: 8px solid #3b608e;
}
.hero-section .hero-box .hinfo {
  position: relative;
  display: block;
  padding: 32px;
}
.hero-section .hero-box .hinfo p {
  font-size: 16px;
  line-height: normal;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-section .hero-box .hinfo p span {
  position: relative;
  display: block;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 5px;
}
.hero-section .hero-box .hinfo h2 {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: #343434;
  margin-bottom: 24px;
}
.getQuote {
  position: relative;
  background-color: #e66e44;
  border: 1px solid #e66e44;
  border-radius: 6px;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: inline-flex;
  color: var(--white);
  align-items: center;
  transition: all 0.2s ease-in;
}
.getQuote span {
  position: relative;
  width: 10px;
  height: 12px;
  overflow: hidden;
  margin-left: 10px;
  display: flex;
}
.getQuote span img {
  object-fit: contain;
}
.getQuote:hover {
  color: var(--white);
  background-color: #3b608e;
  border-color: #3b608e;
}

.service-section .service-wrap h4.ss-title {
  font-size: 36px;
  max-width: 550px;
  line-height: 45px;
}
.service-section {
  position: relative;
  display: block;
  margin-bottom: 72px;
}
.service-section .service-wrap {
  position: relative;
  display: block;
}
.service-section .service-wrap .sertvice-list {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.service-wrap .sertvice-list .service-list-item {
  position: relative;
  display: flex;
  width: 32%;
  margin-right: 20px;
}
.service-wrap .sertvice-list .service-list-item:last-child {
  margin-right: 0;
}
.sertvice-list .service-list-item figure {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  overflow: hidden;
  margin: 0 24px 0 0;
  flex: 0 0 55px;
}
.sertvice-list .service-list-item figure img {
  object-fit: contain;
}
.sertvice-list .service-list-item .sinfo {
  position: relative;
  display: block;
}
.sertvice-list .service-list-item .sinfo h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #0c1729;
  margin-bottom: 20px;
}
.sertvice-list .service-list-item .sinfo p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  margin-bottom: 0;
}

.travel-mind {
  position: relative;
  display: block;
  background-color: #f5f8fa;
  padding: 64px 0;
  margin-bottom: 64px;
}
.travel-mind .tm-fold {
  position: relative;
  display: flex;
}
.travel-mind .tm-fold .ss-title {
  font-size: 36px;
  line-height: 45px;
}
.travel-mind .travel-fold {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.travel-mind .travel-fold .tab-content {
  position: relative;
  display: block;
  width: 100%;
}
.travel-mind .travel-fold .travel-info {
  position: relative;
  display: block;
  margin-right: 45px;
}
.travel-fold .travel-info figure {
  position: relative;
  display: block;
  width: 330px;
  height: 330px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 30px;
}
.travel-mind .travel-fold .travel-info .getQuote span {
  display: flex;
  height: 12px;
}
.travel-fold .travel-info .policy-doc {
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  align-items: center;
}
.travel-fold .travel-info .policy-doc span {
  position: relative;
  display: block;
  width: 20px;
  height: auto;
  overflow: hidden;
  margin-right: 12px;
}
.travel-fold .travel-info .getQuote {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 140px;
  justify-content: center;
  white-space: nowrap;
  margin: 0 auto 20px;
  font-size: 16px;
}
.travel-mind .travel-fold .travel-plan {
  position: relative;
  width: 100%;
  display: block;
  background-color: #f5f6f7;
}
.travel-mind .travel-fold .travel-plan .plans {
  position: relative;
}
.travel-fold .travel-plan .plans .plan-header {
  position: relative;
  display: flex;
  border-bottom: 1px solid #d0d8db;
  padding-left: 33.33%;
  justify-content: space-between;
}
.travel-plan .plans .plan-header .hplan {
  position: relative;
  display: block;
  text-align: center;
  width: 33.33%;
  margin-right: 16px;
  padding: 46px 0;
  flex: 1;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  color: #343434;
  opacity: 0.8;
}
.travel-plan .plans .plan-header .hplan:last-child {
  margin-right: 0;
  background-color: #3b608e;
  border-radius: 10px 10px 0 0;
  color: #fff;
  opacity: 1;
}
.travel-plan .plans .plan-header .hplan:last-child span {
  color: var(--white);
  opacity: 1;
}
.travel-plan .plans .plan-header .hplan figure {
  position: relative;
  display: block;
  width: 26px;
  height: auto;
  overflow: hidden;
  margin: 0 auto 12px;
}
.travel-plan .plans .plan-header .hplan span {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #0c1729;
  opacity: 0.8;
}
.travel-mind .travel-fold .travel-plan .plan-row {
  position: relative;
  display: flex;
  border-bottom: 1px solid #d0d8db;
}
.travel-fold .travel-plan .plan-row h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 0;
  width: 33.33%;
  flex: 0 0 33.33%;
  padding: 20px 0;
  text-align: center;
}
.travel-fold .travel-plan .plan-row h5:first-child {
  text-align: left;
}
.travel-fold .travel-plan .plan-row h5.fam-icon {
  position: relative;
  display: flex;
}
.travel-fold .travel-plan .plan-row h5.fam-icon span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  align-items: flex-start;
  margin-left: 15px;
}
.travel-fold .travel-plan .inner-plan {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.travel-fold .travel-plan .inner-plan .plan-name {
  width: 33.33%;
  margin-right: 16px;
  position: relative;
  display: flex;
  text-align: center;
  padding: 18px 15px;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.travel-fold .travel-plan .inner-plan .plan-name:last-child {
  margin-right: 0;
  background-color: var(--white);
}
.travel-plan .inner-plan .plan-name .year {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.travel-plan .inner-plan .plan-name .year .num-year {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  opacity: 0.7;
  word-break: break-all;
  text-align: start;
}
.travel-plan .inner-plan .plan-name .year .num-year span {
  display: block;
  margin-top: 8px;
}
.travel-plan .inner-plan .plan-name .year span {
  opacity: 0.7;
}
.travel-plan .inner-plan .plan-name .year figure {
  position: relative;
  display: flex;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  overflow: hidden;
  opacity: 0.5;
}
.travel-plan .inner-plan .plan-name .year figure img {
  object-fit: contain;
}
.travel-plan .inner-plan .plan-name span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  opacity: 0.7;
}
.travel-plan .inner-plan .plan-name.gold-plan .year figure {
  opacity: 1;
}
.travel-plan .inner-plan .plan-name.gold-plan .year .num-year {
  opacity: 1;
  font-weight: 700;
}
.travel-mind .travel-fold .travel-plan .plan-title {
  position: relative;
  display: block;
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px solid #3b608e;
  color: #3b608e;
}
.travel-mind .travel-fold .travel-plan .plan-row.sub-plan h5 {
  position: relative;
  padding-left: 20px;
}
.travel-mind .travel-fold .travel-plan .plan-row.sub-plan h5:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 30px;
}
.travel-plan .plan-addon {
  position: relative;
  margin-top: 24px;
}
.travel-plan .plan-addon .addon-title {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e1f2ff;
  padding: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0c1729;
  border-bottom: 1px solid #084774;
  cursor: pointer;
}
.travel-plan .plan-addon .addon-title span {
  width: 16px;
  height: 16px;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  display: flex;
}
.travel-mind .travel-fold p {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding: 25px 0;
  color: var(--black);
  opacity: 0.7;
  margin-bottom: 0;
}
.travel-mind .travel-fold p label {
  font-weight: 700;
}

.tab2 {
  position: relative;
  display: block;
  margin-left: 56px;
}
.tab2 .nav-tabs {
  border: none;
  justify-content: center;
}
.tab2 .nav-tabs .nav-item .nav-link.active,
.tab2 .nav-tabs .nav-item .nav-link {
  border: none;
}
.tab2 .nav-tabs .nav-item .nav-link {
  position: relative;
  display: block;
  padding: 15px 24px;
  font-size: 16px;
  line-height: normal;
  color: #000;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid #d0d8db;
  background: #fff;
  text-transform: capitalize;
}
.tab2 .nav-tabs .nav-item .nav-link.nav-link.active {
  background-color: #e6ebf5;
  border-radius: 8px;
  color: #ffffff;
  border: 1px solid #3b608e;
  color: #3b608e;
  font-weight: 700;
}
.tab2 .tab-content {
  margin: 30px 50px;
}
.tab2 .nav-tabs .nav-item:not(:last-child) {
  margin-right: 16px;
}

.vtab2 {
  position: relative;
  display: block;
}
.vtab .nav-pills,
.vtab2 .nav-pills {
  position: relative;
  margin-right: 15px;
}

.faq-section {
  position: relative;
  display: block;
  margin-bottom: 100px;
}
.faq-section .ss-title {
  font-size: 36px;
  line-height: 42px;
}
.faq-section .faq-list {
  position: relative;
  display: flex;
}
.faq-section .faq-list .faq-item {
  position: relative;
  display: flex;
  width: 32%;
  margin-right: 70px;
  padding: 40px 40px 33px;
  flex-flow: column;
  height: 380px;
  background-color: #f5f8fa;
  justify-content: space-between;
}
.faq-section .faq-list .faq-item p {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 0;
}
.faq-section .faq-list .faq-item .question {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid var(--black);
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  line-height: 45px;
  margin-left: auto;
}
.faq-section .faq-list .faq-item .question img {
  width: 12px;
  height: 18px;
}
.faq-section .faq-list .faq-item:nth-child(2) {
  background-color: #cae3e3;
}
.faq-section .faq-list .faq-item:last-child {
  background-color: rgba(46, 165, 108, 0.25);
  margin-right: 0;
}
.faq-section .faq-list .faq-item .info-text {
  overflow-y: scroll;
  font-size: 14px;
  line-height: 20px;
  display: none;
}
.faq-section .faq-list .faq-item:hover p,
.faq-section .faq-list .faq-item:hover a {
  display: none;
}
.faq-section .faq-list .faq-item:hover .info-text {
  display: block;
}
.info-text::-webkit-scrollbar {
  display: none;
}

footer {
  position: relative;
  display: block;
  padding: 14px 0;
  margin-top: auto;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 9%);
}
footer .footer-fold {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-fold .footer-widgets {
  position: relative;
  display: flex;
  align-items: center;
}
footer .footer-fold .footer-widgets .flogo {
  position: relative;
  display: flex;
  width: 25px;
  height: auto;
  margin: 0 10px 0 0;
}
footer .footer-fold .footer-widgets p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 0;
}
footer .footer-fold .footer-widgets .flink {
  position: relative;
  display: block;
  margin-right: 22px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  transition: all 0.2s ease-in;
}
footer .footer-fold .footer-widgets .flink:hover {
  color: #3b608e;
}
footer .footer-fold .footer-widgets .flink:last-child {
  margin-right: 0;
}

.quote-main {
  position: relative;
  display: block;
  margin-top: 40px;
}
.quote-main .quote-step {
  max-width: 100%;
  margin: 0 auto;
}
.quote-main .quote-top {
  position: relative;
  display: block;
}
.quote-main .quote-top .steps {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 32px;
}
.quote-main .quote-top .steps .number {
  position: relative;
  display: flex;
  margin-left: 9px;
  align-items: center;
}
.quote-main .quote-top .steps .number .select {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  background-color: #3b608e;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.quote-main .quote-top .steps .number .select:after {
  content: "/";
  position: absolute;
  display: block;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  color: #000;
  opacity: 0.35;
  top: -2px;
  right: -12px;
  transform: rotate(-10deg);
}
.quote-main .quote-top .steps .number span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.35;
  margin-left: 3px;
}
.quote-main .quote-top h2 {
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  display: flex;
  text-align: center;
  color: var(--black);
  margin-bottom: 32px;
  align-items: center;
  justify-content: center;
}
.quote-main .quote-top h2 span {
  position: absolute;
  display: block;
  width: 48px;
  height: 60px;
  overflow: hidden;
  left: 0;
}
.quote-main .quote-form {
  position: relative;
  display: block;
}
.quote-main .quote-form form {
  position: relative;
}
.quote-main .quote-form form .step-form {
  position: relative;
  display: block;
}
.quote-form form .step-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 24px;
}
.quote-form form .step-form .form-group label,
.quote-form form .step-form .travelers,
.quote-form form .step-form .travelers label {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: capitalize;
  opacity: 0.8;
  display: block;
}
.quote-form form .step-form .travelers label {
  text-transform: initial;
}
.quote-form form .step-form .form-check {
  border: 1px solid #d0d8db;
  border-radius: 8px;
  padding: 11px 20px 10px 44px;
  min-height: unset;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.quote-form form .step-form .form-check label {
  margin-bottom: 0;
}
.quote-form form .step-form .form-check:last-child {
  margin-bottom: 0;
}
.quote-form form .step-form .form-check .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #00000040;
  border: 1px solid transparent;
  box-shadow: unset;
  outline: none;
}
.quote-form form .step-form .form-group .coverage-fold {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quote-form form .step-form .form-group .coverage-fold span {
  display: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #00000078;
  text-transform: initial;
}
.quote-form form .step-form .form-group .coverage-fold.show-policy span {
  display: block;
}
.existingCover-field {
  position: relative;
  display: block;
  margin-top: 25px;
}
.existingCover-field p {
  background-color: #e5f0f2;
  padding: 12px 30px;
  border-radius: 10px;
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #313131;
  font-weight: 400;
}
.existingCover-field p:before {
  content: "";
  position: absolute;
  display: block;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #e5f0f2 transparent;
  top: -20px;
  left: 25px;
}
.existingCover-field .ss-form-control {
  width: 100%;
}
.quote-main .quote-form form .step-form .policyLine {
  position: relative;
  margin: 0 0 32px;
  background: #e5f0f2;
  border-radius: 10px;
  padding: 20px 20px;
  display: none;
}
.quote-main .quote-form form .step-form .policyLine:before {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-width: 11px;
  top: -20px;
  border-color: transparent transparent #e5f0f2 transparent;
}
.quote-main .quote-form form .step-form .policyLine .card {
  padding: 10px 0;
  border: 0;
  background-color: #e5f0f2;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #ced8db;
  margin-top: 15px;
  display: none;
}
.quote-main .quote-form form .step-form .policyLine.action-show .card {
  display: block;
}
.quote-form form .step-form .policyLine .pl-fold {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e5f0f2;
  padding: 0;
  border-radius: 10px;
}
form .step-form .policyLine .card .form-group {
  display: flex;
  align-items: center;
  margin: 0;
}
form .step-form .policyLine .card .form-group {
  display: flex;
  align-items: center;
  margin: 0;
}
form .step-form .policyLine .card .form-group .ss-form-control {
  width: 100%;
  margin-right: 20px;
}
form .step-form .policyLine .card .form-group .send-btn {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #f76535;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 22px;
  color: #f76535;
  text-transform: capitalize;
  font-weight: 500;
}
form .step-form .policyLine .card .form-group .send-btn span {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
.quote-main .quote-form form .step-form .policyLine .card p {
  position: relative;
  display: none;
  align-items: center;
  color: #00af51;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  border: 1px solid #00af51;
  border-radius: 10px;
  padding: 14px 10px;
  background-color: #fff;
  margin: 10px 0 0 0;
}
.quote-main .quote-form form .step-form .policyLine .card p span {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0 10px 0 0;
  position: relative;
  display: flex;
  flex: 0 0 20px;
}
.quote-main .quote-form form .step-form .check-agent {
  position: relative;
  border-top: 1px solid #dfe5e7;
  padding: 30px 0 0;
  margin-bottom: 48px;
}
.quote-main .quote-form form .step-form .check-agent label {
  margin: 0;
  white-space: inherit;
  font-size: 18px;
  line-height: 20px;
  color: #343434;
  font-weight: 400;
}
.quote-main .quote-form form .step-form .check-agent .form-check {
  border: unset;
  padding: 0 25px 10px;
}
.quote-main .quote-form form .step-form .check-agent .form-check #agent {
  border-radius: 5px;
  margin-right: 15px;
  background-color: #ced8db;
}
.quote-main .quote-form form .step-form .check-agent .referred-field {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quote-main
  .quote-form
  form
  .step-form
  .check-agent
  .referred-field
  .form-group {
  width: 48%;
}
.quote-main
  .quote-form
  form
  .step-form
  .check-agent
  .referred-field
  .form-group
  input.ss-form-control,
.quote-main .quote-form form .step-form .check-agent .form-group.agentName,
.quote-main
  .quote-form
  form
  .step-form
  .check-agent
  .form-group.agentName
  input.ss-form-control {
  width: 100%;
}
.quote-main .quote-form form .step-form .check-agent .form-group label {
  color: #000000;
  margin-bottom: 12px;
}

.quote-form form .step-form .policyLine .pl-fold a {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  font-weight: 400;
}
.quote-form form .step-form .policyLine .pl-fold a span {
  position: relative;
  display: flex;
  width: 20px;
  height: 16px;
  overflow: hidden;
  margin-right: 12px;
  flex: 0 0 20px;
}
.quote-form form .step-form .policyLine .pl-fold:before {
  content: "";
  position: absolute;
  display: block;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #e5f0f2 transparent;
  top: -20px;
  left: 25px;
}
.quote-form form .step-form .pl-fold .form-check {
  padding: 0;
  border: 0;
  display: flex;
  position: relative;
  align-items: center;
}
.quote-form form .step-form .pl-fold .form-check .form-check-input {
  border-radius: 5px;
  margin-right: 10px;
  background-color: #d0d8db;
  border: 1px solid #d0d8db;
}
.quote-form form .step-form .pl-fold .form-check .form-check-input:checked,
.quote-main
  .quote-form
  form
  .step-form
  .check-agent
  .form-check
  .form-check-input:checked {
  background-color: #3b608e !important;
  border-color: #3b608e;
}
.quote-form form .step-form .pl-fold .form-check .form-check-label {
  margin: 0;
  white-space: unset;
  font-size: 14px;
  line-height: 20px;
  color: #343434;
  font-weight: 400;
}

.quote-form
  form
  .step-form
  .form-group.promo-check
  .form-check
  .form-check-input {
  border-radius: 5px;
  background-color: #00000040;
}
.quote-form
  form
  .step-form
  .form-group.promo-check
  .form-check
  .form-check-input:checked {
  background-color: #0c1729;
  border-color: #0c1729;
}
.quote-form form .step-form .form-check .form-check-label {
  margin: 0 0 0 16px;
  white-space: pre-wrap;
  font-weight: 700;
}
.quote-form
  form
  .step-form
  .form-check
  .form-check-input:checked[type="radio"] {
  background-image: unset;
  background-color: var(--white);
  border-color: #3b608e;
}
.quote-form
  form
  .step-form
  .form-check
  .form-check-input:checked[type="radio"]:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #3b608e;
  border-radius: 50%;
  align-items: center;
  margin: 0 auto;
  top: 21px;
  left: 26px;
}
.quote-form form .step-form .form-check.active-field {
  border-color: #3b608e;
}
.quote-form form .step-form .form-check.active-field label {
  color: #3b608e;
  font-weight: 700;
  opacity: 1;
}
.quote-form form .step-form .form-check figure.info-img {
  width: 20px;
  height: 20px;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  display: flex;
  cursor: pointer;
}
.quote-form form .step-form .check-fold {
  position: relative;
  display: block;
}
.quote-form form .step-form .check-fold .form-check {
  margin-bottom: 0;
}
.quote-form form .step-form .form-check .return {
  width: 24px;
  height: 24px;
  margin-left: 16px;
  display: flex;
  /* opacity: 0.2; */
}
.quote-form form .step-form .form-check .return.active {
  display: none;
}
.quote-form form .step-form .form-check.active-field .return {
  display: none;
}
.quote-form form .step-form .form-check.active-field .return.active {
  display: block;
}
.quote-form form .step-form .form-check .return img {
  object-fit: contain;
}
.quote-form form .step-form .form-check.active-field .return {
  opacity: 1;
}
.quote-form form .step-form .check-fold .form-check label {
  margin-right: 16px;
}
.quote-form form .step-form .check-fold .form-check {
  min-width: 250px;
}
.quote-form form .step-form .check-fold .form-check:not(:last-child) {
  margin-bottom: 16px;
}
.quote-form form .step-form .date-fold {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quote-form form .step-form .date-fold .ss-form-control {
  padding-left: 60px;
}
.quote-form form .step-form .date-fold .form-group {
  width: 48%;
}
.quote-form form .step-form .date-fold .form-group .ss-form-control {
  width: 100%;
  text-transform: uppercase;
}
.quote-form form .step-form .travelers {
  position: relative;
  display: block;
  opacity: 1;
}
.quote-form form .step-form .travelers .tr-title {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quote-form form .step-form .travelers .tr-title span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #00000078;
  text-transform: initial;
}
.quote-form form .step-form .travelers .tnumber {
  border: 1px solid #cfd8da;
  padding: 7px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.quote-form form .step-form .travelers .tnumber .minus,
.quote-form form .step-form .travelers .tnumber .plus {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
}
.quote-form form .step-form .travelers input {
  height: 34px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  border: unset;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  line-height: 24px;
}
.quote-form form .step-form .travelers span {
  cursor: pointer;
}

.quote-main .quote-form form .step-form .getQuote {
  width: 320px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  padding: 13px 30px;
}
.quote-form form .step-form .travelers .travel-fold .tinput::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.quote-form form .step-form .travelers .travel-fold.add span {
  cursor: pointer;
}
.quote-step {
  position: relative;
}
.quote-step .trip-tab {
  position: relative;
  margin-bottom: 32px;
}
.quote-step .trip-tab .nav-pills {
  justify-content: center;
  margin-bottom: 32px;
}
.quote-step .trip-tab .nav-pills .nav-item:not(:last-child) {
  margin-right: 16px;
}
.quote-step .trip-tab .nav-pills .nav-item .nav-link {
  padding: 15px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  border-radius: 6px;
  border: 1px solid #d0d8db;
  color: var(--black);
}
.quote-step .trip-tab .nav-pills .nav-item .nav-link.active {
  font-weight: 700;
  color: #0c1729;
  border: 1px solid #0c1729;
  background-color: #e1f2ff;
}
.quote-step .trip-tab .tab-content {
  position: relative;
  display: block;
}
.quote-form form .step-form .date-fold .form-group:after,
.travel-details .travel-form .form-group.date:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/calander.svg);
  width: 20px;
  height: 20px;
  background-size: cover;
  top: 52px;
  left: 22px;
}
.quote-form form .step-form .form-check figure.info-img span.quote-info,
.person-cover-fold .pc-list-item h4 span.quote-info {
  width: 80%;
  display: none;
  background-color: white;
  color: black;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.103);
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
}
.person-cover-fold .pc-list-item h4 span.quote-info {
  width: 100%;
  height: auto;
}
.quote-form form .step-form .form-check figure.info-img:hover span.quote-info {
  display: inline-block;
}
.quote-form form .step-form .form-check figure.info-img img {
  width: 20px;
  height: 20px;
}
.person-cover-fold .pc-list-item h4 span.info-img:hover .quote-info {
  display: block;
}

.trip-tab .tab-content .trip-plans {
  position: relative;
}
.trip-tab .tab-content .trip-plans.plan-mobile {
  display: none;
}
.trip-tab .tab-content .trip-plans .tp-list {
  justify-content: center;
  position: relative;
  display: flex;
}
/* .quote-main .quote-step.cover-step {max-width: 962px; margin-bottom: 56px;} */
.trip-tab .tab-content .trip-plans .tp-list .tp-list-item {
  position: relative;
  display: block;
  margin-right: 16px;
  width: 33%;
  margin-right: 16px;
}
.trip-tab .tab-content .trip-plans .tp-list .tp-list-item:last-child {
  margin-right: 0;
}
.trip-plans .tp-list .tp-list-item .tp-list-header {
  position: relative;
  border-radius: 10px 10px 4px 4px;
  padding: 24px;
  height: 171px;
}
.trip-plans .tp-list .tp-list-item .tp-list-header figure {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 0 auto 19px;
  overflow: hidden;
}
.trip-plans .tp-list .tp-list-item .tp-list-header h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  position: relative;
  display: block;
  text-align: center;
  color: #0c1729;
  margin-bottom: 15px;
}
.trip-plans .tp-list .tp-list-item .tp-list-header span {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.35);
}

.trip-plans.single .tp-list .tp-list-item.tp-silver .tp-list-header {
  background-color: #0c1729;
  text-align: center;
}
.trip-plans.single .tp-list .tp-list-item.tp-silver .tp-list-header h5 {
  color: var(--white);
}
.trip-plans.single .tp-list .tp-list-item.tp-silver .tp-list-header span {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 30px;
  display: inline-block;
  padding: 3px 16px;
}

.trip-plans.single .tp-list .tp-list-item.tp-gold.custom-style .tp-list-header {
  background-color: #0c1729;
  text-align: center;
}
.trip-plans.single
  .tp-list
  .tp-list-item.tp-gold.custom-style
  .tp-list-header
  h5 {
  color: var(--white);
}
.trip-plans.single
  .tp-list
  .tp-list-item.tp-gold.custom-style
  .tp-list-header
  span {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 30px;
  display: inline-block;
  padding: 3px 16px;
}

.trip-plans.multi .tp-list .tp-list-item.tp-gold .tp-list-header h5 {
  color: var(--white);
}

.trip-plans.multi .tp-list .tp-list-item.tp-gold .tp-list-header {
  background-color: #0c1729;
  text-align: center;
}
/* .trip-plans.multi .tp-list .tp-list-item.tp-gold .tp-list-header h5 {color: var(--white);} */
.trip-plans.multi .tp-list .tp-list-item.tp-gold .tp-list-header span {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 30px;
  display: inline-block;
  padding: 3px 16px;
}

.trip-plans.single .tp-list .tp-list-item.tp-silver p,
.trip-plans.multi .tp-list .tp-list-item.tp-gold p {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  padding: 3px 30px;
  color: var(--white);
  background-color: #2ea56c;
  border-radius: 40px;
  position: absolute;
  display: block;
  left: 50px;
  right: 50px;
  top: -10px;
}
.trip-plans .tp-list .tp-list-item .tp-list-body .tprice-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #f5f8fa;
  border-radius: 4px;
  margin-bottom: 3px;
  padding: 8px 12px;
  align-items: center;
}
.tp-list .tp-list-item .tp-list-body .tprice-item h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 0;
  z-index: 2;
}
.tp-list .tp-list-item .tp-list-body .tprice-item .tp-info {
  position: relative;
  margin-left: 30px;
  z-index: 2;
}
.tp-list-item .tp-list-body .tprice-item .tp-info h6 {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
}
.tp-list-item .tp-list-body .tprice-item .tp-info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.trip-plans .tp-list .tp-list-item.tp-gold .tp-list-body .tprice-item {
  background-color: #e1f2ff;
}
.tp-list .tp-list-item.tp-silver .tprice-item:after {
  content: "";
  width: 65%;
  background-color: #e1f2ff;
  height: 100%;
  display: block;
  top: 0;
  position: absolute;
  z-index: 1;
  left: 0;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:after {
  content: "";
  width: 30%;
  background-color: #e1f2ff;
  height: 100%;
  display: block;
  top: 0;
  position: absolute;
  z-index: 1;
  left: 0;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:nth-child(1):after {
  width: 10%;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:nth-child(2):after {
  width: 67%;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:nth-child(3):after {
  width: 33%;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:nth-child(4):after {
  width: 25%;
}
.tp-list .tp-list-item.tp-bronze .tprice-item:nth-child(5):after {
  width: 17%;
}

.tp-list .tp-list-item.tp-silver .tprice-item:nth-child(1):after {
  width: 50%;
}
.tp-list .tp-list-item.tp-silver .tprice-item:nth-child(2):after {
  width: 83%;
}
.tp-list .tp-list-item.tp-silver .tprice-item:nth-child(3):after {
  width: 67%;
}
.tp-list .tp-list-item.tp-silver .tprice-item:nth-child(4):after {
  width: 75%;
}
.tp-list .tp-list-item.tp-silver .tprice-item:nth-child(5):after {
  width: 67%;
}

.tp-list .tp-list-item .selct-fold {
  margin: 16px 20px;
}
.tp-list .tp-list-item .select-btn {
  position: relative;
  display: block;
  color: #2ea56c;
  border: 1px solid #2ea56c;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  width: 100%;
  padding: 14px;
  background-color: transparent;
  transition: all 0.2s ease-in;
}
.tp-list .tp-list-item .select-btn:hover,
.tp-list .tp-list-item .select-btn:focus,
.tp-list .tp-list-item .select-btn:active {
  background-color: #2ea56c;
  font-weight: 700;
  color: var(--white);
}
/* .tp-list .tp-list-item.tp-gold .select-btn {background-color: #2EA56C; color: var(--white); font-weight: 700;} */
.quote-main .quote-step.cover-step .cover-footer {
  position: relative;
  display: block;
}
.quote-step.cover-step .cover-footer .policy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.7);
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e0eaee;
}
.quote-step.cover-step .cover-footer .policy span {
  position: relative;
  display: block;
  width: 24px;
  height: auto;
  overflow: hidden;
  margin-right: 16px;
}
.quote-step .cover-footer .back {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
}
.quote-step .cover-footer .back span {
  position: relative;
  display: block;
  width: 13px;
  height: auto;
  overflow: hidden;
  margin-right: 15px;
}

.quote-main .quote-step.personalise-cover {
  max-width: 962px;
  margin-bottom: 66px;
}
.personalise-cover .person-cover-fold {
  justify-content: center;
  position: relative;
  display: flex;
  margin-bottom: 56px;
  align-items: flex-start;
}
.personalise-cover .person-cover-fold .pc-list-item {
  position: relative;
  display: block;
  padding: 24px 32px;
  border: 1px solid #d0d8db;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  width: 33%;
  margin-right: 16px;
}
.personalise-cover .person-cover-fold .pc-list-item:last-child {
  margin-right: 0;
}
.person-cover-fold .pc-list-item figure {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  margin: 0 auto 32px;
}
.person-cover-fold .pc-list-item h4 {
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  justify-content: center;
  align-items: center;
  color: #0c1729;
  margin-bottom: 24px;
}
.person-cover-fold .pc-list-item h4 span {
  width: auto;
  height: 100%;
  cursor: pointer;
  margin-left: 16px;
  display: flex;
  justify-content: flex-end;
}
.person-cover-fold .pc-list-item .tag {
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
  padding: 3px 16px;
  border: 1px solid #0c1729;
  border-radius: 30px;
  max-width: 74px;
  margin: 0 auto 24px;
}
.person-cover-fold .pc-list-item .info {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
  min-height: 75px;
}
.person-cover-fold .pc-list-item .add-cover {
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid #d0d8db;
  margin-bottom: 24px;
}
.person-cover-fold .pc-list-item .add-cover.includ .form-check.fcheck {
  display: none;
}
.person-cover-fold .pc-list-item .add-cover.includ .included {
  display: flex;
}

.person-cover-fold .pc-list-item .add-cover .form-check {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2ea56c;
  border-radius: 6px;
}
.person-cover-fold .pc-list-item .add-cover .form-check .form-check-input {
  width: 24px;
  height: 24px;
  background-color: #d0d8db;
  border: unset;
  border-radius: 4px;
  margin-right: 10px;
  box-shadow: unset;
  outline: none;
}
.person-cover-fold .pc-list-item .add-cover .form-check label {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
}
.person-cover-fold .pc-list-item .add-cover .included {
  position: relative;
  display: none;
  align-items: center;
  background-color: #0c1729;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--white);
  padding: 14px;
  justify-content: center;
}
.person-cover-fold .pc-list-item .add-cover .included span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin-right: 10px;
}
.person-cover-fold .pc-list-item .note {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.7);
}
.person-cover-fold .pc-list-item .note b {
  color: var(--black);
  font-weight: 700;
}
.person-cover-fold .pplan-list {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.person-cover-fold .pplan-list .pplan-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #d0d8db;
}
.person-cover-fold .pplan-list .pplan-item h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 0;
  width: 136px;
}
.pplan-list .pplan-item .pplan-detail {
  position: relative;
}
.pplan-list .pplan-item .pplan-detail .pplan-price {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  flex-wrap: wrap;
}
.pplan-list .pplan-item .pplan-detail .pplan-price span {
  width: 20px;
  height: auto;
  margin-right: 8px;
  overflow: hidden;
  display: flex;
  flex: 0 0 20px;
  position: relative;
}
.pplan-list .pplan-item .pplan-detail .price {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.35);
}
.pplan-list .pplan-item.sub-pplan {
  padding-left: 20px;
}
.pplan-list .pplan-item.sub-pplan::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  overflow: hidden;
  border-radius: 50%;
  top: 32px;
  left: 0;
  background-color: var(--black);
}
.quote-main .quote-step .getQuote {
  margin: 0 auto;
  max-width: 122px;
  display: flex;
  justify-content: center;
  padding: 14px 30px;
}

.quote-main .quote-step.travel-details {
  margin-bottom: 0px;
}
.quote-main .quote-step.travel-details .cover-footer {
  background-color: #f5f6f7;
  border-top: 1px solid #cfd8da;
  border-radius: 0 0 12px 12px;
  padding: 14px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-step.travel-details .cover-footer .cf-warning {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  color: #343434;
  margin-bottom: 0;
}
.quote-step.travel-details .cover-footer .cf-warning span {
  position: relative;
  display: flex;
  width: 24px;
  height: 20px;
  overflow: hidden;
  margin-right: 10px;
  flex: 0 0 24px;
}
.quote-main .quote-step.travel-details .getQuote {
  max-width: 169px;
  margin: 0 40px 0 0;
}
.quote-main .travel-details .travel-form {
  position: relative;
}
.quote-main .travel-details .travel-form .check-eligibility {
  margin-bottom: 24px;
}
.quote-main .travel-details .travel-form .check-eligibility p {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border: 1px solid #e66e44;
  border-radius: 8px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #e66e44;
  margin-bottom: 0;
}
.quote-main .travel-details .travel-form .check-eligibility span {
  position: relative;
  display: flex;
  width: 8px;
  height: auto;
  overflow: hidden;
  margin-left: 10px;
}
.quote-main .travel-details .travel-form .check-eligibility-success {
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid rgb(207 216 218 / 40%);
  margin-bottom: 32px;
}
.quote-main .travel-details .travel-form .check-eligibility-close p {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border: 1px solid #000;
  border-radius: 8px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: rgb(0 0 0 / 50%);
  margin-bottom: 0;
  max-width: 643px;
}
.quote-main .travel-details .travel-form .check-eligibility-close p span {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin-right: 10px;
  display: flex;
  flex: 0 0 20px;
}

.travel-form .check-eligibility-success p {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border: 1px solid #00ac5b;
  border-radius: 8px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #00ac5b;
  margin-bottom: 0;
}
.travel-form .check-eligibility-success p span {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin-right: 10px;
  display: flex;
  flex: 0 0 20px;
}
.quote-main .travel-details .travel-form .travel2d-group {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.quote-main .travel-details .travel-form .travel2d-group .form-group {
  position: relative;
  display: block;
  width: 49%;
}
.quote-main .travel-details .travel-form .travel2d-group label {
  display: flex;
  align-items: center;
}
.travel-details .travel-form .travel2d-group label span {
  position: relative;
  display: flex;
  width: 16px;
  height: auto;
  margin-left: 6px;
}

.quote-main .travel-details .travel-form h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #3b608e;
  text-transform: capitalize;
  margin: 0 32px 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgb(207 216 218 / 40%);
}
.quote-main .travel-details .travel-form .field-fold {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.travel-details .travel-form .form-group label {
  position: relative;
  display: block;
}
.travel-details .travel-form .field-fold .form-group {
  width: 100%;
}
.travel-details .travel-form .form-group .ss-form-control {
  width: 100%;
}
.travel-details .travel-form .form-group.date .ss-form-control {
  padding-left: 60px;
}
.travel-details .travel-form .form-group .country {
  position: relative;
  display: flex;
}
.travel-details .travel-form .form-group .country .form-select {
  width: 104px;
  margin-right: 8px;
  flex: 0 0 104px;
}
.quote-main .travel-details .travel-form .pholder {
  margin-bottom: 25px;
}
.quote-main .travel-details .travel-form .pholder.tr2detail {
  margin-bottom: 48px;
}
.quote-main .travel-details .travel-form .step-form {
  margin-bottom: 0;
}
.complete-travelDetail .pholder h4.blacktxt {
  font-size: 18px;
  color: #343434;
  font-weight: 700;
  line-height: normal;
  border: none;
  padding: 0;
}

.quote-main .quote-step.plan-review {
  position: relative;
}
.quote-main .plan-review .plan-details {
  position: relative;
  display: block;
  padding: 0 32px 32px;
  border-bottom: 1px solid #e0eaee;
  margin-bottom: 32px;
}
.quote-main .plan-review .plan-details .plans {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #cfd8da;
}
.quote-main .plan-review .plan-details .plans:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.plan-review .plan-details .plans .plan-title {
  position: relative;
  display: flex;
  border-bottom: 1px solid #cfd8da;
  margin-bottom: 32px;
  align-items: flex-start;
  padding-bottom: 32px;
  justify-content: space-between;
}
.plan-review .plan-details .plans .plan-title h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #3b608e;
  text-transform: capitalize;
  margin: 0;
}
.plan-review .plan-details .plans .plan-title span {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  overflow: hidden;
  cursor: pointer;
}
.quote-main .plan-review .plan-details .plans .plan-info {
  position: relative;
  display: block;
}
.plan-review .plan-details .plans .plan-info .pdetail {
  position: relative;
  display: flex;
  margin-bottom: 12px;
}
.plan-review .plan-details .plans .plan-info .pdetail:last-child {
  margin-bottom: 0;
}
.plan-review .plan-details .plans .plan-info .pdetail label {
  width: 200px;
  margin-right: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 0;
}
.plan-review .plan-details .plans .plan-info .pdetail span {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.8;
}
.quote-main .plan-review .policy {
  position: relative;
  display: block;
  margin-bottom: 32px;
  padding: 0 32px;
}
.quote-main .plan-review .policy .form-check {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
.quote-main .plan-review .policy .form-check:last-child {
  margin-bottom: 0;
}
.quote-main .plan-review .policy .form-check .form-check-input {
  width: 24px;
  height: 24px;
  background-color: #d0d8db;
  border: 1px solid #d0d8db;
  border-radius: 4px;
  margin-right: 16px;
  flex: 0 0 24px;
  margin-top: 0;
}
.quote-main .plan-review .policy .form-check .form-check-input:checked,
.quote-main .plan-review .policy .form-check .form-check-input:focus {
  box-shadow: unset;
  outline: none;
}
.quote-main
  .plan-review
  .policy
  .form-check
  .form-check-input:checked[type="checkbox"] {
  background-image: url("../images/blue-check.png");
  background-size: 15px;
  background-position: center;
}
.quote-main .plan-review .policy .form-check label {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.35;
}
.quote-main .plan-review .save-quote {
  position: relative;
  display: block;
  background-color: #e7f0f2;
  border-radius: 12px;
  padding: 24px 32px 32px;
  margin: 0 32px 48px;
}
.quote-main .plan-review .save-quote h5 {
  position: relative;
  display: flex;
  font-size: 22px;
  color: #343434;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 18px;
}
.plan-review .save-quote h5 span {
  position: relative;
  display: flex;
  margin-right: 16px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  flex: 0 0 32px;
}
.plan-review .save-quote .form-group {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.plan-review .save-quote .form-group .save-group {
  position: relative;
  display: block;
  width: 100%;
  margin-right: 24px;
}
.plan-review .save-quote .form-group .save-group input.ss-form-control {
  width: 100%;
  margin-bottom: 16px;
}
.plan-review .save-quote .form-group .save-group .add-email {
  position: relative;
}
.save-group .add-email .removefield {
  position: absolute;
  right: 20px;
  top: 11px;
  font-size: 16px;
  font-weight: 700;
  color: #3b608e;
  text-transform: capitalize;
  line-height: normal;
  cursor: pointer;
}
.plan-review button.send-btn {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #f76535;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 18px;
  line-height: 22px;
  color: #f76535;
  text-transform: capitalize;
  font-weight: 500;
}
.plan-review .send-btn span {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
.quote-main .plan-review .save-quote p {
  position: relative;
  display: none;
  align-items: center;
  color: #00af51;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  border: 1px solid #00af51;
  border-radius: 10px;
  padding: 14px 30px;
  background-color: #fff;
  margin: 0;
}
.quote-main .plan-review .save-quote p span {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin-right: 10px;
  display: flex;
  flex: 0 0 20px;
}
.plan-review .save-quote .add-another-email {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #3b608e;
}
.add-another-email span {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 16px;
}
.quote-main .quote-step.plan-review .cover-footer {
  background-color: #f5f6f7;
  border-top: 1px solid #cfd8da;
  border-radius: 0 0 12px 12px;
  padding: 14px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-main .quote-step.plan-review .cover-footer .getQuote {
  max-width: max-content;
}

.quote-main .confirm-pay {
  position: relative;
}
.quote-main .confirm-pay .quote-top p {
  position: relative;
  display: block;
  max-width: 492px;
  margin: 0 auto 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.confirm-pay .bronze .bronze-header .bh-right .detail {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0c1729;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
.confirm-pay .bronze .bronze-header .bh-right .detail span {
  position: relative;
  margin-left: 8px;
  width: 12px;
  height: 7px;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease-in;
}
.confirm-pay .bronze.show-body .bronze-header .bh-right .detail span {
  transform: rotate(183deg);
}
.quote-main .confirm-pay .bronze .bronze-body {
  position: relative;
  display: none;
  padding-top: 18px;
  border-top: 1px solid #e0eaee;
  margin-top: 18px;
}
.quote-main .confirm-pay .bronze.show-body .bronze-body {
  display: block;
}
.quote-main .confirm-pay .bronze .bronze-body .plans {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.confirm-pay .bronze .bronze-body .plans label {
  position: relative;
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
}
.confirm-pay .bronze .bronze-body .plans span {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.5;
}
.confirm-pay .bronze .bronze-body .plans:nth-child(2) {
  margin-bottom: 16px;
}
.confirm-pay .bronze .bronze-body .cover-car {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.7;
  display: flex;
}
.confirm-pay .bronze .bronze-body .cover-car span {
  margin-left: auto;
}

.confirm-pay .quote-form {
  position: relative;
  display: block;
  background-color: var(--white);
  border-radius: 12px;
  padding: 0 32px 48px;
}
.confirm-pay .quote-form .form-group .visa-tag {
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border: 1px solid #d0d8db;
  border-radius: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
}
.confirm-pay .quote-form .form-group .visa-tag-apply {
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border: 1px solid #d0d8db;
  border-radius: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
}
.confirm-pay .quote-form .form-group .visa-tag figure {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0 8px 0 0;
}
.confirm-pay .quote-form .form-group .visa-tag span {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-left: 8px;
  color: #0c1729;
  cursor: pointer;
}
.confirm-pay .quote-form .form-group .ss-form-control {
  width: 100%;
}
.confirm-pay .quote-form .form-group .ss-form-control.card-field {
  padding: 11px 70px;
}
.confirm-pay .quote-form .card-detail {
  position: relative;
}
.confirm-pay .quote-form .card-detail figure {
  position: absolute;
  display: flex;
  width: 40px;
  height: 24px;
  overflow: hidden;
  padding: 4px 6px;
  border: 1px solid #e0eaee;
  border-radius: 4px;
  margin-bottom: 0;
  bottom: 11px;
  left: 20px;
}
.confirm-pay .quote-form .card-detail span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.25);
  margin-left: 16px;
  position: absolute;
  display: block;
  right: 20px;
  bottom: 11px;
}
.confirm-pay .quote-form .field-fold {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.confirm-pay .quote-form .field-fold .form-group {
  width: 48%;
  margin-bottom: 0;
}
.confirm-pay .quote-form .bill-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #0c1729;
  margin-bottom: 20px;
  border-top: 1px solid #d0d8db;
  padding-top: 30px;
  margin-top: 30px;
}
.quote-main .confirm-pay.quote-step .card-form form .step-form {
  margin: 0 auto;
  padding: 0;
}
.confirm-pay.quote-step .card-form form .step-form .getQuote {
  margin-top: 48px;
}
.confirm-pay .card-form .ctitile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #000;
  padding-bottom: 32px;
  border-bottom: 1px solid #cfd8da;
  margin-bottom: 32px;
}
.confirm-pay .card-form .ctitile span {
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin-right: 12px;
  display: flex;
  flex: 0 0 24px;
}
.confirm-pay .card-form .emedical {
  position: relative;
  display: block;
  background-color: #f5f6f7;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0px 4px 4px #00000021;
  margin-bottom: 32px;
}
.confirm-pay .card-form .emedical .emTop {
  position: relative;
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  margin-bottom: 18px;
}
.confirm-pay .card-form .emedical .emTop .em-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.confirm-pay .card-form .emedical .emTop .em-title h5 {
  font-size: 22px;
  line-height: normal;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  margin-right: 24px;
}
.confirm-pay .card-form .emedical .emTop .em-title span {
  background-color: #3b608e;
  border: 1px solid #000;
  padding: 3px 16px;
  border-radius: 30px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #fff;
}
.confirm-pay .card-form .emedical .emTop p {
  font-size: 18px;
  line-height: normal;
  color: #000;
  font-weight: 400;
  opacity: 0.7;
  margin-bottom: 0;
}
.confirm-pay .card-form .emedical .travel-tab {
  position: relative;
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  margin-bottom: 18px;
}
.confirm-pay .card-form .emedical .travel-tab .tlineheader {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.confirm-pay .card-form .emedical .travel-tab .tlineheader h4:first-child {
  width: 75%;
  text-align: left;
}
.confirm-pay .card-form .emedical .travel-tab .tlineheader h4 {
  font-size: 18px;
  text-align: right;
  font-weight: 700;
  color: #000;
  opacity: 0.7;
  margin-bottom: 12px;
}
.card-form .emedical .travel-tab .tlines {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.card-form .emedical .travel-tab .tlines .tline:first-child {
  width: 75%;
  justify-content: flex-start;
}
.card-form .emedical .travel-tab .tline {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #000;
  opacity: 0.7;
  font-weight: 400;
  width: 110px;
  text-align: right;
  justify-content: flex-end;
}
.card-form .emedical .travel-tab .tline span {
  width: 16px;
  height: auto;
  display: flex;
  margin-left: 8px;
  overflow: hidden;
  cursor: pointer;
}
.confirm-pay .card-form .emedical .emBottom {
  position: relative;
  display: block;
}
.confirm-pay .card-form .emedical .emBottom p {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #000;
  opacity: 0.7;
}
.confirm-pay .card-form .emedical .emBottom p label {
  margin-left: 16px;
}
.confirm-pay .payment-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #cfd8da;
}
.confirm-pay .payment-title h5 {
  font-size: 22px;
  line-height: normal;
  font-weight: 600;
  color: #343434;
  margin: 0;
}
.confirm-pay .payment-title .secure {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgb(0 0 0 / 70%);
  font-weight: 400;
}
.confirm-pay .payment-title .secure span {
  width: 12px;
  height: auto;
  overflow: hidden;
  margin-right: 16px;
}
.quote-main .confirm-pay .iaction {
  position: relative;
  display: flex;
  margin-bottom: 32px;
}
.quote-main .confirm-pay .iaction .form-check-label {
  display: flex;
  align-items: center;
}
.quote-main
  .confirm-pay
  .iaction
  .form-check:first-child
  .form-check-label
  img {
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin-right: 10px;
}
.quote-main .confirm-pay .iaction .form-check:last-child .form-check-label img {
  width: 50px;
  height: auto;
}
.quote-main .confirm-pay .iaction .form-check .form-check-label img {
  width: 60px;
  height: 24px;
  object-fit: contain;
}
.quote-main .confirm-pay .iaction .form-check {
  border: none;
  padding: 0;
  margin: 0 8px 0 0;
}
.quote-main .confirm-pay .iaction .form-check label {
  margin: 0;
  padding: 14px 24px;
  border: 1px solid #cfd8da;
  border-radius: 8px;
}
.quote-main .confirm-pay .iaction input[type="radio"]:checked + label img {
  filter: invert(36%) sepia(16%) saturate(1783%) hue-rotate(173deg)
    brightness(89%) contrast(83%);
}
.quote-main .confirm-pay .iaction input[type="radio"]:checked + label {
  background-color: #e6ebf5 !important;
  color: #3b608e !important;
  font-weight: 700 !important;
  border: 1px solid #3b608e !important;
}
.quote-main .confirm-pay .iaction .form-check-input[type="radio"] {
  display: none;
}

.quote-main .confirm-pay .cover-footer {
  background-color: #f5f6f7;
  border-top: 1px solid #cfd8da;
  border-radius: 0 0 12px 12px;
  padding: 14px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-main .confirm-pay .cover-footer .getQuote {
  max-width: max-content;
}

.quote-main .quote-inner.full-width .qilinks {
  display: none;
}
.quote-main .quote-inner.full-width .qiSteps {
  width: 882px;
  flex: 0 0 882px;
  margin: 0 auto;
  padding: 0;
}
.quote-step.travel-confirm .confirm-box .email-info {
  position: relative;
  display: flex;
  background-color: #f5f6f7;
  padding: 24px 32px 32px;
  box-shadow: 0px 4px 4px #00000021;
  border-radius: 12px;
  align-items: flex-start;
  max-width: 600px;
}
.quote-step.travel-confirm .confirm-box .email-info span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  flex: 0 0 32px;
}
.quote-step.travel-confirm .confirm-box .email-info p {
  position: relative;
  display: block;
  margin: 0;
  max-width: unset;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
  color: #000;
}
.quote-step.travel-confirm .confirm-box .email-info p a {
  color: #000;
  font-weight: 700;
}

.quote-step.travel-confirm {
  position: relative;
  display: block;
  margin: 0 auto 70px;
}
.quote-step.travel-confirm .quote-top .confirm-icon {
  position: relative;
  display: flex;
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  background-color: #3b608e;
  border: 1px solid #3b608e;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.quote-step.travel-confirm .quote-top .confirm-icon img {
  width: 32px;
  height: 32px;
  overflow: hidden;
}
.quote-step.travel-confirm .confirm-box {
  position: relative;
  display: block;
  padding: 0 32px 48px;
}
.quote-step.travel-confirm .confirm-box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: var(--black);
  opacity: 0.8;
  max-width: 454px;
  margin: 0 auto 12px;
}
.quote-step.travel-confirm .confirm-box .captcha {
  position: relative;
  display: flex;
  width: 422px;
  margin: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  background-color: var(--white);
  padding: 27px 32px;
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
.quote-step.travel-confirm .confirm-box .captcha .sa-logo {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
.quote-step.travel-confirm .confirm-box .captcha span {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #3b608e;
  margin: 0 15px;
}
.quote-step.travel-confirm .confirm-box .captcha figure {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  margin: 0;
  flex: 0 0 24px;
}
.quote-step.travel-confirm .confirm-box .captcha figure span {
  position: absolute;
  display: none;
  color: #3b608e;
  font-size: 16px;
  line-height: 20px;
  bottom: 5px;
  left: 40px;
}
.quote-step.travel-confirm .confirm-box .divider {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cfd8da;
  margin-bottom: 32px;
}
.quote-step.travel-confirm.finish {
  padding: 32px 0 0 0;
  margin: 0;
}
.quote-main .travel-confirm.finish .quote-top {
  padding: 32px 0 0 0;
}
.quote-main .travel-confirm.finish .cover-footer {
  background-color: #f5f6f7;
  border-top: 1px solid #cfd8da;
  border-radius: 0 0 12px 12px;
  padding: 14px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-main .travel-confirm.finish .cover-footer .getQuote {
  margin: 0 auto;
  max-width: 122px;
  display: flex;
  justify-content: center;
  padding: 14px 30px;
}
.quote-main .quote-inner.full-width .qiSteps {
  width: 70%;
  flex: 0 0 70%;
}

.policy-doc-main {
  position: relative;
  display: block;
  margin: 40px 0 56px;
}
.policy-doc-main .policy-doc-fold {
  position: relative;
}
.policy-doc-main .policy-doc-fold h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  max-width: 700px;
  margin: 0 auto 36px;
  color: var(--black);
  text-align: center;
}
.policy-doc-main .policy-doc-fold p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  opacity: 0.7;
  margin-bottom: 48px;
  display: block;
  text-align: center;
}
.policy-doc-main .policy-doc-fold .important-box {
  position: relative;
  display: block;
  margin-bottom: 48px;
}
.policy-doc-main .policy-doc-fold .important-box h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  color: #2ea56c;
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.policy-doc-fold .important-box .doc-list {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.policy-doc-fold .important-box .doc-list .doc-list-item {
  position: relative;
  display: block;
  width: 32%;
  border: 1px solid #d0d8db;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  background-color: var(--white);
  padding: 51px 24px;
}
.policy-doc-fold .important-box .doc-list .doc-list-item figure {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin: 0 auto 10px;
}
.important-box .doc-list .doc-list-item h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  color: #0c1729;
  margin-bottom: 20px;
}
.important-box .doc-list .doc-list-item .download-btn,
.policy-doc-main .policy-doc-fold .policys .policy .download-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0c1729;
  border-radius: 6px;
  max-width: 219px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0c1729;
  background-color: var(--white);
  padding: 11px 40px;
}
.important-box .doc-list .doc-list-item .download-btn span,
.policy-doc-main .policy-doc-fold .policys .policy .download-btn span {
  position: relative;
  display: block;
  width: 18px;
  height: auto;
  overflow: hidden;
  margin-right: 10px;
}
.important-box .doc-list .doc-list-item .download-btn:hover,
.policy-doc-main .policy-doc-fold .policys .policy .download-btn:hover {
  background-color: #efefef;
}
.policy-doc-main .policy-doc-fold .policys {
  position: relative;
}
.policy-doc-main .policy-doc-fold .policys .policy {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d0d8db;
}
.policy-doc-main .policy-doc-fold .policys .policy .download-btn {
  margin: 0;
}
.policy-doc-main .policy-doc-fold .policys .policy h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 0;
}
.policy-doc-main .policy-doc-fold .policys .policy:last-child {
  border: unset;
  margin: 0;
  padding: 0;
}

.sticky-text {
  position: fixed;
  display: flex;
  padding: 12px 11px 12px 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgb(0 0 0 / 70%);
  align-items: center;
  background: #ffffff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.09);
  border-radius: 12px 12px 0px 0px;
  transform: rotate(-90deg);
  bottom: 300px;
  right: -90px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.sticky-text span {
  width: 64px;
  height: 30px;
  overflow: hidden;
  margin-left: 10px;
}
.sticky-text span img {
  object-fit: contain;
}
.quote-main
  .confirm-pay
  .quote-form
  form
  .step-form
  .form-check
  .form-check-input:checked[type="radio"]:after {
  top: 23px;
}

form .form-group .select2-container .select2-selection--single {
  position: relative;
  display: block;
  padding: 11px 20px 10px;
  border: 1px solid #cfd8da;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #0c1729;
  outline: none;
  height: auto;
}
form
  .form-group
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border: unset;
  background-image: url(../images/down-arrow.png);
  width: 13px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 21px;
  margin-left: -22px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #00000066;
}
form
  .form-group
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 24px;
  padding: 0;
  color: #0c1729;
}
form .form-group.country .select2-container {
  width: 100% !important;
}
form .form-group.ccode .select2-container {
  width: 104px !important;
  margin-right: 8px;
}

.promoModal .modal-content {
  background-color: var(--white);
  border: unset;
  border-radius: 20px;
}
.promoModal .modal-content .modal-body {
  padding: 30px 32px;
}
.promoModal .modal-content .modal-body .pm-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #0c1729;
  margin-bottom: 20px;
}
.promoModal .modal-body form {
  position: relative;
}
.promoModal .modal-body form .form-group {
  position: relative;
  display: flex;
  margin-bottom: 56px;
  border: 1px solid #d0d8db;
  border-radius: 8px;
  padding: 11px 20px;
  justify-content: flex-start;
}
.promoModal .modal-body form .form-group:last-child {
  margin-bottom: 0;
}
.promoModal .modal-body form .form-group .form-check .form-check-label {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.promoModal .modal-body form .form-group .form-check .form-check-input {
  width: 24px;
  height: 24px;
  background-color: #d0d8db;
  border-radius: 4px;
  margin-right: 16px;
  border: 1px solid #d0d8db;
  margin-top: 0;
}
.promoModal .modal-body form .form-group .form-check .form-check-input:checked {
  background-color: #0c1729;
  border-color: #0c1729;
}
.promoModal .modal-body form .form-group .form-check .form-check-input:focus {
  box-shadow: unset;
  outline: none;
}
.promoModal .modal-body form .form-group.active {
  border-color: #0c1729;
}
.promoModal .modal-body form .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.promoModal .modal-body form .form-group .cnumber {
  border: unset;
  box-shadow: unset;
  outline: none;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  opacity: 0.8;
  width: 55%;
}
.promoModal .modal-body form .form-group .apply {
  position: relative;
  display: inline-block;
  padding: 4px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #0c1729;
  text-transform: capitalize;
  border: 1px solid #d0d8db;
  border-radius: 50px;
  cursor: pointer;
  margin-left: auto;
}
/* .promoModal .modal-body form .form-group:nth-child(2) .form-check .form-check-label {color: #0C1729;} */
.promoModal .modal-body form .form-group.active .form-check-label {
  color: #0c1729;
}
.promoModal .modal-body form .form-group .visa-tls {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d0d8db;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--black);
  padding: 5px 16px;
  white-space: nowrap;
}
.promoModal .modal-body form .form-group .visa-tls figure {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  overflow: hidden;
  margin-bottom: 0;
  flex: 0 0 20px;
}
.promoModal .modal-body form .form-group .visa-tls span {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #0c1729;
  margin-left: 8px;
}
.card-form .select2-container {
  display: block;
}
.cnumber {
  border: unset;
  box-shadow: unset;
  outline: none;
  background: none;
  width: 44%;
}
.apply {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px; /* margin-left: 8px; */
  color: #0c1729;
  cursor: pointer;
}

/* Custom */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.alert-danger {
  background-color: #b22222;
}

.quote-form form .step-form .form-check.has-error,
input.ss-form-control.datepickers.has-error,
.travel-fold.has-error,
input.ss-form-control.has-error,
textarea.ss-form-control.has-error,
.quote-form form .step-form .travelers .travel-fold.has-error .tinput,
.form-group.has-error select.select2.js-states,
.form-group.has-error select.form-select {
  border-color: red !important;
  background-color: #fdeff3 !important;
}
.quote-main
  .plan-review
  .policy
  .form-check
  .form-check-input.policy-checkbox.has-error {
  background-color: #ff000014;
  border-color: red;
}
.travel-text.has-error {
  color: red !important;
}
.travel-fold.add {
  margin-bottom: 45px !important;
}
.validation {
  color: red;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.policy-assistance {
  opacity: 1 !important;
  color: rgb(0 0 0 / 60%) !important;
  margin: 0 0 10px !important;
  display: block;
  text-transform: capitalize !important;
  font-weight: 500 !important;
}
header .navbar .action .contact-info .policy-text a {
  opacity: 1 !important;
  color: #3b608e !important;
  margin: 0 !important;
  text-transform: capitalize !important;
  font-weight: 700 !important;
}
#pay-trip-add-ons span {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  opacity: 0.5;
}
.promocode-state.error {
  border-color: red !important;
}

/* travel plan mobile */

.travel-plan-mobile {
  position: relative;
  display: none;
}
.travel-plan-mobile .tm-plans {
  position: relative;
  display: flex;
}
.travel-plan-mobile .tm-plans .tm-plan {
  position: relative;
  width: 100%;
  display: none;
}
.travel-plan-mobile .tm-plans .tm-plan.active {
  display: block;
}
.travel-plan-mobile .tm-plans .tm-plan .tmp-header.sticky {
  position: fixed;
  top: 70px;
  width: calc(100% - 60px);
  z-index: 5;
}
.travel-plan-mobile .tm-plans .tm-plan .tmp-header {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  width: 100%;
  justify-content: space-around;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgb(201 201 201 / 35%);
}
.tm-plans .tm-plan .tmp-header .hinfo {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #0c1729;
  opacity: 0.8;
}
.tm-plans .tm-plan .tmp-header .hinfo figure {
  width: 26px;
  height: 26px;
  overflow: hidden;
  margin: 0 20px 0 0;
  display: flex;
}
.tm-plans .tm-plan .tmp-header .prev,
.tm-plans .tm-plan .tmp-header .next {
  width: 15px;
  height: auto;
  cursor: pointer;
  opacity: 0.4;
}
.tm-plans .tm-plan .tmp-body {
  position: relative;
  display: block;
  padding: 20px 0;
}
.tm-plans .tm-plan .tmp-body .tmp-plan {
  position: relative;
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #d0d8db;
  align-items: center;
}
.tm-plan .tmp-body .tmp-plan h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 0;
  width: 80%;
  position: relative;
  margin-right: 15px;
}
.tm-plan .tmp-body .tmp-plan .plan-name {
  position: relative;
  display: flex;
  text-align: center;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.tmp-body .tmp-plan .plan-name .year {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.tmp-body .tmp-plan .plan-name .year figure {
  position: relative;
  display: flex;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  overflow: hidden;
  opacity: 0.5;
}
.tmp-body .tmp-plan .plan-name .year .num-year {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  opacity: 0.7;
  word-break: break-all;
  text-align: start;
}
.tm-plans .tm-plan .tmp-body .plan-title {
  position: relative;
  display: block;
  padding: 20px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #0c1729;
}
.tm-plans .tm-plan .tmp-body .plan-collapse {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e1f2ff;
  padding: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0c1729;
  border-bottom: 1px solid #084774;
  cursor: pointer;
  margin-top: 20px;
}
.tm-plans .tm-plan .tmp-body .plan-collapse p {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding: 25px 0;
  color: var(--black);
  opacity: 0.7;
  margin-bottom: 0;
}
.tm-plans .tm-plan .tmp-body .tmp-plan.tp-sub-plan {
  padding-left: 30px !important;
}
.tm-plans .tm-plan .tmp-body .tmp-plan.tp-sub-plan h5 {
  position: relative;
}
.tm-plans .tm-plan .tmp-body .tmp-plan.tp-sub-plan h5:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -20px;
  top: 5px;
}
.tm-plan.gold .tmp-body .tmp-plan .plan-name .year figure {
  opacity: 1;
  height: auto;
}
.tm-plans .tm-plan.gold .tmp-body .tmp-plan {
  background-color: #fff;
  padding: 15px;
}
.tmp-body .tmp-plan.gold .plan-name .year .num-year {
  font-weight: 700;
}
.travel-plan-mobile .tm-plans .tm-plan.gold .tmp-header {
  background-color: #0b1829;
}
.tm-plans .tm-plan.gold .tmp-header .hinfo {
  color: #fff;
}
.tm-plans .tm-plan.gold .tmp-header .prev,
.tm-plans .tm-plan.gold .tmp-header .next {
  filter: invert(1);
}

/* new design */
.quote-main .quote-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 120px;
}
.quote-main .quote-inner .qiSteps {
  position: relative;
  display: block;
  width: 75%;
  border: 1px solid #d0d8db;
  border-radius: 12px;
  padding: 32px 0 0;
  margin-right: 48px;
  flex: 0 0 75%;
}
.quote-main .quote-inner .quote-step form .step-form {
  padding: 0 32px;
}
.quote-main .quote-inner .qiSteps .stepBtn {
  position: relative;
  display: block;
  background-color: #f5f6f7;
  border-top: 1px solid #d0d8db;
  padding: 13px 32px;
  border-radius: 0 0 12px 12px;
}
.quote-main .quote-inner .qilinks a.qlink {
  position: relative;
  display: block;
  padding: 11px 32px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  color: #3b608e;
}
.quote-main .quote-inner .qilinks a.qlink:hover,
.quote-main .quote-inner .qilinks a.qlink.active {
  background-color: #e6ebf5;
  color: #000000;
}
.quote-main .quote-inner .qilinks {
  position: relative;
  display: block;
  border-radius: 12px;
  padding: 32px 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.13);
  border: 1px solid #e0eaee;
  width: 350px;
}

/* copy text dropdown */

.copy-click {
  position: relative;
  text-decoration: none;
  cursor: copy;
  color: #484848;
  transition: background-color calc(var(--duration) * 2) var(--ease);
}
.copy-click:after {
  content: attr();
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  padding: 8px 16px;
  white-space: nowrap;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 0 0 -12px rgba(0, 0, 0, 0);
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: box-shadow calc(var(--duration) / 1.5) var(--bounce),
    opacity calc(var(--duration) / 1.5) var(--bounce),
    transform calc(var(--duration) / 1.5) var(--bounce);
}
.copy-click.is-hovered:after {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translate(-50%, 0);
  transition-timing-function: var(--ease);
}
.copy-click.is-copied:after {
  content: attr(data-tooltip-text-copied);
}

/* modal design */
.modal-dialog {
  max-width: 620px;
}
.modal-content {
  padding: 32px 32px 40px;
}
.modal-content .modal-header {
  padding: 0;
  display: block;
  border-bottom: unset;
  margin-bottom: 40px;
}
.modal-content .modal-header .btn-close {
  background-image: unset;
  position: absolute;
  top: 30px;
  right: 30px;
  box-shadow: unset;
  outline: none;
  padding: 0;
  opacity: 1;
}
.modal-content .modal-header .modal-title {
  display: block;
  font-size: 26px;
  line-height: normal;
  color: #3b608e;
  font-weight: 600;
  margin-bottom: 12px;
}
.modal-content .modal-header .for {
  font-size: 18px;
  line-height: normal;
  color: rgb(0 0 0 / 70%);
  font-weight: 400;
}
.modal-content .modal-header .for span {
  margin-left: 8px;
  display: inline-flex;
  border: 1px solid #3b608e;
  border-radius: 30px;
  padding: 3px 16px;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #3b608e;
  font-weight: 400;
}
.modal-content input[type="radio"]:checked + label {
  background-color: #e6ebf5 !important;
  color: #3b608e !important;
  font-weight: 700 !important;
  border: 1px solid #3b608e !important;
}
.modal-content .form-check-input[type="radio"] {
  display: none;
}
.modal-content .modal-body {
  padding: 0;
}
.modal-content .modal-body .insurance-info {
  position: relative;
}
.modal-body .insurance-info .info {
  position: relative;
  display: flex;
  margin-bottom: 24px;
}
.modal-body .insurance-info .info .iaction {
  position: relative;
  display: flex;
}
.insurance-info .info .iaction .form-check-label {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #000;
  padding: 11px 24px;
  border: 1px solid #cfd8da;
  border-radius: 8px;
  text-transform: capitalize;
}
.insurance-info .info .iaction .form-check {
  padding: 0;
  margin-right: 8px;
}
.insurance-info .info .iaction .form-check:last-child {
  margin-right: 24px;
}
.modal-body .insurance-info .info p {
  color: rgb(0 0 0 / 80%);
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
}
.modal-body.policy-body .policy {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
.modal-btn {
  position: relative;
  display: block;
  margin-top: 40px;
}
.modal-btn button {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: normal;
}
.modal-btn .modal-primary {
  background-color: #e66e44;
  border: 1px solid #e66e44;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
}
.modal-btn .modal-secondary {
  background-color: transparent;
  border: 1px solid #e66e44;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 400;
  color: #e66e44;
}
.modal-btn .modal-insurance {
  background-color: #e7eff2;
  border: 1px solid #e7eff2;
  display: flex;
  align-items: center;
  padding: 19px 24px 18px;
  font-size: 14px;
  line-height: 18px;
  color: #343434;
  font-weight: 400;
  border-radius: 8px;
}
.modal-btn .modal-insurance span {
  width: 20px;
  height: auto;
  margin-right: 12px;
  display: flex;
  flex: 0 0 20px;
}
button.modal-insurance:before {
  content: "";
  position: absolute;
  display: block;
  border-width: 11px;
  border-style: solid;
  border-color: transparent transparent #e7eff2 transparent;
  top: -23px;
}

@media only screen and (max-width: 1800px) {
  .service-section .service-wrap h4.ss-title {
    font-size: 36px;
    line-height: 45px;
    max-width: 600px;
  }
  .hero-section .hero-box .hinfo h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 1599px) {
  .ss-container {
    margin: 0 64px;
  }
  .quote-main .quote-inner .qiSteps {
    width: 70%;
    flex: 0 0 70%;
  }
}
@media only screen and (max-width: 1500px) {
  .hero-section .hero-box {
    height: auto;
  }
  /* .hero-section .hero-box .hinfo h2 {font-size: 40px; line-height: 52px;} */
  /* .ss-container {margin: 0 100px;} */
  .ss-title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 40px;
  }

  .travel-fold .travel-info .getQuote {
    margin: 0 0 30px;
  }
  .travel-fold .travel-info .policy-doc {
    justify-content: flex-start;
  }
  .travel-fold .travel-info figure {
    width: 400px;
    height: 330px;
  }
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 40px;
    line-height: 52px;
    margin: 0 auto 30px;
  }
  .policy-doc-main .policy-doc-fold p {
    margin-bottom: 30px;
  }
  .quote-main .quote-top h2 {
    font-size: 40px;
    line-height: 52px;
  }
  .travel-mind .travel-fold .travel-info {
    display: none;
  }
  /* .service-section .service-wrap h4.ss-title { font-size: 40px; max-width: 650px; } */
}

@media only screen and (max-width: 1440px) {
  .service-wrap .sertvice-list .service-list-item {
    margin-right: 40px;
    flex-flow: column;
  }
  .sertvice-list .service-list-item figure {
    margin: 0 0 24px;
  }
  .faq-section .faq-list .faq-item {
    height: 300px;
    margin-right: 40px;
    padding: 30px;
  }
  .hero-section {
    height: 430px;
  }
  .travel-fold .travel-info figure {
    width: 400px;
    height: 300px;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item figure {
    width: 60px;
    height: 60px;
  }
  .important-box .doc-list .doc-list-item h4 {
    margin-bottom: 25px;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item {
    padding: 40px 25px;
  }
  .hero-section .hero-box .hinfo h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .hero-section {
    padding-top: 70px;
  }
  .service-section .service-wrap h4.ss-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 1439px) {
  .travel-mind .travel-fold {
    flex-flow: column;
  }
  .travel-mind .travel-fold .travel-info {
    margin: 0 0 50px;
  }
  .quote-main .quote-inner .qiSteps {
    width: 70%;
    flex: 0 0 70%;
  }
  /* .quote-main .quote-inner .qilinks {width: 30%;} */
}

@media only screen and (max-width: 1280px) {
  .hero-section .hero-box .hinfo h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .service-section .service-wrap h4.ss-title {
    font-size: 32px;
    max-width: 550px;
  }
  .travel-mind .tm-fold .ss-title {
    font-size: 32px;
    line-height: 40px;
  }
  .faq-section .ss-title {
    font-size: 32px;
    line-height: 40px;
  }
  .faq-section .faq-list .faq-item p {
    font-size: 16px;
    line-height: 24px;
  }
  .faq-section .faq-list .faq-item .question {
    width: 40px;
    height: 40px;
    line-height: 35px;
  }
  .faq-section .faq-list .faq-item .question img {
    width: 10px;
    height: 15px;
  }
  .ss-container {
    margin: 0 32px;
  }
  .quote-main .quote-inner .qiSteps {
    width: 70%;
    flex: 0 0 70%;
    margin-right: 32px;
  }
}

@media only screen and (max-width: 1199px) {
  header .navbar .navbar-brand {
    width: 120px;
    height: auto;
    margin-right: 30px;
  }
  header .navbar .navbar-nav .nav-item {
    margin-right: 30px;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 20px;
  }
  header .navbar .action a {
    font-size: 16px;
    line-height: 20px;
    margin-right: 20px;
  }
  .hero-section .hero-box .hinfo h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 30px;
    line-height: 42px;
  }
  .getQuote {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .ss-container {
    margin: 0 60px;
  }
  .ss-title {
    max-width: 550px;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .sertvice-list .service-list-item figure {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    margin: 0 0 15px;
  }
  .sertvice-list .service-list-item .sinfo h5 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
  }
  .sertvice-list .service-list-item .sinfo p {
    font-size: 16px;
    line-height: 28px;
  }
  .hero-section,
  .service-section,
  .travel-mind,
  .faq-section {
    margin-bottom: 50px;
  }
  .travel-mind {
    padding: 50px 0;
  }
  .faq-section .faq-list .faq-item .question {
    width: 45px;
    height: 45px;
    line-height: 42px;
  }
  .hero-section .hero-box {
    width: 390px;
  }
  .travel-mind .travel-fold .travel-info .getQuote span {
    width: 10px;
  }
  .faq-section .faq-list .faq-item p {
    font-size: 18px;
    line-height: 24px;
  }
  .travel-plan .plans .plan-header .hplan span {
    font-size: 20px;
    line-height: 24px;
  }
  .travel-plan .plans .plan-header .hplan {
    padding: 18px 0;
  }
  .travel-fold .travel-plan .plan-row h5 {
    font-size: 16px;
    line-height: 22px;
    padding: 15px 0;
  }
  .travel-fold .travel-plan .inner-plan .plan-name {
    padding: 15px 10px;
  }
  .travel-plan .inner-plan .plan-name .year figure {
    width: 18px;
    height: 18px;
  }
  .travel-plan .inner-plan .plan-name .year .num-year {
    font-size: 16px;
    line-height: 22px;
  }
  .travel-mind .travel-fold .travel-plan .plan-title {
    padding: 20px 0;
    font-size: 16px;
    line-height: 22px;
  }
  footer .footer-fold .footer-widgets p {
    font-size: 16px;
    line-height: 22px;
  }
  footer .footer-fold .footer-widgets .flink {
    font-size: 16px;
    line-height: 22px;
    margin-right: 15px;
  }
  .quote-main .quote-top h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .promoModal .modal-body form .form-group {
    margin-bottom: 25px;
  }
  .quote-main .quote-inner .qilinks {
    width: 40%;
  }
  .quote-main .travel-details .travel-form .field-fold.colum3 {
    flex-wrap: wrap;
  }
  .quote-main .travel-details .travel-form .field-fold.colum3 .form-group {
    width: 49% !important;
  }
  .quote-main
    .travel-details
    .travel-form
    .field-fold.colum3
    .form-group:last-child {
    width: 100% !important;
  }
  .quote-main .quote-inner .qiSteps.coverStep {
    padding: 0;
    border: none;
  }
}

@media only screen and (max-width: 991px) {
  header {
    position: fixed;
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 21;
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  }
  .hero-section {
    padding-top: 110px;
  }
  header .navbar-toggler {
    border: unset;
    padding: 0;
    background-color: unset;
  }
  header .navbar-toggler .navbar-toggler-icon {
    background-image: unset;
    width: 25px;
    height: 25px;
  }
  header .navbar-toggler:focus {
    box-shadow: unset;
  }
  header .navbar-nav {
    padding: 20px 0 0 0;
  }
  header .navbar .navbar-nav .nav-item {
    margin: 0 0 15px;
  }
  .hero-section {
    background-position: bottom;
  }
  .hero-section .hero-box {
    width: 370px;
  }
  .hero-section .hero-box .hinfo h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 28px;
    line-height: 38px;
    margin: 0 auto 20px;
  }
  .policy-doc-main .policy-doc-fold p {
    margin-bottom: 20px;
  }
  .policy-doc-main .policy-doc-fold .important-box h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .ss-title {
    font-size: 26px;
    line-height: 38px;
  }
  .sertvice-list .service-list-item .sinfo h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .sertvice-list .service-list-item .sinfo p {
    font-size: 16px;
    line-height: 28px;
  }
  .service-section .service-wrap .sertvice-list {
    flex-direction: column;
  }
  .service-wrap .sertvice-list .service-list-item:not(:last-child) {
    margin: 0 0 20px;
  }
  .service-wrap .sertvice-list .service-list-item {
    width: 100%;
  }
  .travel-fold .travel-info figure {
    width: 400px;
    height: 260px;
    margin-bottom: 20px;
  }
  .travel-fold .travel-info .getQuote {
    margin-bottom: 20px;
  }
  .travel-mind {
    padding: 30px 0;
  }
  .travel-plan .plan-addon .addon-title {
    padding: 18px;
    font-size: 16px;
    line-height: 20px;
  }
  .faq-section .faq-list .faq-item {
    height: 260px;
    margin-right: 20px;
    padding: 20px;
  }
  .faq-section .faq-list .faq-item p {
    font-size: 16px;
    line-height: 24px;
  }
  .travel-mind .travel-fold p {
    font-size: 16px;
    line-height: 22px;
    padding: 12px 0;
  }
  .policy-doc-main {
    margin: 100px 0 56px;
  }
  .important-box .doc-list .doc-list-item h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .important-box .doc-list .doc-list-item .download-btn span,
  .policy-doc-main .policy-doc-fold .policys .policy .download-btn span {
    width: 18px;
    flex: 0 0 18px;
  }
  .important-box .doc-list .doc-list-item .download-btn,
  .policy-doc-main .policy-doc-fold .policys .policy .download-btn {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item figure {
    width: 50px;
    height: 50px;
  }
  .quote-main {
    margin-top: 100px;
  }
  .quote-main .quote-top h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .quote-main .quote-top .steps {
    margin-bottom: 20px;
    display: flex;
  }
  .quote-main .quote-top h2 span {
    top: 0;
  }
  .trip-tab .tab-content .trip-plans .tp-list {
    overflow-x: scroll;
    margin: 0 20px;
    padding-top: 20px;
    flex-flow: column;
  }
  .trip-tab .tab-content .trip-plans .tp-list .tp-list-item {
    width: 450px;
    flex: 0 0 450px;
    margin: 40px auto 30px;
  }
  .trip-tab .tab-content .trip-plans .tp-list .tp-list-item:last-child {
    margin-right: auto;
  }
  .person-cover-fold .pc-list-item figure {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
  }
  .person-cover-fold .pc-list-item h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .quote-main .travel-details .travel-form h4 {
    font-size: 20px;
    line-height: 28px;
  }
  .trip-plans .tp-list .tp-list-item .tp-list-header {
    padding: 30px 24px 25px;
    background-color: #0c1729;
    text-align: center;
  }
  .trip-plans .tp-list .tp-list-item.tp-gold p {
    top: -10px;
    left: 40px;
    right: 40px;
  }
  .personalise-cover .person-cover-fold {
    margin: 0 20px 56px;
    overflow-x: scroll;
    flex-flow: column;
  }
  .personalise-cover .person-cover-fold .pc-list-item {
    width: 450px;
    flex: 1;
    margin: 0 auto 30px;
  }
  .personalise-cover .person-cover-fold .pc-list-item:last-child {
    margin-right: auto;
  }
  .quote-form form .step-form .form-check {
    padding: 11px 20px 10px 35px;
  }
  .quote-form form .step-form .form-check .form-check-input {
    margin-top: 0;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  .quote-form
    form
    .step-form
    .form-check
    .form-check-input:checked[type="radio"]:after {
    width: 8px;
    height: 8px;
    top: 18px;
    left: 16px;
  }
  .quote-form form .step-form .form-group label,
  .quote-form form .step-form .travelers,
  .quote-form form .step-form .form-group label,
  .quote-form form .step-form .travelers,
  .quote-form form .step-form .travelers label {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .quote-form form .step-form .form-check .form-check-label {
    margin: 0 0 0 8px;
  }
  .quote-form form .step-form .form-check figure.info-img {
    width: 15px;
    height: 15px;
  }
  .quote-form form .step-form .form-check .return {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
  .quote-form form .step-form .check-fold .form-check label {
    margin-right: 16px;
  }
  .quote-form form .step-form .form-group {
    margin-bottom: 24px;
  }
  .ss-form-control {
    font-size: 16px;
    line-height: 22px;
    padding: 14px 10px;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    width: 16px;
    height: 16px;
    left: 10px;
  }
  .quote-form form .step-form .date-fold .ss-form-control {
    padding-left: 50px;
  }
  .quote-form form .step-form .travelers .travel-fold {
    padding: 10px 20px;
    margin-bottom: 15px;
  }
  .quote-form form .step-form .travelers .travel-fold .tinput {
    font-size: 16px;
    line-height: 22px;
  }
  .quote-form form .step-form .travelers .travel-fold .travel-text {
    font-size: 14px;
    line-height: 22px;
  }
  .quote-main .quote-form form .step-form .getQuote {
    padding: 10px 20px;
  }
  .quote-main .quote-step .getQuote {
    max-width: 270px;
  }
  .trip-plans .tp-list .tp-list-item .tp-list-header figure {
    width: 30px;
    height: 30px;
    margin: 0 auto 12px;
  }
  .trip-plans .tp-list .tp-list-item .tp-list-header h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
    color: var(--white);
  }
  .trip-plans .tp-list .tp-list-item.tp-bronze .tp-list-header h5 {
    color: #e0a374;
  }
  .trip-plans .tp-list .tp-list-item.tp-silver .tp-list-header h5 {
    color: #dde2e7;
  }
  .trip-plans .tp-list .tp-list-item.tp-gold .tp-list-header h5 {
    color: #fefcbd;
  }

  .trip-plans .tp-list .tp-list-item .tp-list-header span {
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 30px;
    display: inline-block;
    padding: 3px 16px;
  }
  .tp-list .tp-list-item .tp-list-body .tprice-item h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .tp-list-item .tp-list-body .tprice-item .tp-info h6 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .tp-list .tp-list-item .select-btn {
    padding: 12px;
  }
  .person-cover-fold .pc-list-item .tag {
    font-size: 16px;
    line-height: 21px;
    margin: 0 auto 15px;
  }
  .person-cover-fold .pc-list-item .info {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
    min-height: auto;
  }
  .person-cover-fold .pc-list-item .add-cover .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
  .person-cover-fold .pc-list-item .add-cover .form-check label {
    font-size: 16px;
    line-height: 22px;
  }
  .person-cover-fold .pc-list-item .add-cover {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .person-cover-fold .pc-list-item .note {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .person-cover-fold .pplan-list .pplan-item {
    padding: 20px 0 20px 20px;
  }
  .person-cover-fold .pplan-list .pplan-item h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .travel-details .travel-form .form-group.date .ss-form-control {
    padding-left: 50px;
  }
  .form-select {
    padding: 14px 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .quote-main .plan-review .plan-details .plans {
    margin-bottom: 30px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail label {
    font-size: 16px;
    line-height: 22px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail span {
    font-size: 16px;
    line-height: 22px;
    word-break: break-all;
  }
  .quote-main .plan-review .plan-details {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .confirm-pay .bronze .bronze-header .bh-left h5 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .quote-main .confirm-pay .bronze .bronze-body .plans {
    margin-bottom: 12px;
  }
  .quote-main .confirm-pay .bronze {
    margin-bottom: 50px;
  }
  .confirm-pay .quote-form .cart-title {
    margin-bottom: 25px;
  }
  .quote-main .confirm-pay .privacy-box {
    flex-flow: column;
  }
  .quote-main .confirm-pay .privacy-box .pb-title {
    flex: 1;
    margin-bottom: 30px;
    width: auto;
    margin-right: 0;
  }
  .confirm-pay .privacy-box .pb-info .pb-detail {
    width: 33%;
  }
  .quote-form form .step-form .date-fold .form-group:after {
    bottom: 16px;
  }
  header .navbar .action .contact-info {
    left: 0;
    width: 100%;
    box-shadow: unset;
    border-radius: 0;
    position: relative;
    top: 0;
    padding: 20px 0 0 0;
  }
  header .navbar .action {
    display: inline-flex;
  }
  header .navbar .action.active {
    flex-flow: column;
    align-items: flex-start;
    display: inline-flex;
  }
  header .navbar .action a.gbp,
  header .navbar .action a.fr {
    position: absolute;
    right: 0px;
    z-index: 2;
    top: -5px;
    margin: 0;
  }
  header .navbar .action.active a.header-contact-us {
    margin-right: 0;
  }
  header .navbar .action a {
    margin-right: 0;
    width: 125px;
  }
  .quote-form form .step-form .date-fold .form-group:after,
  .travel-details .travel-form .form-group.date:after {
    top: 48px;
  }
  .personalise-cover .person-cover-fold .pc-list-item .pcl-bottom {
    display: none;
  }
  .personalise-cover .person-cover-fold .pc-list-item .pcl-top .add-cover {
    border-bottom: unset;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .personalise-cover
    .person-cover-fold
    .pc-list-item.collapse
    .pcl-top
    .add-cover {
    border-bottom: 1px solid #d0d8db;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .personalise-cover .person-cover-fold .pc-list-item.collapse .pcl-bottom {
    display: block;
  }
  .trip-tab .tab-content .trip-plans.plan-web {
    display: none;
  }
  .trip-tab .tab-content .trip-plans.plan-mobile {
    display: block;
  }
  .quote-main .confirm-pay .iaction .form-check label {
    margin: 0 8px 0 0;
  }
}

@media only screen and (max-width: 990px) {
  .quote-main .quote-inner .qilinks {
    display: none;
  }
  .quote-main .quote-inner .qiSteps {
    width: 100%;
    flex: 1;
    margin-right: 0;
  }
  .quote-form form .step-form .form-check .return,
  .quote-form form .step-form .form-check .return.active,
  .quote-form form .step-form .form-check.active-field .return.active {
    display: none;
  }
  .quote-main .quote-inner.full-width .qiSteps {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media only screen and (max-width: 767px) {
  .ss-container {
    margin: 0 30px;
  }
  .hero-section .hero-box .hinfo h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .hero-section .hero-box .hinfo {
    padding: 30px 25px;
  }
  .hero-section,
  .service-section,
  .travel-mind,
  .faq-section {
    margin-bottom: 40px;
  }
  .ss-title {
    font-size: 22px;
    line-height: 34px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .sertvice-list .service-list-item .sinfo h5 {
    margin-bottom: 5px;
  }
  .sertvice-list .service-list-item figure {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    margin: 0 0 10px;
  }
  .travel-fold .travel-info figure {
    width: 350px;
    height: 220px;
  }
  .travel-fold .travel-info .policy-doc {
    font-size: 16px;
    line-height: 20px;
  }
  .travel-fold .travel-info .policy-doc span {
    width: 18px;
    margin-right: 10px;
  }
  .faq-section .faq-list .faq-item .question {
    width: 35px;
    height: 35px;
    line-height: 30px;
  }
  .faq-section .faq-list .faq-item {
    height: 210px;
  }
  footer .footer-fold .footer-widgets .flogo {
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
  }
  footer .footer-fold .footer-widgets p {
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-fold .footer-widgets .flink {
    font-size: 14px;
    line-height: 20px;
    margin-right: 15px;
  }
  .quote-main .quote-top h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .quote-main .quote-step {
    max-width: 100%;
    margin: 0;
  }
  .pplan-list .pplan-item.sub-pplan::after {
    top: 25px;
  }
  .privacy-box .pb-info .pb-detail span {
    padding: 8px 26px;
  }
  .plan-review .plan-details .plans .plan-title h4 {
    font-size: 20px;
    line-height: 28px;
  }
  .quote-step.travel-confirm .quote-top .confirm-icon {
    margin: 0 auto 20px;
  }
  .personalise-cover .person-cover-fold {
    margin: 0 0 56px;
  }
  .travel-plan-mobile {
    display: block;
  }
  .travel-mind .travel-fold .travel-plan {
    display: none;
  }
  header.fixed,
  footer.fixed {
    position: relative;
  }
  .sticky-text {
    display: none;
  }
  .quote-main .quote-inner .quote-step form .step-form {
    padding: 0 30px;
  }
  .quote-main .travel-details .travel-form .travel2d-group {
    flex-flow: column;
  }
  .quote-main .travel-details .travel-form .travel2d-group .form-group {
    width: 100%;
  }
  .plan-review .plan-details .plans .plan-title,
  .quote-main .plan-review .plan-details .plans {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .quote-step.travel-confirm .confirm-box .captcha {
    width: 100%;
  }
  .quote-step.travel-confirm .confirm-box .email-info {
    max-width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .travel-plan .plans .plan-header .hplan span {
    font-size: 16px;
    line-height: 20px;
  }
  .quote-main .confirm-pay .bronze .bronze-header {
    flex-flow: column;
  }
  .confirm-pay .bronze .bronze-header .bh-left {
    margin: 0 0 10px;
  }
  .confirm-pay .bronze .bronze-header .bh-right .tag {
    margin: 0;
  }
  .confirm-pay .bronze .bronze-header .bh-right {
    display: flex;
    justify-content: space-between;
  }
  .travel-mind .tm-fold {
    flex-flow: column;
    margin-bottom: 20px;
  }
  .travel-mind .tm-fold .tab2 {
    margin: 0;
  }
  .quote-form form .step-form .policyLine .pl-fold a {
    width: 60%;
  }
}

@media only screen and (max-width: 575px) {
  .hero-section .hero-box .hinfo h2 {
    line-height: 34px;
  }
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .getQuote {
    padding: 10px 14px;
    font-size: 16px;
    line-height: 22px;
  }
  .travel-fold .travel-info .getQuote {
    max-width: 140px;
  }
  .travel-mind .travel-fold .travel-info .getQuote span {
    width: 8px;
  }
  .travel-fold .travel-plan .inner-plan .plan-name,
  .travel-plan .plans .plan-header .hplan {
    flex: 0 0 200px;
    width: 200px;
    margin-right: 0;
  }
  .travel-plan .inner-plan .plan-name .year {
    align-items: flex-start;
  }
  .travel-fold .travel-plan .plan-row h5 {
    font-size: 14px;
    line-height: 20px;
    width: 140px;
    flex: 0 0 140px;
  }
  .travel-mind .travel-fold .travel-plan {
    overflow-x: scroll;
  }
  .faq-section .faq-list {
    flex-flow: column;
  }
  .faq-section .faq-list .faq-item {
    width: 100%;
    margin: 0 0 20px;
  }
  .faq-section .faq-list .faq-item:last-child {
    margin: 0;
  }
  .travel-mind .travel-fold p {
    font-size: 14px;
    line-height: 20px;
  }
  .travel-mind .travel-fold .travel-plan .plan-row {
    border-bottom: unset;
  }
  .travel-fold .travel-plan .inner-plan .plan-name,
  .travel-fold .travel-plan .plan-row h5 {
    border-bottom: 1px solid #d0d8db;
  }
  .travel-plan .plans .plan-header .hplan:nth-child(2) {
    border-bottom: 1px solid #d0d8db;
  }
  .travel-mind .travel-fold .travel-plan .plan-title {
    border-bottom: unset;
  }
  .policy-doc-fold .important-box .doc-list {
    flex-flow: column;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item:last-child {
    margin-bottom: 0;
  }
  .quote-form form .step-form .check-fold,
  .quote-form form .step-form .date-fold,
  .quote-main .travel-details .travel-form .field-fold {
    flex-flow: column;
  }
  .quote-form form .step-form .check-fold .form-check:not(:last-child) {
    margin: 0 0 15px;
  }
  .quote-form form .step-form .date-fold .form-group,
  .travel-details .travel-form .field-fold .form-group {
    width: 100%;
  }
  .colum2 .form-group,
  .colum3 .form-group,
  .quote-main .travel-details .travel-form .field-fold.colum3 .form-group {
    width: 100% !important;
  }
  .quote-form form .step-form .date-fold {
    margin-bottom: 0;
  }
  .quote-step .trip-tab .nav-pills .nav-item .nav-link {
    padding: 12px 30px;
  }
  .quote-step .trip-tab .nav-pills {
    margin-bottom: 20px;
  }
  .confirm-pay .privacy-box .pb-info .pb-detail {
    margin: 0 auto 20px;
  }
  .confirm-pay .privacy-box .pb-info .pb-detail:last-child {
    margin-bottom: 0;
  }
  .confirm-pay .quote-form .field-fold {
    flex-flow: column;
  }
  .confirm-pay .quote-form .field-fold .form-group {
    width: 100%;
    margin-bottom: 15px;
  }
  .quote-main .confirm-pay .privacy-box .pb-info {
    flex-flow: column;
  }
  .confirm-pay .privacy-box .pb-info .pb-detail {
    width: 100%;
  }
  .privacy-box .pb-info .pb-detail p {
    max-width: 100%;
  }
  .quote-main .quote-top h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .confirm-pay .bronze .bronze-header .bh-left h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .tm-plan .tmp-body .tmp-plan h5 {
    width: 50%;
  }
  .tm-plans .tm-plan .tmp-body .plan-collapse {
    padding: 20px 10px;
  }
  .quote-main .quote-step {
    margin: 0 12px 56px;
  }
  .quote-main
    .quote-form
    form
    .step-form
    .check-agent
    .referred-field
    .form-group {
    width: 100%;
  }
  .quote-main .quote-form form .step-form .check-agent .referred-field {
    flex-flow: column;
  }
  .quote-form form .step-form .travelers .tr-title span {
    width: 110px;
  }
  .quote-form form .step-form .travelers .tr-title {
    margin-bottom: 10px;
  }
  .modal-content .modal-header .modal-title {
    font-size: 20px;
  }
  .modal-content .modal-header .for span {
    font-size: 16px;
    padding: 3px 14px;
  }
  .insurance-info .info .iaction .form-check-label {
    padding: 8px 18px;
    font-size: 16px;
    border-radius: 6px;
  }
  .modal-body .insurance-info .info p {
    font-size: 16px;
  }
  .modal-body.policy-body .policy {
    font-size: 16px;
    line-height: 22px;
  }
  .modal-body .insurance-info .info {
    margin-bottom: 20px;
  }
  .modal-btn button {
    font-size: 16px;
  }
  .quote-main .quote-step.travel-details .cover-footer {
    flex-flow: column-reverse;
  }
  .quote-main .quote-step.travel-details .getQuote {
    margin: 20px 0 0 0;
  }
  .quote-main .quote-step.plan-review {
    margin: 0;
  }
  .quote-main .plan-review .policy {
    padding: 0 16px;
  }
  .quote-main .plan-review .save-quote {
    margin: 0 16px 32px;
  }
  .quote-main .plan-review .plan-details {
    padding: 0 16px 20px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail label {
    width: 180px;
    flex: 0 0 180px;
  }
  .quote-main .plan-review .plan-details {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .quote-main .plan-review .save-quote {
    padding: 24px 16px 32px;
  }
  .plan-review .save-quote .form-group {
    flex-flow: column;
  }
  .plan-review .save-quote .add-another-email {
    margin-bottom: 16px;
  }
  .confirm-pay .quote-form {
    padding: 0 16px;
  }
  .quote-main .quote-step.confirm-pay {
    margin: 0;
  }
  .confirm-pay .card-form .emedical .emTop p {
    margin-right: 100px;
  }
  .confirm-pay .card-form .emedical .travel-tab .tlineheader h4:first-child {
    display: none;
  }
  .card-form .emedical .travel-tab .tlines .tline:first-child {
    width: auto;
  }
  .card-form .emedical .travel-tab .tlines {
    justify-content: flex-start;
  }
  .card-form .emedical .travel-tab .tline {
    width: unset;
    margin-left: 10px;
    text-align: left;
  }
  .card-form .emedical .travel-tab .tline:last-child {
    margin-left: auto;
  }
}

@media only screen and (max-width: 480px) {
  footer .footer-fold {
    flex-flow: column;
  }
  footer .footer-fold .footer-widgets:first-child {
    margin-bottom: 10px;
  }
  .hero-section .hero-box {
    width: 100%;
  }
  .hero-section {
    height: 350px;
  }
  .policy-doc-main .policy-doc-fold p {
    font-size: 16px;
    line-height: 24px;
  }
  .policy-doc-main .policy-doc-fold .important-box h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .policy-doc-main .policy-doc-fold .policys .policy {
    flex-direction: column;
  }
  .policy-doc-main .policy-doc-fold .policys .policy h4 {
    margin-bottom: 15px;
  }
  .quote-form form .step-form .travelers .travel-fold {
    display: block;
  }
  .quote-form form .step-form .travelers .travel-fold .travel-text {
    margin-top: 10px;
    padding: 20px;
  }
  .quote-step.travel-confirm .confirm-box .captcha {
    width: auto;
  }
  .quote-form form .step-form .form-check {
    align-items: flex-start;
  }
  .quote-form
    form
    .step-form
    .form-check
    .form-check-input:checked[type="radio"]:after,
  .quote-main
    .confirm-pay
    .quote-form
    form
    .step-form
    .form-check
    .form-check-input:checked[type="radio"]:after {
    top: 16px;
  }
  .personalise-cover .person-cover-fold .pc-list-item,
  .trip-tab .tab-content .trip-plans .tp-list .tp-list-item {
    width: 100%;
    flex: 1;
  }
  .quote-main .quote-step {
    margin: 0;
  }
  .quote-main .quote-inner .quote-step form .step-form {
    padding: 0 20px;
  }
  .quote-form form .step-form .form-group .coverage-fold.show-policy span {
    width: 130px;
    margin-bottom: 15px;
  }
  .quote-step .trip-tab .nav-pills .nav-item:not(:last-child) {
    margin: 0 10px 10px 0;
  }
  .promoModal .modal-body form .form-group:last-child {
    flex-direction: column;
  }
  .promoModal .modal-body form .form-group .visa-tls {
    display: inline-flex;
    margin: 0 0 0 auto;
  }
  .tm-plans .tm-plan .tmp-header .prev,
  .tm-plans .tm-plan .tmp-header .next {
    width: 16px;
  }
  .tm-plans .tm-plan .tmp-header .hinfo figure {
    width: 20px;
    height: 20px;
  }
  .quote-form form .step-form .policyLine .pl-fold,
  form .step-form .policyLine .card .form-group {
    flex-flow: column;
    align-items: flex-start;
  }
  .quote-form form .step-form .policyLine .pl-fold a,
  form .step-form .policyLine .card .form-group .ss-form-control {
    width: 100%;
    margin: 0 0 20px;
  }
  .quote-form form .step-form .policyLine .pl-fold .form-check {
    margin-left: 24px;
  }
  .modal-body .insurance-info .info {
    flex-flow: column-reverse;
  }
  .modal-body .insurance-info .info p {
    margin-bottom: 12px;
  }
  .quote-main .travel-details .travel-form .check-eligibility p,
  .travel-form .check-eligibility-success p,
  .quote-main .travel-details .travel-form .check-eligibility-close p {
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
  }
  .quote-main .travel-details .travel-form h4 {
    padding-bottom: 20px;
  }
  .complete-travelDetail .pholder h4.blacktxt {
    margin: 0 0 0 20px;
    padding: 0;
  }
  .quote-main .plan-review .save-quote h5 {
    font-size: 18px;
  }
  .plan-review .save-quote h5 span {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
  .add-another-email span {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }
  .confirm-pay .card-form .emedical .emTop .em-title h5 {
    font-size: 20px;
  }
  .confirm-pay .card-form .emedical {
    padding: 24px 16px;
  }
  .quote-main .confirm-pay .iaction {
    flex-wrap: wrap;
  }
  .quote-main .confirm-pay .iaction .form-check {
    margin: 0 8px 8px 0;
  }
  .confirm-pay .payment-title h5 {
    font-size: 18px;
  }
  .confirm-pay .card-form .emedical .emTop p {
    margin-right: 0;
  }
  .quote-step.travel-confirm .quote-top .confirm-icon {
    width: 55px;
    height: 55px;
  }
  .quote-step.travel-confirm .quote-top .confirm-icon img {
    width: 22px;
    height: 22px;
  }
  .quote-step.travel-confirm .confirm-box .captcha span {
    font-size: 18px;
    line-height: 24px;
  }
  .quote-step.travel-confirm .confirm-box .email-info {
    flex-flow: column;
  }
  .quote-step.travel-confirm .confirm-box .email-info span {
    margin: 0 0 16px;
  }
  .quote-step.travel-confirm .confirm-box {
    padding: 0 16px 30px;
  }
}

@media only screen and (max-width: 393px) {
  .policy-doc-main .policy-doc-fold h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .ss-container {
    margin: 0 20px;
  }
  .sertvice-list .service-list-item .sinfo h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .sertvice-list .service-list-item .sinfo p {
    font-size: 14px;
    line-height: 26px;
  }
  .travel-plan .inner-plan .plan-name .year figure {
    width: 15px;
    height: 15px;
  }
  .travel-mind .travel-fold .travel-plan .plan-title {
    padding: 15px 0 0;
  }
  .travel-fold .travel-info figure {
    width: 100%;
  }
  .faq-section .faq-list .faq-item {
    height: 200px;
  }
  header .navbar {
    padding: 12px 0;
  }
  header .navbar .navbar-brand {
    width: 100px;
  }
  header .navbar-toggler .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }
  header .navbar .navbar-nav .nav-item .nav-link,
  header .navbar .action a {
    font-size: 14px;
    line-height: 18px;
  }
  header .navbar .action a.gbp {
    width: 25px;
    height: 25px;
  }
  .getQuote {
    padding: 9px 12px;
    font-size: 14px;
    line-height: 18px;
    border-radius: 4px;
  }
  .getQuote span {
    width: 12px;
    height: 12px;
  }
  .important-box .doc-list .doc-list-item h4 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item {
    padding: 35px 25px;
  }
  .policy-doc-fold .important-box .doc-list .doc-list-item figure {
    width: 38px;
    height: 38px;
  }
  .quote-main .quote-top h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .quote-step .trip-tab .nav-pills .nav-item .nav-link {
    font-size: 16px;
    line-height: 22px;
    padding: 10px 24px;
  }
  .person-cover-fold .pc-list-item figure {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
  }
  .ss-form-control {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 10px;
  }
  .travel-details .travel-form .form-group .country .form-select {
    width: 80px;
    flex: 0 0 80px;
  }
  .quote-main .quote-step .getQuote {
    min-width: max-content;
  }
  .quote-main .quote-form form .step-form .getQuote {
    width: 270px;
  }
  .person-cover-fold .pc-list-item .add-cover .included {
    font-size: 16px;
    line-height: 22px;
  }
  .quote-main .travel-details .travel-form h4 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .quote-main .quote-form form .step-form {
    margin: 0 auto 50px;
  }
  .personalise-cover .person-cover-fold .pc-list-item {
    padding: 24px 20px;
  }
  .pplan-list .pplan-item.sub-pplan::after {
    left: 5px;
    top: 35px;
  }
  .quote-main .plan-review .policy .form-check label {
    font-size: 14px;
    line-height: 20px;
  }
  .quote-main .plan-review .policy .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex: 0 0 20px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail {
    flex-flow: column;
  }
  .plan-review .plan-details .plans .plan-info .pdetail label {
    margin: 0 0 5px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail span {
    font-size: 14px;
    line-height: 20px;
  }
  .plan-review .plan-details .plans .plan-title h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .quote-main .confirm-pay .quote-top p {
    font-size: 16px;
    line-height: 22px;
    max-width: max-content;
    margin: 0 auto 22px;
  }
  .quote-main .confirm-pay .bronze {
    padding: 20px;
    margin-bottom: 30px;
  }
  .tp-list .tp-list-item .select-btn {
    font-size: 16px;
    line-height: 22px;
  }
  .quote-step.cover-step .cover-footer .policy {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .quote-step.cover-step .cover-footer .policy span {
    width: 18px;
  }
  .quote-step .cover-footer .back {
    font-size: 16px;
    line-height: 23px;
  }
  .quote-step .cover-footer .back span {
    font-size: 16px;
    line-height: 23px;
  }
  .confirm-pay .bronze .bronze-header .bh-left h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .confirm-pay .bronze .bronze-header .bh-left p {
    font-size: 14px;
    line-height: 22px;
  }
  .confirm-pay .bronze .bronze-body .plans label,
  .confirm-pay .bronze .bronze-body .plans span {
    font-size: 16px;
    line-height: 22px;
  }
  .quote-main .confirm-pay .bronze .bronze-body .plans {
    margin-bottom: 10px;
  }
  .confirm-pay .bronze .bronze-body .cover-car {
    font-size: 12px;
    line-height: 16px;
  }
  .trip-plans .tp-list .tp-list-item .tp-list-header figure {
    width: 26px;
    height: 26px;
  }
  .quote-form form .step-form .travelers .travel-fold .tinput {
    font-size: 14px;
    line-height: 20px;
  }
  .trip-plans .tp-list .tp-list-item .tp-list-header h5 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .tp-list .tp-list-item .tp-list-body .tprice-item h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .person-cover-fold .pc-list-item h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .person-cover-fold .pc-list-item h4 span {
    width: 16px;
    height: 16px;
    margin-left: 12px;
  }
  .person-cover-fold .pc-list-item .note {
    font-size: 14px;
    line-height: 22px;
  }
  .person-cover-fold .pplan-list .pplan-item h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .pplan-list .pplan-item .pplan-detail .pplan-price {
    font-size: 16px;
    line-height: 22px;
  }
  .pplan-list .pplan-item .pplan-detail .pplan-price span {
    width: 16px;
    height: 16px;
    flex: 0 0 17px;
  }
  .person-cover-fold .pc-list-item .add-cover .form-check label {
    font-size: 14px;
    line-height: 20px;
  }
  .quote-form form .step-form .form-group label,
  .quote-form form .step-form .travelers,
  .quote-form form .step-form .form-group label,
  .quote-form form .step-form .travelers,
  .quote-form form .step-form .travelers label {
    font-size: 16px;
    line-height: 20px;
  }
  .quote-form form .step-form .form-check .return {
    width: 16px;
    height: 16px;
  }
  .quote-main .plan-review .plan-details .plans {
    margin-bottom: 20px;
  }
  .quote-main .plan-review .plan-details {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .confirm-pay .quote-form {
    padding: 0px 20px 32px;
  }
  .confirm-pay .quote-form .cart-title {
    flex-flow: column;
  }
  .confirm-pay .quote-form .cart-title .secure {
    justify-content: flex-end;
  }
  .confirm-pay .quote-form .cart-title h5 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 28px;
  }
  .confirm-pay .quote-form .bill-title {
    font-size: 18px;
    line-height: 28px;
  }
  .confirm-pay .quote-form form .step-form .form-check {
    display: flex;
    flex-wrap: wrap;
  }
  .confirm-pay .quote-form .form-group .visa-tag {
    display: inline-flex;
  }
  .confirm-pay .quote-form .form-group .visa-tag-apply {
    display: inline-flex;
  }
  .quote-main .confirm-pay .privacy-box .pb-title h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .quote-main .confirm-pay .privacy-box .pb-title figure {
    width: 30px;
    height: 33px;
    margin: 0 20px 0 0;
    flex: 0 0 30px;
  }
  .quote-main .confirm-pay .privacy-box .pb-title h5 {
    font-size: 18px;
    line-height: 26px;
  }
  .privacy-box .pb-info .pb-detail span {
    font-size: 16px;
    line-height: 24px;
  }
  .quote-step.travel-confirm .confirm-box .captcha {
    padding: 20px;
    border-radius: 6px;
  }
  .quote-step.travel-confirm .confirm-box .captcha .sa-logo {
    width: 30px;
    height: 30px;
  }
  .quote-step.travel-confirm .confirm-box .captcha span {
    font-size: 18px;
    line-height: 26px;
  }
  .quote-step.travel-confirm .confirm-box .captcha figure {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
  .quote-step.travel-confirm .note {
    font-size: 16px;
    line-height: 24px;
  }
  .quote-main .plan-review .policy {
    margin-bottom: 40px;
  }
  .quote-main .quote-step {
    margin: 0;
  }
  .promoModal .modal-body form .form-group .form-check .form-check-label {
    font-size: 14px;
    line-height: 18px;
  }
  .promoModal .modal-body form .form-group .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .promoModal .modal-content .modal-body {
    padding: 30px 20px;
  }
  .travel-plan-mobile .tm-plans .tm-plan .tmp-header.sticky {
    top: 55px;
    width: calc(100% - 30px);
    left: 10px;
  }
  .plan-review .plan-details .plans .plan-info .pdetail label {
    width: auto;
    flex: 1;
  }
  .quote-main .plan-review .save-quote p {
    padding: 14px;
    font-size: 16px;
    line-height: 20px;
  }
  .plan-review .save-quote .add-another-email {
    font-size: 16px;
  }
  .confirm-pay .payment-title {
    flex-flow: column;
    align-items: flex-start;
  }
  .confirm-pay .payment-title .secure {
    margin-left: auto;
  }
}

@media only screen and (max-width: 375px) {
  .quote-main .quote-top h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .quote-form form .step-form .date-fold .form-group:after {
    bottom: 13px;
  }
  .quote-step .trip-tab .nav-pills .nav-item .nav-link:first-child {
    margin-right: 10px;
  }

  .quote-form form .step-form .date-fold .form-group:after,
  .travel-details .travel-form .form-group.date:after {
    top: 46px;
  }
  .confirm-pay .quote-form form .step-form .form-check {
    margin: 0 0 8px;
  }
}

@media only screen and (max-width: 325px) {
  .confirm-pay .bronze .bronze-header .bh-right {
    display: block;
  }
}
