.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: radial-gradient(#843d3d, #332042);
    position: relative;
}
.login_box {
    width: 900px;
    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: 41%;
  height: 100%;
  padding: 25px 25px;

}
.login_box .right{
  width: 59%;
  height: 100%
}
.left .top_link a {
    color: #452A5A;
    font-weight: 400;
}
.left .top_link{
  height: 20px
}
.left .contact{
	display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    height: 100%;
    width: 73%;
    margin: auto;
}
.left h3{
  text-align: center;
  margin-bottom: 40px;
}
.left input {
    border: none;
    width: 80%;
    margin: 15px 0px;
    border-bottom: 1px solid #4f30677d;
    padding: 7px 9px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
}
.left{
	background: linear-gradient(-45deg, #dcd7e0, #fff);
}
.submit {
    border: none;
    padding: 15px 70px;
    border-radius: 8px;
    display: block;
    margin: auto;
    margin-top: 80px;
    background: #583672;
    color: #fff;
    font-weight: bold;
    -webkit-box-shadow: 0px 9px 15px -11px rgba(88,54,114,1);
    -moz-box-shadow: 0px 9px 15px -11px rgba(88,54,114,1);
    box-shadow: 0px 9px 15px -11px rgba(88,54,114,1);
}



/* .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{
  height: 100%;
  position: relative;
  transform: translate(0%, 45%);
}
.right-text h2{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 500;
}
.right-text h5{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 19px;
  font-weight: 400;
}

.right .right-inductor{
  position: absolute;
  width: 70px;
  height: 7px;
  background: #fff0;
  left: 50%;
  bottom: 70px;
  transform: translate(-50%, 0%);
}
.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;

    }
}
