#test-out-the-colours {
    position: relative;
}

.svg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.colors-bottom-bar {
    position: relative;
    bottom: 10px;
}

#colorBox {
    top: -50px !important;
    z-index: 0 !important;
}

#standardColorsDiv {
    position: relative;
    z-index: 1 !important;
}

#specialColorsDiv {
    position: relative;
    z-index: 1 !important;
}

#selectedColorName {
    font-size: 30px;
}

@media screen {

}

#selectedColorName {
    font-size: 30px;
}

#selectedColorDescription {
    font-size: 14px;
}

/*.color-name-box {*/
/*    position: absolute;*/
/*    top: 8rem;*/
/*    right: 360px;*/
/*    width: 250px;*/
/*    padding: 10px 1rem;*/
/*    font-size: 1.875rem;*/
/*    background-color: white;*/
/*    color: #1f2937;*/
/*    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);*/
/*    border-radius: 0.375rem;*/
/*    display: none;*/
/*}*/

.color-name {
    font-weight: 700;
}

.color-box {
    position: absolute;
    bottom: 0;
    padding: 0.5rem;
    font-size: 0.75rem;
    background-color: #d1d5db;
    border-top-right-radius: 1.5rem;
    transition: all 0.3s;
    display: none;
}

@media (min-width: 768px) {
    .color-box {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .color-box {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.color-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.color-box-label {
    color: #374151;
    font-weight: 500;
}

/* Toggle Container */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-label {
    color: #111827;
    font-weight: 500;
    cursor: pointer;
}

.toggle-label-special {
    color: #9ca3af;
}

.toggle-input {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 3rem;
    height: 1.5rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-circle {
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.toggle-input:checked + .toggle-switch .toggle-circle {
    transform: translateX(1.5rem);
}

/* Info Card */
.info-card {
    width: 100%;
    background-color: #f8fef0;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 3rem;
    color: #303C49;
}

@media (min-width: 640px) {
    .info-card {
        width: 400px;
    }
}

@media (min-width: 768px) {
    .info-card {
        padding: 2rem;
        width: 400px;
        position: absolute;
        top: 30%;
        right: 6%;
    }
}

@media (min-width: 1024px) {
    .info-card {
        position: absolute;
        top: 70%;
        right: 5%;
        transform: translateY(-50%);
        width: 500px;
    }
}

.info-title {
    color: #303c49;
    font-family: "Vastine", Sans-serif, serif;
    font-weight: 400;
    font-size: 1.875rem;
}

@media (min-width: 640px) {
    .info-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .info-title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .info-title {
        font-size: 32px;
    }
}

.info-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #666666;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .info-description {
        font-size: 1rem;
    }
}

/* Try Now Button */
.try-now-button {
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 1rem;
    background-color: #6B8740 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 0.375rem !important;
    transition: background-color 0.3s !important;
    border-color: #6B8740 !important;
}

.try-now-button:hover {
    background-color: #5a7236 !important;
}

.try-now-button span {
    margin: 0;
    color: #ffffff !important;
}

/* Colors Container */
.colors-container {
    display: flex;
    width: 100%;
    cursor: pointer;
    overflow-x: auto;
    display: none;
}

/* Color Item */
.color-item {
    height: 100px;
    flex: 1;
    padding: 1.75rem 1.1875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 150px;
    /*transition: opacity 0.3s ease, border 0.3s ease;*/
    transition: border 0.3s ease;
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
}

.color-item.selected {
    border: 3px solid #6B8740 !important;
    opacity: 1 !important;
}

.color-item:hover {
    opacity: 1;
}

.color-item.selected:hover {
    opacity: 1 !important;
}

.color-text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-align: center;
    margin: 0 !important;
}

.color-text-dark {
    color: black;
}

.color-text-light {
    color: white;
}

/* Show When Try Now */
.show-when-try-now {
    display: none;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Scrollbar Styling for Color Containers */
.colors-container::-webkit-scrollbar {
    height: 8px;
}

.colors-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.colors-container::-webkit-scrollbar-thumb {
    background: #6B8740;
    border-radius: 4px;
}

.colors-container::-webkit-scrollbar-thumb:hover {
    background: #5a7236;
}

.colorNameBox {
    display: none;
    position: absolute;
    top: 8rem;
    right: 20rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.375rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #111827;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 250px;
}


@media (max-width: 2300px) {
    .colorNameBox {
        right: 18rem;
        width: 230px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 2100px) {
    .colorNameBox {
        right: 18rem;
        width: 230px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 1800px) {
    .colorNameBox {
        right: 18rem;
        width: 230px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (min-width: 1402px) and (max-width: 1600px) {
    .colorNameBox {
        right: 18rem;
        width: 230px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 1400px) {
    .colorNameBox {
        right: 18rem;
        width: 220px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 1300px) {
    .colorNameBox {
        right: 18rem;
        width: 220px;
        top: 2rem;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 1200px) {
    .colorNameBox {
        right: 13rem;
        width: 200px;
        top: 1.5rem;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 992px) {
    .colorNameBox {
        right: 9rem;
        width: 210px;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .colorNameBox {
        top: 2rem;
        right: 5rem;
        width: 200px;
        z-index: 50;
    }

    #selectedColorDescription {
        font-size: 14px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .colorNameBox {
        top: 1rem;
        right: 3rem;
        width: 150px;
        font-size: 12px;
        z-index: 50;
    }

    #selectedColorDescription {
        font-size: 8px;
        font-size: 10px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 450px) {
    .colorNameBox {
        top: 1rem;
        right: 1rem;
        width: 150px;
        font-size: 12px;
        z-index: 50;
    }

    #selectedColorDescription {
        font-size: 8px;
        font-size: 10px;
        color: #4a4a4a;
        padding: 10px 0px;
        line-height: 1.6;
    }

    #selectedColorName {
        font-size: 12px !important;
    }
}

@media (max-width: 390px) {
    .colorNameBox {
        top: 1rem;
        right: 0.8rem;
        width: 140px;
        font-size: 12px;
        z-index: 50;
    }

    #selectedColorDescription {
        font-size: 8px;
        font-size: 10px;
        color: #4a4a4a;
        padding: 5px 0px;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .colorNameBox {
        top: 1rem;
        right: 0.9rem;
        width: 130px;
        font-size: 12px;
        z-index: 50;
        padding: 4px 8px;
    }

    #selectedColorDescription {
        font-size: 8px;
        font-size: 10px;
        color: #4a4a4a;
        line-height: 1.6;
    }
}
