﻿
@media (max-width: 576px) {
    .configurator-select {
        font-size: 12px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    #configuratorImg img {
        max-width: 100%;
        border-radius: 5px;
    }
}
.tab-content-area {
    background: linear-gradient(90deg, #F7F7F7 0%, #ECECEC 100%);
    border-radius: 35px;
    width: 100%;
    height: 100%;
}
.TitleInNavArea {
    font-size: 2rem;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.5;
    color: inherit
}

    .TitleInNavArea span {
        background: -webkit-linear-gradient(270deg, #FEAA39 28.59%, #FF880A 52.89%, #FE9526 52.89%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.configurator-select {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius:15px;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
}

    .configurator-select:hover {
        border-color: #f47b22;
    }

    .configurator-select:focus {
        outline: none;
        border-color: #f47b22;
        box-shadow: 0 0 5px rgba(244, 123, 34, 0.5);
    }

#configuratorImgDiv {
    display: none; 
}

#configuratorImg {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    #configuratorImg:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    }
.configuratorSvg{
    cursor: pointer;
    display: none;
}

.color-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid black;
    transition: transform 0.2s, border 0.2s;
}

    .color-box:hover {
        transform: scale(1.1);
        border: 2px solid red;
    }

.selected {
    border: 2px solid red !important;
}
.justify-content{
    justify-content: space-between;
    
}
#configuratorUpArrow, #configuratorDownArrow, #configuratorClearBtn {
    display: none;
    cursor: pointer;
}
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin: 10px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-align: center;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .icon::before {
    font-family: "FontAwesome";
    content: "\f00c";
    transform: rotate(45deg);
    padding-bottom: 2px;
}

.toggle {
    font-family: "FontAwesome";
    font-style: normal !important;
}

input + .icon::before {
    font-family: "FontAwesome";
    content: "\f00d";
    padding-bottom: 2px;
}

.slider.w-color:before {
    background-color: #a37eba;
}

.slider.w-color {
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider.w-color {
    background-color: #ccc;
}

input:checked + .slider.icon {
    background-color: #a37eba;
}

.slider.icon:before {
    background-color: #ffe05d;
}

.slider.icon:after {
    background-color: #e2df23;
}

input:checked + .slider {
    background-color: #2196f3;
}

    input:checked + .slider:before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px);
    }

.slider.round {
    border-radius: 24px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.switch-text {
    padding-top: 7px;
}