.vbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.vbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.vbox:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.vbox input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.vbox input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.vbox .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.vbox input[type=text] {
    position: relative;
    z-index: 1;
    opacity: 1;
    padding: 6px;
    margin: 0 5px;
    border: #c3c3c3 1px solid;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

tbody {
    border-color: #ddd;
}


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

.survay {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    margin: 0 auto;
    padding: 20px;
    /*margin-top: 140px;*/
    background: #fff;
}

.survay a {
    text-decoration: none;
}

.survay .v-logo {
    padding: 20px 0;
    margin: 20px 0;
    text-align: center;
    border-bottom: #666 1px solid;
}

.survay .v-logo img {
    max-width: 100px;
    height: auto;
}

.survay .v-btn {
    margin: 5px;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: bold;
    background: #2196f3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
}

.survay .clarification {
    font-size: 20px;
    padding: 5px 0;
}

.survay .box-all {
    padding: 15px;
}

.survay .topic {
    font-size: 19px;
    font-weight: bold;
}

.survay .title {
    font-size: 19px;
    padding: 10px 0;
}

.survay .v-list {
    padding: 10px;
}

.survay .v-list ul {
    padding: 0;
    margin: 0;
}

.survay .v-list ul li {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    padding: 15px;
}

.x-scroll {
    width: 98%;
    overflow-x: scroll;
}

.hscroll-none::-webkit-scrollbar {
    display: none;
}

@media (min-width: 375px) and (max-width: 1090px) {
    .survay {
        width: 100%;
    }
}