/*------------------------ Custom Css ------------------------*/

body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

h3 {
  margin-top: 24px;
  font-size: 1.75rem;
  font-weight: bold;
}

h4 {
  margin-top: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Nav liquid glass */
.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  /* overflow: hidden; */

  color: black;
  cursor: pointer;

  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);

  /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2); */
  border-radius: 360px;
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;

  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
  border-radius: 360px;
}

.liquidGlass-tint {
  z-index: 77;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 360px;
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 78;

  /* overflow: hidden; */

  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
  border-radius: 360px;
}

.liquidGlass-nav {
  position: fixed;
  z-index: 75;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .liquidGlass-nav {
    top: auto;
    bottom: 16px;
  }
}

.liquidGlass-dock {
  z-index: 79;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px;
}

.liquidGlass-dock li {
  display: flex;
  position: relative;
}

.liquidGlass-dock img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.liquidGlass-dock a {
  padding: 8px 20px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #1f242e99;
}

.liquidGlass-dock a.active {
  background-color: rgba(0,0,0,0.1);
  border-radius: 360px;

  background: linear-gradient(rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 100%);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: rgba(255, 255, 255, 0.7) 0px 1.5px 0px inset, rgba(0, 0, 0, 0.04) 0px -0.5px 0px inset, rgba(0, 0, 0, 0.05) 0px 1px 4px, rgba(255, 255, 255, 0.3) 0px 0px 8px inset; opacity: 1;
  color: #1f242e;
}

.liquidGlass-dock a.active img { opacity: 1; }

