

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f2f2f2;
    padding:40px;
}

.survey-wrapper{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:10px;
}

.survey-wrapper .section{
    margin-bottom:60px;
}

.survey-wrapper .section-title{
    font-size:28px;
    font-weight:bold;
    margin-bottom:30px;
}

.survey-wrapper .demo-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.survey-wrapper .demo-question-text{
    flex:1;
    font-size:20px;
}

.survey-wrapper .rating{
    display:flex;
    gap:18px;
}


.survey-wrapper .rating label{
    color: #000 !important;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    font-size:16px;
}

.survey-wrapper .rating input[type="radio"]{
    width:18px;
    height:18px;
    cursor:pointer;

    /* IMPORTANT */
    appearance:auto !important;
    -webkit-appearance:radio !important;
    opacity:1 !important;
    position:relative !important;
    pointer-events:auto !important;
}

.survey-wrapper textarea{
    width:100%;
    padding:15px;
    margin-top:10px;
    border:1px solid #ccc;
    border-radius:6px;
    resize:vertical;
}
/************** view css**********************/

/******custom css*********/

#survey-form1{
    max-width: 700px;
    border: 2px solid #ccc;
    padding: 20px;
}

/********************************/
