HTML SCSS JSResult Skip Results Iframe EDIT ON body {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #34495e;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 160px;
    overflow:hidden;
    font-family: 'Lato', sans-serif;
    font-size: 35px;
    line-height: 40px;
    color: #ecf0f1;
    &__container {
        font-weight: 600;
        overflow: hidden;
        height: 40px;
        padding: 0 40px;
        &:before {
            content: '[';
            left: 0;
       }
        &:after {
            content: ']';
            position: absolute;
            right: 0;
       }
        &:after, &:before {
            position: absolute;
            top: 0;
            color: #16a085;
            font-size: 42px;
            line-height: 40px;
            -webkit-animation-name: opacity;
            -webkit-animation-duration: 2s;
            -webkit-animation-iteration-count: infinite;
            animation-name: opacity;
            animation-duration: 2s;
            animation-iteration-count: infinite;
       }
        &__text {
            display: inline;
            float: left;
            margin: 0;
       }
        &__list {
            margin-top: 0;
            padding-left: 110px;
            text-align: left;
            list-style: none;
            -webkit-animation-name: change;
            -webkit-animation-duration: 10s;
            -webkit-animation-iteration-count: infinite;
            animation-name: change;
            animation-duration: 10s;
            animation-iteration-count: infinite;
            &__item {
                line-height:40px;
                margin:0;
           }
       }
   }
}
@-webkit-keyframes opacity {
    0%, 100% {
       opacity:0;
   }
    50% {
       opacity:1;
   }
}
@-webkit-keyframes change {
    0%, 12.66%, 100% {
       transform:translate3d(0,0,0);
   }
    16.66%, 29.32% {
       transform:translate3d(0,-25%,0);
   }
    33.32%,45.98% {
       transform:translate3d(0,-50%,0);
   }
    49.98%,62.64% {
       transform:translate3d(0,-75%,0);
   }
    66.64%,79.3% {
       transform:translate3d(0,-50%,0);
   }
    83.3%,95.96% {
       transform:translate3d(0,-25%,0);
   }
}
@-o-keyframes opacity {
    0%, 100% {
       opacity:0;
   }
    50% {
       opacity:1;
   }
}
@-o-keyframes change {
    0%, 12.66%, 100% {
       transform:translate3d(0,0,0);
   }
    16.66%, 29.32% {
       transform:translate3d(0,-25%,0);
   }
    33.32%,45.98% {
       transform:translate3d(0,-50%,0);
   }
    49.98%,62.64% {
       transform:translate3d(0,-75%,0);
   }
    66.64%,79.3% {
       transform:translate3d(0,-50%,0);
   }
    83.3%,95.96% {
       transform:translate3d(0,-25%,0);
   }
}
@-moz-keyframes opacity {
    0%, 100% {
       opacity:0;
   }
    50% {
       opacity:1;
   }
}
@-moz-keyframes change {
    0%, 12.66%, 100% {
       transform:translate3d(0,0,0);
   }
    16.66%, 29.32% {
       transform:translate3d(0,-25%,0);
   }
    33.32%,45.98% {
       transform:translate3d(0,-50%,0);
   }
    49.98%,62.64% {
       transform:translate3d(0,-75%,0);
   }
    66.64%,79.3% {
       transform:translate3d(0,-50%,0);
   }
    83.3%,95.96% {
       transform:translate3d(0,-25%,0);
   }
}
@keyframes opacity {
    0%, 100% {
       opacity:0;
   }
    50% {
       opacity:1;
   }
}
@keyframes change {
    0%, 12.66%, 100% {
       transform:translate3d(0,0,0);
   }
    16.66%, 29.32% {
       transform:translate3d(0,-25%,0);
   }
    33.32%,45.98% {
       transform:translate3d(0,-50%,0);
   }
    49.98%,62.64% {
       transform:translate3d(0,-75%,0);
   }
    66.64%,79.3% {
       transform:translate3d(0,-50%,0);
   }
    83.3%,95.96% {
       transform:translate3d(0,-25%,0);
   }
}
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

