.text-xs-left { text-align: left; }
.text-xs-right { text-align: right; }
.text-xs-center { text-align: center; }
.text-xs-justify { text-align: justify; }

@media (min-width: @screen-sm-min) {
    .text-sm-left { text-align: left; }
    .text-sm-right { text-align: right; }
    .text-sm-center { text-align: center; }
    .text-sm-justify { text-align: justify; }
}

@media (min-width: @screen-md-min) {
    .text-md-left { text-align: left; }
    .text-md-right { text-align: right; }
    .text-md-center { text-align: center; }
    .text-md-justify { text-align: justify; }
}

@media (min-width: @screen-lg-min) {
    .text-lg-left { text-align: left; }
    .text-lg-right { text-align: right; }
    .text-lg-center { text-align: center; }
    .text-lg-justify { text-align: justify; }
}

.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#podlazie_od, #podlazie_do, #readonly_podlazie_od, #readonly_podlazie_do {
    width: 20%;
    float: left;
    margin-right: 10px;
}

.html_form_item_short {
    display: inline-block;
    text-align: right;
    float: left;
    margin-right: 2px;
}

#loading-overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 10000;
}

#loading-content{
    overflow: hidden; 
    position: absolute; 
    display: none; 
    z-index: 10001; 
    width:100%
}

.imodal{
    z-index: 100000;
    position: fixed;
    width: 400px;
    height: auto;
    left: 20px;
    top: 20px;
    border: solid 1px black;
    background-color: #f5f5f5;
    /* overflow: hidden;
    overflow-y: auto; */
}

.imodal-body {
    height: 350px; 
}
/*
.imodal-body {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    height: 350px; 
}


.imodal-body::-webkit-scrollbar { 
    display: none;  
}
*/
.imodal-header{
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.imodal-dialog{
    /* overflow-y: scroll */
}

.imodal-header h4{
    display: block;
    margin:0;
}

.imodal-header button{
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    margin-top: -2px;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.imodal-body{
    position: relative;
    padding: 15px;
    overflow-x: hidden;
}

.imodal-footer{
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    display: block;
}

.btn.gamp.mini{
    font-size: 12px;
    padding: 6px 16px;
    text-decoration: none;
}

#osob_minus, #zastupca_minus{
    color: #E13300;
    font-weight: bold;
}

#osob_minus, #osob_plus, #zastupca_plus{
    margin-top: 15px;
    display: inline-block;
}

.pricelist_plus_pzp{
    background-color: greenyellow;
    border: solid 1px darkgreen;
    padding: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.loading-animation{
    text-align: center; font-size: 2em; letter-spacing: 3px;
    animation: loadingAnimationFrames ease 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: loadingAnimationFrames ease 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: loadingAnimationFrames ease 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: loadingAnimationFrames ease 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: loadingAnimationFrames ease 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes loadingAnimationFrames{
    0% {
        transform:  translate(0px,0px)  ;
    }
    50% {
        transform:  translate(10px,0px)  ;
    }
    100% {
        transform:  translate(0px,0px)  ;
    }
}

@-moz-keyframes loadingAnimationFrames{
    0% {
        -moz-transform:  translate(0px,0px)  ;
    }
    50% {
        -moz-transform:  translate(10px,0px)  ;
    }
    100% {
        -moz-transform:  translate(0px,0px)  ;
    }
}

@-webkit-keyframes loadingAnimationFrames {
    0% {
        -webkit-transform:  translate(0px,0px)  ;
    }
    50% {
        -webkit-transform:  translate(10px,0px)  ;
    }
    100% {
        -webkit-transform:  translate(0px,0px)  ;
    }
}

@-o-keyframes loadingAnimationFrames {
    0% {
        -o-transform:  translate(0px,0px)  ;
    }
    50% {
        -o-transform:  translate(10px,0px)  ;
    }
    100% {
        -o-transform:  translate(0px,0px)  ;
    }
}

@-ms-keyframes loadingAnimationFrames {
    0% {
        -ms-transform:  translate(0px,0px)  ;
    }
    50% {
        -ms-transform:  translate(10px,0px)  ;
    }
    100% {
        -ms-transform:  translate(0px,0px)  ;
    }
}