@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --bs-primary: #ff5113;
  --bs-primary-hover: #c93a12;
  --bs-secondary: #75787b;
  --bs-white: #fff;
  --bs-lighter: #f0f0f0;
  --bs-light: #e5e5e5;
  --bs-light-grey: #bbb;
  --bs-grey: rgb(134, 134, 139);
  --bs-dark: rgb(29, 29, 31);
  --bs-black: #000;
  --bs-body_text: rgb(70, 70, 75);
  --1st-radius: 20px;
  --2nd-radius: 12px;
  --3rd-radius: 6px;
  --btn-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  --bs-layout-bg: #fbece7;
  --bs-focus-bg: rgba(255, 81, 19, 0.05);
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  height: 100%;
}

main {
  flex: 1;
}

.instaktichen-main {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .instaktichen-main {
    display: flex;
    overflow: hidden;
  }
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bs-dark);
  overflow-x: hidden;
  color: var(--bs-body_text);
  font-weight: 300;
  scrollbar-width: none;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
  color: var(--bs-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

a, p, span {
  font-family: "Robtoto", sans-serif;
}

a {
  color: var(--bs-secondary);
  text-decoration: none;
}
a:hover {
  color: var(--bs-primary);
}

.font-heading {
  font-family: "Poppins", sans-serif;
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

.d-hidden {
  display: none !important;
}

.lofty-icon-custom {
  width: 60px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-brand img {
  max-width: calc(150px + 3vw);
}
.navbar-brand .logo-text {
  font-size: 1.8rem;
  margin-top: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--bs-dark);
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.footer-content {
  background-color: var(--bs-light-grey);
  padding: 12px 6px 20px;
}
.footer-content p {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .footer-content {
    padding: 12px 6px 12px;
  }
}
/* Set Background */
.set-bg {
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center;
}
.set-bg.filter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.set-bg.filter-50.filter::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.set-bg.filter-70.filter::after {
  background-color: rgba(0, 0, 0, 0.7);
}
.set-bg.filter-blur-3.filter::after {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

@media (min-width: 992px) {
  .inst-wrapper {
    display: flex;
  }
  .set-bg.fixed {
    background-attachment: fixed !important;
  }
}
/* Form */
.input-holder {
  position: relative;
}
.input-holder input {
  height: calc(50px + 0.5vw);
}
.input-holder .form-control {
  padding-left: 2.4rem;
  vertical-align: middle;
  border: 1px solid;
  background-color: var(--bs-white);
  border-color: var(--bs-light-grey);
  margin-bottom: calc(1rem + 0.5vw);
}
.input-holder .form-control:focus {
  box-shadow: none;
  border-color: var(--brand);
}
.input-holder .input-box-icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  color: #212529;
  opacity: 0.5;
  z-index: 999;
  transform: translateY(-50%);
  padding-bottom: calc(1rem + 0.5vw);
}
.input-holder .input-box-icon.fa-message {
  top: 0.8rem;
  transform: translateY(0);
}

.btn {
  border-radius: var(--3rd-radius);
}

.btn-primary {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  color: var(--bs-white);
  box-shadow: none;
}

.btn-primary:active,
.btn-primary:focus {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary-hover);
  color: var(--bs-white);
  box-shadow: none;
}

.btn-outline {
  border-color: var(--bs-light-grey);
  background-color: transparent;
  color: #fff;
  padding: 0.5rem 2.5rem !important;
  border-radius: 20px;
  line-height: 1.2;
}
.btn-outline i {
  font-size: 1.125rem;
}

.btn-outline:hover {
  border-color: var(--bs-white);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
  box-shadow: none;
}

.btn-outline:active,
.btn-outline:focus,
.btn-outline.active {
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--bs-white);
  box-shadow: none;
}

.btn-outline.active {
  pointer-events: none;
}

.btn-lg {
  padding: 1rem 4rem;
}

/**
 * Sidebar
 */
.sidebar {
  position: relative;
  display: block;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  background: var(--bs-dark);
  transition: all 0.3s ease;
}
.sidebar .logo-block {
  padding: calc(1rem + 2vw) 1rem;
}
.sidebar .logo-block .logo-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.6rem;
}
.sidebar .logo-block svg {
  width: 3rem;
}
.sidebar .logo-block .logo-text {
  text-align: left;
  font-size: clamp(1.6rem, 4vw, 4rem);
  color: var(--bs-primary);
}
.sidebar .logo-block .sub-text {
  text-align: left;
  color: var(--bs-light-grey);
  font-size: clamp(1rem, 2.8vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
}
.sidebar .menu-holder {
  display: flex;
  overflow-y: hidden;
  width: 100%;
  height: 50px;
}
.sidebar .menu-holder .tab-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  line-height: 65px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 1px var(--bs-grey);
  color: var(--bs-light-grey);
}
.sidebar .menu-holder .tab-link.active {
  background-color: var(--bs-primary);
  transition: all 0.2s ease;
}
.sidebar .menu-holder .tab-link p {
  display: none;
}
.sidebar .menu-holder .tab-link i {
  font-size: 24px;
  line-height: 0;
}
.sidebar .menu-holder .tab-link.active p, .sidebar .menu-holder .tab-link.active i {
  color: var(--bs-light);
  font-weight: 700;
  transition: all 0.2s ease;
}
.sidebar .menu-holder .tab-link .arrow {
  display: none;
}
.sidebar #go-back-btn {
  display: none;
}
.sidebar #go-back-btn button {
  background: var(--bs-light-grey);
  border: none;
  border-radius: 0 0 0 8px;
  padding: calc(0.3rem + 1vw) calc(0.5rem + 1vw);
}
.sidebar #go-back-btn p {
  font-size: 1.4rem;
}
.sidebar #go-back-btn span {
  display: none;
}
.sidebar #go-back-btn .fa-arrow-right-from-bracket {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .sidebar {
    z-index: 99;
    width: 15%;
    height: 100vh;
  }
  .sidebar .logo-block {
    padding: 1rem;
  }
  .sidebar .logo-block .logo-holder {
    gap: 6px;
  }
  .sidebar .logo-block .logo-text {
    font-size: clamp(0.8rem, 1.4vw, 1.6rem);
    padding: 0;
  }
  .sidebar .logo-block svg {
    width: calc(20px + 1.5vw);
  }
  .sidebar .logo-block .sub-text {
    font-size: clamp(0.6rem, 1vw, 1rem);
  }
  .sidebar .menu-holder {
    margin-top: 20%;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .sidebar .menu-holder .tab-link {
    justify-content: flex-start;
    width: 100%;
    padding: 15% 1rem;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: none;
    border-top: 1px solid var(--bs-grey);
    color: var(--bs-light-grey);
  }
  .sidebar .menu-holder .tab-link:last-child {
    border-bottom: 1px solid var(--bs-grey);
  }
  .sidebar .menu-holder .tab-link:hover {
    color: var(--bs-light);
    border-left: 5px solid var(--bs-dark);
    font-weight: 700;
    background-color: var(--bs-grey);
    transition: all 0.08s ease;
  }
  .sidebar .menu-holder .tab-link.active {
    border-left: 5px solid var(--bs-primary);
    background-color: var(--bs-black);
    transition: all 0.2s ease;
  }
  .sidebar .menu-holder .tab-link p {
    display: inline-block;
    letter-spacing: 1px;
    font-size: clamp(0.6rem, 1vw, 1rem);
    transition: letter-spacing 0.2s ease, opacity 0.8s ease;
    margin-top: -2px;
    margin-left: 6px;
    opacity: 1;
  }
  .sidebar .menu-holder .tab-link i {
    font-size: clamp(1.1rem, 1.35vw, 1.4rem);
    margin-right: 10px;
    transition: all 0.2s ease;
  }
  .sidebar .menu-holder .tab-link.active p, .sidebar .menu-holder .tab-link.active i {
    color: var(--bs-primary);
    font-weight: 700;
    transition: all 0.2s ease;
  }
  .sidebar .menu-holder .tab-link .arrow {
    display: inline-block;
    position: absolute;
    vertical-align: middle !important;
    right: 10px;
    font-size: 18px !important;
    opacity: 1;
    transition: all 0.2s ease;
  }
  .sidebar .menu-holder .tab-link.active .arrow {
    transform: rotate(180deg);
    color: var(--bs-primary);
    transition: all 0.2s ease;
  }
  .sidebar #go-back-btn {
    display: block;
    position: absolute;
    top: initial;
    right: initial;
    bottom: 1rem;
    left: 1rem;
  }
  .sidebar #go-back-btn button {
    background: transparent;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
  }
  .sidebar #go-back-btn p {
    color: var(--bs-light-grey);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    transition: all 200ms ease;
  }
  .sidebar #go-back-btn p span {
    display: inline-block;
    margin-left: 0.3rem;
  }
  .sidebar #go-back-btn p:hover {
    color: var(--bs-primary);
    letter-spacing: 0.5px;
  }
}
/********************************
 ************* Tabs *************
 ********************************/