.jt {
  position: relative;
  font-size: 20vmin;
  font-family: 'Staatliches', sans-serif;
  text-transform: uppercase;
  font-display: swap;
  text-shadow: 0 0 10px tomato;
}

.jt__row {
  display: block;
}
.jt__row:nth-child(1) {
  clip-path: polygon(-10% 75%, 110% 75%, 110% 110%, -10% 110%);
}
.jt__row:nth-child(2) {
  clip-path: polygon(-10% 50%, 110% 50%, 110% 75.3%, -10% 75.3%);
}
.jt__row:nth-child(3) {
  clip-path: polygon(-10% 25%, 110% 25%, 110% 50.3%, -10% 50.3%);
}
.jt__row:nth-child(4) {
  clip-path: polygon(-10% 0%, 110% 0%, 110% 25.3%, -10% 25.3%);
}

.jt__row.jt__row--sibling {
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  witdh:800px;
}

.jt__text {
  display: block;
  transform-origin: bottom left;
  animation: moveIn 2s 0s cubic-bezier(.36,0,.06,1) alternate infinite ;
}
.jt__row:nth-child(1) .jt__text {
  transform: translateY(-0.1em);
}
.jt__row:nth-child(2) .jt__text {
  transform: translateY(-0.3em) scaleY(1.1);
}
.jt__row:nth-child(3) .jt__text {
  transform: translateY(-0.5em) scaleY(1.2) ;
}
.jt__row:nth-child(4) .jt__text {
  transform: translateY(-0.7em) scaleY(1.3) ;
}
.jt__row:nth-child(5) .jt__text {
  transform: translateY(-0.9em) scaleY(1.4) ;
}
.jt__row:nth-child(6) .jt__text {
  transform: translateY(-1.1em) scaleY(1.5) ;
}

@keyframes moveIn {
  50%, 100% { 
    transform: translateY(0em)
  }
  0%   { 
  opacity: 0; 
  filter: blur(10px);
  
  }
  100% { 
  opacity: 1; 
  filter: blur(0px);
  }
}



.debug .jt__row:nth-child(even) {
  color: black;
  background: white;
}
.debug .jt__row:nth-child(odd) {
  color: white;
  background: black;
}

* { box-sizing: border-box }

html, body {
  margin: 0;
  background: black;
 
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Nunito",sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-dark);
}
.btn-outline-primary {
  color: var(--bs-skin);
  border-color: var(--bs-skin);
}
a{ color: var(--bs-skin);}
a:hover{color: var(--bs-skin);}
:root {
  --bs-shadow:#f5f5f5;
  --bs-black: #000000;
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-custom:#212121;
  --bs-rebeccapurple: #663399;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #ccc;
  --bs-gray-dark: #343a40;
  --bs-primary: #06A3DA;
  --bs-main:#285e8e;
  --bs-secondary: #34AD54;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #EEF9FF;
  --bs-dark: #091E3E;
  --bs-chocolate:chocolate;
  --step-variable:rgba(245, 245, 245, 1);
  --your-variable:#FFE4C4;
  --bs-login:#F7F8F9;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
  --bs-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  --bs-search:#cfc1cf57;
  --bs-dots:#d6d6d6;
  --bs-prodeta:#959090;
  --bs-skin:#F3D09D;
}



