* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::selection {
    background: #161616; 
    color: #FFFFFF;          
}

body {
    font-family: 'WixMadeforDisplay';
    color: #161616;
    background: #F0F0F0;
}

.body--light {
    background: #F0F0F0;
}

.body--dark {
  background: #212121;
}

a {
    color: currentColor;
    text-decoration: none;
}

.csg__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: conic-gradient(from 80deg at 15.02% 100%, rgba(27, 27, 27, 0.1) 0deg, rgba(255, 255, 255, 0.1) 360deg);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: 8px;
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset 0px 4px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s ease;
}

.csg__button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.csg__button:hover::after {
  transform: translateX(300%) skewX(-20deg);
}

.csg__button:active {
    transform: translateY(0);
    box-shadow:
        2px 3px 6px rgba(83, 64, 64, 0.2),
        inset 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.csg__button--light {
    color: #212121;
    background: conic-gradient(from 80deg at 15.02% 100%, rgba(255, 255, 255, 0.05) 0deg, rgba(48, 48, 48, 0.05) 360deg), #F0F0F0;
}

.csg__button--dark {
    color: #EFEFEF;
    background: conic-gradient(from 80deg at 15.02% 100%, rgba(48, 48, 48, 0.05) 0deg, rgba(255, 255, 255, 0.05) 360deg), #212121;
}

.csg__link {
    position: relative;
    width: max-content;
}

.csg__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.csg__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@font-face {
    font-family: 'WixMadeforDisplay';
    src: url('/local/templates/csg/fonts/WixMadeforDisplay/WixMadeforDisplay.ttf');
}

@font-face {
    font-family: 'Jost';
    src: url('/local/templates/csg//fonts/Jost/Jost.ttf');
}