
@charset "UTF-8";
.stonehenge {
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  transform: scale(1);
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  text-align: center;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stonehenge::-webkit-scrollbar {
  display: none;
}

.stonehenge.is-grabbed {
  cursor: grabbing;
  /* transform: scale(1.02); */
}

.stonehenge > * {
  display: inline-block;
  white-space: normal;
  text-align: left;
  vertical-align: middle;
  margin-right: -5px;
}
.stonehenge > *:last-child {
  margin-right: 0;
}

.stonehenge.is-valigned-top > * {
  vertical-align: top;
}

.stonehenge.is-valigned-middle > * {
  vertical-align: middle;
}

.stonehenge.is-valigned-bottom > * {
  vertical-align: bottom;
}

.stonehenge.zigzag {
  padding: 2rem 0;
}

.stonehenge.zigzag > * {
  position: relative;
}

.stonehenge.zigzag > *:nth-child(odd) {
  top: -1.5rem;
}

.stonehenge.zigzag > *:nth-child(even) {
  bottom: -1.5rem;
}


* {
  outline: 0 !important;
}

@media screen and (min-width: 768px) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
    overflow-x: auto;
  }
}

@media screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
    overflow-x: auto;
  }
}

@media screen and (min-width: 768px) {
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #B2B2B2;
    overflow-x: auto;
  }
}

body {
  min-height: 100vh;
  padding-top: 0px;
  /* margin-top: 5rem; */
  font-family: "Mulish" !important;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 0px;
  }
}

h2 {
  margin: 0 0 20px !important;
  color: #F4811F;
  font: 700 32px/62px "Mulish";
}
@media screen and (max-width: 767px) {
  h2 {
    margin: 0 0 15px !important;
    font: 700 22px/28px "Mulish";
  }
}

.common_box {
  padding: 20px 30px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.1607843137);
}


header {
  height: 60px;
  padding: 0 !important;
  background: #fff;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
}
header .logo_box {
  height: 100%;
  display: flex;
  align-items: center;
}
header .logo_box h1 {
  margin: 0;
}
header .logo_box h1 a {
  width: 168px;
  height: 90px;
  display: block;
  background: url(../images/NewICICILogo.png) no-repeat center center/contain;
  text-indent: -9999px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  header .logo_box h1 a {
    width: 82px;
    /* height: 36px; */
  }
}
@media screen and (max-width: 767px) {
  header .logo_box .vendor_logo img {
    width: 82px;
  }
}

main {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  main {
    margin: 25px 0;
  }
}

.input_field {
  position: relative;
  overflow: hidden;
 
}
.input_field input,
.input_field select {
  width: 100%;
  height: 28px;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid #F4811F;
  margin-top: 22px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background-color: transparent !important;
  box-shadow: 0 0 0 0 !important;
  -webkit-box-shadow: 0 0 0 0 !important;
  -moz-box-shadow: 0 0 0 0 !important;
  color: #000 !important;
  font: 600 15px/16px "Mulish";
}
.input_field input:disabled,
.input_field select:disabled {
  border-bottom: 0;
  background-color: transparent;
}
.input_field input.dob,
.input_field select.dob {
  padding-right: 30px;
  background: transparent url(../images/calendar.svg) no-repeat right 5px center/16px;
}
.input_field select {
  padding-right: 30px;
  background: transparent url(../images/down-arrow.png) no-repeat right center/20px;
}
.input_field label {
  margin: 0;
  position: absolute;
  top: 25px;
  left: 0;
  color: #969494;
  cursor: text;
  font: 600 16px/20px "Mulish";
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
}
.input_field label sup {
  color: #F4811F;
}
.input_field::after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #F4811F;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  visibility: hidden;
}
.input_field.focused label {
  top: 0;
  left: 0;
  font-size: 14px;
  color: #969494;
}
.input_field.focused::after {
  width: 100%;
  left: 0;
  visibility: visible;
}
.input_field.focused.disabled::after {
  display: none;
}
.input_field.focused.filled::after {
  background-color: #969494;
}

