$ascribe-red-error: rgb(169, 68, 66);

.ascribe-property-wrapper {
    background-color: white;
    border-left: 3px solid rgba(0, 0, 0, 0);
    padding-bottom: 1em;
    text-align: center;
    width: 100%;

    &div:last-of-type {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    &:hover {
      border-left: 3px solid rgba(2, 182, 163, .4);
    }
}

.is-hidden {
    display: none;
}

.is-focused {
    background-color: rgba(2, 182, 163, .05);
    border-left: 3px solid rgba(2, 182, 163, 1) !important;
}

.is-error {
    background-color: rgba($ascribe-red-error, .03);
    border-left: 3px solid rgba($ascribe-red-error, 1);

    > div {
        > p {
            > span {
                color: rgba($ascribe-red-error, 1);
                font-size: .9em;
                margin-right: 1em;
            }
        }
        

        > input,
        > textarea {
            color: #666;
        }
    }

    &:hover {
      border-left: 3px solid rgba($ascribe-red-error, 1);
    }
}

.is-fixed {
    cursor: default;

    > div {
        cursor: default;

        > span {
            cursor: default;
        }

        > input,
        > div,
        > pre,
        > textarea {
            color: #666;
            cursor: default;
        }
    }
}

.ascribe-property {
    border-top: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    display: inline-block;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-top: 1em;
    text-align: left;
    width: 100%;

    > div,
    > input,
    > pre,
    > select,
    > span:not(.glyphicon),
    > textarea {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    > .file-drag-and-drop {
        margin-top: .5em;
    }

    > p {
        height: 20px;
        margin-bottom: 0;
        > span {
            font-size: .9em;
            font-weight: normal;
        }
    }

    > div {
        > div:not(.file-drag-and-drop div) {
            color: rgba(0, 0, 0, .5);
            cursor: default;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 1.1em;
            font-weight: normal;
            padding-left: 0;
        }
    }

    > .progressbar-container, .progressbar-progress {
        margin-top: 0 !important;
    }

    > .upload-button-wrapper {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    > input,
    > pre,
    > textarea,
    > select,
    .datepicker__input {
        background-color: rgba(0, 0, 0, 0);
        border: 0;
        box-shadow: none;
        color: rgba(0, 0, 0, .8);
        font-size: 1.1em;
        font-weight: 400;
        margin-top: .5em;
        padding-left: 0;
        width: 100%;

        &:focus {
            border: 0;
            box-shadow: none;
            outline: 0;
        }

        &::selection {
            background-color: rgba(0, 0, 0, 1);
            color: white;
        }

    }

    .datepicker__input {
        padding: 0;
    }

    > textarea {
        color: #666;
        margin-top: 1em;
        padding: 0;
    }
}

.ascribe-property-footer {
    font-size: .8em;
    margin-top: 10px;
    width: 100%;
}

.ascribe-property-collapsible-toggle {
    border-top: 1px solid rgba(0, 0, 0, .05);
    display: inline-block;
    padding: .75em 0 .75em 1.5em;
    text-align: left;
    width: 100%;
}

.ascribe-checkbox-wrapper{
    .checkbox > span {
        color: black;
    }
}

.ascribe-property-collapsible-toggle, .ascribe-checkbox-wrapper {
    cursor: pointer;

    // Taken from: http://www.htmllion.com/css3-checkbox.html
    .checkbox {
        display: inline-block;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: .9em;
        font-weight: normal;
        vertical-align: middle;

        > span {
            left: 5px;
            position: relative;
            top: 1px;

            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -webkit-user-select: none;
        }
    }

    [type=checkbox] {
        display: none;
    }

    .checkbox:before {
        background-color: white;
        border: 1px solid rgba(0, 0, 0, .5);
        border-radius: 1px;
        color: #f3f3f3;
        content: "";
        display: inline-block;
        height: 17px;
        text-align: center;
        vertical-align: middle;
        width: 17px;
    }

    [type=checkbox]:checked + .checkbox:before {
        color: rgba(2, 182, 163, 1);
        content: "\2713";
        font-size: 20px;
        line-height: .8;
    }
}

.ascribe-checkbox-badge {
    > span > span {
        margin-top: 0;
    }
}