/*--------------------------------------------------------------
    Inputs
--------------------------------------------------------------*/

input,
textarea,
select {
    display: block;
    appearance: none;
    border: 1px solid;
    width: 100%;
    padding: 10px 20px;
    outline: none;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    width: 30px;
    height: 30px;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
    cursor: pointer;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    padding-left: 10px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    position: relative;
}

input[type="checkbox"]:checked:after,
input[type="radio"]:checked:after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    content: '\f00c';
    font-size: 20px;
    line-height: 100%;
    font-family: 'FontAwesome';
    transition: color 0.2s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

::placeholder {
    opacity: 1;
}


/*--------------------------------------------------------------
    Checkbox
--------------------------------------------------------------*/

input[type=checkbox],
input[type=radio] {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 0px;
    width: 0px;
    margin: 0px;
    padding: 0;
    border: 0;
    z-index: 1;
    opacity: 0;
    outline: none;
}

input[type=checkbox]+label,
input[type=radio]+label {
    padding-left: 40px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 24px 24px;
    font-size: 18px;
    vertical-align: middle;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=checkbox]+label {
    background-image: url("../img/unchecked-dark.svg");
}

input[type=checkbox]:checked+label {
    background-image: url("../img/checked-dark.svg");
}

input[type=radio]+label {
    background-image: url("../img/radio-unchecked-dark.svg");
}

input[type=radio]:checked+label {
    background-image: url("../img/radio-checked-dark.svg");
}

.dark input[type=checkbox]+label {
    background-image: url("../img/unchecked-white.svg");
}

.dark input[type=checkbox]:checked+label {
    background-image: url("../img/checked-white.svg");
}

.dark input[type=radio]+label {
    background-image: url("../img/radio-unchecked-white.svg");
}

.dark input[type=radio]:checked+label {
    background-image: url("../img/radio-checked-white.svg");
}


/*# sourceMappingURL=inputs.css.map */