@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Black.ttf");
  font-weight: 900;
  font-style: normal;
}

body {
    background-color:var(--bs-color-white);
    color: var(--bs-color-black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--bs-body-font-family);
    font-style: normal;
}

body,html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: all 0.6s;
    color: var(--bs-color-black);
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bs-color-deep-blue);
}

ul,li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
}

.btn-primary.focus, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus{
    box-shadow: none;
}
a:focus{
    outline: none;
    box-shadow: none;
}
a:hover {
    color: var(--bs-color-deep-blue);
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none;
}
.slick-prev:focus, .slick-next:focus {
    outline: none;
}
.dropdown-toggle:focus{
    outline: none;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}
input[type="text"], 
input[type="email"], 
input[type="url"], 
input[type="password"], 
input[type="search"], 
input[type="number"], 
input[type="tel"], 
input[type="range"], 
input[type="date"], 
input[type="month"], 
input[type="week"], 
input[type="time"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="color"], 
textarea, .form-control{
  padding: 5px 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
    font-size: 18px;
    height: 45px;
    width: 100%;
    background-color: var(--bs-color-white);
    border:2px solid var(--bs-color-grey-4);
    font-size: 14px;
    color: var(--bs-color-black);
    font-family: var(--bs-body-font-family);
}
select{
  background: url(../images/down-arrow.png)  right 20px center no-repeat;
  background-size: 16px;
}
textarea.form-control {
    padding-top: 13px;
    height: 96px;
}
label {
    font-size: 15px;
    color: var(--bs-color-grey);
    font-weight: 500;
}
.form-group {
    margin-bottom: 15px;
}
.mb-0 {
    margin-bottom: 0;
}
h1 {
    font-size: 52px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

.container {
  padding: 0 15px;
}
.container-fluid {
  padding: 0 15px;
}

/* button */
.btn {
  background: var(--bs-color-blue);
  color: var(--bs-color-white);
  border: 1px solid transparent;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid transparent;
  text-transform: uppercase;
  line-height: 0.8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.btn.md {
font-size: 21px;
}
.btn:hover ,.btn:focus{
  background: var(--bs-color-black);
  color: var(--bs-color-white);
}
.btn.white-btn {
  background: var(--bs-color-white);
  color: var(--bs-color-deep-blue);
  -webkit-box-shadow: 0 2px 3px 0 rgba(15,22,41,.2);
          box-shadow: 0 2px 3px 0 rgba(15,22,41,.2);
}
.btn.outline-primary {
border-color:var(--bs-color-white);
background: transparent;
}
.btn.outline-secondary {
  border-color:var(--bs-color-blue);
  background: transparent;
  color: var(--bs-color-blue);
}
.btn.outline-primary:hover,.btn.outline-secondary:hover {
  background: var(--bs-color-deep-blue);
  color: var(--bs-color-white);
  border-color:var(--bs-color-deep-blue);
}
.btn.white-btn:hover ,.btn.white-btn:focus{
  background: var(--bs-color-deep-blue);
  color: var(--bs-color-white);
}
.bg-white{
background-color: var(--bs-color-white);
}
.fs-sm{
font-size: 14px;
}
/* header */
.navbar {
position: static;
}
.navbar-toggler {
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9999;
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;     
}
.navbar-toggler-icon {
  width: auto;
  height: auto;
}
.navbar-toggler-icon .line {
width: 30px;
height: 3px;
background-color: var(--bs-color-white);
display: block;
margin: 6px auto;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.navbar-toggler.is-active .line:nth-child(2){
opacity: 0;
}

.navbar-toggler.is-active .line:nth-child(1){
-webkit-transform: translateY(9px) rotate(45deg);
-ms-transform: translateY(9px) rotate(45deg);
transform: translateY(9px) rotate(45deg);
}

.navbar-toggler.is-active .line:nth-child(3){
-webkit-transform: translateY(-9px) rotate(-45deg);
-ms-transform: translateY(-9px) rotate(-45deg);
transform: translateY(-9px) rotate(-45deg);
}
.navbar-toggler-icon img {
  width: 30px;
}
.header {
  padding: 15px 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: var( --bs-color-blue);
  border-bottom: 1px solid rgba(241,243,244,.25);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.header.sticky {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 3px 0;
}

.navbar {
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  min-width: 200px;
  max-width: 200px;
  padding: 0;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar-nav {
  margin-left: auto;
}

.navbar-nav li a {
  color: var(--bs-color-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-block;
  position: relative;
}
.navbar-nav > li > a:before {
  position: absolute;
  content: '';
  background: var(--bs-color-white);
  bottom: -20px;
  height: 20px;
  width: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
.navbar-expand-md  .navbar-nav li a {
  padding: 14px 16px!important;
}
.navbar-nav li a:hover,.navbar-nav li a:focus {
  color: var(--bs-color-deep-blue);
  background: var(--bs-color-white);
}
.navbar-nav li > a:hover:before {
  opacity: 1;
}
.navbar-toggler {
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}
.navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
}
.navbar-toggler .navbar-toggler-icon img {
  width: 40px;
  -webkit-filter: brightness(100) invert(100);
          filter: brightness(100) invert(100);
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-details {
  padding-left: 60px;
}
.login {
  color: var(--bs-color-white);
  margin-right: 25px;
  display: inline-block;
}
.common-gap {
  padding: 35px 0;
}
.common-gap.no-gap-top {
padding-top: 0;
}

/* qr code section */
.qr-code-left {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: var(--bs-color-white);
  border: 2px solid transparent;
  /* padding: 20px 40px 100px 24px; */
  padding: 0 0 100px 0;
  min-height: 554px;
  position: relative;
  height: auto; /*100%*/
}
.qr-code-left.active {
border-color: var(--bs-color-blue);
}
.tab-wrapper .nav-tabs {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0;
  margin: -5px;
}
.tab-wrapper .nav-tabs li a {
  padding: 5px 15px;
  color: var(--bs-color-grey);
  border: 1px solid var(--bs-color-grey-3);
  background: var(--bs-color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* border-bottom: 2px solid var(--bs-color-grey-light); */
  font-size: 12px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: center;
  font-weight: 500;
  border-radius: 3px;
}
.tab-wrapper .nav-tabs li.active-menu a, .tab-wrapper .nav-tabs li a:hover {
  background: var(--bs-color-blue);
  border-color: var(--bs-color-blue);
  color: var(--bs-color-white);
}
.tab-wrapper .nav-tabs li a.active img, .tab-wrapper .nav-tabs li a:hover img {
  filter: invert(100%);
}
.tab-wrapper .nav-tabs li a span {
  margin-right: 6px;
  min-width: 14px;
  display: inline-block;
  vertical-align: middle;
}
.tab-wrapper .nav-tabs li {
  padding: 5px;
  /* width: calc(100% / 7); */
}
.tab-wrapper .nav-tabs li:last-child {
  margin-right: 0;
}
.qr-code-left .tab-content {
  margin-top: 50px;
  padding: 0 40px 0 24px;
}
textarea.form-control-textarea {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  resize: none;
  color: #000;
  height: 50px;
  min-height: 50px;
  max-height: 120px;
  font-size: 26px;
  font-weight: 700;
}
textarea.form-control-textarea:focus {
  border: 0;
  outline: none;
}
.grey-txt {
  color: var(--bs-color-grey-2);
  margin-bottom: 0;
}
.upload-innr ,.btn-pos{
  position: absolute;
  bottom: 0;
  padding: 0 0 40px 24px;
  left: 0;
}
.upload-file {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  color: var(--bs-color-blue);
  font-weight: 600;
}
.upload-file i {
  padding-right: 10px;
}
.upload-file span {
  color: var(--bs-color-grey-2);
}
.upload-input {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.switch-btn {
  position: absolute;
  bottom: 0;
  padding: 0 40px 33px 0;
  left: auto;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.switch-btn p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
  margin-left: 15px;
  color: var(--bs-color-grey);
}
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 25px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.switch  .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-color-grey-2);
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bs-color-white);
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.switch .slider:after {
  display: block;
  line-height: 24px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  content: 'off';
  color: var(--bs-color-white);
  padding-left: 26px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.switch .switch-input:checked + 
.slider:after {
  content: 'on';
  color: var(--bs-color-white);
  padding-left: 8px;
}

.switch input:checked + .slider {
  background-color: var(--bs-color-blue);
}

.switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--bs-color-blue);
          box-shadow: 0 0 1px var(--bs-color-blue);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}
.input-goup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.input-group-left {
  max-width: 200px;
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}
.input-group-right {
  max-width: calc(100% - 200px);
  -ms-flex-preferred-size: calc(100% - 200px);
      flex-basis: calc(100% - 200px);
  padding-left: 10px;
}
.qr-code-right {
  -webkit-box-shadow: 0 14px 16px #0000000f;
          box-shadow: 0 14px 16px #0000000f;
  border-radius: 6px;
  background: var(--bs-color-white);
  height: auto;
  min-height: 554px;
  position: relative;
  height: 100%;
}
.input-group-left label {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tb-hdr {
  font-weight: 600;
  margin-bottom: 20px;
}
/* modal */
.modal-content {
  border-radius: 8px;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--bs-color-blue);
  overflow: hidden;
}
.modal-content h3 {
  color: var(--bs-color-deep-blue);
  max-width: 250px;
}
.modal-content p {
  margin-bottom: 30px;
}
.modal-content h3 span {
  color: var(--bs-color-pink);
}
.modal .modal-dialog {
  max-width: 780px;
}
.modal-header {
  padding: 0;
  border-bottom: 0;
}
.modal-header .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: var(--bs-color-blue);
  padding: 0;
  margin: 0;
  z-index: 99;
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(77%) saturate(1295%) hue-rotate(187deg) brightness(92%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(34%) sepia(77%) saturate(1295%) hue-rotate(187deg) brightness(92%) contrast(93%);
  opacity: 1;
}
.left-side {
  padding: 50px 25px 50px 30px;
}
.right-side {
  padding: 54px 0 20px 30px;
  background: var(--bs-color-grey-3);
}
.modal-logo {
  width: 260px;
  display: inline-block;
  margin-bottom: 30px;
}
.modal-logo img {
  width: 100%;
}
.arrow--shorter {
  background: var(--bs-color-grey-2);
  height: 3px;
  width: 90px;
  position: relative;
  cursor: inherit;
  right: -320px;
  top: -20px;
  z-index: 9999;
  display: block;
}
.arrow--shorter:before {
  right: -3px;
  bottom: -4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.arrow--shorter:after {
  right: -3px;
  top: -4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow--shorter:before, .arrow--shorter:after {
  content: "";
  background: var(--bs-color-grey-2);
  position: absolute;
  height: 3px;
  width: 15px;
}
/* checkbox */
.checkbox-input {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-input .checkmark {
  position: absolute;
  top: 13px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  border: 1px solid var(--bs-color-grey-2);
}
.checkbox-input input:checked ~ .checkmark {
  background-color: var(--bs-color-blue);
  border-color: transparent;
}
.checkbox-input .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-input input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-input .checkmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--bs-color-white);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* radio btn */
.radio-input {
  position: relative;
  padding-left: 28px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-input .checkmark {
  position: absolute;
  top: 13px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid var(--bs-color-grey-2);
  border-radius: 50%;
}
.radio-input input:checked ~ .checkmark {
  background-color: var(--bs-color-blue);
  border-color: transparent;
}
.radio-input .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-input input:checked ~ .checkmark:after {
  display: block;
}

.radio-input .checkmark:after {
    top: 4px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-color-white);
}
.radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio-wrapper li {
  margin-right: 20px;
}
.radio-wrapper:last-child {
  margin-right: 0;
}
.acc-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}
.acc-check li {
  padding: 5px;
}
.acc-check li .color-picker {
  border-radius: 100%;
  border: 3px solid var(--bs-color-green);
  margin: 10px 8px 0 0;
  height: 32px;
  width: 32px;
  padding: 0;
  font-size: 11px;
  background: var(--bs-color-black) url(../images/plus.png);
  color: var(--bs-color-blue);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  display: inline-block;
}
.acc-check li input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.acc-check li .color-picker-wrapper {
  position: relative;
}
/* .acc-check li .color-picker i {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--bs-color-white);
} */
.acc-check li:last-child {
  margin-right: 10px;
}
.acc-check li a {
  font-size: 23px;
  font-weight: 600;
  color: var(--bs-color-black);
  border-radius: 2px;
  height: 48px;
  width: 48px;
  border: 1px var(--bs-color-grey-2) solid;
  padding:10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.acc-check li a img {
  width: 100%;
}
.acc-check li.active a {
  border:2px solid var(--bs-color-green);
  color: var(--bs-color-grey-2);
}
.acc-check li a:hover {
  border-color: var(--bs-color-blue);
}
.qr-code-right .card-header {
  text-align: left;
  border: 0;
  padding: 0;
}
.qr-code-right .card-header a {
  text-transform: uppercase;
  color: var(--bs-color-white);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--bs-color-blue);
  padding: 6px 12px;
  font-size: 12px;
}
.qr-code-right .card-header a p {
  margin-bottom: 0;
}
.qr-code-right .card-header a p em {
  font-style: normal;
  text-transform: uppercase;
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  margin-left: 10px;
  background: var(--bs-color-green);
  line-height: 0.8;
  font-size: 12px;
  color: var(--bs-color-white);
}
.qr-code-right .card-header a i:before {
  content: "\f077";
}
.qr-code-right .card-header a.collapsed i:before {
  content: "\f078";
}
.qr-code-right .card-header a.collapsed {
  background: var(--bs-color-grey-3);
  color: var(--bs-color-grey);
}
.qr-code-right .card {
  border: 0;
}
.qr-code-right .card-body {
  background: var(--bs-color-grey-3);
  padding: 12px 15px;
}
.qr-code-right {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: var(--bs-color-white);
  border: 2px solid transparent;
  height: auto;
  min-height: 554px;
  padding: 30px 32px;
}
.qr-code-right.active {
  border-color: var(--bs-color-blue);
}
.scanner-img {
  width: 220px;
  margin: auto;
  margin-bottom: 20px;
}
.scanner-img img {
  width: 100%;
}
.btn-group-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.btn-group-innr .btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 12px;
}
.btn-group-innr .btn span em{
  font-style: normal;
  font-weight: 300;
  display: block;
  margin-top: 5px;
}
.btn-group-innr .btn i {
  margin-right: 10px;
}
.upload-txt {
  text-decoration: none;
  color: var(--bs-color-blue);
  margin-top: 10px;
  display: block;
  font-size: 13px;
}
/* about */
.about-sec {
  background: var(--bs-color-grey-5);
}
.about-sec.common-gap {
  padding-bottom: 0;
}
.cmn-hdr {
  margin-bottom: 40px;
}
.cmn-hdr h2 ,.cmn-hdr p{
  color: var(--bs-color-deep-blue);
}
.cmn-hdr p{
  color: var(--bs-color-deep-blue);
  font-size: 18px;
}
.accordion .card-header {
  text-align: left;
  border: 0;
  padding: 10px 0;
  background: none;
}
.accordion .card-header a {
  color: var(--bs-color-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
}
.accordion .card-header a i:before {
  content: "\f077";
}
.accordion .card-header a.collapsed i:before {
  content: "\f078";
}
.accordion .card {
  border: 0;
  margin-bottom: 20px;
  background: none;
}
.accordion .card:last-child {
  margin-bottom: 0;
}
.accordion .card-body {
  padding: 12px 0;
  background: none;
}
.accordion .card-body p {
  font-size: 18px;
  color: var(--bs-color-deep-blue);
  line-height: 1.8;
}
.read-more {
  color: var(--bs-color-blue);
  text-decoration: underline;
  display: block;
}
.about-img {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.about-img img {
  position: absolute;
  top: 0;
  right: 20px;
  max-width: 100%;
  height: 800px;
}
.box-sec{
  background-color: var(--bs-color-light-pink);
  padding: 80px 0;
}

.box-outr h3 span {
  color: var(--bs-color-pink);
}
.box-outr p {
  margin-bottom: 25px;
}

/* timeline */
.timeline-otr {
  counter-reset: list-counter;
}
.timeline-content p {
  color: var(--bs-color-deep-blue);
  font-size: 18px;
  line-height: 1.8;
}
.timeline-innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.timeline-img {
  width: 40%;
  background: var(--bs-color-white);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.timeline-img img {
  width: 100%;
}
.timeline-content {
  width: 40%;
}
.timeline-innr:nth-child(2n) .timeline-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.timeline-innr:nth-child(2n) .timeline-content {
  -webkit-box-ordinal-group:2;
      -ms-flex-order:1;
          order:1;
}
.timeline-innr:first-child:after {
  top: 0;
} 
.timeline-innr:last-child:after {
  bottom: 0;
} 
.timeline {
  padding: 30px 0 0;
  position: relative;
}
.timeline ul {
  padding: 0;
}
.timeline .default-line {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: var(--bs-color-grey-3);
  height: 875px;
}
.timeline .draw-line {
  width: 2px;
  height: 0;
  position: absolute;
  left: 50%;
  background: var(--bs-color-blue);
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 400px;
  background: transparent;
}
.timeline ul li.timeline-innr.hgtup{
  height: 475px;
}
.timeline ul li.in-view {
  -webkit-transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  -o-transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}
.timeline ul li.in-view::before {
  counter-increment: list-counter;
  content: counter(list-counter);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 58px;
  width: 58px;
  color: var(--bs-color-white);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--bs-color-blue);
  -webkit-transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  -o-transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
  transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}
.timeline ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: inherit;
  background: var(--bs-color-grey-3);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.link-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -5px;
  margin-bottom: 15px;
}
.link-txt li {
  list-style-type: disc;
  list-style-position: inside;
  padding: 0 5px;
  color: var(--bs-color-deep-blue);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.link-txt li:first-child {
  list-style-type: none;
}
.bitly-logo {
  margin-bottom: 25px;
  display: block;
}
.mw {
  max-width: 100%;/*800px*/
  margin-left: auto;
  margin-right: auto;
}
.type-sec {
  background: var(--bs-color-grey-5);
}
.type-otr {
  margin: -15px;
}
.type-innr {
  padding: 15px;
}
.type-box {
  display: block;
  padding: 14px 14px 16px;
  border: 2px solid var(--bs-color-grey-4);
  background: var(--bs-color-white);
  border-radius: 8px;
  height: 100%;
}
.type-box h3 {
  font-size: 18px;
}
.type-box.blue {
  background: var(--bs-color-blue);
  border-color: var(--bs-color-blue);
}
.type-box.blue p {
  color: var(--bs-color-white);
}
.pro {
  background: var(--bs-color-white);
  border-radius: 5px;
  padding: 8px 15px;
  line-height: 0.8;
  display: inline-block;
  color: var(--bs-color-blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}
.type-box:hover {
  border: 2px solid var(--bs-color-blue);
  -webkit-box-shadow: 0 6px 12px rgba(15,22,41,.2);
          box-shadow: 0 6px 12px rgba(15,22,41,.2);
}
.type-box h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.type-box h3 span {
  margin-right: 10px;
}
.type-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bs-color-deep-blue);
  margin-bottom: 0;
}

/* signup-sec */
.signup-sec {
  background: var(--bs-color-blue);
}
.signup-logo {
  display: block;
  margin-bottom: 30px;
}
.cmn-hdr h3 {
  color: var(--bs-color-light-blue);
}
.cmn-hdr p.wh {
  color: var(--bs-color-white);
}
.btn-group-otr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

/* footer */
.footer {
  padding: 30px 0 20px;
}
.ft-logo {
  width: 250px;
  display: inline-block;
  margin-bottom: 20px;
}
.ft-logo img {
  width: 100%;
}
.social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon li {
  margin-right: 10px;
}
.social-icon li:last-child {
  margin-right: 0;
}
.social-icon li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--bs-color-blue);
  color:var(--bs-color-blue);
  font-size: 20px;
}
.social-icon li a svg{
  width: 18px;
  fill: var(--bs-color-blue);
}
.social-icon li a:hover {
  background: var(--bs-color-blue);
  color:var(--bs-color-white);
}
.social-icon li a:hover svg{
  fill: var(--bs-color-white);
}
.ft-hdr {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bs-color-blue);
}
.ft-menu li {
  margin-bottom: 15px;
}
.ft-menu li:last-child {
  margin-bottom: 0;
}
.ft-menu li a{
  font-size: 14px;
}
.ft-menu li a:hover {
  color: var(--bs-color-blue);
}
.footer-btm {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--bs-color-grey-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-btm ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px;
}
.footer-btm ul li {
  padding: 0 10px;
}
.footer-btm ul li a {
  text-decoration: underline;
  font-size: 14px;
}
.footer-btm ul li a:hover {
  color: var(--bs-color-blue);
}
.copyright {
  color: var(--bs-color-grey-2);
  font-size: 14px;
  margin-bottom: 0;
}
/* dropdown */
.navbar-nav .dropdown:hover > a {
  color: var(--bs-color-deep-blue);
  background: var(--bs-color-white);
}
.navbar-nav .dropdown:hover > a:before {
  opacity: 1;
}
.megamenu .dropdown-menu {
  min-width: auto;
  right: 0;
  top: 100%;
}
.navbar-nav .dropdown-menu {
  padding: 0;
  border: 0;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
          box-shadow: 0 0 10px rgba(0,0,0,0.2);
  top: 100%;
}
.navbar-nav .dropdown {
  position: static;
}
.megamenu-otr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.megamenu-otr li {
  max-width: 210px;
  min-width: 210px;
  border-bottom: 2px solid var(--bs-color-grey-3);
  border-right: 2px solid var(--bs-color-grey-3);
}
.navbar-expand-md .navbar-nav .megamenu-otr li a {
  padding: 24px!important;
  position: relative;
  height: 100%;
}
.navbar-nav .dropdown-toggle::after {
  display: none;
}
.megamenu-otr li a:after {
  position: absolute;
  content: '';
  height: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.megamenu-otr li a:hover:after {
  background: var(--bs-color-blue);
}
.megamenu-otr li a:hover {
  background: var(--bs-color-grey-3);
}

.megamenu-innr h5 {
  font-size: 16px;
  font-weight: 500;
}
.megamenu-innr p {
  font-size: 13px;
  font-weight: 400;
  color: var(--bs-color-deep-blue);
  text-transform: none;
}
.seperator__vertical-line {
  display: block;
  position: absolute;
  width: 8px;
  height: 10%;
  background-color: var(--bs-color-grey-3);
  left: -8px;
  top: 270px;
  z-index: 99;
}
.seperator__container {
  content: " ";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute; 
  left: -34px;
  top: 273px;
  width: 46px;
  height: 46px;
  background-color: var(--bs-color-white);
  z-index: 100;
  border: 7px solid var(--bs-color-grey-3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
}
.seperator__container-inner {
  content: " ";
  display: block;
  position: absolute;
  left: -38px;
  top: 270px;
  width: 52px;
  height: 52px;
  background-color: var(--bs-color-white);
  z-index: 11;
  border: 8px solid var(--bs-color-grey-3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
}
.seperator__container-inner::before,.seperator__container-inner::after {
  content: " ";
  display: block;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 52px;
  height: 52px;
  background-color: transparent;
  z-index: 4;
  border: 2px solid var(--bs-color-blue);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
}
.seperator__container-inner::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.seperator__container-inner::after {
  -webkit-transform: rotate(-315deg);
      -ms-transform: rotate(-315deg);
          transform: rotate(-315deg);
  border: none;
}
.seperator__arrow {
  color: var(--bs-color-grey-2);
  padding: 0 9px;
}
.qr-code-details-sec {
  background: var(--bs-color-grey-5);
}
.qr-code-details-sec.common-gap {
  padding-top: 117px;
}
.qr-code-details-otr {
  margin: -5px;
}
.qr-code-details-innr {
  padding: 5px;
}
.qr-code-right.active .seperator__container-inner::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg); 
}
.qr-code-right.active .seperator__container-inner {
  left: -28px;
}
.qr-code-right.active .seperator__container {
  left: -25px;
}
.icon2,.icon3 {
  display: none;
}
.icon3 {
  color: var(--bs-color-green);
}
.seperator__wrapper.load .icon1 ,.seperator__wrapper.load .icon3{
  display: none;
}
.seperator__wrapper.load .icon2 {
  display: block;
}
.seperator__wrapper.check .icon1 ,.seperator__wrapper.check .icon2{
  display: none;
}
.seperator__wrapper.check .icon3 {
  display: block;
}
.api-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--bs-color-blue);
  color: var(--bs-color-white);
  font-weight: 500;
  border-radius: 30px;
  padding: 7px 15px;
  margin-bottom: 0;
  font-size: 13px;
}
.api-btn span {
  font-style: normal;
  text-transform: uppercase;
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  background: var(--bs-color-green);
  line-height: 0.8;
  font-size: 12px;
  color: var(--bs-color-white);
  margin-right: 15px;
}
.api-btn a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--bs-color-white);
  margin-left: 20px;
}
.load_spinner {
  border: 3px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-top-color: var(--bs-color-blue);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; 
}
@-webkit-keyframes spin {
from {
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
}
to {
    -webkit-transform:rotate(360deg);
            transform:rotate(360deg);
}
}
@keyframes spin {
from {
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
}
to {
    -webkit-transform:rotate(360deg);
            transform:rotate(360deg);
}
}

.tooltip {
z-index: 9999;
}
.tooltip-inner {
background: var(--bs-color-blue); 
font-size: 12px;
}
.bs-tooltip-top .tooltip-arrow:before {
border-top-color: var(--bs-color-blue);
}
.close-icon {
color: var(--bs-color-white);
display: none;
}
.down-arrow {
display: none;
font-size: 20px;
}

/* about page */
.about-banner-sec {
  padding: 140px 0 60px;
  background: var(--bs-color-blue);
  overflow-x:hidden;
}
.about-banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
}
.about-banner-img figure {
  margin-right: -70px;
}
.about-banner-img img {
  width: 100%;
}
.qr-code-type-otr {
  background: var(--bs-color-white);
}
.qr-code-type-otr:nth-child(2n) {
  background: var(--bs-color-grey-5);
}
.qr-code-type-img img {
  width: 100%;
}
.qr-code-type-otr:nth-child(2n) .qr-code-type-content {
  order: 2;
}
.qr-code-type-otr:nth-child(2n) .qr-code-type-img {
  order: 1;
}
.qr-code-type-content {
  padding: 0 60px;
}
.qr-code-type-content h4 {
  text-transform: uppercase;
  font-size: 18px;
}
.qr-code-type-content p {
  color: var(--bs-color-deep-blue);
  margin-bottom: 30px;
}

