input[type='radio'], input[type='checkbox'] {
    border-radius: 100%;
    width: 27px;
    height: 27px;
    background: white;
    border: 1px solid #ababab;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 5px;
}


.option.choice:not(.horizontal) {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.option.choice:not(.horizontal) input{
    min-width: 27px;
    margin: auto 0 auto 0;
}

.option.choice:not(.horizontal) label{
    margin: auto 0 auto 5px;
    top: unset!important;
    text-align: left;
}


.options.choice.horizontal {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.option.choice.horizontal {
    text-align: center;
    margin: 5px;
}

.options.choice.horizontal > div > input {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin: 0 30px;
}

.options.choice.horizontal > div > label {
    top: unset;
}

.options.choice.horizontal > div {
    text-align: center;
    flex-basis: 15%;
}

.options.choice.horizontal {
    flex-direction: column;
}

@media screen and (max-width: 500px){
    fieldset .title {
        text-align: center;
    }
}


.options.bigger > div > div > input[type="checkbox"] {
    /*margin: 0 15px;*/
}

.options.bigger > div > div > input[type="checkbox"] {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 450px){
    .options.bigger > div > div > input[type="checkbox"] {
        margin: 0 auto;
    }
}

input[type='radio'].hovered, input[type='checkbox'].hovered, input[type='radio']:hover, input[type='checkbox']:hover {
    background: #fde0c7;
}

input[type='radio']:checked, input[type='checkbox']:checked {
    background: #ff7e14;
}

.rating > div > input[type="checkbox"] {
    width: 25px;
    height: 25px;
    margin: 4px 5px;
}

.rating.smaller {
    margin-left: 30px;
}

.rating.smaller > div > input[type="checkbox"] {
    width: 23px;
    height: 23px;
    margin: 0 5px;
}

input:focus {
    outline: 0;
}

label {
    position: relative;
    top: -12px;
}

@media screen and (min-width: 1200px){
    label{
        cursor: pointer;
    }
    input[type='radio'], input[type='checkbox']{
        cursor: pointer;
    }
}

@media screen and (min-width: 1400px){
    .options.choice.horizontal > div > input{
        margin: 0 40px;
    }
}

textarea {
    position: relative;
    margin: 0 auto;
    width: 90%;
    min-height: 100px;
    max-height: 300px;
    resize: vertical;
}