.shop-pdf-main{
  padding: 20px 30px;
  background: linear-gradient(180deg, #00a3d7 0%, #ffffff 100%) no-repeat;
}
.shop-pdf-img-main{
  width:200px;
  height:100px;
  margin: auto;
}
.shop-pdf-header{
  font-size: 25px;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin: 10px;
}
.shop-pdf-sub{
  border: 1px solid;
  background-color: #fff;
  border-radius: 50px;
  padding: 50px;
  text-align: center;
}
.shop-pdf-qrcode-main{
  width:100%;
  height:100%;
  margin-bottom: 40px;
}
.shop-pdf-des-main{
  height:200px;
}
.shop-pdf-des{
  color:#516297;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 10px;
}

.footer1{
  color: #a9a9a9;
  font-size: 1rem;
}

.footer2{
  color: #00006f;
  font-size: 1rem;
}



.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
  z-index: 1020 !important;
}



.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */

  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;

  /*
    Let the content set the size of the tooltips
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #fff;
  color: #000;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #fff;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.shakebutton{
  position: relative;
  animation-name: shake;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
.shakebutton:hover {
  animation-name: shakeAnim;
}

@keyframes shakeAnim {
  0% {left: 0}
  1% {left: -3px}
  2% {left: 5px}
  3% {left: -8px}
  4% {left: 8px}
  5% {left: -5px}
  6% {left: 3px}
  7% {left: 0}
}


@keyframes shake {
  0% {left: 0}
  1% {left: -3px}
  2% {left: 5px}
  3% {left: -8px}
  4% {left: 8px}
  5% {left: -5px}
  6% {left: 3px}
  7% {left: 0}
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 38px;
  user-select: none;
  -webkit-user-select: none;
  background-color: #343a40;
  }

  .select2-container--default .select2-selection--single {
    background-color: #343a40;
    border: 1px solid #6c757d;
    border-radius: 4px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 28px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 35px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
  }

  .searchdropdown {
    padding: 10px 0;
    color:#000;
    border-bottom: 1px solid #ccc;
  }

  .search_outer_con{
    /* background-color: #fff; */
    position: absolute;
    top:80px;
    left: 5px;
    right: 5px;
    z-index: 9;
    max-height: 300px;
    overflow-y: auto;
    display: none;
  }
  .enable_search {
    display: block;
  }

  /*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/

	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: 320px;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}

	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
	}

	.modal.right .modal-body {
		padding: 15px 15px 80px;
	}


/*Right*/
	.modal.right.fade .modal-dialog {
		right: 0px;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}

	.modal.right.fade.in .modal-dialog {
		right: 0;
	}

  .hr {
    display: block;
    flex: 1;
    margin: 0 30px;
    height: 1px;
    background: #D4D4D4;
  }
  .headings {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 1em 0;
  }



.timeline-hor{
  counter-reset: test 0;
  position: relative;
}

.timeline-hor li{
  list-style: none;
  float: left;
  width: 25%;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-family: arial;
  font-size:13px;
}

ul:nth-child(1){
  color: grey;
}

.timeline-hor li:before{
  counter-increment: test;
  content: counter(test);
  width: 30px;
  height: 30px;
  border: 3px solid #4caf50;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 25px;
  margin: 0 auto 10px auto;
  background: #fff;
  color: #000;
  transition: all ease-in-out .3s;
  cursor: pointer;
}

.timeline-hor li:after{
  content: "";
  position: absolute;
  width: 89%;
  height: 5px;
  background-color: grey;
  top: 13px;
  left: -45%;
  z-index: 9;
  transition: all ease-in-out .3s;
}

.timeline-hor li:first-child:after{
  content: none;
}
.timeline-hor li.active-tl{
  color: #fff;
}
.timeline-hor li.active-tl:before{
  background: #4caf50;
  color: #F1F1F1;
}

.timeline-hor li.active-tl + li:after{
  background: #4caf50;
}



ull, lil {
  list-style: none;
  margin: 0;
  padding: 0;
}

ull {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ull lil {
  width: 12%;
  margin: 0 2%;
  margin-bottom: 50px;
}

ull lil a {
  display: flex;
  align-items: center;
  justify-content: center;
}

ull lil .team-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  transition: 0.6s;
  transform-style: preserve-3d;
}

/* Fake content for size */
ull lil .team-img::before {
  display: block;
  padding-bottom: 100%;
  content: '';
}

/* Border gradient */
ull lil .team-img::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: -100%;
  border-radius: 50%;
  background-color: #F58220;
  background: linear-gradient(to right, #F58220 0%, #ED1C24 100%);
  content: '';
  z-index: -1;
  transition: 0.5s;
}

/* Image border */
ull lil .team-img .front,
ull lil .team-img .back {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
}

/* Center img */
ull lil .team-img .front img,
ull lil .team-img .back img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

ull lil .team-img .back {
  opacity: 0;
  transition: all 0s 0.15s;
  transform: ratateY(180deg);
}

