 /* {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #f0f0f0;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
*/

 
    .kk-slider-container {
      overflow: hidden;
      user-select: none;
      width: 100%;
      max-width: 100%;
      margin: 20px 0;
      cursor: grab;
    }

    @media (min-width: 1100px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 10);
      }
    }
    @media (max-width: 1099px) and (min-width: 1001px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 9);
      }
    }
    @media (max-width: 1000px) and (min-width: 901px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 8);
      }
    }
    @media (max-width: 900px) and (min-width: 801px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 7);
      }
    }
    @media (max-width: 800px) and (min-width: 701px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 6);
      }
    }
    @media (max-width: 700px) and (min-width: 601px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 5);
      }
    }
    @media (max-width: 600px) and (min-width: 501px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 4);
      }
    }
    @media (max-width: 500px) and (min-width: 401px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 3);
      }
    }
    @media (max-width: 400px) and (min-width: 301px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 3);
      }
    }
    @media (max-width: 300px) {
      .kk-slider-container {
        width: calc((85px + 20px) * 3);
      }
    }

    .kk-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .kk-slide {
      position: relative;
      width: 85px;
      height: 125px;
      margin: 0 10px;
      border: 2px solid #444;
      border-radius: 10px;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 4px 3px;
      transition: transform 0.3s ease;
	margin-top: 50px;
    }

    .kk-slide:hover {
      transform: scale(0.95);
    }

    .kk-title-container {
      width: 100%;
      text-align: center;
      margin-bottom: 5px;
    }

    .kk-title {
      font-size: 12px;
      font-weight: bold;
      color: #222;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 4px 0;
      box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.15);
      border-radius: 0 0 8px 8px;
      background: white;
      margin: 0;
    }

    .kk-slide img {
      width: 79px;
      height: 116px;
      object-fit: cover;
      border-radius: 6px;
      z-index: 1;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kk-slide:hover img {
      transform: scale(0.95);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                  0 0 30px rgba(0, 123, 255, 0.6);
    }