/*------------------------------------------------------------------
Project: Jetpack
Version: 1.0
Last change: first release
Primary use: App & Mobile Website 
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]
1. Typography 
2. Colors
3. Utility & Colors
4. Layout
5. Animation
6. Toolbar
7. Sidebars
8. Elements
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* 0. Reset
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements
are based on 10px sizing. So basically 1.5rem = 15px */
*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
 }    
 html {
  font-size: 62.5%;
  overflow-x: hidden;

}
img {
  max-width: none;
  display: block;
  width: 100%;
}
/* Fuentes de letra */


@font-face {
    font-family: 'ayuntamiento';
    src:url('fonts/VAG Rounded BT.eot');
    src:url('fonts/VAG Rounded BT.eot?#iefix') format('embedded-opentype'),
        url('fonts/VAG Rounded BT.ttf') format('truetype'),
        url('fonts/VAG Rounded BT.woff') format('woff'),
        url('fonts/VAG Rounded BT.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}  

@font-face {
    font-family: 'inter';
    src:url('fonts/Inter.ttf');

    font-weight: normal;
    font-style: normal;
}  

/* 1. Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 400;
  font-family: "inter", Helvetica, Arial, sans-serif !important;
  color: #222; 
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; 
  color: #1c212a;
}
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

p { margin-top: 0; }

a { color: inherit; }
a:hover { opacity: 0.95; }

a,
a:link,
a:hover,
a:active,
a:focus {
    outline: 0;
    text-decoration: none;
}
body,
input,
textarea,
button,
select,
label,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button {
  border-radius: 5px !important;
}

[class^="mdi-"],
[class*="mdi-"] {
  font-family: "inter";
}
i {
  font-size: 2.4rem;
  color: inherit;
}
i.big {
  font-size: 3.6rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; 
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; 
}

hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}

.small {
  font-size: 85% !important;
  font-weight: 100;
}
h1.title.big {
  font-size: 9rem;
  margin: 0;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.dropcap {
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
}
.ayuntamiento{
  font-family: "inter";
}

/* 2. Colors
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.primary-text {
    color: #1c212a !important;
}
.primary-color {
    background-color: #E30613
 !important;
}
.primary-border {
    border-color: #1c212a !important;
}
.accent-text {
    color: #55a9dd !important;
}
.accent-color {
    background-color: #55a9dd !important;
}
.accent-border {
    border-color: #55a9dd !important;
}

/* 3. Utility
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clr {
  clear: both;
}
.m-0 {
  margin: 0 !important;
}
.m-20 {
  margin: 20px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-20 {
  padding: 20px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-5 {
  padding: 5px !important;
}
.w-100 {
  width: 100%;
}
.border-top {
  border-top: 1px solid #eee;
}
.divider {
  width: auto;
  height: 1px;
  background-color: #eee;
  margin: 16px;
}
.block {
  display: block;
}
.bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.fullscreen {
  width: 100%;
  height: 100vh;
}
.valign {
  margin-left: auto;
  margin-right: auto;
}
.no-shadow {
  box-shadow: none;
}
.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
  font-size: 2.4rem;
}
.float-none {
  float: none !important;
}
/* Backgrounds */
.gradient-bg {
  background: linear-gradient(to bottom,#333 0,#3caeff 100%);
}
.bg-1 {
  background: url(../img/1.jpg) 
              no-repeat 
              center / cover;
}
.bg-2 {
  background: url(../img/2.jpg) 
              no-repeat 
              center / cover;
}
.bg-3 {
  background: url(../img/3.jpg) 
              no-repeat 
              center / cover;
}
.bg-4 {
  background: url(../img/4.jpg) 
              no-repeat 
              center / cover;
}
.bg-5 {
  background: url(../img/5.jpg) 
              no-repeat 
              center / cover;
}
.bg-11 {
  background: url(../img/shop.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-1 {
  background: url(../img/v1.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-2 {
  background: url(../img/v2.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-3 {
  background: url(../img/v3.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-4 {
  background: url(../img/v4.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-5 {
  background: url(../img/v5.jpg) 
              no-repeat 
              center / cover;
}
.bg-v-6 {
  background: url(../img/v6.jpg) 
              no-repeat 
              center / cover;
}
.bg-blur {
  background: url(../img/blur.jpg) 
              no-repeat 
              center / cover;
}
.bg-shop {
  background: url(../img/shop.jpg) 
              no-repeat 
              center / cover;
}
/* Overlay Layers */
.opacity-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(233,22,31,1,1);
}
.opacity-overlay-black {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0)), color-stop(90%, rgba(0, 0, 0, .85)), to(#000)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, .85) 90%, #000 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(top, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, .85) 90%, #000 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, .85) 90%, #000 100%) repeat scroll 0 0;
}
.opacity-overlay-top {
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left bottom, left top, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(95%, rgba(0, 0, 0, .75)), to(#333)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .75) 95%, #333 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .75) 95%, #333 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .75) 95%, #333 100%) repeat scroll 0 0;
}
#sidenav-overlay {
  background-color: rgba(0,0,0,.2);
}
/* 4. Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#blockui { /* Prevent link from triggering while drag over */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: none;
}
.drag-target {
  width: 30px !important;
  top: 56px;
}
.progress {
  margin: 0;
}
.page {
  margin-top: 56px;
  overflow: auto;
}
.page.fullscreen {
  height: calc(100vh - 56px);
}
footer.page-footer {
  margin-top: 0;
}
footer.page-footer i {
  padding: 0 5px;
}
footer.page-footer .footer-copyright {
  font-size: 1.2rem;
  background-color: #222833;
}
.page-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
/* Media Object */
.media-top-object {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1em;
}
.media-top-object .media-left {
  display: block;
}
.media-top-object .media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}
.media-top-object .media-body p {
  margin: 0;
}
.media-top-object .media-body span {
  display: block;
}

.media-top-object.v-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Hero */
.hero-header {
  position: relative;
  z-index: 1;
  min-height: 212px;
}
.hero-header.hero-big {
  text-align: center;
  padding-top: 70vh;
}
.hero-big .about {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hero-big .about .avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.hero-title {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    line-height: 56px;
    margin-left: 9px;
    text-transform: none;
    letter-spacing: normal;
    z-index: 9;
    position: absolute;
    left: 33px;
    bottom: 30px;
    padding-left: 30px;
}
.hero-header .floating-button {
    position: absolute;
    bottom: -27px;
    right: 20px;
    z-index: 2;
}
.floating-button.scrollable-fab.scrolled-down {
    position: fixed;
    bottom: 20px;
}
.hero-header .hero-over {
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
}
/* Toolbar */
#toolbar {
  width: 100%;
  height: 56px;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
.toolbar {
  transform: translateY(0);
  transform: translate3d(0,0,0);
  transition: .25s transform;
  backface-visibility: hidden;
}
.heads-up {
  transform: translateY(-6rem);
  transform: translate3d(0,-6rem,0);
}
#toolbar.transparent {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.open-left {
  float: left;
  height: 56px;
  line-height: 56px;
  width: 56px;
  text-align: center;
  position: relative;
}
.open-right {
  float: right;
  height: 56px;
  line-height: 56px;
  width: 56px;
  text-align: center;
  position: relative;
}
#toolbar i {
  line-height: 56px;
  color: #fff;
}
#toolbar .title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 56px;
  margin-left: 16px;
  text-transform: none;
  letter-spacing: normal;
  float: left;
}

/* Drawers */
.side-nav {
  opacity: .98;
}
.side-nav.collapsible {
    border: none;
}
.side-nav .active .collapsible {
    background: rgba(255,255,255,.01);
}
.side-nav li:hover, 
.side-nav li.active {
    background-color: transparent;
}
.side-nav a {
    height: 44px;
    line-height: 44px;
    padding: 0;
}
.side-nav .no-child {
    padding: 10px 16px;
    margin: 0;
    min-height: auto;
    background-color: transparent;
    border: none;
    line-height: inherit;
    height: inherit;
    display: block;
    cursor: pointer;
    font-weight: 300;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}
.side-nav .no-child i {
    height: auto;
    line-height: 100%;
    width: 2rem;
    font-size: 24px;
    display: block;
    float: left;
    text-align: center;
    margin-right: 1.5rem;
}
.sidenav-header {
    width: 100%;
    position: relative;
    overflow: auto;
}
.sidenav-header .nav-avatar {
    display: flex;
    align-items: center;
}
.sidenav-header .avatar {
    margin: 20px;
    height: 64px;
    width: 64px;
}
.sidenav-header .avatar-body {
    flex: 1;
}
.sidenav-header .avatar-body h3 {
    color: #fff;
    margin: 0;
    font-size: 2.5rem;
}
.sidenav-header .avatar-body p:first-child {
  font-size: 0.95em !important;
  opacity: 1 !important;
  color: white !important;
  font-weight: bold !important;
}
.sidenav-header .avatar-body p {
    color: #fff;
    opacity: 0.8;
    font-size: 80%;
    margin: 0;
}
.avatar-body.datos{
  text-align: center;
  font-size: 0.75em;  
}
.avatar-body.datos p a{
  height: inherit;
  line-height: inherit;
  font-size: inherit;
}
.sidenav-header .nav-social {
    position: absolute;
    top: 16px;
    right: 16px;
}
.sidenav-header .nav-social i {
    font-size: 16px;
    color: #fff;
    margin-right: 18px;
}

/* Searchbar */
.searchnav {
  height: 36px;
  line-height: 36px;
  margin: 10px 16px;
  width: auto;
  background-color: transparent;
  box-shadow: none;
  position: relative;
  z-index: 9;
}
.searchnav .input-field {
  margin: 0;
}
.searchnav .input-field input[type=search] ~ i,
.searchnav .input-field input[type=search] ~ i {
    position: absolute;
    top: 0;
    right: 1.5rem;
    color: transparent;
    cursor: pointer;
    font-size: 2rem;
    transition: .3s color;
}
.searchnav .input-field input[type=search]:focus {
  border-radius: 24px;
}
.searchnav .input-field input[type=search]:focus + label i,
.searchnav .input-field input[type=search]:focus ~ i,
.searchnav .input-field input[type=search]:focus ~ i {
    color: #444;
}
/* dropdown */
.side-nav li {
    padding: 0;
}

.side-nav a {
  color: #fff;
  font-size: 1.5rem;
}
.side-nav .collapsible-header.active:before {
    content: "";
    width: 3px;
    height: 44px;
    background: #fff;
    position: absolute;
    left: 0;
    border-radius: 0;
    margin-top: 0;
    top: 0;
}
.side-nav .collapsible-header {
    padding: 10px 16px;
    margin: 0;
    min-height: auto;
    color: #fff;
    font-weight: 300;
    position: relative;
}
.side-nav .collapsible-header i {
    font-size: 24px;
    height: auto;
    line-height: 100%;
    margin-right: 1.5rem;
}
.side-nav .collapsible-body {
  background-color: rgba(255,255,255,.15);
}
.side-nav .collapsible-body li a {
    margin: 0 16px 0 22px;
}
.side-nav li.active .collapsible-body li a {
    opacity: 0.8;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
}

/* badge */
.side-nav span.badge {
    min-width: auto;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 9px;
    font-weight: 300;
    border-radius: 100%;
    color: #222;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* 5. Animations
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fadein {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
}
.fadeinup {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.fadeinright {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.bouncein {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
#main.is-exiting .animated {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
.delay-1 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.delay-2 {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
.delay-3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.delay-4 {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}
.delay-5 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.delay-6 {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s;
}

/* 8. Elements
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Avatar */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 2px;
}
.avatar-tranvias{
  border-radius: 50%;
  margin: 20px 5px !important;
}
.avatar.big {
  width: 77px;
  height: 77px;
}
.unknow-avatar {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 2px;
}
.unknow-avatar span {
    display: block;
    font-size: 24px;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 100;
}
.avatar.with-letter span {
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 100;
    display: block;
}
/* Author */
.author-bio {
  padding: 20px;
  margin: 0 0 5px;
}
.author-bio h4 {
  margin-bottom: 0;
}
.author-bio .btn {
  border: 1px solid;
  margin: 10px 0 0; 
  box-shadow: none;
  font-size: 85%;
  height: 26px;
  line-height: 26px;
}
.author-bio .btn:hover {
  background-color: #1c212a !important;
  color: #fff !important;
}
/* Tab */
.tabs .tab a,
.tabs .tab a:hover {
    color: #1c212a;
    opacity: 0.6;
}
.tabs .tab a.active {
    color: #1c212a;
    opacity: 1;
    font-weight: bold;
}
.tabs .indicator {
    background-color: white;
    top:0px !important;

}
/* Social Share */
.project-social-share {
    position: absolute;
    right: 0;
    top: -4px;
}
.project-social-share i {
    margin-left: 10px;
}
.social-share-author {
    position: relative;
    margin: 0 20px 32px;
}
.social-share-author .avatar {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
}
.social-share-author span {
    padding-left: 38px;
    padding-top: 4px;
    display: block;
}
/* Comments */
.comments {
  border-top: 1px solid #ccc;
  padding: 20px;
} 

/* Inputs */
[type="radio"]:not(:checked)+label, 
[type="radio"]:checked+label,
[type="checkbox"]+label {
  font-size: 1.5rem;
}
input[type=text], 
input[type=password], 
input[type=email], 
input[type=url], 
input[type=time], 
input[type=date], 
input[type=datetime-local], 
input[type=tel], 
input[type=number], 
input[type=search], 
textarea.materialize-textarea {
  margin-bottom: 30px;
}
input[type=text], 
input[type=password], 
input[type=email], 
input[type=url], 
input[type=time], 
input[type=date], 
input[type=datetime-local], 
input[type=tel], 
input[type=number], 
input[type=search], 
textarea.materialize-textarea {
  font-size: 1.4rem;
}
.input-field label {
  font-size: 1.4rem;
  top: 0.5rem;
}
.input-field label.active {
  font-size: 1.2rem;
}
.input-field .prefix {
  top: -1px;
  font-size: 2.4rem;
}
.input-field .prefix ~ input, 
.input-field .prefix ~ textarea {
  margin-left: 0;
  padding-left: 3.6rem;
  width: calc(100% - 3.6rem);
}
.input-field.center label {
  left: 0;
  right: 0;
}
.input-field.center input {
  text-align: center;
}
/* Masonry */
.grid {
  margin: 0;
}
.grid-item {
    width: 50%;
    height: auto;
    float: left;
    margin: 0;
    padding: 1px;
}

/* Filter */
.controls button {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    background: transparent;
    color: inherit;
    border-radius: 2px;
    cursor: pointer;
    color: inherit;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in
}
.controls button.active {
    background: #E30613;
    color: #fff;
    border-color: #1c212a;
}
.controls label {
    margin-right: 8px;
}
.mix,
.gap {
    float: left;
    width: 100%;
    margin: 0;
}
#content-paradas .mix {
    display: none;
    padding: 0px;
}
#tabs-paradas button.disabled{
  opacity: 0.65; 
  cursor: not-allowed;

}
.mix {
    display: none;
    padding: 1px;
}
.mix figure {
    display: none;
}
#filter.grid .mix,
#content-paradas .mix {
    /*width: 50%;*/
    width: 100% !important;
}
#filter .mix {
    width: 100%;
}

/* Sliders */
.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 11px;
    height: 22px;
    margin-top: -11px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 11px 22px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-next {
  right: 33px;
}
.swiper-button-prev {
  left: 33px;
}
.swiper-container {
    width: 100%;
    height: 100%;
    margin: 0px auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: #1c212a;
}
.swiper-pagination.white-bullet .swiper-pagination-bullet {
    background-color: #fff;
}
/* Fullscreen */
.slider-fullscreen .bottom-abs {
    position: absolute;
    bottom: 50px;
    padding: 0 20px;
}
.slider-fullscreen img.infograph {
  width: 50%;
  margin: 0 auto 30px;
}
.slider-fullscreen .swiper-slide {
  height: auto;
}
.slider-fullscreen .swiper-slide h3 {
  margin-bottom: 5px;
}
.slider-category {
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    display: inline-block;
}
.slider-title {
    line-height: 1.2;
    font-size: 28px;
}
.slider-text {
    opacity: 0.8;
    margin-bottom: 40px;
}
/* Sliced */
.slider-sliced .swiper-slide {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    overflow: hidden;
}
.slider-sliced .valign {
  padding: 0 0 100px;
}
.slider-sliced .valign p {
  font-weight: 100;
}
.slider-sliced .slider-bottom-right {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #fff;
    padding: 0 50px;
}
.slider-sliced .slider-bottom-right:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: 0;
    top: -90px;
    border-bottom: 90px solid #fff;
    border-left: 768px solid rgba(255, 255, 255, 0);
    /* Maintain smooth edge of triangle in FF */
    
    -moz-transform: scale(.9999);
}
.slider-sliced .slider-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #fff;
    padding: 0 50px;
}
.slider-sliced .slider-bottom-left:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    left: 0;
    top: -90px;
    border-bottom: 90px solid #fff;
    border-right: 768px solid rgba(255, 255, 255, 0);
    /* Maintain smooth edge of triangle in FF */
    
    -moz-transform: scale(.9999);
}
.slider-sliced .swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet {
    margin: 0 10px;
}
/* steps */
.slider-steps {
    width: 100%;
    height: 100vh;
}
.slider-steps img {
  width: 50%;
  margin: 0 auto 30px;
}
.slider-steps .valign-wrapper {
    height: 100%;
}
.slider-steps .valign {
    margin-top: -100px;
    width: 100%;
}
.steps-controllers {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
.steps .swiper-pagination {
  top: 20px;
    left: 0;
    right: 0;
}
.steps .swiper-pagination .swiper-pagination-bullet {
  margin: 5px;
}
/* drawer */
.swiper-container.slider-drawer {
    height: 100vh;
}
.slider-drawer .swiper-slide {
    width: calc(100% - 16px) !important;
    height: calc(100vh - 112px);
    overflow: hidden;
    margin: 8px 8px 32px;
    padding: 16px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,.87);
}
.slider-drawer .drawer-pagination {
    position: fixed;
    bottom: 6px;
}
.slider-drawer .swiper-pagination-bullet-active {
    background: #fff;
}
.slider-drawer .row .col span {
    font-size: 0.7em;
    display: block;
}
.slider-drawer .row .col i {
    font-size: 40px;
}
#grandparent {
    height: 100%;
}
.child {
    margin-bottom: 0;
}

/* Card */
.card {
  margin: 0 0 1rem 0;
  border-radius: 0;
  box-shadow: none;
  overflow: auto;
}
.card .media-top-object {
  padding: 1rem;
  margin: 0;
}
.card .media-top-object .media-body span {
  display: inline;
}
.card .header-hover {
    padding: 20px 20px 20px 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
}
.card .header-hover img {
    position: absolute;
    top: 20px;
    left: 20px;
}
.card .details span {
    display: block;
    font-size: 14px;
}
.card .image {
  position: relative;
}

/* Gallery Card */
.grid-item.gallery-item-card {
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    margin: 0 6px 12px;
    width: calc(50% - 12px);
}
.gallery-item-header {
    padding: 10px 20px;
    position: relative;
}
.gallery-item-header img {
    position: absolute;
    top: 20px;
    left: 20px;
}
.gallery-item-header span {
    display: block;
    font-size: 14px;
}

/* Chat */
.chat .message p {
    margin-bottom: 0;
    font-size: 14px;
}
.chat span {
    font-size: 12px;
}
.chat ul li {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
.chat ul li > img {
    float: left;
}
.chat ul li .message {
    margin-left: 55px;
    position: relative;
    padding: 12px 16px;
    border-radius: 4px;
}
.chat ul li .message.first {
    border-top-right-radius: 20px;
}
.chat ul li .message.last {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.chat ul li.message-left {
    margin-bottom: 36px;
}
.chat ul li.message-right .message.first {
    border-top-left-radius: 20px;
    border-top-right-radius: 4px;
}
.chat ul li.message-right > img {
    float: right;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.chat ul li.message-right .message {
    margin-right: 55px;
    margin-left: 0;
    margin-bottom: 2px;
    background-color: #f1f1f1 !important;
}
.chat ul li.message-left > img {
    margin-right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.chat ul li.message-left .message {
    background-color: #f0f8ff;
    margin-bottom: 2px;
}
.message-right > span,
.message-left > span {
    margin-bottom: 20px;
    display: block;
}
.message-left > span {
    margin-left: 55px;
}
.photo-add {
    margin-top: 8px;
}
.photo-add .square-user {
    height: 48px;
    width: 48px;
    margin-right: 4px;
    float: left;
}
.chat-day {
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Banners */
.shop-banner {
    width: 50%;
    float: left;
    position: relative;
}
.shop-banner-full {
  width: 100%;
  float: left;
  position: relative;
}
.shop-banner h3 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 2.2rem;
}
.shop-banner p {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 100;
    font-size: 1.6rem;
}
.shop-banner .opacity-overlay {
  border: 1px solid #fff;
}

/* News */
.news .media-top-object {
  padding: 20px 20px 0;
}
.news .media-body a {
  color: #222;
}
.news .news-title {
    font-size: 20px;
    margin: 5px 0;
    line-height: 1.3;
}
.news .media-left {
  width: 25%;
  margin-right: 0;
}
.news .news-channel {
    font-size: 12px;
}
.news .news-category {
    float: right;
    font-size: 12px;
    border-bottom: 1px solid #9e9e9e;
}
.news-main {
    position: relative;
}
.top-news {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    color: #fff;
}
.top-news-title a {
    font-size: 22px;
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
}
.top-news-channel {
    float: left;
    font-size: 12px;
    margin-left: 20px;
    color: #fff;
}
.top-news-category {
    float: right;
    font-size: 12px;
    border-bottom: 1px solid #fff;
    margin-right: 20px;
    color: #fff;
}

/* Player */
.player-info {
    padding: 24px 20px;
}
.player-info h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
}
.player-info span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 100;
    opacity: 0.85;
}
.player-controllers {
    padding: 20px;
    display: flex;
}
.player-controllers i {
    color: #ffffff;
    flex-grow: 1;
}
.upnext {
    padding: 20px;
}
.next-song {
    padding: 20px 0;
    position: relative;
}
.next-song span:first-child {
    margin-right: 16px;
}
.next-song i {
    position: absolute;
    right: 0;
    top: 12px;
}

/* Notification */
.notification {
    padding: 10px 17px;
    border-radius: 4px;
    position: relative;
    margin: 20px;
}
.notification p {
    margin-bottom: 0;
}
.close-notification {
    position: absolute;
    top: 2px;
    right: 12px;
}
.notification-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.notification-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.notification-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.notification-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Chart */
.card.chart {
  padding: 20px;
  margin: 20px;
}
.c-widget {
    display: flex;
    align-items: center;
}
.c-widget-figure {
    margin-right: 20px;
    width: 48px;
    height: 48px;
    color: #fff;
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
}
.c-widget-body {
    flex: 1;
}
.legend {
    margin-bottom: 20px;
}
.legend h5.uppercase {
    margin-top: 0;
}
.legend p {
    margin-bottom: 0;
}
span.data-color {
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid;
    margin-right: 7px;
    position: relative;
    top: 1px;
}

/* ToDo */
.choose-date p {
    margin: 0;
    padding: 10px 0;
}
.choose-date p:first-child {
    padding-top: 0;
}
.choose-date p i {
    margin-right: 25px;
    position: relative;
    font-size: 26px;
    top: 3px;
}
.todo input[type="checkbox"]:checked + label {
    text-decoration: line-through;
    color: #9e9e9e;
}
.todo input[type="checkbox"] + label {
    color: inherit;
}
.todo .todo-element {
    position: relative;
    margin: 0;
    padding: 20px;
    border-top: 1px solid #eee;
}
.todo .todo-element:last-child {
    border-bottom: 1px solid #eee;
}
.todo .todo-element span {
    display: block;
    margin-left: 35px;
    font-size: 14px;
    color: #9e9e9e;
}
.todo .todo-element img {
    position: absolute;
    width: 25px;
    height: auto;
    border-radius: 2px;
    top: 20px;
    right: 20px;
}

/* FAQ */
ul.faq {
    margin: 0 20px 40px;
}

/* Product */
.product.half {
  width: 50%;
  padding: 10px;
  float: left;
}
.product-info {
  text-align: center;
  padding: 10px 20px;
}
.product-description {
  border-top: 1px solid #eee;
}
.product-variation {
  padding: 0 20px 20px;
}
.product-variation h5 {
  margin-bottom: 1rem;
}
.sizes .size {
    display: inline-block;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-right: 8px;
    margin-bottom: 8px;
}
.sizes .size:hover {
    border: 1px solid #1c212a;
    background-color: #1c212a;
    color: #fff;
}
.rating {
    margin: 0;
}
.rating i {
    opacity: 0.15;
    display: inline-block;
    font-size: 1.2rem;
}
.rating i.active {
    opacity: 0.9;
    color: #fdd835;
}
/* Checkout */
.checkout-header {
    box-shadow: none;
    border: none;
    margin: 0;
    background-color: #fafafa;
}
.checkout-header .collapsible-header {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    background-color: #fafafa;
}
.checkout-header .checkout-price {
    font-size: 18px;
}
.checkout-header .collapsible-body {
    padding: 20px;
}
.checkout-header .collapsible-body .checkout-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1em;
}
.checkout-image {
    width: 64px;
    margin: 0 10px 0 0;
    border-radius: 4px;
}
.checkout-product-title {
    flex: 1;
}
.checkout-product-title,
.checkout-product-title:last-child {
    margin-bottom: 0;
}
.checkout-product-title h6 {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    text-transform: uppercase;
}
.checkout-product-title h6 .right {
    font-weight: 400;
}
.checkout-header .input-field {
    display: flex;
}
.checkout-header .discount input {
    flex: 1;
    height: 35px;
}
.checkout-header .discount .btn {
    margin-left: 10px;
}
.discount {
    padding: 20px 0;
}
.subtotal {
    padding: 10px 0 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.subtotal h6 {
    font-size: 16px;
}
.subtotal span {
    margin: 0;
    padding: 0;
    display: block;
}
.total {
    padding: 20px 0 0;
}
.total h4 {
  margin-bottom: 0;
}
.form-inputs {
    padding: 20px;
}
.form-inputs h4 {
    margin-bottom: 25px;
}
.shipping-address {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}
.form-inputs .remember {
    margin: 20px 0;
}

/* Search */
.search-results .collapsible-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
/* Calendar */
.calendar table {
    border-collapse: collapse;
    border-spacing: 0;
}
.calendar td,
.calendar th {
    padding: 0;
}
.calendar {
    text-align: center;
    padding: 0 20px 20px;
}
.calendar thead {
    color: #fff;
    opacity: 0.9;
    border: none;
}
.calendar tbody {
    color: #fff;
}
.calendar tbody td:hover {
    background-color: rgba(255, 255, 255, .2);
}
.calendar td {
    border: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: calc(13% - 16px);
    height: calc(13% - 16px);
    line-height: calc(13% - 18px);
    margin: 5px;
}
.calendar .prev-month,
.calendar .next-month {
    opacity: 0.4;
}
.current-day {
    background: #fff;
}
.calendar tbody td.current-day:hover {
    background-color: rgba(255, 255, 255, 1);
}
.event {
    cursor: pointer;
    position: relative;
}
.event:after {
    background: #fff;
    border-radius: 50%;
    bottom: 3px;
    display: block;
    content: '';
    height: 4px;
    left: 50%;
    margin: 0px 0 0 -2px;
    position: absolute;
    width: 4px;
}
.event.current-day:after {
    background: #fff;
}
/* Activity */
.activity {
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.activity p {
    margin: 0;
}
.activity-time span,
.activity-time i {
    vertical-align: middle;
    margin-right: 5px;
}
.activity-type {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background-color: #ccc;
    margin: 20px 0 0;
}
.activity-type.second-type {
    right: 50px;
}
.activity-type i {
    font-size: 24px;
    color: #fff;
}
/* Lockscreen */
.clock h2 {
    font-size: 48px;
    font-weight: 100;
    margin-top: 80px;
    margin-bottom: 5px;
    color: #ffffff;
}
.clock span {
    color: #ffffff;
    opacity: 0.7;
}
.collection.notify {
    border: none;
    margin: 0;
    padding: 20px;
}
.collection.notify .collection-item {
    padding: 0;
    border-radius: 2px;
    margin-bottom: 5px;
}
.notify-header {
    padding: 10px 20px 10px 65px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.notify-header img {
    position: absolute;
    top: 10px;
    left: 10px;
}
.notify-author span {
    display: block;
    font-size: 14px;
}
.notify-author span.truncate {
    margin: 7px 0 3px;
    opacity: 0.85;
}
.notify-author span.small {
    opacity: 0.5;
    text-align: right;
    margin-top: 10px;
    display: block;
}
.unlock {
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 43px;
    margin: 0 auto;
    border: 2px solid transparent;
}
.unlock:hover {
    border: 2px solid #fff;
}

/* Timeline */
.timeline {
  margin-left: 58px;
  border-left: 1px solid #eee;
}
.timeline .media-top-object {
  position: relative;
}
.timeline .media-top-object .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.75;
  position: absolute;
  left: -7px;
  top: 26px;
}

/* Article */
.article .title {
  margin-top: 16px;
}
.article .social-share-author {
  margin-left: 0;
  margin-right: 0;
}
/* Event */
.event-header {
  width: 100%;
  height: calc(100vh - 56px);
  position: relative;
}
.event-header .title {
  margin: 25px 0 0;
}
.event-header .event-category {
  border-bottom: 1px solid #fff;
  margin-top: 20px;
  display: inline-block;
}
.event-header .bottom {
  bottom: 40px;
}

/* Feature */
.feature {
  padding: 50px 20px 30px;
}
.feature img {
  width: 50%;
  margin: 0 auto 30px;
}
.feature h3 {
  margin-bottom: 5px;
}

/*++++++++++++++++++++++++++++++/
/*      CUSTOM CSS             */



.logo-codigo-parada{
  width: 30px;
  height: 30px;
  background-color: red;
  display: block;
  float: left;
  text-align: center;
  color: white;
  line-height: 30px;
  font-family: 'inter';
  margin: 5px 5px 0 0;
  border-radius: 25%;
  font-size: 14px;
}
.font-ayuntamiento{
  font-family: inter,Arial, sans-serif !important; 
  color: #f7f7f7 !important; 
}
.background-color-itranvias{
  background-color: #E30613 !important;
}
.font-color-itranvias{
  color: #E30613 !important; 
}
.opacity-red{
  /*background-color: #E9161F !important;*/
  background-color: grey;
  opacity: 0.9 !important;
}
.btn-menu-div{
  /*margin: 0 25px !important;*/
  min-width: 80px;
}
#message{
    width: 100%;
    background: white;
    text-align: center;
}
#message .icono{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 5em;
  color: #E30613 !important;
}
#message .texto, 
.message .texto,
#preloader .texto,
#cercanas-container .loading{
  text-align: center;
  padding: 15px;
  color: #9e9e9e;
  font-family: "inter", Helvetica, Arial, sans-serif !important;
}
.fa-rotate-45 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.banner-index{

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
 .negrita{
  font-weight: bold;
 }



.header-index{
  text-align: center;
  padding-top: 45vh;
  position: relative;
  z-index: 1;
  min-height: 212px;

}

#mapa-cercanas{
  padding-top: 0px;
  position: fixed !important;
  z-index: 98;
  height: 45vh;
  width: 100%;
}
#map{
  width: 100%;
  height: 100%;
}
#cercanas-container{
  padding-top: calc(45vh + 20px);
}


.modal-content {
  padding: 10px !important;
}

.modal-20{
  height: 20% !important;

}
.modal-config-fav{
  padding-top: 40px !important;
  height: 20% !important;
}
.modal-content .proximo-container li {
  border-bottom: 1px solid grey;
  padding: 5px 0;
}
.float-left{
  float: left !important;
}
.float-right{
  float: right !important;
}
#cabecera-tabla{

  height:20px;
  width:100%;
  background-color:#fafafa;
  text-align:center;
  font-size:12px;
  position:fixed;
  z-index:97;
}
  #cabecera-tabla .titulo{
  height:100%;
  text-align:center;
  float:left;
  border-right:1px solid #e0e0e0;
  }

