.gamme-section {
    overflow-x: scroll;
}

.gamme-section::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .gamme-section {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

.gamme-tab-container {
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.gamme-title-container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    width: 60%;
}

.title-content {
    width: 220px;
    text-align: center;
    background: white;
    padding: 0px 0px 20px 0px;
    border-radius: 10px;
}

.options-content {
    background: white;
    border-radius: 10px;
    padding: 0px 0px 0px 20px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
}

.gamme-title-container, .gamme-content-options {
    font-weight: bold;
}

.gamme-content-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}

.gamme-content-container {
    margin-top: 10px;
    display: flex;
    width: 100%;
    gap: 10px;
}

.gamme-content-value {
    width: 60%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gamme-content-value img {
    width: 28px;
    height: 20px;
    object-fit: contain;
}

.gamme-content-item {
    background: white;
    border-radius: 10px;
    width: 100%;
    padding: 10px 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gamme-content-value-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 33%;
}

@media screen and (max-width: 767px) {
    .gamme-tab-container {
        width: 550px;
        font-size: 12px;
    }
}