/*============================
    Fixkar Landing Page
    Assigned To: Fouzia Faiz
================================*/

@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600,700,800&display=swap');



/*========= General Styling =========*/
html,
body {

	overflow-x: hidden;

	font-family: 'Barlow Condensed', sans-serif;
    scroll-behavior: smooth;

}

a:hover,

a:focus,

button:focus {

	text-decoration: none;

	outline: none;

}

h1,

h2,

h3,

h4,

h5,

h6 {

    color: #101518;

    font-weight: 700;

}

.primary-btn {

	display: inline-block;

	padding: 1.15rem 3.125rem;

	color: #fff;

	font-size: 1.125rem;

	font-weight: 700;

	border-radius: 30px;

}

.primary-btn:hover {

	color: #fff;

	background-color: #000;

}

.sec-space {

    padding: 120px 0;

}


.sec-space.extra-space-tp {

    padding-top: 300px;

}

.mt-120 {

    margin-top: 120px;

}

.overlap {

    margin: -185px 0;

}

.bg-grey {

    background-color: #f5f5f5;

}

.bg-red {

    background-color: #ee1e45;

}

.parallax {

    position: absolute;

    height: 100%;

    width: 100%;

    top: 0;

    left: 0;

    background-size: cover !important;

    background-position: center !important;

    background-repeat: no-repeat !important;

    z-index: -1;

}

section {

    position: relative;

}

/*========= Header =========*/

header {

    position: absolute;

    top: 50px;

    left: 0;

    right: 0;

    z-index: 9;

}

header .navbar {

	padding: 0;

}

header .navbar-nav li a {

	color: #fff;

	font-size: 1.25rem;

	font-weight: 600;

	letter-spacing: 0.2px;

}

header .navbar-nav li {

	margin-left: 40px;

}

header .primary-btn {

	margin-left: 5rem;

}

.respnsive-header {

    position: absolute;

    left: 0;

    top: 30px;

    z-index: 4;

    width: 100%;

    padding: 0 15px;

    display: none;

}

.respnsive-header .menu-area{

    position: fixed;

    right: -100%;

    top: 0;

    background-color: #fff;

    height: 100%;

    width: 300px;

    padding: 30px;

}

.respnsive-header .menu-lst li a {

    font-size: 1.25rem;

    font-weight: 600;

    letter-spacing: 0.2px;

    color: #000;

}

.respnsive-header .menu-lst li {

    padding: 6px 0;

}

.menu-area > a {

    margin-top: 40px;

}

.menu-area ul {

    padding-top: 60px;

}

.menu-btn {

    background-color: #fff;

    height: 40px;

    width: 40px;

    line-height: 40px;

    text-align: center;

    display: inline-block;

    padding: 12px 10px;

    cursor: pointer;

    float: right;

}

.menu-btn span {

    height: 3px;

    width: 20px;

    background-color: #000;

    display: block;

}

.menu-btn:hover > span {

    background-color: #fff;

}

.menu-btn span + span {

    margin-top: 3px;

}

.respnsive-header .menu-area.active {

    right: 0;

}

.menu-area > span {

    height: 35px;

    width: 35px;

    border-radius: 50%;

    color: #fff;

    line-height: 30px;

    font-size: 1.5rem;

    text-align: center;

    float: right;

    cursor: pointer;

}

/*========= Top Banner =========*/

.top-banner {

	position: relative;

	padding-top: 280px;

	padding-bottom: 170px;

	overflow: hidden;

}

.top-banner::before {

	content: "";

	height: 100%;

	width: 100%;

	position: absolute;

	top: 0;

	left: 0;

	background-color: rgba(0,0,0,0.7);

	z-index: 1;

}

.banner-bg {

	position: absolute;

	left: 0;

	top: 0;

	width: 170%;

	height: 100%;

	background-position: center;

}

.banner-animate {

    animation-name: banner-animate;

    animation-duration: 70s;

    animation-iteration-count: infinite;

    animation-timing-function: linear;

    -webkit-animation-name: banner-animate;

    -webkit-animation-duration: 70s;

    -webkit-animation-iteration-count: infinite;

    -webkit-animation-timing-function: linear;

    -moz-animation-name: banner-animate;

    -moz-animation-duration: 70s;

    -moz-animation-iteration-count: infinite;

    -moz-animation-timing-function: linear;

    -ms-animation-name: banner-animate;

    -ms-animation-duration: 70s;

    -ms-animation-iteration-count: infinite;

    -ms-animation-timing-function: linear;

    -o-animation-name: banner-animate;

    -o-animation-duration: 70s;

    -o-animation-iteration-count: infinite;

    -o-animation-timing-function: linear;

}