/* Home page css */
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: #000;
}
div#regionA {
  padding: 0 10px;
}
.main-part {
  font-size: 30px;
  display: flex;
}
.step-part .output {
  float: left;
  width: 50px;
}
.step-part {
  float: left;
  width: 100%;
  top: 0;
  position: absolute;height: 100vh;
}
div#div2 {
  font-size: 20px;
  box-shadow: var(--bs-shadow);
  color: var(--bs-black);
  margin-top: 20px;z-index: 1111;
}
h3.u-text.u-text-2 {
  font-weight: 700;
  font-size: 2.25rem;
  top: 50% !important;
  padding-top: 150px;
  left: 15%;
  font-weight: 600;
  font-family: "Rubik";
  text-align: initial;
}
.right-part .u-container-layout.u-valign-middle.u-container-layout-2 {
  bottom: 0;
  float: left;
  width: 100%;
  /* position: absolute; */
  bottom: 0;
  right: 100px;
}
.right-part .u-container-layout.u-valign-middle.u-container-layout-2 img {
  bottom: 0;
  right: 0;
  max-width: 100%;
  /* padding-top: 100
px
; */
  width: 100%;
  height: 100vh;

}
/* .right-part .u-container-layout.u-valign-middle.u-container-layout-2 img {
  bottom: 0;
  right: 0;
  max-width: 100%;
  padding-top: 100px;
} */
p.u-text.u-text-3 {
  font-size: 1.5rem;
  top: 55% !important;
  text-align: initial;
  left: 15%;
  font-weight: normal;
  font-family: "Rubik";
  padding-top: 15px;
  color: var(--bs-dark);
}
.step-part div#div1 {
  text-align: center;
  font-size: 28px;
  color: var(--bs-white);
  font-weight: 600;z-index:1111;
  /* height: 85vh; */
}
.step-part div#div2 {
  padding: 0px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background-color: var(--bs-white);
  z-index: 000;z-index: 1111;
}
.step-skin {
  text-align: center;
  position: relative;
  /* background-color: #455AC7; */
  height: 100vh;
  border-radius: 0px;
  display: flex;
}
.left-in {
  top: 50%;
  position: relative;
  color: var(--bs-white);
}
.step-part div#div1 p {
  position: relative;
  font-size: 30px;
  color: var(--bs-black);
  /* padding-top: 50px; */
  left: 0;
  float: left;
}
.navbar-dark .navbar-nav .nav-link {
font-family: "Roboto", sans-serif;
position: relative;
margin-left: 60px;
padding: 25px 0;
color: var(--bs-white);
font-size: 18px;
font-weight: 600;
outline: none;
transition: 0.5s;
}
.left-part {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: var(--bs-white);
}
.right-part {
  flex: 0 0 50%;
  max-width: 50%;
}
.left-part .u-container-layout.u-valign-top.u-container-layout-1 {
  padding: 30px;
}
.left-part h2.u-text.u-text-1 {
  /* padding: 30px 30px 30px 80px; */
  font-size: 6rem;
  font-weight: 700;
  margin: 0;
  text-align: initial;
  height: 160px;
  width: 360px;
  background-color: var(--bs-skin);
  padding: 25px 25px;
  text-align: center;
}

.step-part div#div3 {
  padding: 0px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background-color: var(--bs-white);z-index: 111111;
}
.step-part div#div4 {
  padding: 0px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background-color: var(--bs-white);z-index: 111111;
}
.logo-text {
font-size: 35px;
}
div#div1 img {
  width: 100%;
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px; */
  /* max-width: 300px; */
  /* padding-top: 15px;
  padding-top: 50px; */
}
div#div1:before{content: "";
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;

background-color: var(--bs-black);}
.content-skin {
float: left;

}
.navbar-dark .navbar-toggler {
    color: #000;
    border-color: #000;
}
.content-skin h1 {
  padding-top: 150px;
  font-size: 80px;
  /* max-width: 80%; */
  text-align: left;
  color: var(--bs-black);
  font-weight: 600;
  position: relative;
  font-family: 'Font Awesome 5 Free';
}

.btn-outline-primary:hover, .btn-outline-primary:focus{
color: var(--bs-white);
background-color: var(--bs-primary);
border-color:  var(--bs-main); /*set the color you want here*/
}

@media only screen and (max-width: 1024px) {
  .content-skin h1 {
font-size: 30px;
max-width: 100%;
text-align: left;
color: var(--bs-black);

font-weight: 600;
position: relative;


}
.navbar-dark .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-left: 60px;
  padding: 25px;
  color: var(--bs-white);
  font-size: 15px !important;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}
