/* ===== COLORES CORPORATIVOS ===== */
:root {
	--bs-primary: #19818d;
	--bs-primary-rgb: 36, 141, 25;
	--bs-link-color: #19818d;
	--bs-link-hover-color: #1d7114;
	--color-primary: #19818d;
	--color-primary-dark: #1d7114;
	--color-accent: #fe7040;
	--color-accent-dark: #e05a30;
}

/* Bootstrap primary overrides */
.btn-primary {
	background-color: #19818d !important;
	border-color: #19818d !important;
	color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #1d7114 !important;
	border-color: #1d7114 !important;
}
.btn-outline-primary {
	color: #19818d !important;
	border-color: #19818d !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background-color: #19818d !important;
	color: #fff !important;
}
.bg-primary {
	background-color: #19818d !important;
}
.text-primary {
	color: #19818d !important;
}
.border-primary {
	border-color: #19818d !important;
}
badge.bg-primary, .badge.bg-primary {
	background-color: #19818d !important;
}
.form-check-input:checked {
	background-color: #19818d !important;
	border-color: #19818d !important;
}
a {
	color: #19818d;
}
a:hover {
	color: #1d7114;
}
/* ================================= */

body {
	padding-top: 70px;
	color: #666 !important;
}

a {
  text-decoration: none !important;
}

nav {
	box-shadow: 0 0 10px #888;
}

.dorado {
	color: #19818d !important;
}

.white, #navbar ul .white a {
	color: #fff !important;
}

.bg-azul {
	background-color: #004461 !important;
}

.bg-green {
	background-color: #19818d !important;
	color: #FFF !important;
}

.bg-dorado {
	background-color: #19818d !important;
	color: #FFF !important;
}

.bg-naranja {
	background-color: #fe7040 !important;
	color: #FFF !important;
}

.naranja {
	color: #fe7040 !important;
}

#navbar ul li:hover a,
#navbar ul li:hover .nav-link {
	color: #fe7040 !important;
	transition: 0.2s all;
}

#navbar ul li.active a,
#navbar ul li.active .nav-link {
  color: #fe7040 !important;
  font-weight: bold;
}

.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: #19818d;
    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;
}

.month {
  padding-left: 2px;
  padding-right: 2px;
  margin: 1px;
  margin-bottom: 2px;
  border-radius: 2px;
  background-color: #DDD;
  border: 1px solid #BBB;
  display: inline-block;
}

.select2-container {
  width: 100% !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: #19818d;
  }
  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%;
}

@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;
  }
}