.home .home-inner .screen {
  position: relative;
  background-image: url('/images/hero.png'),linear-gradient(to top right,#0e95ee,#27c9f5);
  background-position: bottom;
  background-size: cover;
  max-width: 100%;
  height: 100vh;
  margin: auto;
  overflow: hidden;
}


@media (max-width: 768px) {
  nav{
    display: flex!important;
    padding-bottom: 0;
  }
}

.home .home-inner .screen .menu-bar {
  width: 100%;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(83, 83, 83, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.home .home-inner .screen .menu-bar .left {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: auto;
  margin-left: 20px;
}

.home .home-inner .screen .menu-bar .ico {
  width: auto;
  height: 15px;
  user-select: none;
}

.home .home-inner .screen .menu-bar .right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 20px;
}

.home .home-inner .screen .menu-bar .menu-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .home-inner .screen .date::first-letter { text-transform: uppercase; }

.home .home-inner .screen .date {
  font-size: 14px;
  line-height: 1.5;
}

.home .home-inner .screen .about {
  border-radius: .5rem;
  background-color: rgba(233, 233, 233, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 40px 40px;
  box-shadow: 1px 2px 20px 7px rgba(4, 6, 4, 0.04);
  border: 0.5px solid #A7A7A7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.window-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: 8px;
  line-height: 0;
}

.window-title span {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
  background-color: #D2D2D2;
  border: 0.5px solid #A7A7A7;
}

.window-title .red {
	background: #ED6A5E;
}

.window-title .red .cross {
  width: 12px;
  height: 12px;
  display: block;
  opacity: 0.5;
}

.window-title .red .cross { visibility: hidden; }

.window-title .red:hover .cross { visibility: visible; }

.hidden { display: none!important; }

.home .home-inner .screen .about img {
  border-radius: .3rem;
}

.home .home-inner .screen .about h6 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B3A3A;
}

.home .home-inner .screen .about span, .home .home-inner .screen .about p {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 13.5px;
  line-height: 20px;
  color: #A7A7A7;
}

.home .home-inner .screen .title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.home .home-inner h1 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-weight: bold;
}

.home .home-inner h1 a
{
  cursor: pointer;
  color: #fff;
  transition: .3s;
}

.home .home-inner h1 a:hover
{ color: #0056b3; }

.hover-reveal {
  will-change: transform;
  pointer-events: none;
  position: fixed;
  top: 75px;
  left: 120px;
  z-index: 99;
  overflow: hidden;
  visibility: hidden;
  border-radius: 10px;
}

.section-title span {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-title span.blue {
  color: #0d9eff;
}

.section-title span.purple {
  color: #6366f1;
}

.section-title span.orange {
  color: #f97316;
}

.section-title span.red {
  color: #ff4141;
}

.section-title span.green, a.green {
  color: #10b981;
}

.select-cat {
  color: #783af5 !important;
}

.section-title .title {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 3rem;
  font-weight: 700;
  line-height: 40px!important;
}

p { color: #000; }

.owl-carousel .owl-wrapper-outer {
  overflow: visible;
}

.single_item img {
  border-radius: 12px;
  -webkit-border-radius: 12px;
}

.portfolio .row { margin: 0; }

.portfolio .more {
  display: flex;
  gap: 24px;
  margin: auto;
  margin-top: 30px;
  justify-content: center;
}

a.my-btn {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  transition: .3s;
  border-radius: 0.75rem;
}

a.my-btn:hover {
  background-color: transparent;
  color: #007bff;
}

a.my-btn-2 {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  transition: .3s;
  border-radius: 0.75rem;

  display: flex;
  align-items: center;
  gap: 8px;
}

a.my-btn-2:hover {
  background-color: #007bff;
  color: #fff;
}

a.my-header-btn {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  transition: .3s;
}

a.my-header-btn:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

a.my-link {
  display: inline-block;
}

a.my-link.instagram {
  color: #E6368A;
}

a.my-link.dribbble {
  color: #B75BF2;
}

a.my-link.behance {
  color: #6E60EF;
}

.work-areas .area {
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  background-color: rgb(249, 250, 251);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
}

.work-areas .area .icon {
  float: none;
}

.work-areas .area .icon img {
  width: 40px;
}

.work-areas .area .icon, .work-areas .area .text {
  width: 100%;
}

.work-areas .area .text h6 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-weight: 700;
}

.my-carousel {
  cursor: grab;
  padding: 2rem;
  overflow: hidden;
  background-image: url('/images/hero.png'),linear-gradient(to top right,#0e95ee,#27c9f5);
  background-position: bottom;
  background-size: cover;
  border-radius: 1rem;
}

.about .my-desc {
  font-size: 15px;
  color: #7b7B7B;
  line-height: 24px;
}

.my-section {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

.my-secondary-carousel {
  cursor: grab;
  padding: 2rem;
  overflow: hidden;
  background-color: #f7f7f9;
  border-radius: 1rem;
  width: 80%;
  margin: auto;
  height: 50vh;
  overflow: scroll;
  scroll-snap-type: y mandatory;
}

.my-secondary-carousel .item {
  scroll-snap-align: center;
}

.my-secondary-carousel .item:first-child {
  margin-top: 40px;
}

.my-secondary-carousel .item:last-child {
  margin-bottom: 40px;
}

.my-secondary-carousel h4 {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  transition: .2s;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.my-secondary-carousel.work-areas .area {
  box-shadow: none;
  background-color: transparent;
}

@media (max-width: 768px) {
  .my-secondary-carousel.work-areas .area {
    padding: 1rem;
  }
}

.my-secondary-carousel.work-areas .area .text span {
  font-size: 24px;
  color: #7b7B7B;
}

.my-secondary-carousel.work-areas .area .logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  transition: .2s;
  margin: 8px;
  padding: 4px;
  box-sizing: content-box;
}

.my-secondary-carousel.work-areas .area a {
  color: #7b7b7b;
  font-size: 28px;
  transition: .2s;

  display: flex;
  align-items: center;
}

.my-secondary-carousel.work-areas .area a .external-link {
  opacity: 0;
  display: inline-block;
  transform: translateX(-24px); /* décale légèrement vers la gauche */
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 24px;
  height: 24px;
}

.my-secondary-carousel.work-areas .area a:hover .external-link {
  opacity: 0.5;
  transform: translateX(0); /* revient à la position normale */
  margin-left: 8px;
}

.my-secondary-carousel.work-areas .area.purple a:hover { color: #6366f1; }

.my-secondary-carousel.work-areas .area.purple a:hover .logo {
  box-shadow:0px 0px 0px 4px #6366f1;
}

.my-secondary-carousel.work-areas .area.green a:hover { color: #10b981; }

.my-secondary-carousel.work-areas .area.green a:hover .logo {
  box-shadow:0px 0px 0px 4px #10b981;
}

.my-secondary-carousel.work-areas .area .icon i { margin-left: 0; }

.my-secondary-carousel::-webkit-scrollbar {
  display: none;
}

.my-secondary-carousel.active {
  cursor: grabbing;
  scroll-snap-type: unset;
}

.animate-up {
  will-change: transform, opacity;
  opacity: 0.1;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .my-carousel {
    margin: 15px;
    width: auto;
  }

  .my-section { flex-direction: column; }

  .my-secondary-carousel {
    padding: 1rem;
    height: 60vh;
    margin: 15px;
    width: auto;
  }
}


@media (min-width: 1200px){
  .container {
      max-width: 1360px;
    }
}

.grid {
  display: grid;
  grid-template-rows: repeat(auto-fill, minmax(328px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(328px, 1fr));
  grid-gap: 1rem;
  grid-auto-rows: minmax(328px, 328px); /* default minmax(328px, auto); */
}

@media screen and (max-width: 479px) {
  .grid {
    margin: 15px;
  }

  .grid .tile.md, .grid .tile.xl {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }

  .grid .tile.lg {
    grid-row-end: span 2;
  }
}


.tile {
  position: relative;
  background-color: #f7f7f9;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}


.tile.md {
  grid-column-end: span 2;
  /* grid-row-end: span 2; */
}

.tile.lg {
  /* grid-column-end: span 2; */
  grid-row-end: span 2;
}

.tile.xl {
  grid-column-end: span 2;
  grid-row-end: span 2;
  padding: 32px;
}

.tile.hover .content {
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  background-color: rgb(249, 250, 251);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: .3s;
}

.tile.hover .content h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tile.hover .content p {
  font-size: 13.5px;
  line-height: 20px;
  color: #7b7b7b;
}


.tile.hover .content:hover {
  background-color: #10b981;

  transform: rotate(-3deg);
  & * {
    color: #fff;
  }
}

.tile .dock {
  width: auto;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
}

.tile .dock .dock-container {
  padding: 3px;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(83, 83, 83, 0.25);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tile .dock .li-bin {
  margin-left: 20px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0px 10px;
}

.tile .dock .li-1 {
  &::after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    bottom: 2px;
  }
}

.tile .dock li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  vertical-align: bottom;
  transition: 0.2s;
  transform-origin: 50% 100%;
  &:hover {
    margin: 0px 13px 0px 13px;
  }
}

.tile .dock .name {
  position: absolute;
  top: -70px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  height: auto;
  padding: 7px 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  visibility: hidden;
  &::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0;
    height: 0;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.5);
  }
}

.tile .dock .ico {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.tile .dock .ico-bin {
  width: 94% !important;
  height: 94% !important;
  object-fit: cover;
  transition: 0.2s;

  &:hover {
    margin-left: 10px;
  }
}

.tile .dock li:hover .name {
    visibility: visible !important;
}

@media screen and (max-width: 479px) {
  .tile .dock {
    height: auto;
  }

  .tile .dock li {
    width: 35px;
    height: 35px;
  }
}


.tile .stickers {
  -webkit-mask-image: url('/images/badge.svg');
  -webkit-mask-size: contain;
  height: 200px;
  width: 202px;
  padding: 20px 20px 20px 28px;
  background-image:url('/images/holographic.jpg');
  background-size: 150%;
}

.tile .stickers img {
  width: 100%;
  height: 100%;
}


.tile.brightness {
  background: url('/images/bg-iphone-12.jpg') no-repeat center;
  background-size: cover;
}


.tile .brightness-base {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(2);
}

.tile .brightness-base .light-base {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  transform: scale(0.7);
  z-index: 2;
  pointer-events: none;
  bottom: 1rem;
  &.highest {
    animation: pulse 0.2s ease-in-out forwards;
  }
}

.tile .brightness-base .light-source {
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: all 0.2s ease-in-out;
  &.mid {
    transform: scale(1.2);
  }
  &.low-color {
    background: rgba(255, 255, 255, 0.5);
  }
}

.tile .brightness-base .ray {
height: 6rem;
width: 1rem;
content: "";
position: absolute;
z-index: 2;
pointer-events: none;
transition: all 0.2s ease;
&:after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  width: 0.2rem;
  height: 0.2rem;
  bottom: 4rem;
  border-radius: 50%;
  left: 50%;
  transform: translatex(-50%);
  transition: all 0.2s ease;
}
  &.low {
    &:after {
      height: 0.2rem;
    }
  }
  &.mid {
    &:after {
      height: 0.4rem;
      border-radius: 60px;
    }
  }
  &.high {
    &:after {
      height: 0.6rem;
      border-radius: 60px;
    }
  }
}

 .brightness-base .ray-0 { transform: rotate(0deg); }
 .brightness-base .ray-1 { transform: rotate(45deg); }
 .brightness-base .ray-2 { transform: rotate(90deg); }
 .brightness-base .ray-3 { transform: rotate(135deg); }
 .brightness-base .ray-4 { transform: rotate(180deg); }
 .brightness-base .ray-5 { transform: rotate(225deg); }
 .brightness-base .ray-6 { transform: rotate(270deg); }
 .brightness-base .ray-7 { transform: rotate(315deg); }


.tile .brightness-base .range-base {
  position: absolute;
  transform: rotate(-90deg);
  z-index: 1;
}

.tile .brightness-base .range-base input {
  -webkit-appearance: none;
  appearance: none;
  height: 5rem;
  width: 12rem;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(16px);
  background-clip: padding-box;
}

.tile .brightness-base .range-base input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2rem;
  height: 5rem;
  cursor: pointer;
  transition: all 0.2s;
  background-clip: padding-box;
  box-shadow: none !important;
}

.tile.gallery {
  overflow: hidden;
  padding: 0;
}

.tile.gallery .small-app-icon {
  z-index: 2;
  position: absolute;
  top: 24px;
  bottom: auto;
  left: auto;
  right: 24px;
}

.tile.gallery .small-app-icon img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  transition: box-shadow .25s;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.tile.gallery .gallery-menu {
  z-index: 2;
  width: 280px;
  height: 48px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(255,255,255,.5);
  border: 2px solid rgba(255,255,255,.19);
  border-radius: 56px;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 0%;
  right: 0%;
  transform: translate3d(0px, 170%, 0px);
  transition: .3s;
}

.tile.gallery:hover .gallery-menu {
  transition: transform .3;
  transform: translate3d(0px, 0%, 0px);
}

.tile.gallery .gallery-menu .gallery-floating-indicator {
    z-index: -1;
    width: 62px;
    height: 38px;
    background-color: #fff;
    border-radius: 230px;
    position: absolute;
    left: 4px;
    right: 4px;
}

.tile.gallery .gallery-slider {
  display: flex;
  position: relative;
}

.tile.gallery .gallery-slider img {
  width: 100%;
  transition: opacity .6s;
  opacity: 0;
}

.tile.gallery .gallery-slider img:first-child {
  opacity: 1;
}

.tile.gallery .gallery-title {
  z-index: 2;
  margin-left: 24px;
  margin-right: 24px;
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 0%;
  right: 0%;
  transform: translate3d(0px, 170%, 0px);
  transition: .3s;
}

.tile.gallery:hover .gallery-title {
  transform: translate3d(0px, 0%, 0px);
}

@media (max-width: 768px) {
  .tile.gallery .gallery-title {
    transform: translate3d(0px, 0%, 0px);
  }
}

.tile.gallery .gallery-title p {
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 90;

  background-color: rgba(235, 235, 235, 0.7);
  backdrop-filter: blur(40px);

  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.popup {
  display: block;
  /* width: auto; */
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 24px;
  z-index: 91;
}

body.noscroll {
  overflow: hidden;
}

.browser {
  /*
  width: 1024px;
  height: 700px;
  */
  aspect-ratio: 16 / 9;
  width: 70vw;

  background: rgba(235,235,235,0.7);
  border-radius: 10px;
  margin: auto;
  display: flex;
  flex-direction: column;

  backdrop-filter: blur(40px);
  box-shadow: inset 0px 1px 0.5px rgba(0, 0, 0, 0.60), 0px 20px 20px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
  .browser {
    aspect-ratio: 16 / 12;
    width: 90vw;
  }
}

.browser .tabbar {
  display: flex;
  align-items: flex-end;
}
.browser .tabbar .dots {
  display: flex;
  gap: 8px;
  padding: 16px 14px 14px 18px;
}
.browser .tabbar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.browser .tabbar .dot.red {
  background-color: #EC6A5E;
  border: 0.5px solid #B0534A;
}
.browser .tabbar .dot.yellow {
  background: rgba(244,190,79,1);
  border: 0.5px solid #AE8C4E;
}
.browser .tabbar .dot.green {
  background: rgba(98,197,84,1);
  border: 0.5px solid #69945F;
}

.browser .tabbar .active-tab {
  display: flex;
  gap: 0px;
  align-items: flex-end;
  z-index: 9;
}

.browser .tabbar .active-tab .before, .browser .tabbar .active-tab .after {
  width: 12px;
  height: 12px;
}

.browser .tabbar .tab {
  background: rgba(252,252,252,1);
  padding: 8px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.10); */

  display: flex;
  flex-direction: row;
  gap: 4px;
  width: 160px;
}

.browser .tabbar .tab .favicon img {
  display: block;
  width: 16px; height: 16px;
}

.browser .tabbar .tab .title {
  font-size: 12px;
  width: 100%;
  mask-image: linear-gradient(90deg, #fff 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #fff 80%, transparent);
  white-space: nowrap;
  overflow: hidden;
}

.browser .frame {
  width: 100%;
  height: 100%;
  padding: 0 6px 6px 6px;
}
.browser .frame-2 {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}
.browser .url-bar {
  display: flex;
  background-color: #FCFCFC;
  padding: 6px;
  /* border: 1px solid rgba(50, 50, 50, 0.1); */
  box-shadow:0px 0px 1px 1px rgba(50, 50, 50, 0.1);
  gap: 4px;
  position: relative;
}
.browser .url-bar .controls {
  display: flex;
  gap: 4px;
}
.browser .url-bar .controls img, .browser .url-bar .copy-btn img {
  display: block;
  width: 28px;
  height: 28px;
}

.browser .tabbar .active-tab .before,
.browser .tabbar .active-tab .favicon,
.browser .tabbar .active-tab .after,
.browser .url-bar .controls .back,
.browser .url-bar .controls .forward,
.browser .url-bar .controls .refresh,
.browser .url-bar .copy-btn {
  user-select: none;
}

.browser .url-bar .controls .back,
.browser .url-bar .controls .refresh,
.browser .url-bar .copy-btn {
  border-radius: 4px;
}

.browser .url-bar .controls .back:hover,
.browser .url-bar .controls .refresh:hover,
.browser .url-bar .copy-btn:hover {
  background-color: #F5F5F5;
}

.browser .url-bar .input-url {
  display: flex;
  width: 100%;
}
.browser .url-bar .input-url input {
  border: none;
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
  padding: 4px;
}
.browser .url-bar .input-url input:hover {
  background-color: #F5F5F5;
}
.browser .url-bar .input-url input:focus-visible {
  outline: 0;
  background-color: #F5F5F5;
}

.browser .screen {
  width: 100%;
  height: 100%;
}

.browser .screen img {
  width: 100%;
}

.popup .content {
  margin: auto;
  margin-top: 32px;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;

  width: 70vw;
}

@media (max-width: 768px) {
  .popup .content {
    width: 90vw;
  }
}

.popup .content .head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.popup .content .head .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.popup .content .head .col p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.popup .content .head .col .title {
  font-weight: 700;
}

.popup .content p {
  color: rgba(0,0,0,0.5);
}

.popup .content h3, .popup .content h4, .popup .content .title {
  color: rgba(0,0,0,0.7);
}

.popup .content p span {
  font-weight: bold;
  font-style: italic;
}

.popup .bottom {
  margin: auto;
  margin-top: 32px;
  width: fit-content;
}

.popup .bottom .close-btn {
  width: 40px; height: 40px;
  border-radius: 360px;
  background-color: #f4f4f4;
  transition: .2s;
  cursor: pointer;
}

.popup .bottom .close-btn img {
  width: 40px; height: 40px;
  opacity: 0.5;
  transition: .2s;
}

.popup .bottom .close-btn:hover {
  background-color: #e4e4e4;
}
.popup .bottom .close-btn:hover img {
  opacity: 0.7;
}