div#div1 {
display: block !important;
padding-top: 50px;
z-index: 1111;
}
.content-skin {
float: left;
/* width: 100%; */
padding-top: 20px;
}
.Lets-beg.float-left {
padding-bottom: 20px;
}
.step-part div#div1 p {
  position: relative;
  text-align: left;
  font-size: 25px;
  color: var(--bs-black);
  padding: 0px;
  
  /* padding-top: 50
px
; */
}

  .step-skin {
      height: auto;
  }
  .step-part div#div4 {
      padding: 0px;
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      margin-top: 0;
      background-color: var(--bs-white);
  }
  .step-part div#div2 {
      padding: 0px;
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      margin-top: 0;
      background-color: var(--bs-white);z-index: 111111;
  }
  .left-part h2.u-text.u-text-1 {
      /* padding: 30px 30px 30px 80px; */
      font-size: 6rem;
      font-weight: 700;
      margin: 0;
      text-align: initial;
      height: 160px;
      width: 100% !important;
      text-align: center;
      background-color: var(--step-variable);
      padding: 25px 0px;
      font-size: 50px;
  }
  .left-part {
      flex: 0 0 50%;
      max-width: 100%;
      background-color: var(--bs-white);
  }
  h3.u-text.u-text-2 {
      font-weight: 700;
      font-size: 2.25rem;
      top: 0% !important;
      padding-top: 0;
      left: 15%;
      font-weight: 600;
      font-family: "Rubik";
      text-align: initial;
  }
  .right-part {
      flex: 0 0 50%;
      max-width: 100%;
  }
  .right-part .u-container-layout.u-valign-middle.u-container-layout-2 img {
      bottom: 0;
      right: 0;
      max-width: 100%;
      padding-top: 50px;
  }
  .step-skin {
      text-align: center;
      position: relative;

      height: 100vh;
      border-radius: 0px;
      display: block;
  }
  .step-part div#div3 {
      padding: 0px;
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      margin-top: 0;
      background-color: var(--bs-white);
  }
}
#div2 h2 {
  display: none;
}
#div3 h2 {
  display: none;
}
#div4 h2 {
  display: none;
}
#div5 h2 {
  display: none;
}

#div2 {
  display: none;
}
#div3 {
  display: none;
}
#div4 {
  display: none;
}
#div5 {
  display: none;
}
#first
{display: none;}
#two
{display: none;}
#three
{display: none;}
#four
{display: none;}
#five
{display: none;}
#six
{display: none;}

@media only screen and (max-width: 768px) {
.navbar-dark .navbar-nav .nav-link {

margin-left: 0px;

}
.right-part .u-container-layout.u-valign-middle.u-container-layout-2 img {
  bottom: 0;
  right: 0;
  max-width: 100%;
  /* padding-top: 100
px
; */
  width: 100%;
  height: 100% !important;

}
}


/* Login register css */

.Signup-heading h1 {
  color: var(--bs-skin);
  font-size: 32px;
font-weight: 700;
text-align:center;padding-bottom: 15px;

}
.login-page {
float: left;
width: 60%;
}
.form-inner {
border-radius: 5px;
display: flex;
/* box-shadow: rgb(0 0 0 / 35%) 0px 3px 2px; */
width: 100%;
box-shadow: var(--bs-shadow);
padding-left: 0;
padding-right: 0;
}
.login-part {
border-radius: 5px;
background-color: var(--bs-white);
padding: 45px;
/* border-radius: 5px; */
width: 60%;
}

.form-login label {
color: var(--bs-gray);
}
.input-group-addon {
position: absolute;
right: 0;
padding: 12px 0px;
margin: 0px 10px;
z-index: 111111111;
}
.login-btn {
width: 100%;
border-radius: 50px;

}
input.form-control::-webkit-input-placeholder { /* Edge */
color: var(--bs-skin);
}

input.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: var(--bs-skin);
}

input.form-control::placeholder {
color: var(--bs-skin);
}
.btn-outline-primary:hover {
color: var(--bs-white);
background-color:  var(--bs-skin);
border-color:  var(--bs-skin);
}
.link-anohter {
padding: 0px 10px;
font-size: 20px;
color: var(--bs-gray);
font-weight: 600;
/* display: grid; */
}
.login-page .right-part {
width: 40%;

background-color: var(--bs-white);
/* padding: 45px; */
/* border-radius: 5px; */
width: 50%;
}
.login-page .right-part img {
width: 100%;
background-size: 100%;
height: 100%;border-radius: 5px;
}

