.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: 768px) {
    .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: 992px) {
    .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: 1200px) {
    .text-lg-left { text-align: left; }
    .text-lg-right { text-align: right; }
    .text-lg-center { text-align: center; }
    .text-lg-justify { text-align: justify; }
}

body {
  background-color: #FFFFFF !important;
}

h3 {
  text-align: center !important;
}

.clear {
	clear: both;
}

.fleft {
	float: left;
}

.fright{
	float: right;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.btn-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-round.btn-lg {
    width: 48px;
    height: 48px;
}

.btn-round.btn-sm {
    width: 34px;
    height: 34px;
}

.btn-round.btn-xs {
    width: 24px;
    height: 24px;
}




.ic-primary {
	color: #428bca;
}
.ic-success {
	color: #5cb85c;
}
.ic-info {
	color: #5bc0de;
}
.ic-warning {
	color: #f0ad4e;
}
.ic-danger {
	color: #d9534f;
}

.t-margin {
	margin-top: 20px;
}

#inserimento_mappa, .google-maps{
	width: 565px !important;
	height: 300px !important;
}


.input-group[class*="col-"] {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.el-pointer {
    cursor: pointer;
}









/* Sticky footer styles
-------------------------------------------------- */

/*@media (max-width: 1300px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}*/


html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  padding-top: 70px;
}

body > div.container {

}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #212121;
  color: #FFFFFF;
}


footer > div.container .text-muted {
  margin: 20px 0;
  color: #FFFFFF;
}

footer > div.container {
  padding-right: 15px;
  padding-left: 15px;
}


span.goldrake-footer {

}


.navbar-brand {
	padding-top: 5px;
	padding-bottom: 5px;
}

.action-button {
    margin-bottom: 10px;
}


nav.navbar-fixed-top {
    z-index: 1000 !important;
}

.popover {
    z-index: 100 !important;
    text-align: left !important;
}

.popover .close {
    padding-right: 5px;
    padding-left: 5px;
}

.file-input {
    position: relative;
	overflow: hidden;
	margin: 0px;    
    color: #333;
    background-color: #fff;
    border-color: #ccc;    
}
.file-input input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
.file-input-title {
    margin-left:2px;
}


.upload_form {
    margin-bottom: 20px;
}



.navbar-nav .active > a > i.fa {
    color: #337ab7;
}


.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    background-color: #e7e7e7 !important;
    color: #333 !important;
}



.navbar-default .navbar-nav > li > span {
    color: #777;
}
.navbar-nav > li > span {
    line-height: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    display: block;
    position: relative;
}

body.login-body {
    padding-top: 100px;
}

#alert-login-box {
    position: fixed;
    top: 5px;
    z-index: 200;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

#alert-box {
    position: fixed;
    top: 65px;
    z-index: 200;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.unread {
  font-weight: bold;
}

.btn-primary {
  color: #fff;
}


/*.panel-default {
  overflow: scroll;
}*/

.multiselect-container {
  overflow: scroll;
  max-height: 300px;
  z-index: 4;
}

ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

#cover-div-spin {
    position:fixed; /* absolute instead of fixed */
    width:100%;
    height: 100%;
    left:0;right:0;top:0;bottom:0;
    /*background-color: rgba(1,1,1,0.1);*/
    z-index:2;
    display: flex;  /* Allow us to easily center the spinner */
    align-items: center; /* Vertical alignement */
    justify-content: center; /* Horizontal alignement */
}

/* Safari */
@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#cover-div-spin::after {
    /* Removed all position rules */
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #5bc0de;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    content:'';
    display:block;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}


#cover-div-spin-small {
    z-index:2;
    display: flex;  /* Allow us to easily center the spinner */
    align-items: center; /* Vertical alignement */
    justify-content: center; /* Horizontal alignement */
}

#cover-div-spin-small::after {
    /* Removed all position rules */
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #5bc0de;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    content:'';
    display:block;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
