﻿#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
}

    #blazor-error-ui .reload {
        color: blue;
        text-decoration: underline;
    }

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pointer {
    cursor: pointer;
}

.link {
    color: #0665d0;
    text-decoration: none;
    background-color: transparent;
}

.validation-errors {
    /*alert*/
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid transparent;
    -webkit-transition: opacity .3s .1s;
    transition: opacity .3s .1s;
    /*alert-active*/
    overflow: visible;
    visibility: visible;
    opacity: 1;
    height: auto;
    margin-bottom: 5px;
    margin-top: 10px;
    padding: 5px 15px;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    /*alert-danger*/
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

/*Permite clics en a href con object dentro*/
.header__logo object {
    pointer-events: none;
}

.avatar object {
    pointer-events: none;
}
/*Desactiva clicks en a href active*/
.active {
    pointer-events: none;
}

.star.active {
    pointer-events: all !important;
}

    /*Desactiva clicks en a href active con object dentro*/
    .active .header__logo object {
        pointer-events: all;
    }


.contactDetail {
    transform: translate(-5000px, 0px);
}

/*Desactiva selección de texto*/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.right {
    position: relative;
    float: right;
}


.h90-scroll {
    height: 90vh;
    overflow-y: auto
}


.footer_to_bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.centered_content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fa-li-child {
    left: -1.5em;
    position: relative;
}

.no-background {
    background-color: #fff !important;
    border: 2px solid #fff !important;
}

.round-border {
    border: 1px solid #ccc !important;
    border-radius: 16px;
}


.overlay-container {
    display: inline-block;
    position: relative;
}


.block-loading {
    z-index: 10000000;
    opacity: 0.4;
    filter: alpha(opacity=40);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 188, 212, 0);
    transition: background-color 0.5s;
}


.block-loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}