.about-itranvias{
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;

}


.avatar-itranvias{

  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 100px;
}

.opcion-menu-index2{
  height: 55px;

}
.opcion-menu-index2 .icon-menu{
  height: 25px !important;
  line-height: 33px;

}
.opcion-menu-index2 .nom-menu{
  height: 30px !important;
  font-size: 11px;
  line-height: 28px;
}
.opcion-menu-index{
  margin: 0 10px;
  padding: 10px 0;
  border-bottom: 1px solid #E30613;
  position: relative;
}
.opcion-menu-index p{
  margin: 0;
  font-weight: bold;
}

/*  BUSQUEDA POR CODIGO PARADA */

div.buscar-codigo-parada{
  position: fixed;
  width: 100%;
  z-index: 99;
  padding: 0px 10px;
  background: white;

}
div.buscar-codigo-parada .btn{
  float: right !important;
}
div.buscar-codigo-parada .input-field{
  margin-top: 0px !important;
}

div.buscar-codigo-parada .btn input{
  border-width: 0px;
  border-style: none !important;
  background-color: #E30613;
  padding: 0px 6px;
}

div.buscar-codigo-parada .file-path-wrapper{
  padding: 0px 5px !important;
}
nav.buscar-codigo-parada{

  padding-left:   5px;
  padding-right:  50px;
  height: 40px !important;
  line-height: 40px !important;
  background-color: #fafafa !important;
}
nav.buscar-codigo-parada .nav-wrapper{

  z-index: 99 ;
}

