/*
 *
 *		Cart inputs
 *
 */

input.simple {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #616161;

    margin: 0 2px 0 0;
    width: 70%;
    height: 30px;
    background: #fff;
    border: 1px solid #ccc1b8;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    line-height: 21px;
    padding: 2px 0 1px 0;
}

input.simple.small {
    width: 66px;
    text-align: right;
    padding-right: 48px;
    padding-left: 3px;
}

.auth input.simple {
    width: 100%;
}

/*
 *
 *		Delivery inputs
 *
 */
.row-section input {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.row-section input[type="text"] {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
    background: #f8f6f5;
    border: 1px solid #dcdcdc;
}

.row-section .select-container {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
    background: #f8f6f5;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #f8f6f5 url('../images/form/select.png') right center no-repeat;
    height: 30px;
    padding: 0 1px;
    line-height: 16px;
    overflow: hidden
}

.row-section select {
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0 12px;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none
}

.row-section textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    background: #f8f6f5;
    border: 1px solid #dcdcdc;
}

.checkbox-container input[type=checkbox]:not(old) {
    float: left;
    width: 21px;
    height: 21px;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.checkbox-container input[type=checkbox]:not(old) + span {
    background: url(../images/form/checkbox.jpg) 0 0px no-repeat;
    display: block;
    float: left;
    width: 21px;
    height: 21px;
    margin-left: -22px;
    margin-top: 3px;
}

.checkbox-container label {
    float: left;
    margin-left: -22px;
    padding-left: 22px;
}

.row-section input[type=checkbox]:not(old):checked + span {
    background-position: -21px 0;
}

.radio-container input[type=radio]:not(old) {
    float: left;
    width: 16px;
    height: 21px;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.radio-container input[type=radio]:not(old) + span {
    background: url(../images/form/radio.jpg) no-repeat 0 0;
    display: inline-block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: -16px;
    margin-top: 6px;
    line-height: 10px;
    cursor: pointer;
}

.row-section input[type=radio]:not(old):checked + span {
    background-position: 0 -64px;
}

.radio-container input[type=radio]:not(old):checked + span {
    background-position: 0 -64px;
}


.radio-container label {
    float: left;
    margin-left: -22px;
    padding-left: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .row-section input[type=radio   ]:not(old) + label {
        background: url(../images/form/radio@2x.jpg) no-repeat 0 0;
        background-size: 16px 75px;
        line-height: 18px;
    }

    .row-section input[type=radio]:not(old):checked + span {
        background-position: 0 -64px;
    }

    .row-section .select-container {
        background: #f8f6f5 url('../images/form/select@2x.png') right center no-repeat;
        background-size: 15px 6px;
    }

}

@media (max-width: 991px) {
    .row-section input[type="text"] {
        height: 45px;
        padding: 0 10px;
    }

    .row-section .select-container {
        height: 45px;
        line-height: 45px;
    }
}

@media (max-width: 768px) {
    .simple.full {
        width: 100%;
        height: 45px;
    }
}