.wpast-form-control {
    display: block;
    width: 100%;
    height: 42px;
    padding: 3px 10px;
    font-size: $font-size;
    font-weight: normal;
    line-height: $line-height;
    color: $text-color;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid #dcdcdc;
    border-radius: $border-radius;
    box-shadow: $box-shadow;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    
    &:focus {
        color: $text-color;
        background-color: #FFF;
        border-color: #80BDFF;
        outline: 0;
        box-shadow: none;
    }
}

textarea.wpast-form-control {
    height: auto;
}

.wpast-custom-select {
    display: inline-block;
    width: 100%;
    height: 42px;
    padding: 3px 30px 3px 10px;
    font-size: $font-size;
    font-weight: normal;
    line-height: $line-height;
    vertical-align: middle;
    background: #FFF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23c6cdd2' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 10px;
    background-size: 8px !important;
    border: 1px solid #dcdcdc;
    box-shadow: $box-shadow;
    border-radius: $border-radius;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    &:focus {
        border-color: #80BDFF;
        outline: 0;
        box-shadow: none;
    }
}

label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wpast-checkbox, .wpast-radio {
    margin: 0 5px 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    //top: 2px;
    display: inline-block;
    width: 15px;
    min-width: 15px;
    height: 15px;
    background: #FFF;
    border-style: solid;
    border-width: 1px;
    border-color: #DCD7CA;
    box-shadow: none;
    cursor: pointer;

    &:focus {
        box-shadow: none;
        outline: none;
    }
}

.wpast-radio {
    border-radius: 50%;

    &:checked {
        background: #ffffff;
    }

    &:checked:before {
        content: '';
        position: absolute;
        display: inline-block;
        width: 7px;
        height: 7px;
        background: #403C37;
        border-radius: 50%;
        left: 3px;
        top: 3px;
    }
}

.wpast-checkbox {
    border-radius: 0;

    &:checked {
        background: #ffffff;
    }

    &:checked:before {
        content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
        position: absolute;
        display: inline-block;
        margin: -3px -2px 0 0;
        height: 17px;
        width: 17px;
    }
}

.wpast-form-label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.wpast-form-group {
    margin-bottom: $margin;
}