nav.buscar-codigo-parada input#search{
  height: 40px !important;
}

#recientes-container{
  padding-top: 60px;
}
#recientes-container p{
  text-align: center;
  padding: 15px;
  color: #9e9e9e;  
}
.codigo-parada2{
  position: absolute;
  top: 10px;
  left: 5px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  background-color:#019F02;
  opacity: 0.75;
  color: white;
  font-weight: 500;
  margin: 10px 0 0;

}
.tiempo-llegada2{
  position: absolute;
  top: 10px;
  right: 5px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
  background-color:#019F02;
  opacity: 0.75;
  color: white;
  font-weight: 500;
  margin: 10px 0 0;

}
.tiempo-llegada2:after{
  content: "min";
   position: relative;
    bottom: -15px;
    right: 0;
    border: 0;

}
.extimacion2{
  padding: 0px !important;
}
.estimacion-llegada,.parada-actual2 {
  margin-bottom: 0px;
  padding-left: 50px;

}


.checkout-header .collapsible-llegada {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    background-color: #fafafa;
}
::-webkit-input-placeholder {
   color: red;
}

:-moz-placeholder { /* Firefox 18- */
   color: red;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: red;  
}

:-ms-input-placeholder {  
   color: red;  
}

/*++++++++++++++++++++++++++++++*/
.header-menu{
  height: 40px;
  z-index: 10;
  background-color: #fafafa !important;
}
.acordeon{
  padding: 0px !important;
}
.proximos-buses{

  height: 50px;
  width: 100%;
  padding: 0px !important;
  position: relative;
  font-size: 0.9em !important;
  border-bottom: 1px solid rgba(156, 156, 156, 0.23);

}
  .proximos-buses .datos-ubicacion{
      height: inherit;
      width: 60%;
      float: left;
      position: relative;
      margin-left: 20%;
      padding: 0 5px;

  }



    .proximos-buses .bus-llegada, .proximos-buses .metros-llegada{
      text-align: center;
      float: left;
      overflow: hidden;
      height: 100%;
      width: 50%;
      color: black;
/*      font-size: 16px !important;*/
    }  

  .proximos-buses .tiempo-llegada{
      position: absolute;
      right: 0;
      /*float: left;*/
      height: inherit;
      width: 20%;
      font-size: 15px;
      line-height: 30px;
      text-align: center; 
      background-color: #F5F5F5;
  }


