/* 
Style classes for aspect_calc index.html 
Created by: Barry Ford
Date: 3/24/2022
*/

label {
    width: 55px;
    margin: 0px 5px 0px 0px;
}

input[type="text"] {
    background-color: rgba(250, 249, 239, 0.87);
    width: 170px;
    border: #03612d solid 1px;
    border-radius: 4px;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 0px 3px 0px 2px;
}

#calc {
    position: relative;
    color: rgb(8, 8, 104);
    top: 20px;
    left: 20px;
    background-color: rgba(45, 119, 85, 0.26);
    width: 370px;
    height: auto;
    padding: 6px;
    border: solid #000000 1px;
    border-radius: 3px;
}

.lock_msg {
    font-size: 13px;
    color: #03612d;
    font-style: italic;
    line-height: 7px;
}

#display_container {
    display: table;
    width: 360px;
    padding: 4px;
    margin-top: 6px;
    border: solid rgb(221, 206, 183) 2px;
}

#contrast {
    background-color: rgba(11, 92, 185, 0.199);
    padding: 8px;
    border: solid rgb(243, 234, 234) 1px;
    border-radius: 3px;
}

/*Smaller Screen*/
@media screen and (max-width: 500px) {
    #calc {
        top: 20px;
        left: 20px;
        width: 335px;
        padding: 6px;
    }
}