.radio_box span {
  margin-bottom: 20px;
  display: block;
  color: #000;
  font: 600 16px/20px "Mulish";
}
@media screen and (max-width: 767px) {
  .radio_box span {
    margin-bottom: 15px;
  }
}
.radio_box .form-check-inline {
  padding-left: 28px;
  margin-right: 70px;
}
.radio_box .form-check-inline:last-child {
  margin-right: 0;
}
.radio_box .form-check-input {
  width: 16px;
  height: 16px;
  border-color: #B2B2B2;
  margin-left: -28px;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.radio_box .form-check-input:checked[type=radio] {
  border-color: #000;
  background: none;
  background-color: #F4811F;
  box-shadow: inset 0 0 0 3px #fff;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  -moz-box-shadow: inset 0 0 0 3px #fff;
}
.radio_box label {
  color: #000;
  font: 600 16px/20px "Mulish";
}

.radioSwitch_box span {
  margin-bottom: 10px;
  display: block;
  color: #969494;
  font: 400 14px/16px "Mulish";
}
.radioSwitch_box .innerDiv {
  border: 1px solid #EAEAEA;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  display: inline-flex;
  overflow: hidden;
}
.radioSwitch_box .innerDiv label {
  min-width: 50px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background-color: transparent;
  color: #282828;
  font: 400 15px/18px "Mulish";
}
.radioSwitch_box .innerDiv label:hover {
  background-color: transparent;
  color: #282828;
}
.radioSwitch_box .innerDiv input {
  display: none;
}
.radioSwitch_box .innerDiv input:checked + label {
  background-color: #013366;
  color: #fff;
}
.radioSwitch_box .innerDiv.md label {
  min-height: 50px;
  padding: 8px 14px;
  line-height: 33px;
}

.check_box .form-check {
  padding-left: 34px;
}
.check_box .form-check-input {
  width: 24px;
  height: 24px;
  border: 0;
  margin-left: -34px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background-color: #EAEAEA;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.check_box .form-check-input:hover, .check_box .form-check-input:checked {
  background-color: #EC6608;
}
.check_box label {
  color: #000;
  cursor: pointer;
  font: 600 16px/20px "Mulish";
  vertical-align: -5px;
}
@media screen and (max-width: 767px) {
  .check_box label {
    font: 600 14px/18px "Mulish";
  }
}
.check_box label small {
  white-space: nowrap;
}
.check_box label span {
  font: 600 12px/16px "Mulish";
}
.check_box label strong {
  color: #8B7BF9;
  font-weight: 600;
}
.check_box label strong strong {
  color: #F4811F;
  font-weight: 600;
}

.cstmBtn1 {
  min-width: 131px;
    height: 42px;
    border: 1px solid #F4811F;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    background-color: #fff;
    color: #F4811F;
    font: 600 14px/18px "Mulish";
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    /* margin-right: 37%; */
    margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  .cstmBtn1 {
    min-width: 130px;
    height: 46px;
    font: 600 14px/18px "Mulish";
  }
}
.cstmBtn1:hover {
  border-color: #F4811F;
  background-color: #F4811F;
  color: #fff;
}
.cstmBtn1.curved {
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
}
.cstmBtn1.filled {
  color: #fff;
  background-color: #F4811F;
}
.cstmBtn1.filled:hover {
  border-color: #F4811F;
  background-color: #fff;
  color: #F4811F;
}

.common_modal .modal-content {
  padding: 15px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    width: 410px;
    height: auto;
    left: 29px;
  
}
/* @media screen and (max-width: 767px) {
  .common_modal .modal-content {
    padding: 20px;
    border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  width: 357px;
  height: auto;
  }
} */
@media screen and (max-width: 767px) {
  .common_modal .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    width: 357px;
    height: auto;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}
.common_modal .modal-content .modal-header {
  padding: 0;
  border: 0;
  display: flex;
  align-items: baseline;
}
.common_modal .modal-content .modal-header .btn-close {
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.common_modal .modal-content .modal-body {
  padding: 0;
}
.common_modal .modal-content .modal-footer {
  padding: 0;
  border: 0;
}
@media screen and (min-width: 768px) {
  .common_modal#vehicleDetails .modal-dialog {
    width: 650px;
  }
}
.common_modal#ncbDetails .modal-content, .common_modal#sendPayLink .modal-content, .common_modal#alertModal .modal-content, .common_modal#breakIn .modal-content {
  padding: 0;
}
.common_modal#ncbDetails .modal-content .modal-header, .common_modal#sendPayLink .modal-content .modal-header, .common_modal#alertModal .modal-content .modal-header, .common_modal#breakIn .modal-content .modal-header {
  padding: 24px;
  border-bottom: 1px solid #F4811F;
}
@media screen and (max-width: 767px) {
  .common_modal#ncbDetails .modal-content .modal-header, .common_modal#sendPayLink .modal-content .modal-header, .common_modal#alertModal .modal-content .modal-header, .common_modal#breakIn .modal-content .modal-header {
    padding: 16px;
  }
}
.common_modal#ncbDetails .modal-content .modal-header .modal-title, .common_modal#sendPayLink .modal-content .modal-header .modal-title, .common_modal#alertModal .modal-content .modal-header .modal-title, .common_modal#breakIn .modal-content .modal-header .modal-title {
  margin: 0 !important;
  color: #F4811F;
  font: 700 20px/24px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#ncbDetails .modal-content .modal-header .modal-title, .common_modal#sendPayLink .modal-content .modal-header .modal-title, .common_modal#alertModal .modal-content .modal-header .modal-title, .common_modal#breakIn .modal-content .modal-header .modal-title {
    font: 700 16px/20px "Mulish";
  }
}
.common_modal#ncbDetails .modal-content .modal-body, .common_modal#sendPayLink .modal-content .modal-body, .common_modal#alertModal .modal-content .modal-body, .common_modal#breakIn .modal-content .modal-body {
  padding: 22px;
}
@media screen and (max-width: 767px) {
  .common_modal#ncbDetails .modal-content .modal-body, .common_modal#sendPayLink .modal-content .modal-body, .common_modal#alertModal .modal-content .modal-body, .common_modal#breakIn .modal-content .modal-body {
    padding: 16px;
  }
}
.common_modal#ncbDetails .modal-content .modal-body .radio_box .form-check-inline, .common_modal#sendPayLink .modal-content .modal-body .radio_box .form-check-inline, .common_modal#alertModal .modal-content .modal-body .radio_box .form-check-inline, .common_modal#breakIn .modal-content .modal-body .radio_box .form-check-inline {
  margin-right: 25px;
}
.common_modal#ncbDetails .modal-content .modal-body h6, .common_modal#sendPayLink .modal-content .modal-body h6, .common_modal#alertModal .modal-content .modal-body h6, .common_modal#breakIn .modal-content .modal-body h6 {
  margin: 0 0 50px;
  color: #000;
  font: 700 17px/23px "Mulish";
  text-align: center;
}
.common_modal#premBreakup .modal-content, .common_modal#premBreakupSch .modal-content {
  padding: 0;
}
.common_modal#premBreakup .modal-content .modal-header,
.common_modal#premBreakup .modal-content .modal-footer, .common_modal#premBreakupSch .modal-content .modal-header,
.common_modal#premBreakupSch .modal-content .modal-footer {
  padding: 20px;
}
@media screen and (max-width: 1199px) {
  .common_modal#premBreakup .modal-content .modal-header,
  .common_modal#premBreakup .modal-content .modal-footer, .common_modal#premBreakupSch .modal-content .modal-header,
  .common_modal#premBreakupSch .modal-content .modal-footer {
    padding: 8px 16px;
  }
}
.common_modal#premBreakup .modal-content .modal-body .row:first-child, .common_modal#premBreakupSch .modal-content .modal-body .row:first-child {
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1200px) {
  .common_modal#premBreakup .modal-content .modal-body .col-xl-4:nth-child(2), .common_modal#premBreakupSch .modal-content .modal-body .col-xl-4:nth-child(2) {
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }
}
@media screen and (min-width: 1200px) {
  .common_modal#premBreakup .modal-content .modal-body table, .common_modal#premBreakupSch .modal-content .modal-body table {
    margin-bottom: 0;
  }
}
.common_modal#premBreakup .modal-content .modal-body table thead tr th, .common_modal#premBreakupSch .modal-content .modal-body table thead tr th {
  padding: 15px 5px;
  background-color: #013366;
  color: #fff;
  font: 600 20px/26px "Mulish";
  text-align: center;
}
@media screen and (max-width: 991px) {
  .common_modal#premBreakup .modal-content .modal-body table thead tr th, .common_modal#premBreakupSch .modal-content .modal-body table thead tr th {
    padding: 10px 5px;
    font: 600 16px/22px "Mulish";
  }
}
.common_modal#premBreakup .modal-content .modal-body table tbody tr td, .common_modal#premBreakupSch .modal-content .modal-body table tbody tr td {
  color: #282828;
  font: 600 13px/16px "Mulish";
}
@media screen and (max-width: 991px) {
  .common_modal#premBreakup .modal-content .modal-body table tbody tr td, .common_modal#premBreakupSch .modal-content .modal-body table tbody tr td {
    padding: 5px 10px;
    font: 600 12px/14px "Mulish";
  }
}
.common_modal#premBreakup .modal-content .modal-body table tbody tr td:last-child, .common_modal#premBreakupSch .modal-content .modal-body table tbody tr td:last-child {
  text-align: right;
  white-space: nowrap;
}
.common_modal#premBreakup .modal-content .modal-body table tbody tr td.highlight, .common_modal#premBreakupSch .modal-content .modal-body table tbody tr td.highlight {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background-color: #F0F1FF;
  font-weight: 800;
}
.common_modal#premBreakup .modal-content .modal-body table tfoot tr th, .common_modal#premBreakupSch .modal-content .modal-body table tfoot tr th {
  padding-top: 20px;
  font: 800 18px/24px "Mulish";
}
.common_modal#premBreakup .modal-content .modal-body table tfoot tr td, .common_modal#premBreakupSch .modal-content .modal-body table tfoot tr td {
  padding-top: 20px;
  font: 800 18px/24px "Mulish";
  text-align: right;
}
@media screen and (max-width: 991px) {
  .common_modal#premBreakup .modal-content .modal-body table tfoot tr th, .common_modal#premBreakup .modal-content .modal-body table tfoot tr td, .common_modal#premBreakupSch .modal-content .modal-body table tfoot tr th, .common_modal#premBreakupSch .modal-content .modal-body table tfoot tr td {
    font: 800 14px/20px "Mulish";
  }
}
@media screen and (max-width: 1199px) {
  .common_modal#premBreakup .modal-content .modal-footer, .common_modal#premBreakupSch .modal-content .modal-footer {
    padding: 8px;
  }
}
.common_modal#addRemoveCovers .modal-content {
  padding: 0;
}
.common_modal#addRemoveCovers .modal-content .modal-header {
  padding: 24px;
  border-bottom: 1px solid #F4811F;
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-header {
    padding: 16px;
  }
}
.common_modal#addRemoveCovers .modal-content .modal-header .modal-title {
  margin: 0 !important;
  color: #F4811F;
  font: 700 20px/24px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-header .modal-title {
    font: 700 16px/20px "Mulish";
  }
}
.common_modal#addRemoveCovers .modal-content .modal-body {
  padding: 0;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover {
  padding: 24px;
  border-bottom: 1px solid #E9E9E9;
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover {
    padding: 16px;
  }
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover:last-child {
  border-bottom: 0;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title h5 {
  margin: 0;
  color: #000;
  font: 700 18px/22px "Mulish";
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title button {
  padding: 7px 14px;
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #EAEAEA;
  color: #000;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  font: 600 14px/18px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title button {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: #AF2A30 url(../images/minus.png) no-repeat center center/10px;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title button span {
    display: none;
  }
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title button.add {
  background-color: #013366;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .title button.add {
    background: #17A71C url(../images/plus.png) no-repeat center center/10px;
  }
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover p, .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover ol, .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover ul {
  color: #000;
  font: 600 14px/18px "Mulish";
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover p li, .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover ol li, .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover ul li {
  margin-bottom: 3px;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .pointers {
  margin-top: 24px;
  display: none;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .pointers h6 {
  margin-bottom: 15px;
  color: #000;
  font: 700 16px/20px "Mulish";
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .pointers ol, .common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .pointers ul {
  padding-left: 24px;
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .collapseBtn {
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  background: none;
  color: #AF2A30;
  font: 400 14px/18px "Mulish";
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .collapseBtn::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 1px 0 0 3px;
  background: url(../images/up-arrow.svg) no-repeat center center/contain;
  transform: rotate(180deg);
}
.common_modal#addRemoveCovers .modal-content .modal-body .addionalCover .collapseBtn.less::after {
  transform: none;
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .radioSwitch_box .innerDiv {
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .common_modal#addRemoveCovers .modal-content .modal-body .radioSwitch_box .innerDiv label {
    border: 1px solid #B2B2B2;
    margin-bottom: 5px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
  }
}
.common_modal#addRemoveCovers .modal-content .modal-footer {
  padding: 14px;
  box-shadow: 0 -3px 9px 0 rgba(0, 0, 0, 0.2196078431);
  -webkit-box-shadow: 0 -3px 9px 0 rgba(0, 0, 0, 0.2196078431);
  -moz-box-shadow: 0 -3px 9px 0 rgba(0, 0, 0, 0.2196078431);
}
.common_modal#addRemoveCovers .modal-content .modal-footer h2 {
  margin: 0 14px 0 0 !important;
}
.common_modal#idvModal .modal-content {
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .common_modal#idvModal .modal-content {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .common_modal#idvModal .modal-content .modal-body .slideeDiv {
    padding: 20px 20px 50px;
    border-bottom: 1px solid #EAEAEA;
  }
}
@media screen and (min-width: 992px) {
  .common_modal#idvModal .modal-content .modal-body .slideeDiv {
    padding: 20px 20px 30px;
    border: 1px solid #013366;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
  }
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .input_field input {
  padding-left: 15px;
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .input_field::before {
  content: "₹";
  position: absolute;
  top: 30px;
  left: 0;
  color: #000 !important;
  font: 600 17px/20px "Mulish";
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .input_field + small {
  margin-top: 5px;
  display: block;
  color: #B6B4B4;
  font: 400 12px/14px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#idvModal .modal-content .modal-body .slideeDiv .input_field + small {
    font: 400 10px/12px "Mulish";
  }
}
@media screen and (max-width: 767px) {
  .common_modal#idvModal .modal-content .modal-body .slideeDiv .rangeDiv {
    margin-top: -12px;
  }
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .rangeDiv .within {
  width: 40%;
  position: relative;
  top: -8px;
  right: 3px;
  float: right;
  color: #282828;
  font: 500 12px/14px "Mulish";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common_modal#idvModal .modal-content .modal-body .slideeDiv .rangeDiv .within {
    font: 600 10px/14px "Mulish";
  }
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .rangeDiv .within::before {
  content: "";
  width: 100%;
  height: 5px;
  border: 1px solid #F4811F;
  border-top: 0;
  margin-bottom: 8px;
  display: block;
}
.common_modal#idvModal .modal-content .modal-body .slideeDiv .rangeDiv .within::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 6px solid #F4811F;
  border-bottom: 0;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .common_modal#idvModal .modal-content .modal-body .col-12 {
    padding: 5px 20px 20px;
  }
}
.common_modal#idvModal .modal-content .modal-body .col-12 h6 {
  margin: 15px 0 25px;
  color: #282828;
  font: 700 16px/20px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#idvModal .modal-content .modal-body .col-12 h6 {
    font: 700 14px/18px "Mulish";
  }
}
.common_modal#idvModal .modal-content .modal-body .col-12 p {
  color: #282828;
  font: 400 14px/18px "Mulish";
}
@media screen and (max-width: 767px) {
  .common_modal#idvModal .modal-content .modal-body .col-12 p {
    font: 400 12px/16px "Mulish";
  }
}