ull lil a:hover .team-img {
  transform: rotateY(180deg);
}

ull lil a:hover .team-img::after {
  top: 0;
  left: 0;
}

ull lil a:hover .team-img .back {
  opacity: 1;
}

span.step {
  background: #456364;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 4rem;
  border-radius: 50%;
}


.login {
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.login_box {
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.login_box .left {
    width: 100%;
    height: 100%;
    padding: 60px 50px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_box .right {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_box .right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.left .top_link a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.left .top_link {
    height: 20px;
    margin-bottom: 20px;
}

.left .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.left h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #1a2332;
    font-size: 32px;
    font-weight: 700;
}

.left p {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 35px;
}

.left input {
    border: 2px solid #e8ecf1;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0px;
    padding: 14px 16px;
    overflow: hidden;
    background: #f8f9fb;
    font-weight: 500;
    font-size: 14px;
    color: #1a2332;
    transition: all 0.3s ease;
}

.left input::placeholder {
    color: #9ca3af;
}

.left input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.left {
    background: white;
}

.submit {
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit:active {
    transform: translateY(0);
}

/* OTP PAGE SPECIFIC STYLING */
body.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    background-attachment: fixed !important;
}

/* OTP Input Fields Enhancement */
.otp-form-input {
    height: 50px !important;
    width: 50px !important;
    border: 2px solid #000000 !important;
    border-radius: 10px !important;
    text-align: center;
    font-size: 22px !important;
    font-weight: 600;
    background: #f8f9fb !important;
    outline: none;
    color: #1a2332;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 8px !important;
    flex-shrink: 0;
}

.otp-form-input:focus {
    border-color: #000000 !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08) !important;
    transform: scale(1.05);
}

.otp-form-input:valid {
    border-color: #000000 !important;
    background: #f0f3ff !important;
}

/* OTP Error Animation */
@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.otp-form-input.error-shake {
    animation: errorShake 0.5s ease-in-out !important;
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
}

/* OTP Button Enhancement */
.profile-otp-button {
    width: 100% !important;
    max-width: 300px !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}

.profile-otp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
}

.profile-otp-button:active {
    transform: translateY(0);
}

/* OTP Info Box */
.otp-info {
    background: #f0f3ff;
    border-left: 4px solid #667eea;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #3d47a3;
    margin-bottom: 20px;
    margin-top: 20px;
}

.otp-info i {
    margin-right: 8px;
    color: #667eea;
}

/* OTP Form Layout */
.profile-otp-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin: 30px 0 20px 0;
    width: 100%;
    overflow-x: auto;
    padding: 0 5px;
}

/* LOGIN BOX RESPONSIVE */
@media (max-width: 768px) {
    .login_box {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .login_box .right {
        display: none;
    }

    .login_box .left {
        padding: 40px 30px;
        min-height: auto;
    }

    .left h3 {
        font-size: 28px;
    }

    .otp-form-input {
        height: 45px !important;
        width: 45px !important;
        font-size: 20px !important;
        min-width: 45px !important;
    }

    .profile-otp-main {
        gap: 4px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login {
        padding: 20px;
    }

    .login_box .left {
        padding: 30px 20px;
    }

    .left h3 {
        font-size: 24px;
    }

    .left input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .otp-form-input {
        height: 40px !important;
        width: 40px !important;
        font-size: 18px !important;
        margin: 4px !important;
        min-width: 40px !important;
    }

    .profile-otp-main {
        gap: 3px;
        width: 100%;
    }

    .right .right-text h2 {
        font-size: 36px;
    }

    .right .right-text h5 {
        font-size: 16px;
    }
}



/* .right {
	background: linear-gradient(212.38deg, rgba(242, 57, 127, 0.7) 0%, rgba(175, 70, 189, 0.71) 100%),url(https://static.seattletimes.com/wp-content/uploads/2019/01/web-typing-ergonomics-1020x680.jpg);
	color: #fff;
	position: relative;
} */

.right .right-text {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.right-text h2 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.right-text h5 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: white;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.right .right-inductor {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
}

.right .right-inductor img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.95;
    max-height: 250px;
    object-fit: cover;
}
.top_link img {
    width: 28px;
    padding-right: 7px;
    margin-top: -3px;
}



.previous-but {
  background-color: #f1f1f1;
  color: black;
}

.next-but {
  background-color: #04AA6D;
  color: white;
}


#backupIcon.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



@media only screen and (max-width: 600px) {

    .login_box {
        width: 100%;
        height: 500px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #fff;
        border-radius: 10px;
        box-shadow: 1px 4px 22px -8px #0004;
        display: flex;
        overflow: hidden;
    }
    .login_box .left{
      width: 100%;
      height: 100%;
      padding: 25px 25px;

    }
}


input[type="checkbox"] {
width: 18px; height: 18px; cursor: pointer;

}

.badge{
  color:#fff !important;
}