/* scan page */
.scan-banner-sec {
  background: var(--bs-color-blue);
  padding: 140px 0 60px;
}
.scan-banner-img img {
  width: 100%;
}
.wh {
  color: var(--bs-color-white);
}
.scan-banner-content {
  padding-left: 60px;
}
.scan-banner-content p {
  margin-bottom: 30px;
}
.ban-btn-innr {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ban-btn-innr .btn span {
  margin-right: 10px;
}
.btn.green-btn {
  background: var(--bs-color-green);
}
.btn.green-btn:hover {
  background: var(--bs-color-deep-blue);
  color: var(--bs-color-white);
}
.get-started-sec {
  position: relative;
  z-index: 1;
}
.get-started-sec:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/back-image.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: right center;
  z-index: -1;
}
.get-started-img {
  width: 500px;
  margin-left: auto;
  padding-right: 100px;
}
.get-started-content {
  max-width: 500px;
}
.event-sec {
  background: var(--bs-color-light-pink);
  overflow-x: hidden;
}
h2 span {
  font-weight: 500;
}
.event-img {
  margin-right: -250px;
}
.event-img img {
  width: 100%;
}
.event-content {
  max-width: 570px;
}
.select-box-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-box-innr {
  width: calc(100% / 2);
  position: relative;
}
.select-box-innr label {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 10px;
  color: var(--bs-color-grey-2);
}
.select-box-innr .form-control {
  height: 60px;
  padding-top: 15px;
}
.tab-wrapper {
  padding: 0 32px 0;
}
.tab-wrapper .prev-arrow,.tab-wrapper .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--bs-color-white);
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 7px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.tab-wrapper .prev-arrow {
  left: -26px;
}
.tab-wrapper .next-arrow {
  right: -26px;
}




