/* --- LAYOUT STYLES --- */
   html {
    scroll-behavior: smooth;
   }

    .l-grid__column-medium-12 {
      margin-left: 0 !important;
    } 

    .left {
      float: left;
      width: 50%;
    }
    .right {
      float: right;
      width: 50%;
      text-align: center;
    }
    .container-app {
      width: 100%;
      margin:0 auto;
      padding: 20px;
      text-align: center;
      position: relative;
     }
    .wrapper-app {
      max-width: 1024px;
      position: relative;
      margin: 0 auto;
      text-align: left;
      padding: 50px;
      border-radius: 1.6em;
      box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, .07);
    }

 
    .sub {
      text-align: left;
      font-size: 16px;
      font-weight: bold;
      margin: 20px 0 10px;
      color: #333;
    }
    .right p {
      font-size: 16px;
      font-weight: bold;
      margin: 20px 0 10px;
      color: #333;
    }
    #result {
      width: 150px;
      height: 150px;
      background-color: navy;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 25px;
      font-weight: bold;
      margin: 30px auto;
    }

    #result:after 
    {
        border: 1px dotted #979797;
        border-radius: 50%;
        bottom: -1.5rem;
        left: -1.5rem;
        right: -1.5rem;
        top: -1.5rem;
    }

    .outer-circle {
    width: 190px;              /* 150px inner + 2*20px padding */
    height: 190px;
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    display: flex;             /* Flex to center the child */
    justify-content: center;
    align-items: center;
    margin: 30px auto;
}

    button {
      background-color: #107bb1;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    button:hover {
      background-color:#074c91;
    }

 
        /* --- RADIO STYLES --- */
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .radio-group__element {
            width: 48%;
            margin: 8px 0;
            position: relative;
            cursor: pointer;
        }

        .radio-group__element--hidden {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .radio-group__element--hidden:focus + .radio-group__element-custom {
            outline: 2px solid #333;
            outline-offset: 2px;
        }

        .radio-group__element-custom {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #107bb1;
            border-radius: 50%;
            position: relative;
            margin-right: 10px;
            vertical-align: middle;
            cursor: pointer;
        }

        .radio-group__element-custom__dot {
            width: 10px;
            height: 10px;
            background: #107bb1;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.2s ease-in-out;
        }

        input[type="radio"]:checked + .radio-group__element-custom .radio-group__element-custom__dot {
            transform: translate(-50%, -50%) scale(1);
        }

        .radio-group__element label {
            cursor: pointer;
            vertical-align: middle;
        }

        .radio-group__element__label {
            font-size: 14px;
            vertical-align: middle;
        }

    /* --- SLIDER STYLES --- */
    .slider {
      margin: 60px auto 20px auto;
      position: relative;
      user-select: none;
      width: 100%;
      cursor: pointer;
    }
    .slider:focus-within {
        outline-offset: 4px;
        border-radius: 4px;
    }

    .slider .bar {
      height: 20px;
      position: relative;
      margin: 0 0 0.5rem;
    }

    .slider .line {
      border-radius: 8px;
      display: block;
      height: 8px;
      top: 50%;
      transform: translateY(-50%);
      position: absolute;
      width: 100%;
    }

    .slider .line:before {
      background-color: #deeff1;
      content: "";
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      z-index: 1;
    }

    .slider .line .progress {
      background-color: #107bb1;
      height: 8px;
      left: 0;
      position: absolute;
      top: 0;
      transform: scaleX(0);
      transform-origin: top left;
      width: 100%;
      z-index: 3;
      transition: transform 0.2s ease;
    }

    .slider .point {
      cursor: pointer;
      height: 20px;
      width: 20px;
      margin-left: -10px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      left: 0%;
    }

    .slider .point:before {
      background-color: #107bb1;
      content: "";
      height: 20px;
      width: 20px;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 3;
      transition: transform 0.3s ease-in-out;
    }

    .slider .point:after {
      background-color: #fff;
      border: 2px solid #107bb1;
      height: 14px;
      width: 14px;
      border-radius: 50%;
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.3s ease-in-out;
      z-index: 2;
    }

    .slider:active .point:before {
      transform: scale(0.35);
    }

    .slider:active .point:after {
      transform: translate(-50%, -50%) scale(1);
    }

    .slider .tooltip {
      position: absolute;
      top: -35px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #107bb1;
      color: white;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 14px;
      white-space: nowrap;
    }

    .range-bar {
      display: flex;
      justify-content: space-between;
      margin: 10px 5px 0;
    }

    .range-bar--element span {
      font-size: 14px;
    }
    .icon-wrapper {
          width: 20%;
          padding: 20px;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          min-height: 200px;
          float: left;
        }

        .icon-wrapper img {
          width: 102px;
          height: 102px;
          margin: 10px;
        }

        .icon-wrapper img {
            width: 102px;
            height: 102px;
            margin: 10px;
            transition: transform 1s ease;
            transform: rotate(0deg);
        }

        .icon-wrapper img:hover {
            transform: rotate(360deg);
        }
       
        .ico-background {
          background-color: #fff;
          border-radius: 50%;
          width: 120px;
          height: 120px;
        }
        .ico-background:hover {
          background-color: #e5f9fc;
        }
        .icon-wrapper h3 {
          font-size: 1.2em;
          color: rgb(0,55,129);
          font-weight: 400;
          margin-top: 16px;
          min-height: 3em;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
        }

        .info-tab {
          background-color: #f0f0f0;
          padding: 6px;
          border-radius: 4px;
          transition: all 0.3s ease;
        }

        .modal {
          display: none; 
          position: fixed;
          z-index: 999;
          left: 0;
          top: 0;
          width: 100%; 
          height: 100%; 
          overflow: auto; 
          background-color: rgba(0,0,0,0.5); 
        }

        .modal-content {
          background-color: #fff;
          margin: 10% auto;
          padding: 20px 30px;
          border: 1px solid #888;
          width: 80%;
          max-width: 500px;
          border-radius: 8px;
          position: relative;
          color: #074c91;
        }

        .modal-content p { 
          font-size: 20px;
          font-weight: 100;
          line-height: 1.3;
        }

        .modal-content h2 {
          font-size: 24px;
          font-weight: 600;
        }

        .close-button {
          color: #aaa;
          float: right;
          font-size: 28px;
          font-weight: bold;
          cursor: pointer;
        }

        .close-button:hover {
          color: #000;
}



        .swiper-container { width: 100%; padding: 50px 0; }
    .swiper-slide { display: flex; justify-content: center; align-items: center; }
    .sticker { position: relative; max-width: 300px; padding: 20px; background: #f9f9f9; border-radius: 12px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
    .sticker__title { font-size: 1.5rem; margin: 0 0 10px; text-align: center; }
    .sticker__text { font-size: 1rem; text-align: center; }
    .sticker__image { width: 100%; height: auto; margin-top: 10px; }
    .sticker__bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; background: #fff; border-radius: 12px; }

    .swiper-pagination-bullets { bottom: 10px !important; }

    /* Circle style */
    .sticker__circle {
      width: 270px;
      height: 270px;
      background-color: #e0f0ff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      padding: 20px;
    }

    .circle-row {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
        margin: 40px 0;
    }

    .circle-box {
        text-align: center;
        max-width: 30%;
    }

    .circle-content {
        width: 270px;
        height: 270px;
        background-color: #e0f0ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .circle-content h3 {
        font-size: 26px;
        color: rgb(0,55,129);
        line-height: 1.4;
    }

   .mobile-slider {
    display: none;
    }  

/* MODEL START */ 

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #ffffff;
  cursor: pointer;
  font-weight: bold;
  color: #003781;
  margin:0 20px
}

.tab-button:hover {
  color: white;
}

.tab-button.active {
  background-color: #003781;
  color: white;
}

.model-app {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
}

.model-app.active {
  display: flex;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 60px;
  flex-wrap: nowrap;
}

.person {
  flex: 1 1 0;
  max-width: 400px;
  overflow: auto;
}

.person img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 10px 10px 10px;
 
}

