/*--------------------------------------------------------------------------------------------------------------------*/
/* INPUT
/*--------------------------------------------------------------------------------------------------------------------*/
input[type="email"],
input[type="tel"],
input[type="text"] {
    outline: none;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background: #F6F6F6 !important;
    width: 100%;
    height: 56px;
    line-height: 56px;
    padding-left: 20px;
    color: #1C1C1C;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

input::-webkit-input-placeholder {color: #1C1C1C;}

input::-moz-placeholder {color: #1C1C1C;}

input:-moz-placeholder {color: #1C1C1C;}

input:-ms-input-placeholder {color: #1C1C1C;}

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;

    [type="checkbox"] {
        position: absolute;
        left: -9999px;
    }

    [type="checkbox"] ~ label,
    [type="checkbox"] + label {
        position: relative;
        padding-left: 32px;
        cursor: pointer;
        color: #1C1C1C;
        font-family: "Source Sans 3", sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 15px; /* 115.385% */
        margin-bottom: 0 !important;

        a {
            color: #1C1C1C;
        }
    }

    [type="checkbox"] ~ label:before,
    [type="checkbox"] + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border-radius: 2px;
        background: #F6F6F6;
        border: 1px solid #EAEAEA;
    }

    [type="checkbox"]:not(:checked) ~ label:before,
    [type="checkbox"]:not(:checked) + label:before {
        background: #F6F6F6;
    }

    [type="checkbox"]:checked ~ label:before,
    [type="checkbox"]:checked + label:before {
        background: #F6F6F6;
        border-color: #FFCD00;
    }

    [type="checkbox"]:checked ~ label:after,
    [type="checkbox"]:checked + label:after {
        content: '';
        position: absolute;
        left: 7px;
        top: 4px;
        width: 0.375rem;
        height: 0.625rem;
        border: solid #FFCD00;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .error ~ label:before,
    .error + label:before {
        border: 2px solid red;
    }
}