/* Tooltip container */
.fa-question-circle {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}
.fa-question-circle .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
  font-size: 12px;
    font-weight: normal;
}
.fa-question-circle:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip-right {
  top: -5px;
  left: 125%;
}
.tooltip-top {
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #555 transparent transparent;
}
.tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.dnone{
  display: none;
}
.qr-code-right .card-body h4{
  color: var(--bs-color-blue);
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
.qr-code-right .card-body h4:first-child{
  margin-top: 0;
}

.btn-outline-secondary {
  background: #f6f8f8;
  color: #1d2025;
  border-color: #6c757d;
  text-transform: capitalize;
  padding: 10px 12px;
  width: 100%;
}
.btn-outline-secondary:active, .btn-outline-secondary:hover, .btn-check:checked+.btn-outline-secondary{
  background: #6c757d;
  color: #ffffff;
  border-color: #6c757d;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  text-transform: capitalize;
  padding: 10px 12px;
  width: 100%;
}
/*.btn-outline-secondary.filein:active, .btn-outline-secondary.filein:hover{
  background-color: var(--bs-color-blue);
  color: #fff;
  width: 35%;
  box-shadow: none;
  background: var(--bs-color-blue);
  border: var(--bs-color-blue);
}
.finpt-cust{
  border: 2px solid var(--bs-color-blue);
  background-color: #ffffff;
  padding: 0;
  height: 100%;
}
.finpt-cust label{
  display: inline-block;
  width: 35%;
  font-size: 14px;
  border-radius: 0;
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: 2px solid var(--bs-color-blue);
  background-color: var(--bs-color-blue);
  color: #fff;
}
.finpt-cust span{
  display: inline-block;
  width: 62%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 0.2rem;
}*/

.custom-file-button input[type="file"] {
  margin-left: -2px !important;
}
.custom-file-button input[type="file"]::-webkit-file-upload-button {
  display: none;
}
.custom-file-button input[type="file"]::file-selector-button {
  display: none;
}
.custom-file-button label{
  background-color: var(--bs-color-blue);
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bs-color-blue);
}
.custom-file-button label i{
  margin-right: 3px;
}
.custom-file-button .form-control[type=file]{
  border: 1px solid var(--bs-color-blue);
    line-height: 2rem;
}