.login-page .social-links {
width: 350px;
display:block;
margin: 0 auto;
}
.login-page .social-icon {
color: var(--bs-white);
}
ul.social-icons {
margin-top: 10px;
text-align: center;
padding-left: 0;
}
.login-page .social-links p {
text-align: center;
font-size: 18px;
color: var(--bs-black);
}
.login-page .social-icons li {
margin: 0 10px;
vertical-align: top;
display: inline;
height: 100px;
padding: 10px;
display: inline-block;
position: relative;
cursor: pointer;
width: 40px;
height: 40px;
/* box-shadow: 0 2px 2px #999; */
padding: 0px;
text-decoration: none;
text-align: center;
color: var(--bs-white);
font-size: 25px;
font-weight: normal;

border-radius: 25px;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border: 2px solid var(--bs-black);
}
.login-page .social-icons a {
color: var(--bs-black);
text-decoration: none;
font-size: 22px;
}
.form-control {
display: block;
width: 100%;
padding: 10px;}
button.btn.btn-outline-primary.mt-4.login-btn {
padding: 10px;
}
@media only screen and (max-width: 1024px) {
.login-page {
float: left;
width: 100%;
}
.login-page {
float: left;
width: 100%;
overflow-y: scroll;
}
}
@media only screen and (max-width: 768px) {
.login-page .social-links {
width: 100%;
display: block;
margin: 0 auto;
}
.login-page .Signup-heading h1 {
color: var(--bs-primary);
font-size: 22px !important;
font-weight: 700;
max-width: 100%;
}
.login-page {
float: left;
width: 100%;
overflow-y: scroll;
}
.form-inner {
display: block;}
.login-part {
background-color: var(--bs-white);

/* border-radius: 5px; */
width: 100%;
}
.login-page .social-icons li {
margin: 0 10px;
vertical-align: top;
display: inline;
height: 100px;
padding: 10px;
display: inline-block;
position: relative;
cursor: pointer;
width: 40px;
height: 40px;
/* box-shadow: 0 2px 2px #999; */
padding: 0px;
text-decoration: none;
text-align: center;
color: var(--bs-white);
font-size: 25px;
font-weight: normal;
border-radius: 25px;
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border: 2px solid var(--bs-black);
margin-left: 0;
}
.login-page .right-part {
width: 40%;
background-color: var(--bs-white);

width: 100%;
}
}


/* Product page css */

.left-profile {
  width: 50%;
}
.right-content {
  width: 50%;overflow-y: scroll;
}
.left-profile p {
  padding: 10px;
  padding-top: 0px;
  font-size: 16px;
  color: var(--bs-black);
}
.left-profile h3 {

  padding: 10px;
  text-align: center;
  padding-top: 20px;
}


.left-profile img {
  height: 100vh;
  max-height: 400px;
  /* border-radius: 50%; */
  /* height: 200px; */
  /* width: 200px; */
  width: 100%;
  /* border-radius: 50%; */
  /* text-align: center; */
  /* margin: 0 auto; */
  /* display: block; */
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px; */
  padding: 20px;
  border-radius: 30px;
}
.user-pic {
  display: flex;
}
.health-title h2 {
  color: var(--bs-black);
}
.health-card img {
  width: 100%;
}
.health-dem {
  padding: 10px 10px;
  background-color: var(--bs-white);
  height: 100vh;
}
.checked {
color: var(--bs-orange);
}
.product-title {
  display: flex;
  width: 100%;
  padding-top: 15px;
}
.product-title .title {
  width: 100%;
  font-size: 20px;
  color: var(--bs-black);
}
.product-title i.far.fa-heart {
  float: right;
  font-size: 20px;
  padding-top: 5px;
}
.health-card {
  background-color: var(--bs-white);
  padding: 10px;margin-bottom: 10px;
  border-radius: 5px;
}
.health-card:hover {
  box-shadow: var(--bs-shadow);
}
.product-title i.far.fa-heart {
  float: right;
}
.price-product {
  padding-top: 10px;
  font-size: 20px;
}
.left-profile ul li {
  color: var(--bs-black);
  font-size: 17px;
}
.mx-wid {
  width: 100%;
}

