/* app css stylesheet */
html {
    overscroll-behavior: contain !important;
    touch-action: none !important;
}

body {
    color: #555;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    overscroll-behavior: contain !important;
    touch-action: none !important;

}
.row {
    padding-right: 0px;
    margin-right: 0px;
    padding-left: 0px;
    margin-left: 0px;
}
.fixedBottom {
    position: fixed;
    text-align: center;
    bottom: 0px;
    width: 100%;
    min-height: 40px;
    max-height: 60px;
    background: #fff;
    z-index: 1000;
    opacity: 0.6;
    pointer-events: none;
}
.nopadding {
   padding: 0 !important;
}
.form-control {
    box-shadow: none !important;
}
.form-control:focus {
    color: #444 !important;
    border-color: #a3a3a3;

}
.form-control:active {
    color: #888 !important;
}

/* Custom container */
.container-full {
    margin: 0 auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    text-align:left;
    margin-right:-4px;
}
#debug {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 300px;
    height: 500px;
    background-color: red;
    z-index: 1000;
    overflow: auto;
}

.width-100 {
    width: 100px !important;
}

.width-120 {
    width: 120px !important;
}

.width-160 {
    width: 160px !important;
}

.width-300 {
    width: 300px !important;
}

.width-30-percents {
    width: 30%;
}

/*color-classes*/
.btn-active {
    background-color: #7cc242 !important;
    color: #fff !important;
}
.btn-active:hover {
    background-color: #70b139 !important;
}
.btn-idle {
    background-color: #2b2b2b !important;
}
.btn-idle:hover {
    background-color: #1e1e1e !important;
}
.btn-cancel {
    background-color: #d9534f !important;
    color: #fff !important;
}
.btn-cancel:hover {
    background-color: #d43f3a !important;
}
.btn-cancel {
    background-color: #d9534f !important;
}
.btn-transparent {
    background: transparent;
}
/* Tables: */
.fullPageTable {
    padding: 0px;
}

.alignedCells th, td {
    height:         51px;
    text-align:     center !important;
    vertical-align: middle !important;
}

.alignLeft {
    text-align: left !important;
}


/* form elements: */
.form-element-offset {
    margin-top: 10px;
}

.ng-invalid.ng-touched {
    background-color: #faeadd;
}

.ng-valid.ng-touched input{
    background-color: #fff;
}
/* Just an experiment to make an expandable text area (feel free to make it in a proper way) */
textarea {
    outline: 0 !important;
}
textarea.expandable {
    height: 3em !important; /* couldn't make textarea be the same height as one line text input, did it this way */
    resize: none;
    overflow: hidden !important;
    background-color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

textarea.expandable:focus {
    height: 10em !important; /* expand text area to contain many lines */
    overflow: auto !important;
    white-space: normal;
}
/*imageViewCSS*/
.imagePreview img {
    max-width: 100%;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.imgName {
    white-space: nowrap;
    overflow: auto;
}

.alertBox {
    background: #ff4b38;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
}

/* Header: */

.mapHeader{
    height:     65px;
    background-color: #ededed;
}
.test .mapHeader{
    background-color: #FEFF15;
}
.dev .mapHeader{
    background-color: #ccf3ff;
}
.centerText{
    height:        65px;
    line-height:   65px;
    margin:        auto;
    float:         none;
    text-align:    center;
    vertical-align: middle;
}
@media only screen and (max-width: 991px){
    .centerText {
        font-size: 18px;
    }
}

/* Navigation buttons in views headers: */

.mediumPaddingTop {
    padding-top: 10px;
}

.smallPaddingTop {
    padding-top: 3px;
}

.smallPaddingLeftOnly {
    padding-left:  3px !important;
    padding-right: 0px !important;
}

.smallPaddingRightOnly {
    padding-left:  0px !important;
    padding-right: 3px !important;
}

.noHorizontalPadding {
    padding-left:  0px !important;
    padding-right: 0px !important;
}

.noPaddingLeft {
    padding-left: 0px !important;
}

.noPaddingRight {
    padding-right: 0px !important;
}

.header {
    padding-top: 6px;
}

.push, .footer {
    height: 20px;
    text-align: center;
}

.padded-container {
    padding-bottom: 60px;
}

.wrap {
    margin-left: 0;
    margin-right: 15px;
}
.leftAlignTable  td{
    text-align: left  !important;
    border: 0 !important;
}
/*
.footer {
    position: absolute;
    bottom: 0;
    width:100%;
    text-align:center;
}
*/
.loginArea {
    background: #ededed;
    border-radius: 10px;
    padding: 1em;
    margin-top: 2em;
    padding-top: 0;
}
.loginButton {
    font-weight: bold;
    color: #fff;
    outline: 0;
}
.loginButton:hover {
    color: #555;
}
/* Odd and even rows in lists: */
.odd {
    background-color: #ededed;
}

.even {
    background-color: #fff;
}

.odd2 {

}
.odd3 {

}
.even2 {
    background-color: #EEE;
}
.even2 td:first-child {
    background: #ededed; /*default*/
    background: -webkit-linear-gradient(-90deg, #ededed, #fff);
    background: -o-linear-gradient(-90deg, #ededed, #fff);
    background: -moz-linear-gradient(-90deg, #ededed, #fff);
    background: linear-gradient(-90deg, #ededed, #fff);
}
.even3 {
    background-color: #EEE;
}
.loadOn {
    background-color: #BBE697;
}

#unsent {
    position:   relative;
    top:        12px;

    height:     40px;
    outline:    0;
    border-radius: 5px;
}
#unsent p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-top: 2px;
}


#mapRemarkDiv {

    position: fixed;
    bottom: 10px;
    right: 50px;
    width: 40%;
    height:80px;
    display: none;

}
#info {
    position: absolute;
    z-index: 100;
}