.btn-group-toggle{
  margin-bottom: 10px;
}

.pcr-button {
  border: 1px solid white !important;
  outline: 1px solid #e5e8eb !important;
  height: calc(.45rem + .75rem + 1rem + calc(1rem / 2.75)) !important;
  border-radius: .4rem !important;
  width: 100% !important;
}
.pcr-button::before, .pcr-button::after {
  border-radius: .4rem !important;
}
.form-range {
  background-color: transparent !important;
  accent-color: #0d6efd !important;
}
.form-range::-moz-range-progress {
  background-color: #0d6efd; 
}
/* IE*/
.form-range::-ms-fill-lower {
  background-color: #0d6efd; 
}

.form-control-range {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/*  slider progress trick  */
	overflow: hidden;

	/* creating a custom design */
	accent-color: #0d6efd !important;
	background: #dbdbdb !important;
  border: none !important;
	border-radius: 0.4rem !important;
	height: .75rem !important;
	margin: 0 0 0.75rem 0;
  padding: 0 !important;
}

/* Track: webkit browsers */
.form-control-range::-webkit-slider-runnable-track, .form-control-range::-moz-range-track {
	background: #DEE2E6;
}

/* Thumb: webkit */
.form-control-range::-webkit-slider-thumb {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/* creating a custom design */
	height: .95rem;
	width: .95rem;
	background-color: #0d6efd;
	border-radius: 50%;
	border: 2px solid #ffffff;

	/*  slider progress trick  */
	box-shadow: -407px 0 0 400px #0d6efd;
}