.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: var(--bs-white);
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
  text-decoration: none;
  display: block;
  transition: 0.3s;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -.24px;
  color: var(--bs-white);
  outline: none;
}
.cart-view ul {
  list-style: none;
  padding: 0;
}
/* .sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
} */

.sidenav a:hover {
color: var(--bs-black);
}

.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
.cart-view {
  padding: 15px;
}
.cart_image {
  float: left;
  width: 100%;
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  padding-right: 20px;
}
.cart_image img {
  max-width: 100%;
  height: auto;
}
.mini-cart__item__title {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--bs-gray);
}
.sidenav a {
  text-decoration: none;
  display: block;
  transition: 0.3s;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -.24px;
  color: var(--bs-skin);
  outline: none;
}
.cart-view h1 {
  font-size: 22px;
  color: var(--bs-white);
}
/* .quantity.nav {
  width: 100%;
} */
.quantity {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 0;
  padding: 10px 0;
}
.quantity.nav a.quantity__minus {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0;
  background: var(--bs-skin);
  text-decoration: none;
  text-align: center;
  line-height: 35px;
  color: var(--bs-white) !important;
}
.quantity__input {
  width: 40px;
  height: 35px;
  margin: 0;
  padding: 0;
  text-align: center;
  border-top: 2px solid var(--bs-skin);
  border-bottom: 2px solid var(--bs-skin);
  border-left: 1px solid var(--bs-skin);
  border-right: 2px solid var(--bs-skin);
  background: var(--bs-white);
  color: var(--bs-skin);
  font-size: 20px;
}
.quantity.nav a.quantity__plus {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0;
  background: var(--bs-skin);
  text-decoration: none;
  text-align: center;
  line-height: 35px;
  color: var(--bs-white) !important;
}
.cart-view li.cart_subtotal.js-cart_subtotal {
  float: left;
  width: 100%;color: var(--bs-skin);
}
.sidenav .closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 25px;
  margin-left: 50px;
  color: var(--bs-skin);
}
.cart-view span.right {
  float: right;
}
.cart-view h1 {
  font-size: 22px;
  color: var(--bs-black);
}
textarea#note {
  min-height: 120px;
  padding: 15px 9px;
  width: 100%;
  border: 1px solid var(--bs-gray);
  margin: 10px 0px;
}
.book {
  background-color: var(--bs-primary);
  margin-top: 10px;
  font-size: 18px;
}
a.btn.btn-outline-primary:hover{
  color: var(--bs-white);
  background-color: var(--bs-skin);
  border-color: var(--bs-skin); /*set the color you want here*/
}
@media only screen and (max-width: 1024px) {
.user-pic {
  display: block;overflow-y: scroll;
}
.left-profile img {
  height: auto;}
.left-profile {
  width: 100%;
}
.right-content {
  width: 100%;
}
.health-dem {
  padding: 10px 0px;
  background-color: var(--bs-white);
  height: auto;
}

}
.btn-outline-primary:hover, .btn-outline-primary:focus{
  color: var(--bs-white);
  background-color: var(--bs-skin);
  border-color: var(--bs-skin); /*set the color you want here*/
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}


/* Search product page css */


      .product-search{
      float: left;
  width: 100%;
  top: 0;
  position: absolute;}
  .navbar-dark .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-left: 60px;
  padding: 25px 0;
  color: var(--bs-white);
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}
.search {
width: 100%;
position: relative;
display: flex;width: 250px;

}

.searchTerm {
  width: 100%;
  border: 2px solid var(--bs-search);
  
  padding: 5px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: var(--bs-black);
  border-radius: 50px;
  font-size: 15px;
  padding: 7px 15px;
}