.cabecera-resultado{
  position: fixed;
  width: 100%;
  z-index: 98;
  padding-top: 22px 
}
.cabecera-resultado li{
  margin: 0px !important;
}

.cabecera-resultado .collapsible-header{
  height: 40px;
  line-height: 40px;
  padding: 0px 5px !important;
  overflow: hidden;

}

.cabecera-resultado .nombre-parada{
  overflow: hidden;
  font-size: 13px;

}
.tarjetas-tiempo-container{
  padding-top: 88px;
  display: block;
}
.tarjeta-tiempo{
  height: 50px;
  width: 100%;
  padding: 0px !important;
}



.tarjeta-tiempo i {
    width: 2rem;
    font-size: 25px;
    line-height: 3rem;
    display: block;
    float: left;
    text-align: center;
    margin-right: 1rem;
}
  .tarjeta-tiempo .codigo-linea{
      position: absolute;
      left: 0;
      height: inherit;
      width: 20%;
      text-align: center;
      opacity: 1;
      float: left;
      font-size: 25px;
      color: white;
      line-height: 60px; 
      font-weight: bold;
  }

  .tarjeta-tiempo .datos-ubicacion{
      height: inherit;
      width: 60%;
      float: left;
      position: absolute;
      margin-left: 20%;
      padding: 0 5px;

  }
    .tarjeta-tiempo .bus-llegada, .tarjeta-tiempo .metros-llegada{
      text-align: left;
      float: left;
      overflow: hidden;
      height: 50%;
      color: black;
      font-size: 15px !important;
    }
    .tarjeta-tiempo .bus-llegada{
      width: 40%;
    } 

    .tarjeta-tiempo .metros-llegada{
      width: 60%;
    }
    .tarjeta-tiempo .icono-itranvias{
      font-size: 150%;
    }
    .tarjeta-tiempo .parada-bus{

      text-align: left;
      
      overflow: hidden;
      height: 50%;
      width: 100%;
      color: black;
      font-size: 10px;

    }
  .tarjeta-tiempo .tiempo-llegada{
      position: absolute;
      right: 0;
      height: inherit;
      width: 20%;
      font-size: 25px;
      line-height: 60px;
      text-align: center; 
  }


  .tarjeta-tiempo .bus-enparada{

      height: inherit;
      width: 80%;
      float: left;
      position: absolute;
      margin-left: 20%;
      padding: 10px 5px;
  }
  .tarjeta-tiempo .bus-enparada .bus-llegada{

      text-align: left;
      float: left;
      overflow: hidden;
      height: 100%;
      width: 40%;
      color: black;
/*      font-size: 16px !important;
*/  }
  .tarjeta-tiempo .bus-enparada .texto-llegada{
      font-size: 25px;
      font-weight: bold;
  }


    .proximos-buses .bus-llegada, .proximos-buses .metros-llegada{
      text-align: left;
      float: left;
      overflow: hidden;
      height: 100%;
      color: black;
      /*font-size: 0.8em !important;*/
    }  
    .proximos-buses .bus-llegada {
      width: 40%;
      height: 50%;
      line-height: 50%;
    }
    .proximos-buses .metros-llegada {
      width: 60%;
      height: 50%;
      line-height: 50%;
    }
    .proximos-buses .parada-llegada {
      width: 100%;
      height: 50%;
      overflow: hidden;
    }
