/* Common styles */

.input-text {
    padding: .3em 2em .3em .7em;
    color: #333;

    border-color: #d1d8de;
    border-radius: 1em;
    border-style: solid;
    border-width: 1px;

    outline: 0 !important;
    background: #fff;

    font-size: 14px;
}

.input-text:focus {
    border-color: rgb(53, 182, 222);
    box-shadow: .2em 0 2em rgba(53, 182, 222, .7);
}

.input-text:disabled {
    pointer-events: none;

    color: rgba(50, 50, 50, .65);
    background: rgba(50, 50, 50, .07);
}

.input-text-light {
    color: #838a9d;
    background-color: #fff;
}

textarea.input-text {
    max-height: 10em;
    resize: vertical;
    border-radius: .5em;
}

.calendar-label {
    display: inline-block;
    background: url(../svg/ico_calendar.svg) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

/* Small Devices, Tablets */
@media (min-width: 720px) {
    .input-text {
        border-width: 2px;
        font-size: 20px;
        padding: .3em 2em .3em .7em;
        width: 60%;
    }

    .calendar-label {
        width: 30px;
        height: 34px;
        right: 15px;
        top: 10px;
    }
}


/* Large Devices, Wide Screens */
@media (min-width: 1020px) {
    .input-text {
        border-width: 1px;
        border-radius: 1em;
        font-size: 14px;
        width: 59%;
    }

    .calendar-label {
        width: 20px;
        height: 24px;
        right: 10px;
        top: 5px;
    }
}
