@import url(color_style.css);
#content{
    background-color: var(--content-background-color);
    border-radius: 0px;
    margin-top: 0.02%;
    border: 1px solid var(--content-border-color);
    color: var(--content-color);
    display: grid !important;
    grid-template-rows : 50px 1fr 50px;
    width: 100vw;
    min-height: 89vh;
}

.panel-heading{
    grid-row: 1;
}
.panel-footer{
    grid-row: 3;
}

.panel-heading,.panel-footer{
    background-color: var(--panel-heading-background) !important;
    color: var(--panel-heading-color) !important;
    font-weight: 800;
}

.panel-body{
    background-color: var(--panel-body-background) !important;
    color: var(--panel-body-color) !important;
    vertical-align: middle;
    align-self: stretch;
    overflow-x: auto;
}

.panel-heading{
    border-bottom: 2px solid var(--panel-heading-border-color) !important;
    border-top: 0px; border-right: 0px; border-left: 0px;
}
.panel-footer{
    border-top: 2px solid var(--panel-heading-border-color);
    border-bottom: 0px; border-right: 0px; border-left: 0px;
}

.btn-default{
    background-color: var(--btn-default-background-color) !important;
    color: var(--btn-default-text-color) !important;
    opacity: 0.90 !important;
}

.btn-default:hover{
    opacity: 1.0 !important;
    border-color: var(-btn-default-text-color);
}

.btn-default:disabled, .btn-default:disabled:hover{
    opacity: 0.60 !important;
    cursor: not-allowed;
    border-color: inherit;
}

.input-group-addon{
    background-color: var(--input-addon-label-background-color) !important;
    opacity: 1.0 !important;
    color: var(--input-addon-label-text-color);
    border: 0px solid white;
}

input, textarea, select{
    background-color: #FFF !important;
    color: var(--input-text-color) !important;
    font-weight: 900;
}
.form-control{
    border: 1px solid var(--input-text-color);
    border-radius: 0px;
}

.btn_link{
    text-decoration: none;
    text-transform: uppercase;
    color: var(--anchor-link-text-color);
    font-weight: 900;
    padding: 0px 10px;
    min-width: 10px;
    display: inline-block;
    background-color: var(--anchor-link-background-color);
    border: 1px solid var(--anchor-link-border-color);
    border-radius: 2px;
}
.btn_link:hover{
    border: 1px solid var(--anchor-link-border-color);
    color: var(--anchor-link-text-color-hover);
    background-color: var(--anchor-link-background-color-hover);
}

@media screen and (max-height: 320px){
    #content{}
}

@media screen and (min-height: 320px) and (max-height: 420px){
    #content{}
}

@media screen and (min-height: 550px) and (max-height: 660px){
    #content{}
}

@media screen and (min-height: 660px) and (max-height: 1024px){
    #content{}
}

@media screen and (min-height: 1024px){
    #content{}
}

@media screen and (max-width: 767px) {
    .row.content {height:auto;} 
}
	 
/* On small screens for Mobile View */
@media only screen and (max-width:768px) {
    header{}	
    .input-group{
        width:100%;
    }
} 
/* On small screens for Mobile View */
@media only screen and (min-width:250px) and (max-width: 359px)  {
    header{}	
    .panel-body{
        padding-left:5px;
        padding-right:5px;
    }
}