#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  /*background-color: #fff;*/
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
  z-index: 1500;
  -webkit-animation: spin 3.5s linear infinite;
  animation: spin 3.5s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 30px;
    left: 4px;
    right: 11px;
    bottom: 31px;
    box-shadow: -15px 24px 0px rgb(1, 43, 70);

  /*border: 8px solid transparent;
  border-top-color:rgb(1, 43, 70);*/
  border-radius: 50%;
  -webkit-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 33px;
  left: -10px;
  right: 19px;
  bottom: 24px;
  box-shadow: 20px -23px 0px #0377AE;
  /*border: 3px solid transparent;
  border-top-color: rgb(26, 65, 130);*/
  border-radius: 50%;
  -webkit-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}
@-webkit-keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(0deg);  /* IE 9 */
      transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
  }
  100% {
      -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(360deg);  /* IE 9 */
      transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(0deg);  /* IE 9 */
      transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
  }
  100% {
      -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: rotate(360deg);  /* IE 9 */
      transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #ddd;
  z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: translateX(-100%);  /* IE 9 */
          transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
          transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: translateX(100%);  /* IE 9 */
          transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
          transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader {
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */

}
.loaded #loader-wrapper {
  visibility: hidden;

  -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: translateY(-100%);  /* IE 9 */
          transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.3s 1s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
          transition: all 0.3s 1s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

.collapse:not(.show) {
  display: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
 

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-sm-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-sm-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-sm-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-sm-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-sm-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-sm-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-sm-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-sm-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-sm-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-sm-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-sm-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-sm-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-sm-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
  @media (min-width: 768px) {
    .col-md {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-md-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-md-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-md-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-md-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-md-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-md-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-md-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-md-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-md-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-md-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-md-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-md-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-md-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-lg-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-lg-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-lg-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-lg-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-lg-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-lg-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-lg-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-lg-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-lg-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-lg-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-lg-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-lg-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-lg-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
  @media (min-width: 1200px) {
    .col-xl {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .col-xl-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
    }
    .col-xl-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-xl-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-xl-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-xl-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-xl-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-xl-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-xl-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-xl-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-xl-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-xl-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-xl-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-xl-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

    .m-auto {
      margin: auto !important;
    }
    
    .mt-auto,
    .my-auto {
      margin-top: auto !important;
    }
    
    .mr-auto,
    .mx-auto {
      margin-right: auto !important;
    }
    
    .mb-auto,
    .my-auto {
      margin-bottom: auto !important;
    }
    
    .ml-auto,
    .mx-auto {
      margin-left: auto !important;
    }

  @media (min-width: 576px) {
    .m-sm-0 {
      margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
      margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
      margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
      margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
      margin-left: 0 !important;
    }
    .m-sm-1 {
      margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
      margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
      margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
      margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
      margin-left: 0.25rem !important;
    }
    .m-sm-2 {
      margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
      margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
      margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
      margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
      margin-left: 0.5rem !important;
    }
    .m-sm-3 {
      margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
      margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
      margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
      margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
      margin-left: 1rem !important;
    }
    .m-sm-4 {
      margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
      margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
      margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
      margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
      margin-left: 1.5rem !important;
    }
    .m-sm-5 {
      margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
      margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
      margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
      margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
      margin-left: 3rem !important;
    }
  }
  .mt-0,
  .my-0 {
    margin-top: 0 !important;
  }

  .mt-1,
  .my-1 {
    margin-top: 0.25rem !important;
  }

  .mt-2,
  .my-2 {
    margin-top: 0.5rem !important;
  }

  .mt-3,
  .my-3 {
    margin-top: 1rem !important;
  }

  .mr-3,
  .mx-3 {
    margin-right: 1rem !important;
  }

  .mt-5,
  .my-5 {
    margin-top: 3rem !important;
  }

  .mt-6,
  .my-6 {
    margin-top: 5rem !important;
  }
  .mb-5,
  .my-5 {
    margin-bottom: 3rem !important;
  }

  /*::::::Alineación y posición::::::::*/
  .align-baseline {
    vertical-align: baseline !important;
  }
  
  .align-top {
    vertical-align: top !important;
  }
  
  .align-middle {
    vertical-align: middle !important;
  }
  
  .align-bottom {
    vertical-align: bottom !important;
  }
  
  .align-text-bottom {
    vertical-align: text-bottom !important;
  }
  
  .align-text-top {
    vertical-align: text-top !important;
  }

  .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  
  .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }
  
  .text-justify {
    text-align: justify !important;
  }
  
  .text-nowrap {
    white-space: nowrap !important;
  }
  
  .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .text-left {
    text-align: left !important;
  }
  
  .text-right {
    text-align: right !important;
  }
  
  .text-center {
    text-align: center !important;
  }
  
  @media (min-width: 576px) {
    .text-sm-left {
      text-align: left !important;
    }
    .text-sm-right {
      text-align: right !important;
    }
    .text-sm-center {
      text-align: center !important;
    }
  }
  
  @media (min-width: 768px) {
    .text-md-left {
      text-align: left !important;
    }
    .text-md-right {
      text-align: right !important;
    }
    .text-md-center {
      text-align: center !important;
    }
  }
  
  @media (min-width: 992px) {
    .text-lg-left {
      text-align: left !important;
    }
    .text-lg-right {
      text-align: right !important;
    }
    .text-lg-center {
      text-align: center !important;
    }
  }
  
  @media (min-width: 1200px) {
    .text-xl-left {
      text-align: left !important;
    }
    .text-xl-right {
      text-align: right !important;
    }
    .text-xl-center {
      text-align: center !important;
    }
  }
  
  .text-lowercase {
    text-transform: lowercase !important;
  }
  
  .text-uppercase {
    text-transform: uppercase !important;
  }
  
  .text-capitalize {
    text-transform: capitalize !important;
  }
  
  .font-weight-light {
    font-weight: 300 !important;
  }
  
  .font-weight-normal {
    font-weight: 400 !important;
  }
  
  .font-weight-bold {
    font-weight: 700 !important;
  }
  
  .font-italic {
    font-style: italic !important;
  }

  .float-left {
    float: left !important;
  }
  
  .float-right {
    float: right !important;
  }
  
  .float-none {
    float: none !important;
  }
  
  @media (min-width: 576px) {
    .float-sm-left {
      float: left !important;
    }
    .float-sm-right {
      float: right !important;
    }
    .float-sm-none {
      float: none !important;
    }
  }
  
  @media (min-width: 768px) {
    .float-md-left {
      float: left !important;
    }
    .float-md-right {
      float: right !important;
    }
    .float-md-none {
      float: none !important;
    }
  }
  
  @media (min-width: 992px) {
    .float-lg-left {
      float: left !important;
    }
    .float-lg-right {
      float: right !important;
    }
    .float-lg-none {
      float: none !important;
    }
  }
  
  @media (min-width: 1200px) {
    .float-xl-left {
      float: left !important;
    }
    .float-xl-right {
      float: right !important;
    }
    .float-xl-none {
      float: none !important;
    }
  }

  .position-static {
    position: static !important;
  }
  
  .position-relative {
    position: relative !important;
  }
  
  .position-absolute {
    position: absolute !important;
  }
  
  .position-fixed {
    position: fixed !important;
  }
  
  .position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
  }

/*::::::FinAlineación y Posición::::::*/


.img-fluid {
  max-width: 100%;
  height: auto;
}

.imgLogo{
    max-height: 70px;
    margin: 10px;
    display: inline-block;
}

.divTelHider{
  margin-top: 17px;
  font-weight: 600;
  font-size: 25px;
  /*text-align: right;*/
  display: inline;
}

.icon-phone{
  font-size: 30px;
  color: rgb(1, 43, 70);
  display: inline;
  margin:0 10px;
}
.divContactosHeader{
  display:block;
}
.divInline{
  display: inline-block;
}

.icon-redes a i{
  color: rgb(1, 43, 70);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: #012B46 solid 3px;
  padding: 3px;
  font-size: 25px;
  text-align: center;
  margin-top: 14px;
  line-height: 28px;
}

.img-menu-min{
  display: none!important;
}

@media screen and (max-width: 300px) {
  .divContactosHeader{
    display:none;
  }
}
@media screen and (max-width: 576px) {
  .imgLogo{
    display:none;
  }

  .divTelHider{
    display: none
  }

  .divContactosHeader{
    display:none;
  }

  .img-menu-min{
    display: block!important;
  }  

  .icon-phone{
    font-size: 15px;
  }

}

@media screen and (max-width: 768px) {
  .imgLogo{
    display:none;
  }

  .divTelHider{
    display: none
  }

  .divContactosHeader{
    display:none;
  }

  .img-menu-min{
    display: block!important;
  }  

  .icon-phone{
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .divTelHider{
    font-size:25px;
  }

  .icon-phone{
    font-size: 25px;
  }
}

@media (max-width: 1200px) {
  .divTelHider{
    font-size: 25px;
  }

  .divContactosHeader{
    display:none;
  }
  
}


/*:::::::::Navbar::::::::::::*/
.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
  color:#fff;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}


.navbar-marticorba{
  background-color: rgb(1, 43, 70)
}

.navbar-marticorba .navbar-nav > li > a {
  color:#f2f2f2;
  font-size: 0.95em;
  text-transform: uppercase;
  float: left;
  display: block;
  text-align: center;
  padding: 0px 0px 9px;
  text-decoration: none;
}

.navbar-marticorba .navbar-nav > li > a:hover {
    color: rgb(139, 153, 184);
}

.navbar-marticorba .navbar-brand {
  padding: 0px;
}

.navbar-marticorba .navbar-nav > li > a.btn-primary {
  min-width: 130px;
  color: #fff;
  transition: all .3s ease;
}

.navbar-marticorba .navbar-nav > li > a.btn-primary:hover,
.navbar-marticorba .navbar-nav > li > a.btn-primary:active,
.navbar-marticorba .navbar-nav > li > a.btn-primary:focus {
    background: rgb(1, 43, 70);
}

.navbar-marticorba .dropdown-menu {
  top: 121%;
  padding: 16px 2px;
  border: none;
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 4px 0 0 #0377AE, 0 20px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  padding-bottom: 0px;
}

.navbar-marticorba .nav-item a {
  font-size: 0.95em;
}
/*Dropdown*/
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.45rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #373e44;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #dfd9d9;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: rgb(1, 43, 70);
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
/*:::::::FinNavbar:::::::::*/


  .divAccesosSection{
    background-color: #ddd;
    padding-bottom: 35px;
  }

  .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    top:-30px;
    min-height: 288px;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .card > hr {
    margin-right: 0;
    margin-left: 0;
  }
  
  .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  
  .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  
  .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
  }
  
  .card-title {
    margin-bottom: 0.75rem;
  }
  
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .card-deck .card {
    margin-bottom: 15px;
  }
  
  @media (min-width: 576px) {
    .card-deck {
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px;
    }
    .card-deck .card {
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 1 0 0%;
      flex: 1 0 0%;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-right: 15px;
      margin-bottom: 0;
      margin-left: 15px;
    }
  }

  .card-columns .card {
    margin-bottom: 0.75rem;
  }
  
  @media (min-width: 576px) {
    .card-columns {
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3;
      -webkit-column-gap: 1.25rem;
      -moz-column-gap: 1.25rem;
      column-gap: 1.25rem;
      orphans: 1;
      widows: 1;
    }
    .card-columns .card {
      display: inline-block;
      width: 100%;
    }
  }

  
  .divIconAccesos{
    width: 80px;
    height: 80px;
    background-color:#0377AE;
    border-radius: 50%;
    margin: 0 auto;
    border: 8px solid #fff;
    padding: 5px;
    position: absolute;
    top: -55px;
    left: 130px;
  }

  .iconsAccesos{
    font-size: 35px;
    color: #fff;
    position: relative;
    top: 22px;
    left: 20px;
  } 

  /*Extra small devices (portrait phones, less than 576px)*/
  @media (min-width: 320px) and (max-width: 413.98px) {
    
    .card{
      max-width: 80%;
      margin: 40px auto;
      min-height: 100px;
    }
    .divIconAccesos{
      width: 50px;
      height: 50px;
      top: -40px;
      left: 92px;
    }

    .iconsAccesos{
      font-size: 28px!important;
      top: 12px!important;
      left: 10px!important;
    }
  } 
  @media (min-width: 414px) and (max-width: 575.98px) {
    .card{
      max-width: 60%;
      margin: 40px auto;
      min-height: 100px;
    }

    .divIconAccesos{
      width: 70px;
      height: 70px;
      top: -55px;
      left: 72px;
    }
    
    .iconsAccesos{
      font-size: 30px!important;
      top: 19px!important;
      left: 18px!important;
    }

    .listAccesos li a {
      font-size: 14px!important;
    }

}

  /* Small devices (landscape phones, 576px and up)*/
  @media (min-width: 576px) and (max-width: 767.98px) { 
    .card{
      max-width: 70%;
      margin: 40px auto;
      min-height: 100px;
    }

    .divIconAccesos{
      width: 70px;
      height: 70px;
      top: -55px;
      left: 150px;
    }
    
    .iconsAccesos{
      font-size: 31px!important;
      top: 18px!important;
      left: 18px!important;
    }
   }

  /* Medium devices (tablets, 768px and up)*/
  @media (min-width: 768px) and (max-width: 991.98px) { 
    .card{
      max-width: 70%;
      margin: 40px auto;
      min-height: 100px;
    }

    .divIconAccesos{
      width: 80px;
      height: 80px;
      top: -55px;
      left: 223px;
    }
    
    .iconsAccesos{
      font-size: 35px!important;
      top: 21px!important;
      left: 20px!important;
    }

    .listAccesos li a {
      font-size: 21px!important;
    }

   }

  /* Large devices (desktops, 992px and up)*/
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .divIconAccesos{
      width: 80px;
      height: 80px;
      top: -55px;
      left:100px;
    }

    .listAccesos li a {
      font-size: 16px!important;
    }
  }

  /* Extra large devices (large desktops, 1200px and up)
  @media (min-width: 1200px) { ... }*/

  

  .titleAcceso{
    font-size: 25px;
    color: #0377AE;
    text-align: center;
  }
  
.titlePagar{
    font-size: 25px;
    color: #0377AE;
  }

  .list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
  }

  .list-group-item {
    display: block;
    padding: 0.75rem 0.25rem;
  }

  .listAccesos{
    color: #0377AE;
    list-style-type: none;
  }
  
  .listAccesos li a{
    text-decoration: none;
    color: #0377AE;
    font-size: 18px;
    line-height: 25px;
  }

  .listAccesos li a::before {
    content: "\f111";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 10px;
    line-height: 10px;
    margin-right: 8px;
}


.divSectionNoticiaPpal{
  margin:30px;
  padding: 15px;
}

.divSectionNoticias{
  margin-top:75px;
  margin-bottom: 60px;
}

.imgNoticia1{
  max-height: 300px;
  max-width: 500px;
  margin: 10px;
}

.fechaNoticia{
  font-size:12px;
  color: rgb(192, 192, 192);
}

 /*Extra small devices (portrait phones, less than 576px)*/
 @media (max-width: 575.98px) {
  .imgNoticia1{
    margin: 0px 0px 30px 0px!important;
  }

  .divSectionNoticias{
    margin:50px;
  }

  .imgNoticiasAnteriores {
    max-width: 110px!important;
    margin-bottom: 10px;
  }
 
}
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) { 
  .imgNoticia1{
    margin: 0px 0px 40px 0px!important;
  }

  .divSectionNoticias{
    margin:55px;
  }

  .imgNoticiasAnteriores {
    max-width: 120px!important;
    margin-bottom: 10px;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) { 

  .divSectionNoticias{
    margin:65px;
  }

  .imgNoticiasAnteriores {
    max-width: 130px!important;
    margin-bottom: 10px;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.divRedesSociales{
  margin: 20px 0px 30px 0px ;
  height: 150px;
  /*background-color: #0377AE;*/
  padding: 25px 10px;

}

.iconsAccesosRedes a i{
  color:#0377AE;
  font-size: 45px;
  width: 80px;
  height: 80px;
  border-radius:50%;
  border: #0377AE solid 4px;
  text-align: center;
  padding: 10px;
  line-height: 80px;
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 300px) and (max-width: 576.98px) {
  .divRedesSociales{
    margin: 20px 0px 30px 0px ;
    height: 100px;
    padding: 25px 10px; 
  }

  .iconsAccesosRedes a i{
    color:#0377AE;
    font-size: 21px;
    width: 20px;
    height: 20px;
    border-radius:50%;
    border: #0377AE solid 2px;
    text-align: center;
    padding: 10px;
    line-height: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .divRedesSociales{
    margin: 20px 0px 30px 0px ;
    height: 100px;
    padding: 25px 10px; 
  }

  .iconsAccesosRedes a i{
    color:#0377AE;
    font-size: 25px;
    width: 40px;
    height: 40px;
    border-radius:50%;
    border: #0377AE solid 2px;
    text-align: center;
    padding: 10px;
    line-height: 40px;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) { 

  .divRedesSociales{
    margin: 20px 0px 30px 0px ;
    height: 100px;
    padding: 25px 10px; 
  }

  .iconsAccesosRedes a i{
    color:#0377AE;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius:50%;
    border: #0377AE solid 2px;
    text-align: center;
    padding: 10px;
    line-height: 40px;
  }
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0377AE;
  border-color: #0377AE;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0377AE;
  border-color: #0377AE;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #0377AE;
  border-color: #0377AE;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}


.btn-outline-primary {
  color: #0377AE;
  background-color: transparent;
  background-image: none;
  border-color: #0377AE;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0377AE;
  border-color: #0377AE;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0377AE;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0377AE;
  border-color: #0377AE;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.imgNoticiasAnteriores{
  max-width: 100px;
}

h5.titulosNoticiasAnt{
  margin-top: 10px!important;
}


/*::::::::Publicidad::::::*/



/*::::::::Footer::::::::::*/
.footer{
  background: #272e3d;
  height: 200px;
  color:#fff;
  padding: 30px;
}

.instiFotter{
  font-size: 18px;
  line-height: 32px;
  padding:10px 0px;

}

.datosFotter{
  margin-top: 40px;
}

.datosFotter i{
  margin-right: 10px;
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 300px) and (max-width: 576.98px) {
  .footer{
    color:#fff;
    padding: 30px;
    font-size: 12px;
    height: 100%;
  }
  
  .instiFotter{
    font-size: 12px;
    line-height: 15px;
    padding:10px 0px;
  
  }

}
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer{
    color:#fff;
    padding: 30px;
    font-size: 14px;
    height: 100%;
  }
  
  .instiFotter{
    font-size: 14px;
    line-height: 15px;
    padding:10px 0px;
  
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) { 
  .footer{
    color:#fff;
    padding: 30px;
    font-size: 16px;
    height: 100%;
  }
  
  .instiFotter{
    font-size: 16px;
    line-height: 18px;
    padding:10px 0px;
  
  }
}


/*:::::::::::::::::::
Ejercicio Profesional
:::::::::::::::::::::*/
.divAccesosEjercicio{
  min-height: 480px;
}
.sectionTitle{
  position: relative;
  margin-bottom: 10px 0px;
  padding-left: 15px;
  text-transform: uppercase;
  font-size: 35px;
}

.sectionTitle:before {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 60px;
  height: 5px;
  background: rgb(1, 43, 70);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  left: -3px;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 0.15rem;
  margin-bottom: 1rem;
  list-style: none;
  border-radius: 0.25rem;
  font-size: 12px;
  position: relative;
  margin-bottom: 45px!important;
  margin-top: -8px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.breadcrumb-active {
  color: rgb(1, 43, 70)
}

.cardAccesosVarios{
  padding:15%;
  font-size: 25px;
  text-align: center;
  vertical-align: middle;
  color: rgb(1, 43, 70);
}

.cardAccesosVarios a{
  text-decoration: none;
  color: rgb(1, 43, 70);
  
}
.cardAccesosVarios i{
  font-size: 55px;
}

.cardAccesosVarios h6{
  color:#000;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}


/*:::::::::::Valores::::::::::::*/
.titleValores{
  font-size: 30px;
}
.periodoValores{
  font-size: 16px;
}

.montoValores{
  font-size: 28px;
  color: #012B46;
  display: block;
}

.divider{
  height: 0;
  margin:3rem 0rem 1rem 0rem;
  overflow: hidden;
  border-top: 1px solid #a8a8a8;
}

.divAportes{
  border: solid 1px #272e3d;
  padding: 15px;
}

.divAclaraAportes{
  width: 50%;
  display: inline-block;
}

.divPorcentaje{
  width: 49%;
  float: right;
}

.porcentajeValores{
  font-size: 35px;
  color: #012B46;
  display: inline-block;
  float: right;
}

.porcentajeValores p{
  font-size: 16px;
  display:block;
  margin-top:2px;
}

.titleAccesoBoletas{
  color: #012B46;
  font-weight: 200;
  font-size: 25px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dacece;
  border-radius:2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #555eaf;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 9, 117, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.formsAutogestion{
  text-align: left!important;
  font-size: 14px;
}

.imgCardNoticias{
  max-width: 366px;
}

/*:::::::noticia.html::::::::::*/
.imgGallery{
  max-width: 500px;
  max-height: 300px;
}

.iconoAmpliar{
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  right: 55px;
  bottom: 5px;
}

/*:::::::::Contacto::::::::*/
.divContacto{
  border:1px solid #c4c6c7;
  padding: 25px;
  color: rgb(1, 43, 70);
  margin-bottom: 30px;
}

.inputContacto{
  border:none;
  border-bottom: 2px solid #012B46!important;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  background: transparent!important;
}

/*:::::::::Institucional::::::::*/

.divInstitucionalColegio h3, .divInstitucionalCaja h3{
  position: relative;
  text-transform: uppercase;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.divInstitucionalColegio h3::before,.divInstitucionalCaja h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.divInstitucionalColegio h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: rgb(1, 43, 70);
  bottom: 0;
  left: calc(50% - 20px);
}

.divInstitucionalCaja h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0377AE;
  bottom: 0;
  left: calc(50% - 20px);
}

.parrafoInstitucional{
  padding-bottom: 20px;
  color: #333;
  line-height: 24px;
}

.card-table{
  padding: 20px;
}

/*:::::::Subtítulos:::::::*/
h5.subtitulos{
  color: #999;
  margin: 15px 0px;
}


/*::::::::::::::::::::::::::::::::::
:::::::::::  USUARIOS  :::::::::::::
::::::::::::::::::::::::::::::::::::*/

/*:::::Icon Menu Login::::*/
.icon-user-logIn {
    font-size: 24px;
    margin-left: 30px;
    position: relative;
    top: -4px;
    left: 75px;
}
/*:::::::Ver::::::*/
.box {
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
	background: #fff;
}

.icon {
	float:left;
	margin-top:40px;
}

.icon i {
    color: #666666;
    font-size: 80px;
    transition: 0.5s;
    line-height: 0;
}
.icon i::before {	
  background: rgb(1,43,70);
  background: linear-gradient(180deg, rgba(1,43,70,1) 0%, rgba(3,119,174,1) 100%); /* fallback for old browsers */
	background: -webkit-linear-gradient(180deg, rgba(1,43,70,1) 0%, rgba(3,119,174,1) 100%);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(180deg, rgba(1,43,70,1) 0%, rgba(3,119,174,1) 100%); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.usuarioNombre {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 5px;
}

.box h3 {
    font-size: 18px;
    margin: 5px 0px 0px 100px;
    line-height: 24px;
    color:#999;
}

.datosUsuario{
	font-size: 18px;
    font-weight: bold;
    margin: 15px 0px 0px 100px;
    color: #111;
}

.labelUsuario{
	font-size: 14px;
    color: #999;
    margin: 3px 0px 5px 100px;
}

h2.titleTable{
	font-size:22px;
	text-transform:uppercase;
	color:rgb(1, 43, 70);
	margin: 0px 0px 10px 0px;
}


/*::::::::::Pagos:::::::::::::::*/
.btnBuscarPagos{
	font-size: 24px;
	color:#277dc0;
	margin:30px;
}
/*::::::::::Pagina de Error:::::::::::::::*/
.bd-error-page-deneg {
    background: #e70021;
    margin: 0;
    overflow: hidden;
}


.error-page-deneg h1 {
    color: #fff;
    font-size: 6.286em;
    font-weight: 300 !important;
    margin: 0px;
}

.error-page-deneg h2 {
    color: #fff;
    font-size: 1.143em;
    font-weight: 300 !important;
    margin: 20px 0;
}

.error-page-deneg p {
    color: #000;
    font-size: 0.857em;
    font-weight: 300 !important;
    margin: 10px 0 0 0;
}

.error-page-deneg img {
    margin: 70px auto 0 auto;
}

.error-page-deneg {
    padding-top: 15em;
}

.error-page-deneg::before,
.error-page-deneg::after {
    background: #fff none repeat scroll 0 0;
    top: 200px;
    height: 2px;
    left: 50%;
    transform-origin: 50% 50% 0;
    width: 200px;
}

.error-page-deneg::before {
    transform: translateX(-50%) rotate(45deg);
}

.error-page-deneg::after {
    transform: translateX(-50%) rotate(-45deg);
}

div.error-page-deneg::before,
div.error-page-deneg::after {
    content: "";
    pointer-events: none;
    position: absolute;
}



.cont-error-page {
    color: #000;
    display: table;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
    text-align: center;
    position: relative;
}
.top-error {
    background: #2962ff;
    height: 50px;
    width: 100%;
    position: relative;
}

.top-error img {
    float: right;
}

.top-error div {
    color: #fff;
    font-size: 1.143em;
    font-weight: 300 !important;
    margin: 20px 0;
}


.back-error {
    text-align: left;
    float: left;
}

.back-error a {
    font-size: 1.286em;
    display: inline-block;
}

.back-error a:hover i {
    text-decoration: none;
    color: #00c9e7;
}

.back-error a i {
    background: #2962ff;
    color: #fff;
    font-size: 1.786em;
    height: 50px;
    line-height: 17px;
    padding: 17px;
}

.back-error span {
    color: #FFF;
    font-size: 1.286em;
    padding: 10px;
    display: inline-block;
}
.zmdi-long-arrow-left:before {
  content: '\f2ff';
}