@-webkit-keyframes banner-animate {

  0% {

    -webkit-transform: translateX(-1000px);

    transform: translateX(-1000px);

  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}
@keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

.banner-content span {
	color: #fff;
	font-size: 2rem;
	line-height: 2.5rem;
	margin-top: 2.8125rem;
	display: block;
	max-width: 40%;
	margin-bottom: 1.25rem;
	letter-spacing: 0.6px;
}

.mouse-down svg {
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    height: 50px;
    fill: #fff;
}

.mouse-down svg path:nth-child(2) {
    animation: containerMsScroll 3s ease infinite;
    -webkit-animation: containerMsScroll 3s ease infinite;
}

@keyframes containerMsScroll {
    0% {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }

    100% {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

}

@-webkit-keyframes containerMsScroll {
    0% {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }

    100% {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

}

.banner-content {
    position: relative;
    z-index: 2;
}

/*========= Mockup =========*/

.mockup {
    position: absolute;
    top: -120px;
    z-index: 2;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);

}

.mockup img {
    display: block;
    margin: 0 auto;
}

/*========= Unique Features =========*/

.sec-heading {
    margin-bottom: 2.5rem;
}

.sec-heading h2 {
    color: #333333;
    font-size: 3.75rem;
    line-height: 3.75rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 50px;


}

.sec-heading span {
    color: #999999;
    font-size: 20px;
    text-transform: uppercase;
}

.uniq-feature {
    background-color: #fff;
    padding: 3.125rem 3rem;
    margin-bottom: 1.875rem;
    min-height: 277px;
}

.uniq-feature i {
    font-size: 3.75rem;
    color: #d91f23;
}
.uniq-feature img {
    margin-bottom: 23px;
    margin-top: 10px
}

.uniq-feature h3 {
    font-size: 1.65rem;
    line-height: 2.0625rem;
    letter-spacing: 0.6px;
    margin-top: 0.75rem;
}

.uniq-feature:hover {
    box-shadow: 0 0 65px 0 rgba(0,0,0,0.10);
}

/*========= Page Builder =========*/

.bulder-inner-contnt span {
    font-size: 1.625rem;
    color: #fff;
    letter-spacing: 0.6px;
    display: block;
}

.bulder-inner-contnt h2 {
    color: #fff;
    font-size: 3.75rem;
    margin-bottom: 0;
}

.pg-bulder-inner a {
    background-color: #000000;
    color: #fff;
    font-size: 1.125rem;
    padding: 1rem 3.125rem;
    display: inline-block;
    border-radius: 30px;
}

.pg-bulder-inner a:hover {
    color: #fff;
}

.page-builder {
    padding: 4.6875rem 6.25rem;
}

.pg-bulder-inner {
    padding-left: 3.75rem;
}

.pg-bulder-inner p {
    font-size: 1.375rem;
    line-height: 2.125rem;
    color: #fff;
    margin-bottom: 0;
    margin-top: 2.375rem;
}

/*========= Demos =========*/

.demo-nam {
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.demo-nam h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    letter-spacing: 0.6px;
}

.demo-nam h3 span {
    font-size: 1.6875rem;
    font-weight: normal;
}

.demo-nam > span {
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    border-bottom: 1px solid;
    margin-left: 18px;
}

.demo-item img {
    max-width: 100%;
    height: auto;
}

.demo-item h3 {
    text-transform: uppercase;
    margin-bottom: 0;
}

.demo-item h3 a {
    color: inherit;
}

.demo-item {
    text-align: center;
}

.niche-demos {
    padding: 5rem 5.625rem;
}

.demo-item figure {
    overflow: hidden;
    margin-bottom: 1.5625rem;
}

.demo-item:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.demo-list-item {
    margin-top: 4.0625rem;
    text-transform: uppercase;
    text-align: center;
}

.demo-list-item h3 {
    font-size: 1.625rem;
    letter-spacing: 0.6px;
    margin-top: 1.5rem;
}

.demo-list-item h3 span {
    font-weight: normal;
}

.demo-list-item h3 a {
    color: inherit;
}

.demo-list-item > span {
    color: #999999;
    font-size: 1.125rem;
}

.demo-list-item figure {
    overflow: hidden;
    margin-bottom: 0;
}

.demo-list-item figure img {

    max-width: 100%;

    height: auto;

}

.demo-list-item:hover img {

     transform: scale(1.2);

    -webkit-transform: scale(1.2);

    -moz-transform: scale(1.2);

}

.comng-son {

    padding: 9rem 1rem;

}

.comng-son h2 {

    font-size: 3.875rem;

    color: #fff;

    line-height: 4.4375rem;

}

.comng-son h2 span{

    display: block;

    font-size: 5.625rem;

    letter-spacing: 0.6px;

}

/*========= Carousel =========*/

.sec-heading.colr-bg h2 {

    color: #fff;

}

.sec-heading.colr-bg span {

    color: #bbbbbb;

}

.headr-carousel img {

    max-width: 100%;

    height: auto;

}

.headr-carousel figure {

    margin-bottom: 0;

}

.owl-dots {

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translate(-50%);

    -webkit-transform: translate(-50%);

    -moz-transform: translate(-50%);

}

.owl-dots span {

    height: 12px;

    width: 12px;

    border-radius: 50%;

    display: inline-block;

    margin-right: 5px;

    background-color: #56575a;

}

.owl-dots .owl-dot.active span {

    background-color: #fff;

    width: 46px;

    border-radius: 30px;

}

.headr-carousel {

    padding-bottom: 50px;

}

/*========= About Theme =========*/

.abt-theme {

    padding-left: 9%;

    padding-right: 9%;

}

.abt-theme h2 {

    font-size: 3.4375rem;

    line-height: 3.75rem;

    text-transform: uppercase;

    margin-bottom: 2.1875rem;

}

.abt-theme p {

    color: #666666;

    font-size: 1.375rem;

    line-height: 2.125rem;

    margin-bottom: 3.125rem;

}

.abt-theme > a {

    padding: 1.15rem 3.875rem;

}

.iframe-container {

  overflow: hidden;

  padding-top: 68%;

  position: relative;

}

.iframe-container iframe {

   border: 0;

   height: 100%;

   left: 0;

   position: absolute;

   top: 0;

   width: 100%;

}

/*=====================Support Section==========*/
section.gap.dictate{
    padding-top: 120px;
}
.support-item {
	background-color: #fff;
	box-shadow: 0 0 35px rgba(0,0,0,0.2);
	padding: 50px 50px 40px 50px;
}
.support-item h3 {
	font-size: 1.875rem;
}
.support-item p {
	font-size: 1.0625rem;
	line-height: 1.765em;
    color: #666;
    font-family: "Manrope", Sans-serif;
}
a.theme-btn.mt-3{
    display: inline-block;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 30px;
    background-color: #e58041;
    padding: 1.15rem 3.875rem;
    transition: 0.3s ease-in-out;
}
a.theme-btn.mt-3:hover{
    color: #fff;
    background-color: #000;
}


/*======= user recomendation ============*/
.reviewers-carousel div.owl-item {padding: 0 15px;}
.user-recom {
  -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
  float: left;
  position: relative;
  width: 100%;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background-color: #fff;
  padding: 63px 35px 62px 40px;
  margin: 15px 0;
  z-index: 1;
}
.user-recom::before {
  position: absolute;
  content: "\f10d";
  font-family: fontawesome;
  top: -10px;
  left: 40px;
  font-size: 142.5px;
  color: rgba(245,245,245,.58);
  z-index: -1;
}
.user-recom>p {
  float: left;
  width: 100%;
  margin-bottom: 0;
  font-family: lato;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.3px;
  color: #6d6d6d;
  font-weight: 18;
}
.stars {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-top: 27px;
}
.stars>li {
  float: left;
  position: relative;
}
.stars>li>i {
  font-size: 14px;
  margin-right: 4px;
}
.stars>li>span {
  font-style: italic;
  font-size: 14px;
  font-family: lato;
  color: #000000;
}
.fa.off {color: #cecece;}
.stars>li>span>i {margin: 0 8px;}


/*========= Footer =========*/

.footer ul li {

    margin-right: 5px;

}

.footer ul li a {

    height: 3.75rem;

    width: 3.75rem;

    line-height: 3.75rem;

    color: #fff;

    font-size: 1.375rem;

    display: inline-block;

    text-align: center;

    border-radius: 50%;

}

.footer ul li a.fb {

    background-color: #3069ae;

}

.footer ul li a.gog {

    background-color: #d12d2d;

}

.footer ul li a.twitr {

    background-color: #299ae7;

}

.footer ul li a.linked {

    background-color: #20436f;

}

.footer ul li a.yt {

    background-color: #e41b1b;

}

.footer p {

    font-size: 1.125rem;

    color: #131313;

    margin-bottom: 0;

}

.footer ul li:hover a{

    transform: translateY(-12px);

    -webkit-transform: translateY(-12px);

    -moz-transform: translateY(-12px);

}

/*========= Loader =========*/

.se-pre-con {

    position: fixed;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    z-index: 9999;

    background: url(../../images/loader.gif) center no-repeat #fff;

}

/*========= Transition =========*/

.primary-btn,

header .navbar-nav li a,

.uniq-feature,

.uniq-feature i,

.pg-bulder-inner a,

.demo-item h3,

.demo-item img,

.demo-list-item figure img,

.owl-dots span,

.footer ul li a,

.respnsive-header .menu-area,

.respnsive-header .menu-lst li a {

	transition: all 0.45s;

	-webkit-transition: all 0.45s;

	-moz-transition: all 0.45s;

}
.sec-heading p {
    font-size: 20px;
    color: #999;
    display: inline-block;
    max-width: 73%;
    margin-top: 7px;
}

/*Header*/
.site-navigation nav ul li a:hover{
	color: #95271a;
}
a.loginn {
    padding: 12px 18px;
    height: 100%;
    background-color: transparent;
    color: #3d75e6;
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    border: 1px solid;
    transition: 0.3s ease-in-out;
}
a.loginn:hover {
	background-color: #3d75e6 !important;
	color: white !important;
	border: 1px solid  #3d75e6 !important;
}
a.contact:hover{
    background-color:white;
    color: #3d75e6;
}

a.contact {
    padding: .66rem 2.2rem;
    height: 100%;
    background-color: transparent;
    background-color: #3d75e6;
    color: white;
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    border: 1px solid;
    transition: 0.3s ease-in-out;

}
a.contact:hover {
	border: 1px solid #3d75e6;
}
.site-btn ul {
    margin-bottom: 0;
}
header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 2px 2px 24px 0px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.header-wrapper {
    padding: 1rem 0;
}
.site-navigation nav ul li {
    margin: 0 4px;
}
.site-navigation nav ul li a {
    font-size: 1.125rem;
    font-weight: 600;
    color: #161515;
    padding: 0 15px;
    transition: all 0.35s ease-in-out;
}
header.sticky .header-wrapper {
    padding: 0.75rem 0;
}

.res-header-bar {
    padding: 15px;
}
.res-btns > a {
    background-color: #fff;
    color: #0575e6;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    width: 50px;
    text-align: center;
    padding: 0;
}
.close-menu {
    height: 40px;
    width: 40px;
    color: #fff;
    line-height: 40px;
    background-color: #0575e6;
}
.close-menu:hover {
    background-color: #033333;
    color: #fff;
}
.responsive-menu-wrapper {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    height: 100%;
    padding: 20px 15px;
    transition: all 0.35s ease-in-out;
}
.responsive-menu-wrapper ul {
    margin: 35px 0 20px;
}
.responsive-menu-wrapper ul li {
    margin: 4px 0;
}
.responsive-menu-wrapper ul li a:hover {
    color: #333;
}
.responsive-menu-wrapper.active {
    left: 0;
}
@media (max-width: 980px) {
    .responsive-header {
        display: block;
    }
}
@media (max-width: 425px) {
    .res-btns > a {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    .res-header-bar img {
        width: 130px;
    }
}

.hea-der nav ul {
	list-style: none;
}

.hamburger,
.crosss {
	display: none;
}

/* header move on scroll */
.slideUp {
  transform: translateY(-140px);
  -webkit-transform: translateY(-140px);
  -moz-transform: translateY(-140px);
  -o-transform: translateY(-140px);
  position: fixed;
  top: 0;
  width: 100%;
}
.slideDown {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  position: fixed;
  top: 0;
  width: 100%;
}
.slideUp,
.slideDown{
    transition: transform .5s ease-out;
  -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
}
h2.mb-3.mt-n3{
	width: 61%;
    margin: auto;
	font-size: 2.5rem;
}
p.book-features-detail{
	width: 50%;
    margin: auto;
    text-align: center;
}
/*==== wave-svg-box =====*/
.wave-svg-box {
  width: 100%;
  z-index: 1; }
  .wave-svg-box .wave {
    animation: wave 9s linear;
    animation-iteration-count: infinite;
    fill: #FCFCFC; }
  .wave-svg-box #wave2 {
    animation-duration: 6s;
    animation-direction: reverse;
    opacity: .6; }
  .wave-svg-box #wave3 {
    animation-duration: 8s;
    opacity: .3; }
  .wave-svg-box .gooeff {
    filter: url(#goo); }
    .wave-svg-box .gooeff .drop {
      fill: #FCFCFC;
 
      animation: drop 8.3s linear infinite normal;
      stroke: var(#FCFCFC);
      transform: translateY(25px);
      transform-box: fill-box;
      transform-origin: 50% 100%; }
    .wave-svg-box .gooeff .drop2 {
      animation-delay: 3s;
      animation-duration: 5s; }
    .wave-svg-box .gooeff .drop3 {
      animation-delay: -3s;
      animation-duration: 4.4s; }
    .wave-svg-box .gooeff .drop4 {
      animation-delay: 2.7s; }
    .wave-svg-box .gooeff .drop5 {
      animation-delay: 3.7s;
      animation-duration: 4.1s; }
    .wave-svg-box .gooeff .drop6 {
      animation-delay: -2.1s;
      animation-duration: 5.2s; }

@keyframes wave {
  to {
    transform: translateX(-100%); } }
.wave-box {
  position: absolute;
  bottom:-140px;
  left: 0;
  right: 0;
  z-index: 9;
}

/*================Footer=============*/
/* <!-- Footer--> */


.logo img{
	width: auto;
  
   }
   .logo{
	text-align: center;
	margin-top: 110px;
   }
   .logo h2{
	font-size: 3.125rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-align: center;
	margin-top: 30px;
   }
   .logo p{
	font-weight: 500;
	font-size: 1.0625rem;
	width: 75%;
	margin: auto;
	color: #666;
	  font-family: "Arimo", sans-serif;
	  text-align: center;
	  margin-top: 30px;
   }
   .logo a{
	color: #fff;
	  font-weight: 700;
	  font-size: 0.875rem;
	  display: inline-block;
	  padding: 1.143em 3.571em;
	  font-family: 'Poppins', sans-serif;
	  border: 1px solid;
	  background-color: #e1601f;
	  text-decoration: none;
	  transition: all .3s linear;
   }
   .logo a:hover{
	color: #e1601f;
		border-color: #e1601f;
		background-color: white;
		transform: scale(1);
		text-decoration: none;
   }
   .rights{
	background-color: black;
	  color: white;
	  margin-top: 117px;
	  font-family: "Arimo", sans-serif;
   }
   .list-unstyled-new li a{
	color: white;
	  text-decoration: none;
	  transition: 0.3s all linear;
	  font-family: 'Poppins', sans-serif;
	  font-weight: bold;
   }
   .list-unstyled-new li a{
  margin-left: 20px;
   }
   .site-bran svg{
    height: 50px;
    width: 190px;
   }

   .purchase-btns{
    margin-top: 64px;
  }
  .lifelne2-purchaseref-wrap {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    line-height: normal;
    position: fixed;
    right: -87px;
    z-index: 999;
    transition: all 0.35s;
  }
  .lifelne2-purchaseref-wrap:hover {
    right: 1px;
  }
  .lifelne2-purchaseref-wrap a.link-purchase-iu {
    background: #1b1b1b none repeat scroll 0 0;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 14px 18px;
  }
  .lifelne2-purchaseref-wrap a.link-purchase-iu img:first-child {
    margin-right: 6px;
  }
  .lifelne2-purchaseref-wrap a.link-purchase-iu {
    background: #1b1b1b none repeat scroll 0 0;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 14px 18px;
  }
  .lifelne2-purchaseref-wrap a.link-purchase-iu img:first-child {
    margin-right: 6px;
  }
  i.fa-solid.fa-cart-shopping{
    margin-right: 14px;
    }
    .lifelne2-purchaseref-wrap  {
        animation:
        bounce 600ms alternate infinite cubic-bezier(.2, .65, .6, 1)
      }
      @keyframes bounce {
        from {
          transform: translateY(0px);
        }
        to {
          transform: translateY(-10px);
        }
    }
    .qmt-social-chat.qmt-social-wtsapp {
		position: fixed;
		right: -107px;
		top: 70%;
		z-index: 999999999;
		animation: bounce 600ms alternate infinite cubic-bezier(.2, .65, .6, 1);
		transition: .4s ease-in-out;
	}
	.qmt-social-chat.qmt-social-wtsapp:hover{
		right: 1px;
		animation: none;
	}
	.qmt-social-chat.qmt-social-wtsapp img{
		width: 34px;
	}
	.qmt-social-chat.qmt-social-wtsapp span{
		font-size: 15px;
		text-decoration: underline;
		color: white;
		font-weight: 600;
	}
	a.qmt-wtsapp {
	padding: 16px 14px 20px 14px;
		box-shadow: 0px 0px 8px 0px #00000038;
		background-color: #68d743;
		border-radius: 4px;
	}