/*
Paleta de colores TCER
PANTONE 307C
#006BA6

PANTONE 295C
#002855

PANTONE 187C
#A6192E

PANTONE 423C
#898D8D
*/
*, *::before, *::after {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    background: #fff;
    font-family: 'Fira Sans', sans-serif;    
}

body a {
    color: #1a3255;
    text-decoration: none;
}

body a:hover {
    text-decoration: underline;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 3.0rem;    /* Footer height */
}

#navbar-1 {
    background-color: #1A3255;
    border-bottom: 1px solid #345882/*#567BA9*/;
}

#navbar-2 {
    background-color: #0E2749/*#345882*/;
}

#navbar-2 .navbar-toggler {
    border: none;
}

#navbar-2 .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.azul,
.azul:disabled,
.azul:hover {
    background-color: #1a3255;
    border: none;
    text-decoration: none;
}

.footer {
    background-color: #f0f0f0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/****************************/
/* CUSTOMIZACION DE SELECT2 */
/****************************/
/*
.form-control {
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: none !important;
    margin-bottom: 15px;
}
*/
.form-control:focus {
    border: 1px solid #34495e;
}

.select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .select2-selection {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 38px;
  margin-bottom: 15px;
  outline: none !important;
  transition: all .15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #333;
  line-height: 36px;
  padding-right: 37px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
  background: #f8f8f8;
  border-left: 1px solid #ccc;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  height: 36px;
  width: 37px;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background: #f8f8f8;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}

.select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 34px;
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: -5px;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #34495e !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
}

.select2-container .select2-dropdown .select2-results {
  padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #34495e;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #3498db;
}

@media (max-width: 575.98px) { 

    .select2-selection__rendered {
        width: 300px;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;  
    }
    
}