.searchTerm:focus{
  color: var(--bs-black);
}
.filtering {
    padding-top: 45px;
}
.searchButton {
    /* border-radius: 50px; */
    width: 40px;
    border: 0px;
    background: transparent;
    text-align: center;
    color: var(--bs-black);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
    /* border-radius: 50px; */
    position: absolute;
    right: 0;
    font-size: 14px;
    padding: 10px;
}
.product-listing h1 {
  font-size: 50px;
  color: var(--bs-skin);
  font-weight: 800;
  padding-bottom: 15px;
  padding-top: 50px;   
}
.health-card-product img {
  width: 100%;
}
.health-card-product {
  /* padding: 5px;
  box-shadow: var(--bs-shadow);
  border-radius: 25px; */
  /* border: solid #000; */
}
.title-description {
  /* box-shadow: var(--bs-shadow);
  border-radius: 25px; */
  /* margin: 11px; */
  /* padding: 20px;background-color: var(--bs-primary); */
  /* padding-bottom: 15px; */
}
.back-pro {
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 25px;
  padding-bottom: 10px;
}
div#owl-carousel-md {
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 25px;
  padding-bottom: 10px; */
}
div#owl-carousel-health{
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 25px;
  padding-bottom: 10px; */

}
div#owl-carousel-Oily{
  /* box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 25px;
  padding-bottom: 10px; */
}
.title-description {
  /* margin: 11px; */
  padding: 20px;
  background-color: var(--bs-skin);
  /* padding-bottom: 15px; */
  margin: 10px;
  border-radius: 25px;
  margin-bottom: 0px;
}
.title-description h2 {
  font-size: 18px;
  margin-bottom: 0;color: var(--bs-white);font-weight: 800;
}
.title-description p {
  color: var(--bs-white);
  font-size: 15px;
  font-weight: normal;
}
.product-price {
  color: var(--bs-white);
  display: flex;
}
.title-orice {
  float: left;
  width: 100%;
  padding-top: 5px;
  font-size: 20px;
  font-weight: 600;
}
span.creativep-dem {
  box-shadow: var(--bs-shadow);
  vertical-align: top;
  display: inline;
  height: 100px;
  padding: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  /* box-shadow: 0 2px 2px #999; */
  /* padding: 0px; */
  text-decoration: none;
  text-align: center;
  color: var(--bs-white);
  font-size: 25px;
  font-weight: normal;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  /* border: 2px solid #fff; */
  padding: 3px 9px;
  font-weight: normal !important;   
   /* background-color: var(--bs-main); */
}
.filter-cat {
  color: var(--bs-skin);
  font-size: 18px;
}
.filter-cat label {
  padding-bottom: 3px;
}
.product-search input.searchTerm::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color:  var(--bs-skin);
opacity: 1; /* Firefox */
}

.product-search input.searchTerm:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:  var(--bs-skin);
}

.product-search input.searchTerm::-ms-input-placeholder { /* Microsoft Edge */
  color:  var(--bs-skin);
}
.d-desktop{
  display: none;
}
.d-none{display: block !important;}
@media only screen and (max-width: 1024px) {
.filter-cat {
  color: var(--bs-primary);
  font-size: 14px;
}
}
@media only screen and (max-width: 768px) {

  .search {
  width: 100%;
  position: relative;
  display: flex;
  width: 100%;
}
.navbar-dark .navbar-nav .nav-link {
 
  margin-left: 0;
}
.d-desktop {
  display: block;
  right: 83px;
  position: absolute;
  z-index: 111;
  /* top: 22px; */
}
.product-listing h1 {
  font-size: 30px;
  color: var(--bs-primary);
  font-weight: 800;
  padding-bottom: 15px;
  padding-top: 20px;
  font-family: 'Rubik';
}
.filtering {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* .health-card-product {
  padding: 5px;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 25px;
  /* border: solid #000; */
  /* margin-bottom: 20px; */
/* } */ 

.filter-cat label {
  padding-bottom: 3px;
  font-size: 14px;
}
.d-none{display: none !important;}
/* .res-flat .nav-item {
  float: right;
  padding-right: 20px;
 
} */

}


/* Product Details */

.product-details-part {
  float: left;
  width: 100%;
  top: 0;
  position: absolute;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
  width: 250px;
}

.searchTerm {
  width: 100%;
  border: 2px solid var(--bs-search);

  padding: 5px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color:  var(--bs-black);
  border-radius: 50px;
  font-size: 15px;
  padding: 7px 15px;
}
button.owl-dot.active {
  /* background-color: red; */

  /* z-index: 11111111; */
  border: 0px solid transparent;
  background-color: transparent;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background:  var(--bs-skin);
  padding: 0 10px;
}
.product-details-part button.owl-dot {
  /* background-color: red; */

  /* z-index: 11111111; */
  border: 0px solid transparent;
  background-color: transparent;
}
.product-details-part .searchTerm:focus {
  color: var(--bs-black);
}

.product-details-part .searchButton {
  /* border-radius: 50px; */
  width: 40px;
  border: 0px;
  background: transparent;
  text-align: center;
  color: var(--bs-black);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
  /* border-radius: 50px; */
  position: absolute;
  right: 0;
  font-size: 14px;
  padding: 10px;
}
.product-details-part input.searchTerm::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--bs-skin);
  opacity: 1; /* Firefox */
}

