﻿
.scrolling-wrapper-flexbox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.flex {
    flex: 0 0 auto;
    display: inline-block;
}

.table-wrapper-scroll-x {
    /*flex-wrap: nowrap;*/
    overflow: scroll;
    overflow-x: scroll;
    overflow-y: hidden
}

.row-scroll-x {
    overflow-x: auto;
    white-space: nowrap;
}

.col-scroll-x {
    display: inline-block;
    float: none;
}

.pd12 {
    padding: 12px !important;
    padding-bottom: 2px !important;
}

.opacity-light {
    opacity: 0.7;
}

.size-smaller {
    font-size: 8pt;
}

.size-small {
    font-size: 11pt;
}

.size-normal {
    font-size: 14pt;
}

.size-medium {
    font-size: 18pt;
}

.size-large {
    font-size: 22pt;
}

.cardicon {
    font-size: 20pt;
}

.primary-font {
    color: white;
}

.primary-font-error {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #e64a19;
}

/*color metbus calipso*/
.secondary-font {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #00ACD5;
}

.secondary-font-dark {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #00597c;
}

.secondary-font-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #00597c;
    opacity: 0.5;
}

.secondary-font-red {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #e64a19;
}

.secondary-font-yellow {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #ffb300;
}

.o-hidden {
    overflow: hidden !important;
}

.card-body-icon {
    position: absolute;
    z-index: 0;
    top: -1.25rem;
    right: -0.25rem;
    opacity: 0.5;
    font-size: 5rem;
    -webkit-transform: rotate(10deg);
    transform: rotate(18deg);
}

/*colores y tamaños de iconos*/
.IconGreen {
    font-size: 14pt;
    color: #81c784;
}

.IconRed {
    font-size: 14pt;
    color: #e64a19;
}

.IconYellow {
    font-size: 14pt;
    color: #ffb300;
}

.IconGray {
    font-size: 17pt;
    color: #979797;
}

.IconLightGray {
    font-size: 17pt;
    color: #cfd8dc;
}

.IconMediumGray {
    font-size: 17pt;
    color: #9e9e9e;
}

.IconDarkGray {
    font-size: 17pt;
    color: #607d8b;
}

.IconBlue {
    font-size: 17pt;
    color: #00ACD5;
}

.IconDarkBlue {
    font-size: 17pt;
    color: #00597c;
}

.bold {
    font-weight: bold;
}

/*usado para la cabecera de las tarjetas en diferentes colores*/
.primary {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #00ACD5;
    /*background-image: linear-gradient(#0288d1, #00acd5);*/
    color: white;
}

.primary-red {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #d50000;
    color: white;
}

.primary-yellow {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #fbc02d;
    color: white;
}

.primary-grey {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #979797;
    color: white;
}

.primary-green {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #43a047;
    color: white;
}

.primary-orange {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #f57c00;
    color: white;
    /*border: 8px, dashed;
    border-color: #9b0000;*/
}



/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.popover-title {
    background: #ffff99;
}


/* dispensers */
.internal-code {
    font-size: 18px;
}

.current-battery {
    font-style: normal;
    font-size: 13px;
}

.error-message {
    /*display: block;*/
    font-size: 13px;
    width: 100px;
    word-wrap: break-word;
}

.current-battery-text {
    font-size: 10px;
    font-style: normal;
}

.manual-status {
    font-size: 12px;
    font-style: normal;
}

.override {
    border-color: red !important;
    margin: 1px;
}

/* for loading */
.spinner-load {
    border: 2rem solid #f3f3f3; /* Light grey */
    border-top: 2rem solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite, opacity-transition 1s linear 1;
    -webkit-animation: spin 2s linear infinite, opacity-transition 1s linear 1;
    margin: 0% 25% 0% 25%;
    padding: 15%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes opacity-transition {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

.reload {
    -webkit-animation: opacity-transition 1.5s linear 1;
    animation: opacity-transition 1.5s linear 1;
}