.blueBox {
  border: 1px solid #013366;
  margin-bottom: 16px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  overflow: hidden;
}
.blueBox h4 {
  padding: 16px 24px;
  margin: 0;
  background-color: #013366;
  color: #fff;
  font: 700 22px/28px "Mulish";
}
@media screen and (max-width: 991px) {
  .blueBox h4 {
    padding: 12px 16px;
    background-color: #fff;
    color: #F4811F;
    font: 700 18px/22px "Mulish";
  }
}
.blueBox h5 {
  padding: 24px 24px 0;
  color: #282828;
  font: 600 20px/25px "Mulish";
}
@media screen and (max-width: 991px) {
  .blueBox h5 {
    padding: 12px 16px;
    color: #F4811F;
    font: 700 18px/22px "Mulish";
  }
}
.blueBox h6 {
  margin: 0 0 18px;
  color: #F4811F;
  font: 700 20px/24px "Mulish";
}
@media screen and (max-width: 991px) {
  .blueBox h6 {
    font: 700 16px/20px "Mulish";
  }
}
.blueBox .content_box {
  padding: 24px;
}
@media screen and (max-width: 991px) {
  .blueBox .content_box {
    padding: 0 16px;
  }
}
.blueBox .content_box .tabs_box ul {
  border-bottom: 1px solid #EAEAEA;
}
.blueBox .content_box .tabs_box ul li .nav-link {
  padding: 5px 0;
  color: #969494;
  font: 600 14px/18px "Mulish";
}
.blueBox .content_box .tabs_box ul li .nav-link.active {
  border-color: #F4811F;
  color: #000;
}
@media screen and (min-width: 992px) {
  .blueBox .content_box .tabs_box .tab-content {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .blueBox .content_box .tabs_box .tab-content .tab-pane {
    width: 50%;
    display: initial;
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .blueBox .content_box .tabs_box .tab-content .tab-pane {
    padding: 10px 0;
  }
}
@media screen and (max-width: 991px) {
  .blueBox .content_box .tabs_box .tab-content .tab-pane .radio_box span {
    display: none;
  }
}
.blueBox .content_box .tabs_box .tab-content .tab-pane .radio_box .form-check-inline {
  margin-right: 50px;
  margin-bottom: 10px;
}
.blueBox .content_box .tabs_box .tab-content .tab-pane .radio_box label {
  font: 600 14px/18px "Mulish";
}
.blueBox .content_box .input_field + small {
  margin-top: 4px;
  display: block;
  color: #F4811F;
  font: 600 11px/13px "Mulish";
}
.blueBox table {
  margin: 0 0 8px;
}
.blueBox table tr th, .blueBox table tr td {
  vertical-align: middle;
}
.blueBox table thead tr {
  border-bottom: 1px solid #E9E9E9;
}
.blueBox table thead tr th {
  padding: 15px;
  color: #F4811F;
  font: 700 20px/26px "Mulish";
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .blueBox table thead tr th {
    font: 700 18px/22px "Mulish";
  }
}
.blueBox table thead tr td {
  padding: 15px;
  white-space: nowrap;
}
.blueBox table tbody tr td {
  padding: 8px 15px;
  color: #282828;
  font: 700 14px/18px "Mulish";
}
.blueBox table tbody tr th {
  padding: 15px;
  font: 700 18px/22px "Mulish";
}
@media screen and (max-width: 767px) {
  .blueBox table tbody tr th {
    font: 700 16px/20px "Mulish";
  }
}
.blueBox table tfoot tr {
  background-color: #013366;
}
.blueBox table tfoot tr th {
  padding: 15px;
  background-color: #013366;
  color: #fff;
  font: 700 18px/24px "Mulish";
  vertical-align: middle;
}
.blueBox table tfoot tr td {
  padding: 15px;
  background-color: #013366;
  color: #F4811F;
  font: 700 18px/24px "Mulish";
}
.blueBox table tfoot tr td button {
  font: 600 12px/16px "Mulish";
}

.plans_box {
  padding: 24px 14px 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  position: relative;
  background-color: #F0F1FF;
}
.plans_box h2 {
  padding: 0 10px;
  margin-bottom: 80px !important;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .plans_box h2 {
    padding: 0;
    margin-bottom: 30px !important;
  }
}
.plans_box .idv_box {
  width: 300px;
  border: 1px solid #013366;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  position: absolute;
  top: 24px;
  right: 28px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plans_box .idv_box {
    width: 180px;
    top: 14px;
    right: 14px;
  }
}
.plans_box .idv_box h6 {
  padding: 7px 20px;
  margin: 0;
  background-color: #013366;
  color: #fff;
  font: 400 13px/16px "Mulish";
}
@media screen and (max-width: 767px) {
  .plans_box .idv_box h6 {
    padding: 5px 12px;
    font-size: 12px;
  }
}
.plans_box .idv_box .pricing {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .plans_box .idv_box .pricing {
    padding: 7px 12px;
  }
}
.plans_box .idv_box .pricing h2 {
  padding: 0;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .plans_box .idv_box .pricing h2 {
    font: 700 18px/22px "Mulish";
  }
}
@media screen and (max-width: 767px) {
  .plans_box .idv_box .pricing .editBtn {
    font: 600 14px/18px "Mulish";
  }
}
.plans_box .allPlans label {
  padding: 15px 10px 20px;
}
.plans_box .allPlans label .plan_inner {
  width: 255px;
  border: 2px solid transparent;
  border-radius: 30px 30px 28px 28px;
  -webkit-border-radius: 30px 30px 28px 28px;
  -moz-border-radius: 30px 30px 28px 28px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
.plans_box .allPlans label .plan_inner:hover {
  border: 2px solid #013366;
  box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
  -webkit-box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
  -moz-box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
}
.plans_box .allPlans label .plan_inner .heading {
  padding: 50px 16px 20px;
  border-radius: 28px 28px 0 0;
  -webkit-border-radius: 28px 28px 0 0;
  -moz-border-radius: 28px 28px 0 0;
  position: relative;
  background-color: #013366;
  cursor: pointer;
}
.plans_box .allPlans label .plan_inner .heading .cover {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.plans_box .allPlans label .plan_inner .heading .cover small::before {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  left: -7px;
  top: 0;
  background: #E77203;
}
.plans_box .allPlans label .plan_inner .heading .cover small::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 11px;
  left: -11px;
  top: 0;
  border-radius: 8px 8px 0 0;
  background: #AF2A30;
}
.plans_box .allPlans label .plan_inner .heading .cover small:last-child::before {
  right: -7px;
  left: initial;
}
.plans_box .allPlans label .plan_inner .heading .cover small:last-child::after {
  right: -11px;
  left: initial;
}
.plans_box .allPlans label .plan_inner .heading .cover span {
  width: 140px;
  height: 30px;
  border-radius: 0 0 30px 30px;
  -webkit-border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent linear-gradient(180deg, #EF7D00 0%, #AD2221 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font: 600 14px/18px "Mulish";
}
.plans_box .allPlans label .plan_inner .heading h5 {
  margin: 0;
  color: #fff;
  font: 700 18px/23px "Mulish";
}
.plans_box .allPlans label .plan_inner .content {
  height: 300px;
  padding: 16px;
  border-radius: 0 0 28px 28px;
  -webkit-border-radius: 0 0 28px 28px;
  -moz-border-radius: 0 0 28px 28px;
  background-color: #fff;
  overflow: hidden;
}
.plans_box .allPlans label .plan_inner .content .premium small {
  display: block;
  color: #282828;
  font: 600 14px/18px "Mulish";
}
.plans_box .allPlans label .plan_inner .content .premium h6 {
  margin: 0;
  color: #F4811F;
  font: 700 30px/40px "Mulish";
}
.plans_box .allPlans label .plan_inner .content .benefits {
  margin: 20px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plans_box .allPlans label .plan_inner .content .benefits span {
  color: #F4811F;
  font: 600 14px/18px "Mulish";
}
.plans_box .allPlans label .plan_inner .content .benefits button {
  padding: 5px 7px;
  height: 24px;
  border: 1px solid #013366;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: none;
  color: #282828;
  font: 400 12px/12px "Mulish";
}
.plans_box .allPlans label .plan_inner .content table tr th {
  padding: 3px 0;
  color: #000;
  font: 600 14px/18px "Mulish";
  vertical-align: middle;
}
.plans_box .allPlans label .plan_inner .content table tr td {
  padding: 3px 0;
  text-align: right;
}
.plans_box .allPlans input[type=radio] {
  display: none;
}
.plans_box .allPlans input[type=radio]:checked + label .plan_inner {
  border: 2px solid #013366;
  box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
  -webkit-box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
  -moz-box-shadow: 0 3px 24px 0 rgba(1, 51, 102, 0.6509803922);
}
.plans_box .allPlans input[type=radio]:checked + label .plan_inner .heading::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 20px;
  background: url(../images/check.png) no-repeat center center/contain;
}

.stepper_steps {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .stepper_steps {
    width: 100%;
  }
}
.stepper_steps .step-steps {
  --default-b: #D2D2D2;
  --default-c: black;
  --active-b: #F4811F;
  --active-c: white;
  --circle: 24px; /* size of circle */
  --b: 2px; /* line thickness */
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(var(--default-b) 0 0) no-repeat 50% calc((var(--circle) - var(--b)) / 2)/calc(100% - 25px) var(--b);
  counter-reset: step;
  font-size: 10px;
  font-weight: 700;
  overflow: hidden;
}
.stepper_steps .step-steps li {
  display: grid;
  place-items: center;
  gap: 5px;
  position: relative;
  color: var(--active-b);
  pointer-events: none;
}
.stepper_steps .step-steps li::before {
  height: var(--circle);
  border: 2px solid var(--active-b);
  margin-left: -4px;
  content: counter(step) " ";
  counter-increment: step;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: grid;
  z-index: 1;
  place-content: center;
  aspect-ratio: 1;
  background: var(--active-b);
  box-shadow: inset 0 0 0 3px #fff;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  -moz-box-shadow: inset 0 0 0 3px #fff;
  color: var(--active-b);
  font-size: 0;
}
@media screen and (max-width: 991px) {
  .stepper_steps .step-steps li::before {
    background: #fff;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    color: var(--active-b);
  }
}
.stepper_steps .step-steps li.active::after {
  content: "";
  width: 100vw;
  height: var(--b);
  position: absolute;
  top: calc((var(--circle) - var(--b)) / 2);
  right: 80%;
  background: var(--active-b);
}
@media screen and (max-width: 991px) {
  .stepper_steps .step-steps li {
    font-size: 0;
  }
  .stepper_steps .step-steps li::before {
    margin-left: 0;
    font: 600 14px/18px "Mulish";
  }
}
.stepper_steps .step-steps li.active ~ li {
  color: var(--default-b);
}
.stepper_steps .step-steps li.active ~ li::before {
  border: 2px solid var(--default-b);
  background: #fff;
  color: var(--default-b);
}

@media screen and (max-width: 991px) {
  .stepper_steps_mobile {
    margin: -10px 0 10px;
  }
}

.step-app .step-content .step-tab-panel {
  display: none;
}
.step-app .step-content .step-tab-panel.active {
  display: block;
}
.step-app .step-content .step-tab-panel[data-step=step1] .step-footer, .step-app .step-content .step-tab-panel[data-step=step3] .step-footer {
  background-color: #fff;
  box-shadow: 0 6px 31px 0 rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 6px 31px 0 rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 6px 31px 0 rgba(0, 0, 0, 0.1607843137);
}
.step-app .step-content .step-tab-panel[data-step=step1] .step-footer h2, .step-app .step-content .step-tab-panel[data-step=step3] .step-footer h2 {
  margin: 0 15px 0 0 !important;
}
.step-app .step-content .step-tab-panel[data-step=step3] .col-lg-8 .blueBox table thead tr th {
  background-color: #013366;
  color: #fff;
}
.step-app .step-content .step-tab-panel[data-step=step3] .col-lg-8 .blueBox table tfoot tr th {
  padding: 8px 15px;
  background-color: #fff;
  color: #282828;
  font: 700 14px/18px "Mulish";
}
.step-app .step-content .step-tab-panel[data-step=step3] .col-lg-8 .blueBox table tfoot tr td {
  padding: 8px 15px;
  background-color: #fff;
  color: #F4811F;
  font: 700 24px/32px "Mulish";
}
.step-app .step-content .step-tab-panel[data-step=step3] .col-lg-8 .blueBox table tfoot tr td button {
  float: right;
}
@media screen and (max-width: 991px) {
  .step-app .step-content .step-tab-panel[data-step=step3] .col-lg-4 .blueBox table thead tr th {
    background-color: #013366;
    color: #fff;
  }
}
.step-app main {
  margin-bottom: 0;
}

.editBtn {
  padding: 0;
  border: 0;
  background: none;
  color: #8B7BF9;
  font: 600 16px/20px "Mulish";
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .editBtn {
    font: 600 14px/18px "Mulish";
  }
}

.viewVehicleInfo {
  width: 100%;
  padding: 9px;
  border: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  display: block;
  background-color: #013366;
  color: #fff;
  font: 600 14px/20px "Mulish";
}

.orange {
  color: #F4811F !important;
}

.offcanvas {
  max-width: 90%;
  top: 51px !important;
  background-color: #F0F1FF;
}
@media screen and (min-width: 768px) {
  .offcanvas {
    top: 81px !important;
  }
}
.offcanvas .offcanvas-header .btn-close {
  padding: 5px;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.offcanvas .offcanvas-body {
  padding: 15px 0;
}
.offcanvas .offcanvas-body .blueBox {
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  overflow: initial;
}
.offcanvas .offcanvas-body .blueBox table {
  --bs-table-bg: transparent;
}
.offcanvas .offcanvas-body .blueBox table thead tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.offcanvas .offcanvas-body .blueBox table thead tr th {
  font: 700 17px/22px "Mulish";
}
.offcanvas .offcanvas-body .blueBox table tbody tr td {
  font-size: 13px;
}

.rangeDiv .irs-with-grid .irs-line {
  height: 3px;
  border: 0;
  background: #B6B4B4;
}
.rangeDiv .irs-with-grid .irs-bar {
  height: 3px;
  border: 0;
  background: #F4811F;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.rangeDiv .irs-with-grid .irs-handle {
  width: 20px;
  height: 20px;
  border-color: #fff;
  background: #F4811F;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.rangeDiv .irs-with-grid .irs-grid {
  bottom: 14px;
}
.rangeDiv .irs-with-grid .irs-grid .irs-grid-pol {
  height: 20px;
  background-color: #B6B4B4;
}
.rangeDiv .irs-with-grid .irs-grid .irs-grid-pol:first-child, .rangeDiv .irs-with-grid .irs-grid .irs-grid-pol:nth-last-child(2) {
  background-color: #F4811F;
}
.rangeDiv .irs-with-grid .irs-grid .irs-grid-pol.small {
  height: 17px;
}
.rangeDiv .irs-with-grid .irs-grid-text,
.rangeDiv .irs-with-grid .irs-single {
  display: none;
}
.rangeDiv .irs-with-grid .irs-min,
.rangeDiv .irs-with-grid .irs-max {
  width: 120px;
  height: 40px;
  border: 1px solid #013366;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: -25px;
  background-color: #fff;
  color: #000;
  font: 600 14px/18px "Mulish";
  visibility: visible !important;
}
@media screen and (max-width: 767px) {
  .rangeDiv .irs-with-grid .irs-min,
  .rangeDiv .irs-with-grid .irs-max {
    width: 100px;
    height: 25px;
    top: -10px;
    font: 600 13px/17px "Mulish";
  }
}

.payment_box span {
  margin-top: 20px;
  display: block;
  color: #000;
  font: 700 18px/22px "Mulish";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .payment_box span {
    font: 700 14px/18px "Mulish";
  }
}
.payment_box .premium {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .payment_box .premium {
    flex-direction: column;
    gap: 7px;
  }
}
.payment_box .premium small {
  color: #013366;
  font: 700 20px/24px "Mulish";
}
@media screen and (max-width: 767px) {
  .payment_box .premium small {
    font: 700 18px/22px "Mulish";
  }
}
.payment_box .premium h2 {
  margin: 0 !important;
}
.payment_box ul {
  padding: 0;
  margin: 40px 0 10px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .payment_box ul {
    flex-direction: column;
    gap: 20px;
  }
}
.payment_box ul li button {
  width: 150px;
  height: 150px;
  border: 1px solid #000;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  background: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .payment_box ul li button {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #B6B4B4;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    flex-direction: row;
    gap: 24px;
    justify-content: flex-start;
  }
}
.payment_box ul li button .imgDiv {
  width: 100%;
  height: 65px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .payment_box ul li button .imgDiv {
    width: 36px;
    height: 36px;
  }
}
.payment_box ul li button .imgDiv svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #000;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .payment_box ul li button .imgDiv svg {
    width: 36px;
  }
}
.payment_box ul li button strong {
  color: #000;
  font: 700 16px/20px "Mulish";
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
.payment_box ul li button:hover {
  border: 1px solid #F4811F;
}
.payment_box ul li button:hover .imgDiv svg {
  fill: #F4811F;
}
.payment_box ul li button:hover strong {
  color: #013366;
}

@media screen and (max-width: 991px) {
  .success_box .imgDiv img {
    width: 250px;
  }
}
.success_box .transDetails {
  border: 1px solid #013366;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .success_box .transDetails {
    padding-top: 10px;
    border: 0;
    margin-top: 20px;
    background-color: #F0F2F8;
  }
}
@media screen and (max-width: 991px) {
  .success_box .transDetails table {
    --bs-table-bg: transparent;
  }
}
.success_box .transDetails table thead tr th {
  padding: 10px 15px;
  border-bottom: 1px solid #EAEAEA;
  color: #013366;
  font: 700 18px/22px "Mulish";
}
@media screen and (max-width: 991px) {
  .success_box .transDetails table thead tr th {
    border-bottom: 0;
  }
}
.success_box .transDetails table tbody tr th {
  padding: 5px 15px;
  color: #000;
  font: 700 16px/20px "Mulish";
}
@media screen and (max-width: 991px) {
  .success_box .transDetails table tbody tr th {
    font: 700 14px/18px "Mulish";
  }
}
.success_box .transDetails table tbody tr td {
  padding: 5px 15px;
  color: #000;
  font: 400 16px/20px "Mulish";
  text-align: right;
}
@media screen and (max-width: 991px) {
  .success_box .transDetails table tbody tr td {
    font: 400 14px/18px "Mulish";
  }
}
.success_box .successTrans {
  height: 100%;
  border: 1px solid #013366;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .success_box .successTrans {
    border: 0;
  }
}
.success_box .successTrans h5 {
  padding: 20px 10px;
  margin: 0;
  border-bottom: 1px solid #EAEAEA;
  color: #F4811F;
  font: 700 24px/32px "Mulish";
  text-align: center;
}
@media screen and (max-width: 991px) {
  .success_box .successTrans h5 {
    padding: 10px 0;
    border-bottom: 0;
    text-align: left;
    font: 800 18px/22px "Mulish";
  }
}
.success_box .successTrans h6 {
  padding: 10px 20px;
  margin: 0;
  color: #F4811F;
  font: 700 16px/20px "Mulish";
  text-align: right;
}
@media screen and (max-width: 991px) {
  .success_box .successTrans h6 {
    padding: 0;
    margin: 0 0 14px;
    text-align: left;
    font: 600 16px/20px "Mulish";
  }
}
.success_box .successTrans table {
  margin-bottom: 77px;
}
@media screen and (max-width: 991px) {
  .success_box .successTrans table {
    margin-bottom: 0;
  }
}
.success_box .successTrans table thead tr th {
  padding: 10px 20px;
  border-bottom: 1px solid #EAEAEA;
  color: #013366;
  font: 700 18px/22px "Mulish";
}
@media screen and (max-width: 991px) {
  .success_box .successTrans table thead tr th {
    padding: 10px 0;
    border-bottom: 0;
  }
}
.success_box .successTrans table tbody tr th {
  padding: 8px 20px;
  color: #000;
  font: 400 16px/20px "Mulish";
}
.success_box .successTrans table tbody tr td {
  padding: 8px 20px;
  color: #000;
  font: 700 16px/20px "Mulish";
  text-align: right;
}
@media screen and (max-width: 991px) {
  .success_box .successTrans table tbody tr th, .success_box .successTrans table tbody tr td {
    padding: 5px 0;
  }
}
.success_box p {
  padding: 20px;
  border-top: 1px solid #EAEAEA;
  color: #000;
  font: 400 16px/20px "Mulish";
}
@media screen and (max-width: 991px) {
  .success_box p {
    padding: 15px 0;
    border-top: 0;
    margin: 0;
  }
}

.customer_details .blueBox {
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
}
.customer_details .blueBox h4 {
  border-bottom: 1px solid #EAEAEA;
  background-color: transparent;
  color: #F4811F;
}
.customer_details .blueBox h4 strong {
  color: #013366;
  font: 700 20px/24px "Mulish";
}
@media screen and (max-width: 991px) {
  .customer_details .blueBox h4 strong {
    font: 700 14px/18px "Mulish";
  }
}
.customer_details .blueBox .radioSwitch_box span {
  color: #000;
  font-weight: 700;
}
.customer_details .blueBox p {
  color: #AF2A30;
  font: italic 400 14px/18px "Mulish";
}

@media screen and (max-width: 991px) {
  .summary_details > .blueBox {
    border: 1px solid #E9E9E9;
  }
}
@media screen and (max-width: 991px) {
  .summary_details > .blueBox > h4 {
    background-color: #013366;
    color: #fff;
  }
}
.summary_details > .blueBox .content_box {
  padding: 0 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .summary_details > .blueBox .content_box {
    padding: 15px 10px;
  }
}
@media screen and (min-width: 992px) {
  .summary_details > .blueBox .content_box .row {
    border-bottom: 1px solid #EAEAEA;
  }
}
@media screen and (min-width: 992px) {
  .summary_details > .blueBox .content_box .row .col-lg-6:first-child {
    border-right: 1px solid #EAEAEA;
  }
}
@media screen and (min-width: 992px) {
  .summary_details > .blueBox .content_box .row .col-lg-6 > .blueBox {
    border: 0;
  }
}
@media screen and (min-width: 992px) {
  .summary_details > .blueBox .content_box table thead tr {
    border-bottom: 0;
  }
}
.summary_details > .blueBox .content_box table tbody tr td {
  vertical-align: top;
}
.summary_details > .blueBox .content_box table tbody tr td:first-child {
  font: 600 14px/18px "Mulish";
}
.summary_details > .blueBox .content_box table tbody tr td:last-child {
  width: 40%;
  font: 800 14px/18px "Mulish";
  text-align: right;
}
@media screen and (max-width: 991px) {
  .summary_details > .blueBox .content_box table tbody tr td:last-child {
    width: 50%;
  }
}

.trans_details .common_box {
  padding: 0;
  border: 0;
}
.trans_details .common_box .blueBox {
  border: 0;
}
@media screen and (max-width: 991px) {
  .trans_details .common_box .blueBox .content_box {
    padding: 15px;
  }
}
.trans_details .common_box .blueBox h4 {
  border-radius: 15px 15px 0px 0px;
  -webkit-border-radius: 15px 15px 0px 0px;
  -moz-border-radius: 15px 15px 0px 0px;
}
@media screen and (max-width: 991px) {
  .trans_details .common_box .blueBox h4 {
    background-color: #013366;
    color: #fff;
  }
}
.trans_details .common_box .blueBox table {
  margin-bottom: 0;
}
.trans_details .common_box .blueBox table tbody tr td {
  width: 50%;
}
@media screen and (min-width: 992px) {
  .trans_details .common_box .blueBox table tbody tr td {
    text-align: center;
  }
}
.trans_details .common_box .blueBox table tbody tr td:first-child {
  font: 600 14px/18px "Mulish";
}
.trans_details .common_box .blueBox table tbody tr td:last-child {
  font: 800 14px/18px "Mulish";
}
@media screen and (max-width: 991px) {
  .trans_details .common_box .blueBox table tbody tr td:last-child {
    text-align: right;
  }
}
.trans_details .common_box h5 {
  padding: 24px;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  margin: 0;
  color: #F4811F;
  font: 700 20px/24px "Mulish";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trans_details .common_box h5 {
    font: 700 16px/20px "Mulish";
  }
}
.trans_details .common_box h6 {
  padding: 24px;
  margin: 0;
  color: #000;
  font: 700 20px/24px "Mulish";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trans_details .common_box h6 {
    font: 700 16px/20px "Mulish";
  }
}
.trans_details .common_box h6 small {
  margin-top: 12px;
  display: block;
  font: 400 14px/18px "Mulish";
}
@media screen and (max-width: 767px) {
  .trans_details .common_box h6 small {
    font: 400 12px/16px "Mulish";
  }
}

@media screen and (max-width: 767px) {
  .upload_docs {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .upload_docs .blueBox {
    border: 0;
  }
}
.upload_docs p {
  padding: 24px 15px;
  margin: 0;
  color: #000;
  font: 700 20px/26px "Mulish";
}
@media screen and (min-width: 768px) {
  .upload_docs p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .upload_docs p {
    padding: 0 16px 16px;
    font: 700 16px/20px "Mulish";
  }
}
.upload_docs .innerDiv {
  padding: 32px 24px 24px;
  border-top: 1px solid #EAEAEA;
}
@media screen and (max-width: 767px) {
  .upload_docs .innerDiv {
    padding: 26px 16px 20px;
  }
}
.upload_docs .innerDiv h3 {
  margin: 0 0 24px;
  color: #F4811F;
  font: 700 18px/22px "Mulish";
}
@media screen and (max-width: 767px) {
  .upload_docs .innerDiv h3 {
    margin: 0 0 20px;
    font: 700 16px/20px "Mulish";
  }
}
.upload_docs .innerDiv table {
  margin-bottom: 0;
}
.upload_docs .innerDiv table tbody tr td:first-child {
  padding-left: 0;
  font: 600 14px/18px "Mulish";
}
.upload_docs .innerDiv table tbody tr td:last-child {
  font: 800 14px/18px "Mulish";
  text-align: right;
}

.fileLabel {
  margin-bottom: 8px;
  color: #013366;
  font: 800 14px/18px "Mulish";
}

.input_file {
  padding: 8px;
  border: 1px solid #F4811F;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  overflow: hidden;
}
.input_file input::file-selector-button {
  padding: 6px 20px;
  border: 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  background-color: #EAEAEA;
  font: 600 12px/16px "Mulish";
}
.input_file .form-control {
  border: 0;
  border-color: #F4811F;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  color: #000;
  font: 600 12px/16px "Mulish";
}/*# sourceMappingURL=style.css.map */

.common_modal .modal-content .modal-header .btn-close {
  --bs-btn-close-bg: url(../images/modal_close.svg);
  opacity: 1;
}
.otp_modal .modal-content .modal-header .btn-close {
  --bs-btn-close-bg: url(../images/modal_close.svg);
  opacity: 1;
}
.common_modal .modal-content .modal-body .checkList li {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  color: #000;
  font: 600 16px/16px "Mulish";
}
.common_modal .modal-content .modal-body .checkList li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 15px;
  background: url(../images/check.png) no-repeat left center/contain;
}
@media screen and (max-width: 420px) {
  .otp-input[_ngcontent-ng-c3470639301] {
    width: 39px !important;
    font-size: 19px !important;
    height: 35px !important;
  }
}
@media screen and (min-width: 768px) {
  .otp-input[_ngcontent-ng-c3470639301] {
      width: 42px !important;
      height: 39px !important;
      font-size: 20px !important;
  }
}
/* loader */
.backdrop {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: table-cell;
  height: 100vh;
}

.spinner {
  height: 60px;
  display: block;
  vertical-align: middle;
  margin: 46vh auto;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#loader_msg {
  font-size: 14px;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
      -webkit-transform: scale(0);
      background-color: rgba(4, 60, 111, 1);
  }
  40% {
      -webkit-transform: scale(1.0);
      background-color: rgba(4, 60, 111, 1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
      -webkit-transform: scale(0);
      transform: scale(0);
      background-color: rgba(4, 60, 111, 1);
  }
  40% {
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
      background-color: rgba(4, 60, 111, 1);
  }
}

/* loader */


/* P-Calendar */
.primeNg{
  width: 100% !important;
  border: none;
  box-shadow: none;
}
.p-button-icon-only{
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.primeNg .p-icon{
  color:#363636;
  width: 13px;
 
}
 
/* for calendar */
.p-datepicker table td>span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  transition: box-shadow 0.2s;
  border: 1px solid transparent;
  font: 600 12px "Mulish" !important;
  margin: 3px auto;
}
 .p-datepicker-header{
  padding: 0px;
}

 
.p-button-icon-only{
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.primeNg .p-icon{
  color:#363636;
  width: 13px;
 
}
 
p-calendar{
  border: none;
  padding: 0px;
}
.date_input{
  overflow: visible !important;
  border: none;
  border-bottom: 1px solid #F4811F;
  border-radius: 0;
}
/* P-Calendar */
.p-inputtext{
  height: 100%;
  padding-left: 0;
  /* padding: 6px; */
  border: 0;
  /* border-bottom: 1px solid #B6B4B4; */
  margin-top: 8px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background-color: transparent !important;
  box-shadow: 0 0 0 0 !important;
  -webkit-box-shadow: 0 0 0 0 !important;
  -moz-box-shadow: 0 0 0 0 !important;
  color: #ED5100 !important;
  font: 400 14px/18px "Mulish";
}
.p-datepicker table td{
  padding: 0.3rem;
}
.p-datepicker table td{
  padding: 0.2rem;
}
@media (max-width: 1200px) {
  .short-text { display: inline-block !important; }
  .full-text { display: none; }
}
.short-text { display: none; }

button.submit {
  border-color: #EC6608 !important;
  background-color: #EC6608 !important;
  color: #fff !important;
}

/* for calendar */
/* Define a fixed size for the p-calendar container */
button.p-datepicker-year{
  padding-top: 0%;
  padding-bottom: 0%;
}
button.p-datepicker-month{
  padding-top: 0%;
  padding-bottom: 0%;
}

@media screen and (max-width: 768px) {
  .p-datepicker table td>span {
    margin: 3px auto;
  }
}

.p-datepicker table th>span {
  font: 600 13px "Mulish" !important;
  color: black;
}

.p-datepicker table th {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

.p-datepicker-header {
  padding: 0px;
}

.p-datepicker {
  width: 250px;
  height: 245px;
  display: inline-block;
  font-family: "Inter var", sans-serif !important;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11" !important;
  padding: 1px;
}
.p-calendar .p-datepicker {
  min-width: 100px;
}
/* Ensure the calendar's inner elements fit within the fixed size */
 .p-calendar {
  width: 100%;
  height: 100%;
  box-sizing: border-box; 
}  
/* Adjust views to fit within the fixed size */
.ui-datepicker {
  width: 100% !important;
  height: 100% !important;
}

.ui-datepicker-calendar {
  width: 100%;
  height: 100%;
}

.ui-datepicker-header {
  width: 100%;
} 

.ui-datepicker-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
}

.ui-datepicker-month, .ui-datepicker-year {
  width: 100%;
}

.ui-datepicker-month-year-picker {
  width: 100%;
  height: 80%;
}

.ui-datepicker-month-year-picker table {
  width: 100%;
  height: 100%;
} 

.ui-datepicker-month-year-picker td {
  width: 25%;
  height: 25%;
}