.tabs {
  position: relative;
  display: block;
}
.tabs .tab-body {
  display: none;
  opacity: 0;
  word-wrap: break-word;
}
.tabs .tab-body.active {
  display: block;
  opacity: 1;
}
.tabs .product-list {
  display: flex;
  overflow-x: auto;
  width: 100%;
  background-color: var(--bs-dark);
}
.tabs .product-contain {
  flex-shrink: 0;
  width: 80px;
  padding: 0.5rem 0.2rem;
}
.tabs .product-contain img {
  width: 100%;
  border-radius: 8px;
}
.tabs .product-contain.selected img {
  border-radius: 8px;
  filter: brightness(0.6);
}
.tabs .product-contain p {
  color: var(--bs-light);
  font-weight: 300;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.2;
}
.tabs .more-product-wrapper {
  width: 80px;
  height: 80px;
  display: none;
  justify-content: center;
  align-items: center;
}
.tabs .more-product-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-light-grey);
  border-radius: 8px;
  margin: 4px 0 0 3px;
}
.tabs .more-product-content p {
  display: none;
}
.tabs .plus-svg {
  width: 30px;
  height: 30px;
}

@media (min-width: 992px) {
  .tabs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    display: block;
    margin-left: 15%;
    height: 100%;
    transition: all 0.2s ease;
  }
  .tabs section {
    display: none;
    opacity: 0;
    width: calc(120px + 3vw);
    height: 100%;
    word-wrap: break-word;
    overflow-y: auto;
  }
  .tabs .tab-body {
    animation: SlideOut 400ms ease-out 1;
    height: 100%;
  }
  .tabs .tab-body .product-list {
    flex-direction: column;
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    height: 98.6%;
  }
  .tabs .tab-body .product-list .product-contain {
    width: 86%;
    cursor: pointer;
    margin: 0 auto;
    padding: 10px 0;
    vertical-align: top;
  }
  .tabs .tab-body .product-list .product-contain img {
    width: 100%;
    border-radius: 6px;
    border: solid 2px transparent;
  }
  .tabs .tab-body .product-list .product-contain.selected img {
    border-radius: 6px;
    outline: solid 4px var(--bs-primary);
    outline-offset: -4px;
    filter: brightness(0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  .tabs .tab-body .product-list .product-contain p {
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-size: clamp(0.6rem, 1vw, 0.9rem);
    line-height: 1.2;
  }
  .tabs .tab-body .product-list .product-contain:hover img {
    border-radius: 6px;
    outline: solid 4px var(--bs-light);
    outline-offset: -4px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
  }
  .tabs .tab-body .product-list .product-contain.selected:hover img {
    border-radius: 6px;
    outline: solid 4px var(--bs-primary);
    outline-offset: -4px;
    filter: brightness(0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  @keyframes SlideOut {
    0% {
      transform: translateX(-300px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .tabs .tab-body.slide-in {
    animation: SlideIn 300ms ease-out 1;
  }
  @keyframes SlideIn {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(-300px);
      opacity: 0;
    }
  }
  .tabs section h2 {
    margin: 12px 0 0 16px;
  }
  .tabs section.active {
    display: block;
    opacity: 1;
  }
  .product-list {
    width: 100%;
    height: 100%;
  }
}
/********************************
 *******Kitchen Display *********
 ********************************/
.kitchen-wrapper {
  position: relative;
  background-color: black;
  transition: all 0.3s ease;
  width: 100%;
  height: 40vh;
  min-height: 300px;
}

.kitchen-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.kitchen-display {
  display: none;
}

.kitchen-display.active {
  display: block;
}

.kitchen-display img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .kitchen-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(14%);
    transition: all 0.3s ease;
    height: 100vh;
  }
  .kitchen-wrapper .kitchen-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .kitchen-wrapper .kitchen-display {
    display: none;
  }
  .kitchen-wrapper .kitchen-display.active {
    display: block;
  }
  .kitchen-wrapper .kitchen-display img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
  }
  .kitchen-wrapper.maximize {
    width: 100%;
    height: 100vh;
    overflow-y: hidden;
    transform: translateX(0);
    transition: all 0.2s ease;
  }
  .kitchen-wrapper.maximize .kitchen-display img {
    transition: all 0.3s ease;
  }
  .kitchen-wrapper.maximize .layout-container {
    width: 100%;
    transition: all 0.2s ease;
  }
}
/********************************
 *********** Buttons ************
 ********************************/
.btn-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  align-items: center;
  gap: 0.4rem;
}

#go-back-btn-mobile {
  display: none;
  position: relative;
}
#go-back-btn-mobile button {
  background: var(--bs-light-grey);
  border: none;
  height: 48px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  padding: calc(0.3rem + 1vw) calc(0.5rem + 1vw);
}
#go-back-btn-mobile i {
  color: var(--bs-black);
  font-size: 1.2rem;
}
#go-back-btn-mobile .fa-arrow-right-from-bracket {
  transform: rotate(180deg);
}

