body {
	padding-top: 70px;
	color: #666 !important;
}

nav {
	box-shadow: 0 0 10px #888;
}

.azul, #navbar ul li a {
	color: #004461 !important;
}

.dorado {
	color: #986060 !important;
}

.white, #navbar ul .white a {
	color: #fff !important;
}

.bg-azul {
	background-color: #004461 !important;
}

.bg-green {
	background-color: #768466 !important;
}

.bg-dorado {
	background-color: #986060 !important;
	color: #FFF !important;
}

.navbar-nav li:hover{
	background-color: #986060 !important;
	transition: 0.5s all;
}
#navbar ul li:hover a{
	color: #FFF !important;
	transition: 0.2s all;
}
.select2-container {
  width: 100% !important;
}
.no-padding {
	padding: 0 !important;
}
.no-padding-left {
	padding-left: 0 !important;
}
.no-padding-right {
	padding-right: 0 !important;
}
.block {
	display:block;
    width: 100%;
    float: left;
}

.postit {
    float: right;
    background-color: #f4f74f;
    color: #000;
    margin-right: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    display: none;
}

.postit-button {
	cursor: pointer;
	padding: 10px;
    background-color: #337ab7;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #000;
    float: right;
    margin-left: -40px;
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 99;
    position: absolute;
    right: 30px;
    top: 60px;
}

.blockavp {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
	border: 1px solid #ccc!important;
}

  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }  
  .switch input {display:none;}
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  input:checked + .slider {
    background-color: #91a07f;
  }
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  /* Rounded sliders */
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

.btn-primary, .btn-success {
    color: #fff;
    background-color: #768466 !important;
    border-color: #616d54 !important;
}

.btn-primary:hover, .btn-success:hover {
    color: #fff;
    background-color: #535d48 !important;
    border-color: #616d54 !important;
}

.btn-danger {
    color: #fff;
    background-color: #986060 !important;
    border-color: #863d3b !important;
}

.btn-danger:hover {
    color: #fff;
    background-color: #863d3b !important;
    border-color: #863d3b !important;
}

.text-danger {
    color: #986060 !important;
}

.text-primary, .text-success {
    color: #535d48 !important;
}

@media (min-width: 1300px){
	.container {
	    width: 1270px !important;
	}
}

    .loading {
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: url("{% static 'img/loading.gif' %}") center no-repeat #fff;
        opacity:0.6;
        }

.flex-row {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	overflow-y:hidden;
}

.flex-row > div {
  flex: 1 1 300px;
  margin:5px;
}

@media (max-width: 800px) {
  .flex-row {
    flex-direction: column;
  }
}