.form-control-range::-moz-range-thumb {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/* creating a custom design */
	height: .95rem;
	width: .95rem;
	background-color: #0d6efd;
	border-radius: 50%;
	border: 2px solid #ffffff;

	/*  slider progress trick  */
	box-shadow: -407px 0 0 400px #0d6efd;
}

/*.btn-group-innr .dropdown:active .dropdown-menu, .btn-group-innr .dropdown:focus .dropdown-menu {
  display: block;
}*/
.btn-group-innr .dropdown-menu{
  width: 100%;
}

.form-control.error{
  border-color: red;
}
.intl-tel-input{
  width: 100%;
}

.qread-head{
  text-align: center;
  margin-bottom: .5rem !important;
  padding: 0;
}
.qread-head ul.nav{
  display: inline-block;
}
.qread-head ul.nav li a{
  font-size: 14px;
}
.qread-head ul.nav .slick-track{
  width: 100% !important;
}
.qr-code-left.qrreader, .qr-code-right.qrreader{
  min-height: auto;
}
.qr-code-left.qrreader .tab-content {
  margin-top: 30px;
  padding: 0 30px 0 30px;
}
.qr-code-left.qrreader .btn-pos {
  padding: 0 0 30px 30px;
  left: 0;
}
.qr-code-left.qrreader .input-goup.lastinpg{
  margin-bottom: 20px;
}
.scan_text{
  color: var(--bs-color-blue);
  font-size: 16px;
  border-bottom: 2px solid #fff;
  font-weight: 600;
  padding: 10px 0px;
}
.scan_text:first-child{
  margin-top: 0;
}
.scan_text:last-child{
  border-bottom: none;
}
.scan_text span{
  font-weight: normal;
}
.scan_text a{
  text-decoration: underline;
  color: var(--bs-color-blue);
}
.scan_pre{
  margin-top: 10px;
  margin-bottom: 0;
}

.webcam-wrap{
  background-color: #f0f0f0;
  width: 100%;
  height: auto;
}