#addcart-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 1.2em;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  background-color: var(--bs-primary);
  border-radius: 8px;
}
#addcart-btn:active {
  background-color: var(--bs-primary-hover);
}
#addcart-btn p {
  display: block;
}
#addcart-btn p i {
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .btn-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    gap: 0;
  }
  #go-back-btn-mobile {
    display: none;
  }
  #addcart-btn {
    position: absolute;
    z-index: 99;
    bottom: 2rem;
    right: 1.5rem;
    width: calc(180px + 10vw);
    height: calc(30px + 2vw);
    border-radius: 8px;
    transition: all 0.15s ease;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
  }
  #addcart-btn:hover {
    background-color: var(--bs-primary-hover);
    letter-spacing: 1px;
  }
  #addcart-btn:active {
    background-color: var(--bs-dark);
  }
  #addcart-btn p {
    padding: 0;
    background-color: transparent;
  }
  #addcart-btn.collapse {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 40px;
  }
  #addcart-btn.collapse p i {
    font-size: 2rem;
    margin: 0;
  }
  #addcart-btn.collapse span {
    display: none;
  }
}
/**
 * Minimize Navbar
 */
#collapse-btn {
  display: none;
}

@media (min-width: 992px) {
  #collapse-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    bottom: 15%;
    left: 15%;
    background-color: var(--bs-black);
    border-radius: 0 24px 24px 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: 0.3s all ease;
    overflow: hidden;
  }
  #collapse-btn:hover {
    width: 60px;
  }
  #collapse-btn:hover i {
    color: var(--bs-light-grey);
  }
  #collapse-btn i {
    display: block;
    color: var(--bs-white);
    font-size: 20px;
    transition: 0.35s all ease;
  }
  #collapse-btn.minimize {
    left: 0;
    width: 56px;
    background-color: var(--bs-black);
    border-radius: 0 24px 24px 0;
    transition: 0.2s all ease;
  }
  #collapse-btn.minimize i {
    transform: rotate(180deg);
    transition: 0.35s all ease;
  }
  #collapse-btn.minimize:hover {
    width: 80px;
    transition: 0.2s all ease;
  }
  #collapse-btn.minimize:hover i {
    color: var(--bs-light-grey);
  }
}
.sidebar.minimize {
  transform: translateX(-100%);
  transition: 250ms all ease-out;
}