#favoritos .tabs{
  width: 100%;
  background-color: white;
  position: fixed;
  z-index: 99;
}
#favoritos #filter-favoritos{
  padding-top: 50px;
}


.tarjeta-favorito{
  height: 55px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
  .tarjeta-favorito-linea .codigo-linea{
      width: 15%;
      height: 100%;
      font-size: 21px;
      line-height: 55px;
      font-family: 'inter';
      font-weight: 700;
      color: white;  
      float: left;
      text-align: center;
    }
    .tarjeta-favorito-linea .datos-linea,
    .tarjeta-favorito-parada .datos-parada{
      width: 85%;
      height: 100%;
      padding-left:5px;
    }

  .tarjeta-favorito-linea .origen-linea,
  .tarjeta-favorito-linea .destino-linea{
      height: 50%;
      width: 100%;
      font-size: 16px;
      line-height: 27px;
      font-family: 'inter';
      color: #4E75AF;  
      text-align: center;
      font-weight: bold;
    }


  .tarjeta-favorito-parada .codigo-parada{
      width: 15%;
      height: 100%;
      font-size: 21px;
      color: black;
      line-height: 55px;
      font-family: 'inter';
      color: #4C4C4C;  
      float: left;
      text-align: center;
    }
    .tarjeta-favorito-parada .codigo-parada .parada{
      height: 70%;
      line-height: 40px;
      font-weight: bold;
    }
    .tarjeta-favorito-parada .codigo-parada .metros{
      height: 30%;
      font-size: 10px;
      line-height: 10px;
      color: #9e9e9e;
    }
  .tarjeta-favorito-parada .nombre-parada,
  .tarjeta-favorito-parada .enlaces-parada{
      width: 100%;
      height: 50%;
      line-height: 27px;
      color: #4E75AF;  
      text-align: left;
      overflow: hidden;
      font-weight: bold;
    }


  .enlaces-linea{
    background-color: red;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    color: white !important;
    font-weight: bold;
    border-radius: 25%;
    font-size: 60% !important;
    float: left;
    margin: 0 0px;
    font-family: 'inter',Arial;
  }



.tarjeta-lineas{
  height: 55px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
  .tarjeta-lineas .codigo-linea{
    height: 100%;
    width: 20%;
    text-align: center;
    line-height: 50px;
    float: left;
    font-size: 25px;
    color: white;
    font-weight: bold;

  }
  .tarjeta-lineas .datos-linea{
    height: 100%;
    width: 80%;
    margin-left: 20%;
    color: #4E75AF;
    font-weight: bold;
    font-size: 16px;
    padding: 3px;
    text-align: center;

  }
  .tarjeta-lineas .origen-linea,.tarjeta-lineas .destino-linea{
    overflow: hidden;
    height: 25px;
    display: block;

  }  

.proximos {
  font-size: 12px !important;
  margin-bottom: 2px;
}

.proximos .tarjeta-tiempo{

  height: 40px;
}

.font-estimacion{
  color: #000000;
}



/*CSS PARADAS */
#paradas #tabs-paradas{
  position: fixed;
  width: 100%;
  z-index: 99;  
}
#paradas #tabs-paradas #li-tab-result{
  line-height: 22px;
  letter-spacing: -0.8px;
}
#paradas #content-paradas{
  padding-top: 48px; /*48 px es el alto de tabs-paradas*/
}

