/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: var(--roundness);
} 
/* Track */
::-webkit-scrollbar-track {
  background: var(--color-light);
  border-radius: var(--roundness);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-brand);
  border-radius: var(--roundness);
  
} 
:root {
/*  
  //31536000 */

    --global-width: 75%;
    --global-width-blog: 55%;
    --global-width-console: 92%;
    --global-max-width: 1800px;
    --global-pop-up-width: 450px;
    --scale-down-effect: 0.96;
    /* transition: 0.3 all; */
  
    --dim-separator-gap: 92px;
  
    --color-bg: #f1f1f1;  
    --color-bg: #f8f8f8;  
    --color-black: #0C091C;   
    --color-black-stroke: #1D183B;    
    
    --color-black-secondary: rgb(26, 26, 26);

    --color-white: #fff;
    --color-brand-light: rgba(16, 157, 89, 0.25);
    --color-brand: #109d58;
    --color-brand-dark: #01612e; 
    --color-yellow: #f19b22; 
    --color-yellow-light: rgb(241, 155, 34, 0.1); 
    --color-yellow-dark: #e49424; 
    --color-gray: #868686;
    --color-green: #109d58;  
    --color-green-light: rgba(141, 255, 165, 0.4); 
    --color-link: #1d96ff;
    --color-link-dark: #0059a7;
  
    --color-lightgray: #fafafa; 
    --color-red-light: rgb(247, 51, 68, 0.1);
    --color-red: #f73344; 
    --color-red-dark: #85000b;
    /* --color-stroke: #e0e0e080;  */
    --color-stroke: #cecece80; 
    --color-hover: #e0e0e099;   

    --color-pink: #E0889E;


    --only-color-design-body: #eeeeee;  
  
  
    --color-whatsapp-green: #14b850;
    --color-whatsapp-green-stroke: #0c7e36;

    /* dark color schemas */
    --color-dark-primary: #1B1C1D;
    --color-dark-secondary: #0E0F0F;
    --color-dark-stroke: #010101; 
    --color-dark-lightgray: #979797;

   
   
    --font-large-extra: 36px;
    --font-large: 24px;
    --font-medium: 16px;
    --font-small: 12px; 
  
    --dim-2px: 2px;
    --dim-4px: 4px;
    --dim-6px: 6px;
    --dim-8px: 8px;
    --dim-10px: 10px;
    --dim-12px: 12px;
    --dim-16px: 16px;
    --dim-20px: 20px;
    --dim-24px: 24px;
    --dim-32px: 32px;
    --dim-40px: 40px;
    --dim-48px: 48px;
    --dim-64px: 64px;
    --dim-92px: 92px;
    --dim-nav-size: 60px;
    --roundness: 16px;
    --roundness-8px: 8px;
    --roundness-full: 200px;

    --button-height: 40px;


  }

  html {
    scroll-behavior: smooth; 
  }
  body {
    margin: 0px;
    padding: 0px;
 
  }
  * {
    /* background-color: greenyellow;
    border: 1px solid red; */
    margin: 0;
    padding: 0;
  
    /* transition: 0.4s all !important; */
    font-family: "Urbanist" , sans-serif;
    font-weight: 600  ;
    letter-spacing: 0.2px;
    scroll-behavior: smooth;
    color: var(--color-black);
    font-size: var(--font-medium);
  }
  
  /* .shadow-local:hover {
    box-shadow: 3px 3px 1px 1px rgba(0, 0, 0, 0.1);
  } */
  .no-copy {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none; 
  }

  .skeleton {
    background: linear-gradient(90deg, #fafafa 25%, #efefef 50%, #fafafa 75%); 
    background-size: 200% 100%;
    animation: shimmer 2s infinite; 
  }
  @keyframes shimmer {
    0% {
    background-position: 200% 0;
    }
    100% {
    background-position: -200% 0;
    }
  }

 
  @media only screen and (max-width: 1350px) {
    :root {
      --global-width: 80%; 
    }
  }
  @media only screen and (max-width: 700px) {
    :root {
      --global-width: 90%;
      --dim-separator-gap: 32px; 
      --font-large-extra: 32px;   
      --font-large: 20px;
      --font-medium: 14px;
      --font-small: 10px;
    }
  }
  
  del {
    color: var(--color-red);
}

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.no-drag {
  -webkit-user-drag: none !important; 
} 
.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none; 
  -ms-user-select: none;
  user-select: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.btn-ripple{
  position: relative;
  overflow: hidden;
}

.btn-ripple:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: rgba(29, 29, 29, 0.2);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%; 
}


.btn-press{
  position: relative;
  overflow: hidden;
}

.btn-press:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: rgba(29, 29, 29, 0.2);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%; 
}

 

@keyframes ripple {
0% {
  transform: scale(0, 0);
  opacity: 1;
}
20% {
  transform: scale(25, 25);
  opacity: 1;
}
100% {
  opacity: 0;
  transform: scale(40, 40);
}
}

.btn-ripple:focus:not(:active)::after {
animation: ripple 1s ease-out;
}
.btn-ripple:active{
transform: scale(0.9) translate(0px, 5px);
box-shadow: none;
} 
.btn-ripple:after {
visibility: hidden;
} 
.btn-ripple:focus:after {
visibility: visible;
}


.btn-press:focus:not(:active)::after {
  animation: ripple 1s ease-out;
  }
  .btn-press:active{
  transform: scale(0.9) translate(0px, 5px);
  box-shadow: none;
  } 
  .btn-press:after {
  visibility: hidden;
  } 
  .btn-press:focus:after {
  visibility: visible;
  }
  
  @keyframes diagonalFlow {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .ds-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.ds-tooltip-wrapper .tooltip-text {
    visibility: hidden;
    width: max-content;
    max-width: 220px;
    background-color: var(--color-black);
    color: #fff;
    text-align: left;
    padding: var(--dim-8px);
    border-radius: var(--roundness);
    font-size: var(--font-small);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: normal;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    margin-bottom: var(--dim-8px);
}

.ds-tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.ds-tooltip-wrapper .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--color-brand) transparent transparent transparent;
}