.sidebar.minimize header {
  margin: auto;
}

.sidebar.minimize header svg {
  margin: auto;
}

/* Instruction */
.inst-wrapper {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  justify-content: center;
  overflow-y: scroll;
  animation-name: instruction;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes instruction {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.inst-container {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  animation-name: inst-content;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes inst-content {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.inst-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 calc(0.5rem + 2vw);
}

.headline-wrapper {
  flex: 1 1 60%;
}
.headline-wrapper h2 {
  color: var(--bs-white);
  text-align: left;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.2;
}
.headline-wrapper p {
  color: var(--bs-white);
  text-align: left;
  font-size: clamp(0.8rem, 1.2vw, 1.125rem);
  line-height: 1.4;
  margin-top: 6px;
}
.headline-wrapper p span {
  display: none;
}

.inst-header a {
  flex: 1 1 30%;
  display: inline-block;
  color: var(--bs-white);
  line-height: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inst-header a p {
  background-color: var(--bs-primary);
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  padding: calc(6px + 1vw) calc(10px + 1.4vw);
  border-radius: 8px;
}

.step-wrapper {
  padding: calc(0.5rem + 2vw);
}

.inst-step {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.inst-img {
  flex: 1 1 30%;
}

.inst-img img {
  width: 100%;
  border-radius: 10px;
}

.inst-content {
  flex: 1 1 50%;
  background: var(--bs-light);
  padding: calc(10px + 1vw);
  border-radius: 10px;
}

.inst-content h3 {
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  color: var(--bs-grey);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.inst-content p {
  color: var(--bs-grey);
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: 300;
}

@media (min-width: 568px) {
  .inst-wrapper {
    justify-content: center;
    align-items: center;
  }
  .step-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .step-wrapper > * {
    flex: 1 1 30%;
  }
  .inst-header {
    display: flex;
  }
  .headline-wrapper p span {
    display: inline-block;
  }
  .inst-step {
    display: block;
  }
  .inst-content {
    position: relative;
    top: -20px;
    border-radius: 10px;
    margin: 0 16px;
  }
  .inst-content h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .inst-content p {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 300;
  }
}
/* Scroll Bar Customizing */
/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  right: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

#loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#loader-container #loader {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #444444;
  width: 40px;
  height: 40px;
  animation: loadSpin 1s linear infinite;
}

@keyframes loadSpin {
  100% {
    transform: rotate(360deg);
  }
}
#measurekit-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 1.5rem 0.4rem;
  background-color: var(--bs-grey);
  color: var(--bs-light);
}
#measurekit-mobile .measurekit-pic {
  flex: 1 1 28%;
}
#measurekit-mobile .measurekit-pic img {
  border-radius: 8px;
  width: 100%;
}
#measurekit-mobile .content {
  flex: 1 1 60%;
  padding-right: 1rem;
}
#measurekit-mobile .content h3 {
  color: var(--bs-light);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
#measurekit-mobile .content p {
  margin-bottom: 12px;
}
#measurekit-mobile .measurekit-btn {
  display: inline-block;
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--bs-light);
  font-weight: 500;
  background-color: var(--bs-dark);
  transition: all 200ms ease-out;
  text-align: center;
}
#measurekit-mobile .measurekit-btn i {
  margin-left: 8px;
}
#measurekit-mobile .measurekit-btn:active, #measurekit-mobile .measurekit-btn:focus {
  color: var(--bs-light);
  background-color: var(--bs-primary-hover);
}

