@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#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: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.transition {
    transition: .5s all cubic-bezier(.155, 1.105, .295, 1.12);
}

/*This was used in the images page :) to hover the images */
/*.card {*/
/*    border-radius: 4px;*/
/*    background: #fff;*/
/*    box-shadow: 6px 6px 5px 0px rgb(0 0 0 / 25%), 0 0 6px rgb(0 0 0 / 5%);*/
/*    padding: 14px 80px 18px 36px;*/
/*    cursor: pointer;*/
/*}*/

/*.card:hover {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 6px 6px 5px 0px rgb(0 0 0 / 25%), 0 0 6px rgb(0 0 0 / 5%);*/
/*}*/

/*.card .card-img-overlay {*/
/*    background-color: rgba(0, 0, 0, 0.4);*/
/*}*/

/*.card .card-img-overlay:hover {*/
/*    background-color: rgba(0, 0, 0, 0.1);*/
/*}*/

.hide {
    opacity: 0.1;
}

.no-select {
    user-select: none;
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}

.show-overlay {
    display: block !important;
}

.mh-50 {
    max-height: 50% !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-na {
    cursor: not-allowed;
}

.cursor-default {
    cursor: default;
}

.text-no-select {
    user-select: none;
}