@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

* {
    box-sizing: border-box;
    /* outline: 1px dashed #f00; */
}

html, body {
    margin: 0px;
    background-color: #fff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*background-color: #eeeeee;*/
}

.layout-container {
    max-width: 1000px !important;
}

.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;
    }

pre,
div.error {
    background-color: #e5e5e5;
    padding: 1rem;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin: 1rem 0;
    max-height: 250px;
}

    pre.fixed,
    div.error.fixed {
        height: 200px;
    }

code {
    background-color: #e5e5e5;
    display: inline-block;
    padding: 0px 6px;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

/* UI Show */
.application-banner {
    background-color: rgba(8, 7, 103, 1) !important;    
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.divider {
    background-color: #dbdbdb !important;
    height: 1px !important;
    border: none;
}

span.step {
    background: #4f52b2;
    border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    -webkit-border-radius: 0.8em;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    line-height: 1.6em;
    margin-right: 5px;
    text-align: center;
    width: 1.6em;
}

/* ARROWS */
.container-arrow {
    width: 50px;
    height: 50px;
    margin: 10px;
    margin-left: 25px;
    margin-right: 25px;
    /*border: 1px solid red;*/
    margin-top: 50px;
}

.arrow {
    position: relative;
    transform: translate(-50%, -50%);
    transform: rotate(-90deg);
    cursor: pointer;
}

    .arrow span {
        display: block;
        width: 1.5vw;
        height: 1.5vw;
        border-bottom: 5px solid white;
        border-right: 5px solid white;
        transform: rotate(45deg);
        margin: -10px;
        animation: animate 2s infinite;
    }

        .arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.custom-breadcrumb:hover {
    color: hotpink;
    cursor: pointer;
}

.validation-errors {
    list-style-type: none;
    padding-left: 0px;
    background-color: whitesmoke;
    padding: 10px;
    border-radius:5px;
}

.disable-hover {
    text-decoration: none !important;
}

.disable-hover:hover {
    text-decoration: none !important;
}

.update-territory-button{
    margin-top:20px !important;
}

fluent-data-grid-row:has([row-selected]) {
    background-color: var(--neutral-fill-stealth-hover)
}

fluent-data-grid-row:hover {
    background-color: var(--neutral-fill-stealth-hover) !important;
    cursor:pointer !important;
}

.max-message{
    color: red !important;
    font-size: 11px !important;
}

.custom-validation {
    color: red;
    font-size: 11px;
    font-weight: bold;
}

.bold-text span {
    font-weight: bold; 
}

.valid.modified:not([type=checkbox]) {
    outline: none !important;
}

.rma-form label {
    /*font-weight: bold !important;*/
    margin-top:10px !important;
}

/*@media screen and (max-width: 800px) {
    .hide-column {
        visibility: hidden;
        display: none;
        width:0px !important;
    }
}*/

.custom-listbox {
    border-color: #e3e3e3;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
}

    .custom-listbox option {
        padding-top: 5px;
        padding-bottom: 5px;
        margin:3px;
    }

        .custom-listbox option:checked {
            background-color: whitesmoke;
            color: var(--neutral-foreground-rest);
        }