#paradas .cabecera-direccion .codigo-linea{
  width: 30px;
  height: 30px;
  background-color: red;
  display: block;
  float: left;
  text-align: center;
  color: white;
  line-height: 30px;
  font-family: 'inter';
  margin: 5px 5px 0 0;
  border-radius: 25%;
  font-size: 14px; 
}

#paradas .cabecera-direccion .nombre-linea{
  display: block;
  font-size: 12px;  
}

#paradas .bus-line {
  margin-left: 35px;
  border-left: 1px solid;
  border-left-color: red;
  
}

#paradas .tarjeta-parada{
  height: 50px;
  width: 100%;
  background-color: #fafafa;
}

#paradas .dibujo-bus{
  height: 50px;
  width: 25px;
  position: absolute;
  margin-top: -4px;
  padding-left: 5px;
  font-size: x-large;  
}

  #paradas .dibujo-bus .numero-bus{
    font-size: 11px;
    display: block;
    height: 50%;
    position: relative;
    top: -15px;
  }

#paradas .datos-parada{
  height: 100%;
  width: calc(100% - 15px);
  float: left;

}

#paradas .tarjeta-parada .nombre-parada,
#paradas .tarjeta-parada .enlaces-parada,
#favoritos .tarjeta-favorito .enlaces-parada{
  width: 100%;
  text-align: left;
  overflow: hidden;
  height: 50%;
}
  