.product-details-part input.searchTerm:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--bs-skin);
}

.product-details-part input.searchTerm::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--bs-skin);
}


/* Product histroy list */

.product-history {
  float: left;
  width: 100%;
  top: 0;
  position: absolute;
}
.product-history-list h1 {
  font-size: 50px;
  color: var(--bs-skin);
  font-weight: 800;
  padding-bottom: 0px;
  padding-top: 50px;
  margin-bottom: 0;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.user-avtar {
  float: right;
  width: 100%;
  text-align: end;
}

.product-history-list p {
  font-size: 16px;
  color: var(--bs-black);
}

.dipach-color {
  background-color: var(--step-variable);
  padding: 15px;
  border-left-color: var(--bs-skin);
  /* border: 1px solid #000; */
  border-left-style: outset;box-shadow: var(--bs-shadow);
  border-radius: 5px;
}
.btn-primary:hover{color:var(--bs-skin) !important}
.user-heading h1 {
  color:var(--bs-skin) ;
}
.bs-secondary {
  color: var(--bs-secondary);font-size: 15px;
} 
.dispached-details {
  color: var(--bs-grey);font-size: 15px;
}
.product-thumb {
 
  padding-right: 20px;
}
.arrived-details {
  background-color: var(--bs-white);
  float: left;
  width: 100%;
}
.product-thumb img {
  max-width: 100%;
  /* height: 100px; */
  padding: 5px;
  max-width: 100px;
  max-width: 100px;
}
.product-thumb-details {
  padding-top: 15px;
  padding-bottom: 10px;
}
.product-thumb-details p {
  margin-bottom: 0px;
}
hr {
  margin-top: 5px;
  margin-bottom: 5px;
}
.btn-primary {
  color: var(--bs-white);
  background-color: var(--bs-skin);
  border-color: var(--bs-skin);
}
span.user-name {

  color: var(--bs-skin);
}
.btn-primary:hover {
  color: var(--bs-white) !important;
  border-color: var(--bs-skin);
  background-color: var(--bs-skin);
}
.button-tack {
  width: 100%;
  margin-bottom: 10px;

}
.invoice-link a {
  float: left;
  width: 100%;
  text-align: center;
  padding-bottom: 0px;
  padding-top: 15px;
}
.thumb-in {
  padding: 15px;
  display: flex;
}
.bs-grey{color:var(--bs-gray);}
.deliver {
  border-left-color: var(--bs-gray-dark) !important;
}

@media only screen and (max-width: 768px) {
.product-history-list h1 {
  font-size: 30px;
  color: var(--bs-primary);
  font-weight: 800;
  padding-bottom: 0px;
  padding-top: 0;
  margin-bottom: 0;
}
}

@media only screen and (max-width: 576px) {
  .thumb-in {
    padding: 15px;
    display: block;
}
.logo-text {

  font-size: 19px !important;
}
.product-thumb-details h4 {
  font-size: 18px;
  
}
.product-thumb {
  padding-right: 20px;
  text-align: center;
}
  }