.star {
    color: red
}

.suggestion-tags-outer {
    border: 2px solid #4CAF50;
    padding: 15px;
    max-width: 1000px;
    margin: 20px auto;
    overflow: hidden;
    max-height: 95px;
    position: relative;
    text-align: center;
    transition: max-height 1.5s ease;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.expanded {
    max-height: 1000px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

    .suggestion-tags span {
        background-color: #f0f0f0;
        border: 1px solid #ccc;
        padding: 5px 10px;
        margin: 5px;
        cursor: pointer;
        border-radius: 20px; 
        transition: background-color 0.3s ease; 
    }

        .suggestion-tags span:hover {
            background-color: #d50606;
            color: white;
        }

.button-container {
    text-align: center;
}

.short-detail-btn, .full-detail-btn {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.sell-header-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sell-header-list img {
        margin: 0px 20px 0px 40px;
        max-width: 80px;
    }

.sell-mandatory {
    font-size: 14px;
    display: block;
}

.suggestion-tags-outer {
    border: 1px solid #EAEDEF;
    border-width: 0 1px 1px;
    padding: 5px 7px 0px;
}

.fa {
    /*color: #3eb549;*/
    font-size: 20px;
}

.generic-basic {
    color: #434343;
}

strong {
    font-weight: 700;
}

.upload-photos {
    text-align: center;
    margin: 0px 50px 0px 50px;
}

.form-hint{
    font-size:15px;
    text-align:center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left:25px;
}


    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }


.slider_whatsapp {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .slider_whatsapp:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider_whatsapp {
    background-color: #4CAF50;
}

input:focus + .slider_whatsapp {
    box-shadow: 0 0 1px #4CAF50;
}

input:checked + .slider_whatsapp:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.fs16{
    font-size:18px;
}