#paradas .icono-parada{
  height: 100%;
  width: 40px;
  float: left;
}

#paradas .parada-point{
  position: relative;
  width: 15px;
  height: 15px;
  background: grey;
  float: left;
  left: -8px;
  border-radius: 50%;
  top: 7px;
}

.modal-itranvias{
  max-height: none !important;
  width: 95% !important;
  height: 98% !important;
  top: 1% !important;

}

/* END CSS PARADAS */


.actualizacion{

  height: 28px;
  font-size: 12px;
  line-height: 28px;
  padding: 0px 5px;
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: white;
}

.actualizacion .icono-refresco {
    width       : 2rem;
    font-size   : 1.6rem;
    line-height : 3rem;
    display     : block;
    float       : left;
    text-align  : center;
    margin-right: 1rem;
}
#tarjeta-lineas:active {
    vertical-align: top;
    padding: 8px 13px 6px;
}

#header-wrap{
    position: fixed;
    width   : 100%;
    z-index : 99;
    border-bottom: 1px rgba(128, 128, 128, 0.15) solid;
}

#content{
  padding: 0px;
  margin: 0px;
  padding-top: 96px;
}
.idioma {
  color: #ccc !important;
}
.idioma-active{
  font-weight: bold;
  color: white !important;

}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}



/* Menú Configuracion */
#configuracion .p-5{
  border-bottom: solid 1px #e0e0e0;
}
#configuracion  .row{
  margin-bottom: 5px !important;
}
#configuracion p {
  font-size: 0.9em !important;
  margin-bottom: 0.5em !important;
}
#configuracion form{
  margin-bottom: 0.5em !important;
}
.btn-ok-config{
  height: 20px;
  line-height: 20px;
  font-size: 13px;
}
input[type=range]+.thumb{
  background-color: #E30613 !important;

}

