/* Some basic styling for the form */


/* default styles here for older browsers. */


hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #333;
    /* old IE */
    background-color: #333;
    /* Modern Browsers */
}

.type_select {
    width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.remove-icon {
    display: block;
    margin-left: 5px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}


#myForm button[type="submit"] {

    color: white;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#terms-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    text-align: left;
}


/* table items */
DIV.table {
    display: table;
    width: 100%;
    margin-bottom: 5px;
}

FORM.tr,
DIV.tr {
    display: table-row;
    width: 100%;
}

/*  
SPAN.serialnumber {
  display: table-cell; 
}
*/
SPAN.faultdescription {
    display: table-cell;
    width: 70%;
}
SPAN.returnreason {
    display: table-cell;
    width: 40%;
}
.returnreason input {
    display: table-cell;
    width: 88%;
}
SPAN.quantity {
    display: table-cell;
    width: 10%;
}
SPAN.productcode {
    display: table-cell;
    width: 20%;
}
.td input {
    box-sizing: border-box;
    margin-bottom: 5px;

}

#addRowButton {
    margin-bottom: 5px;
}

.table .tr input {
    display: inline-block;
}

.remove-button {
    float: right;
    position: relative;
    z-index: 999;
}

.serialnumber input {
    width: 100%;
}

.faultdescription input {
    width: 88%;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Responsive below */
@media only screen and (max-width: 720px) {

    /* styles for mobile browsers smaller than 480px; (iPhone) */
    form {
        width: 90vw;
        margin: 0 auto;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #logo {
        text-align: left;
        max-width: 200px;
        height: auto;

    }
}

@media only screen and (min-width: 720px) {
    form {

        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #logo {
        text-align: left;
        max-width: 300px;
        height: auto;
    }
}

@media only screen and (min-width: 1440px) {
    /* styles for browsers larger than 1440px; */
}

@media only screen and (min-width: 2000px) {
    /* for sumo sized (mac) screens */
}

@media only screen and (max-device-width: 720px) {

    /* styles for mobile browsers smaller than 480px; (iPhone) */
    form {
        width: 90vw;
        margin: 0 auto;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    #logo {
        text-align: left;
        max-width: 200px;
        height: auto;

    }
}

@media only screen and (device-width: 768px) {
    /* default iPad screens */
}