@media (min-width: 576px) {
  #measurekit-mobile {
    display: none;
  }
}
#measurekit-pc {
  display: none;
}

@media (min-width: 992px) {
  #measurekit-pc {
    display: block;
    position: absolute;
    z-index: 999;
    top: 17px;
    right: 7rem;
  }
  #measurekit-pc .measurekit-btn {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 20px;
    background-color: var(--bs-black);
    transition: all 200ms ease-out;
    color: var(--bs-light);
  }
  #measurekit-pc .measurekit-btn:hover {
    background-color: var(--bs-dark);
    color: var(--bs-primary);
  }
  #measurekit-pc .content {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 300px;
    padding: 12px;
    border-radius: 12px;
    margin-top: 0.5rem;
    background-color: var(--bs-dark);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.12);
    transform: scale(0);
    transition: all 150ms ease-out;
    transform-origin: top right;
    text-align: right;
  }
  #measurekit-pc .content h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--bs-light);
  }
  #measurekit-pc .content p {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.3;
    color: var(--bs-light);
  }
  #measurekit-pc:hover .content {
    transform: scale(1);
    transition: all 300ms ease-out;
  }
  .insta-footer {
    display: none;
  }
}
/* THEME */
#theme-btn-holder {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 9999;
}
#theme-btn-holder .theme-btn {
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 20px;
  padding: 0.4rem;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 200ms ease-out;
}
#theme-btn-holder .theme-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-4%, -50%);
  transition: all 300ms ease-out;
  height: 90%;
  aspect-ratio: 1/1;
  background-color: var(--bs-black);
  border-radius: 20px;
}
#theme-btn-holder i {
  padding: 0.4rem 0.5rem 0.4rem 0.6rem;
  font-size: 1rem;
  color: var(--bs-black);
  transition: all 300ms ease-out;
}
#theme-btn-holder i:first-child {
  color: #aaa;
  transition-delay: 0ms;
}
#theme-btn-holder i:last-child {
  padding: 0.4rem 0.45rem 0.4rem 0.5rem;
  color: #111;
  transition-delay: 250ms;
}
#theme-btn-holder .theme-btn.dark {
  background-color: rgba(255, 255, 255, 0.3);
}
#theme-btn-holder .theme-btn.dark::after {
  transform: translate(-96%, -50%);
  transition: all 300ms ease-out;
}
#theme-btn-holder .theme-btn.dark i:first-child {
  color: #f5f5f5;
  transition-delay: 250ms;
}
#theme-btn-holder .theme-btn.dark i:last-child {
  color: #aaa;
  transition-delay: 0ms;
}

@media (min-width: 768px) {
  #theme-btn-holder {
    top: 1rem;
    right: 1rem;
    border-radius: 20px;
  }
}/*# sourceMappingURL=style.css.map */