#favoritos-container-config{
  padding: 0px !important;
}

#favoritos-container-config .tarjeta-favorito .nombre-parada{
  height: 45% !important;
}

.nombre-parada{
  color: #4E75AF !important;  
  font-family: "inter";
  font-weight: bold;
}
.nombre-linea{
  font-family: "inter";
  color: #757575;
}

#favoritos-container-config .tarjeta-favorito .botones{
  width: 100%;
  height: 55%;
  line-height: 20px;
  color: #4E75AF;
  text-align: center;
  overflow: hidden;
}

#modal-config-fav-parada{
  height: 40% !important;
}
#modal-config-fav-parada .modal-content{
  padding: 25px 17px !important;
}


input[type=text], input[type=password]{
  color: red;
}

.value-range:before{
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* Calcula tu rura */


#calcula-ruta{

  /*background: transparent url(http://www.tranviascoruna.com/wp-content/themes/pixel_wp/images/mapa-port.jpg) no-repeat 50 0;*/
  /*background: transparent url(http://walen.es/wp-content/uploads/2014/07/coruna-buses-5-1170x500.jpg);
  background-color: rgba(245, 245, 245, 0.57);
  background-position: 30% 20%; */
  height: calc( 100vh - 55px);
}
#content-calcula-ruta{
  background: url(../img/images/background_ruta.jpg) center center;
  background-size: cover;
  -webkit-box-shadow: 0px 28px 37px -12px rgba(0,0,0,0.28);
  -moz-box-shadow: 0px 28px 37px -12px rgba(0,0,0,0.28);
  box-shadow: 0px 28px 37px -12px rgba(0,0,0,0.28);
  height: 100%;
}

#calcula-ruta input{
    background: rgba(250, 250, 250, 0.62) !important;
    font-weight: bold;
    color: black;
    padding: 0 5px;
    border-radius: 5px;
}
#calcula-ruta .texto-calcula-ruta{
  text-align: center;
  font-family: inter;
  color: #0089ec;  
  margin-top: 10px;
}
#calcula-ruta p{
  text-align: center;
  padding: 0 20px;
  font-size: 0.6em;
  font-weight: bold;
}
/* End Calcula tu ruta */

/* Horarios */
.horarios-container tr{
  width: 100%;
}
.horarios-container td{
  padding: 5px 5px;
  display: table-cell;
  vertical-align: middle;
  border-radius: 2px;
  width: 25%;  
}
#horarios-date{
  margin-bottom: 7px !important;
}
#modal-horarios-linea .fecha-solicitada{
  padding: 5px 0px !important;
  font-weight: bold;

}
table.striped>tbody>tr:nth-child(odd) {
    background-color: rgba(238, 110, 115, 0.19);
}

.picker__date-display {
  background-color: '#E30613'
}
.picker__weekday-display {
  background-color: '#ee6e73'
}
.picker__day--selected {
  background-color: '#ee6e73'
}

/* End Horarios */

/* Tarifas */
#tarifas{
  padding: 5px;
  margin-top: -10px; 
  background: rgba(250,250,250,0.2); 
}
#content-tarifas{
  font-size: 12px;
}

#content-tarifas td:nth-child(2){
  font-weight: bold;
}
#observaciones-tarifas{
  padding-top: 10px;
  font-size: 12px;
}

/* End Tarifas */
/* Transbordos */
.dropdown-content li>a, .dropdown-content li>span {
  font-weight: bold;
  color: black;
  font-family: 'inter';

}
#transbordos {
  height: calc( 100vh - 55px);
  background-image: url(../img/images/background_transbordos.jpg);
  background-size: cover;
  padding: 5px 15px;
}

#transbordos input.select-dropdown,
#configuracion input.select-dropdown
{
  color: black;
  font-size: 1.1em;
}
#transbordos .select-wrapper required li {
  color: yellow;
}
#texto-transbordos{
  padding-top: 15px;
  text-align: center;
}
/* End Transbordos */

/* Novedades */

#novedades .novedad{
border-bottom: 1px rgba(128, 128, 128, 0.15) solid;  
}
#novedades .article{
  font-size: 0.7em;
  text-align: right;
}
#novedades .title{
  font-size: 1.5em !important;
  font-weight: bold;
}
#novedades ul li {
    list-style-type: square;
}


/* End Novedades */
/* Preloader */
#preloader{
  margin: 20px 0px;
}
#preloader .progress{
  background-color: #ee6e73 !important;
}
#preloader .indeterminate{
  background-color: rgba(238, 238, 238, 0.93) !important;
}
#preloader .texto{
  text-align: center;
  padding: 15px;
  color: #9e9e9e;
  padding-top: 25px;
  display: block;
}

/* End Preloader */
/* Modificaciones */

#container-submenu{
  padding: 0px 5px;
  font-size: 12px;
}

#container-submenu i{
  padding-right: 5px;
}



.log-container {
  padding: 5px;
  color: white;
  font-size: 10px;

}

.collapsible-header .ion-android-arrow-dropdown{
  font-size: 30px;
}

#version {
  position: fixed;
  bottom: 0px;
  width: inherit;
  text-align: center;
  color: white;
  font-size: 0.53em;
}

.error-ajax{
  background-color: red;
  color: white;
  font-weight: bold;
}

#slide-out-left .tabs_toggle a{
  padding: 8px 16px;
}
#tarifas table td{
  padding: 6px 5px !important;
}

/* End Modificaciones */
/* Publicidad */

.content-publicidad{
  position: relative;
  height: 100%;
  overflow: auto;
  margin-bottom: 75px;  
}
#abpId{
  position: fixed;
  bottom: 0px;
  height: 75px;
  width: 100%;
  background: #ee6e73;
  color: white;
  text-align: center;
  padding: 20px;
}
/* End Publicidad */