.left-person img {
  float: right;
}

.left-person .text {
  text-align: right;
    color: #003781;
}

.right-person img {
  float: left;
}

.right-person .text {
  text-align: left;
    color: #003781;
}

.model-headline {
 font-size: 2em;
  font-weight: regular;
  margin-top: 10px;
  margin-bottom: 10px;
}

.description {
  padding:10px 0;
  font-size: 1.25em;
  color: #003781;
}

.shared-box {
  background: #FFFFFF;
  padding: 20px;
  width: 100%;
  max-width: 50%;
  text-align: center;
  border-radius: 10px;
  color: #003781;
  font-size: 1.25em;
  border: 1px solid #fff;
  box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, .1);
}

.individual-boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding:60px 0 20px 0;
}

.individual-box {
  flex: 1 1 50%;
  max-width: 50%;
  background-color: #003781;
  padding: 20px;
  border-radius: 10px;
   font-size: 1.25em;
  text-align: center;
  color: #ffffff;
  margin:0 auto;
}

.individual-box-right {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 20px;
  border-radius: 10px;
   font-size: 1.25em;
  text-align: center;
  background-color: #F1F9FA !important;
  color:  #003781;
  border: 1px solid #ddd;
 box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, .1);
}

/* MODEL END */

    @media only screen and (max-width: 600px) {

      /* MODEL START */
      
      .person img {
        width: 100px;
        height: 100px;
        float: left;
      }

      .model-headline {
        font-size: 2.5em;
        margin-top: 20px;
      }

 
      .left-person img {
      float: right;
    }

      .left-person .text {
        text-align: right;
          color: #003781;
      }

      .right-person img {
        float: left;
      }

      .right-person .text {
        text-align: left;
          color: #003781;
      }

      .model-app {
        flex-direction: column;
        align-items: center;
      }

      .row {
   
        align-items: center;
      }


      .tab-button {
        
        text-align: center;
      }

      .shared-box {
        max-width: 90%;
      }

      .individual-boxes {
        align-items: center;
      }

      .individual-box {
        width: 50%;
        margin: 0 10;
        justify-content: flex-start;
      }
    
      .tab-button {
 
        margin:0 10px
      }
     /* MODEL END */ 
}

