﻿/* 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. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}

.rowpadding {
    padding-top: 5px;
}

.fontsizelarge {
    /*font-size: large;*/
    font-weight: bold;
    text-align: left;
}

.div-error {
    font-weight: bold;
    margin-left: 10px;
    color: red;
}

.msg-error {
    font-weight: bold;
    color: red;
}

.coloresRMT {
    background-color: darkorange;
    color: white;
}

.btn-width {
    width: 9em;
}

.anchoLista {
    width: 6em;
}

.anchoListaGraph {
    width: 9em;
}

.anchoNavBarList {
    width: 15em;
}

::selection {
    background-color: #f3c788;
    color: black;
}

.page-item.active .page-link {
    color: black !important;
    background-color: darkorange !important;
    border-color: gold !important;
}

.page-link {
    color: black !important;
    background-color: white !important;
    border: 1px solid #ffbb5d !important;
}

.page-link:hover {
    color: white !important;
    background-color: orangered !important;
    border-color: darkorange !important;
}



/****** BOTONES !!!! SRO *****/
.buttonselect span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

    .buttonselect span:after {
        content: '\23f5'; /*\00bb, \25ba \23f5 (OK) \22d9 \21e8*/
        position: center;
        opacity: 0;
        top: auto;
        margin-left: 20px;
        right: 0px;
        transition: 0.5s;
        color: black;
        font-size: larger;
    }

.buttonselect:hover span {
    padding-right: 25px;
}

    .buttonselect:hover span:after {
        opacity: 1;
        right: 0;
    }

.botonselectwidth {
    width: 80%;
}

.botonselectborde {
    border: 3px solid lightgray;
    border-radius: 10px;
}

    .botonselectborde:hover {
        border: 3px solid darkorange;
        border-radius: 10px;
    }



/*Vertical center*/

.vertical-center {
    height: 100%;
    width: 100%;
    text-align: center; /* align the inline(-block) elements horizontally */
}
    .vertical-center > .container {
        max-width: 100%;
        display: inline-block;
        vertical-align: middle; /* vertical alignment of the inline element */
    }

.vertical-center .row {
    align-items: center;
    display: flex;
}
