#contact-info input, #public-info input, #account-info input {
    /* &:valid {
        border-color: rgb(0, 116, 0);
    } */
    &:invalid {
        border-color: rgb(255, 79, 79);
    }
}

.invalid-select {
    border: 1px solid rgb(255, 79, 79) !important;
}

/* .valid-select {
    border: 1px solid rgb(0, 116, 0) !important;
} */


.htmx-indicator-display{
    display:none;
}
.htmx-request .htmx-indicator-display{
    display:inline;
}
.htmx-request.htmx-indicator-display{
    display:inline;
}

.alert-box{
    position: fixed;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    bottom: 0;
    right: 0;
    z-index: 1050;
}

@media (min-width: 768px) {
    .alert-box{
        width: 50%;
        max-width: 600px;
    }    
}

@media (min-width: 1200px) {
    .alert-box{
        width: 33%;
        min-width: 700px;
    }    
}

.no-transition {
    transition: none !important;
}


/**
Chat styles
*/
.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    background: var(--tblr-bg-surface-secondary);
    border-radius: var(--tblr-border-radius-lg);
    padding: 1rem;
    position: relative;
}

.chat-bubble-me {
    background-color: var(--tblr-primary-lt);
    box-shadow: none;
}

.chat-bubble-title {
    margin-bottom: 0.25rem;
}

.chat-bubble-author {
    font-weight: 600;
}

.chat-bubble-date {
    color: var(--tblr-secondary);
}

.chat-bubble-number {
    color: var(--tblr-secondary);
}

.chat-bubble-body>*:last-child {
    margin-bottom: 0;
}

.offcanvas.offcanvas-size {
    width: 450px;
}

@media (min-width: 992px){
    .limit-widget-height-274px-lg {
        max-height: 274px;
    }
}

@media (min-width: 992px){
    .limit-widget-height-340px-lg {
        max-height: 340px;
    }
}

.dropdown-menu {
    --tblr-dropdown-min-width: 0rem;
}
.dropdown-item {
    min-width: 0rem;
}

.link-color {
    color: rgba(var(--tblr-link-color-rgb),var(--tblr-link-opacity,1));
}


.modal-input-required:valid {
    content: "*";
    margin-left: 0.25rem;
    border-color: None;
}

.modal-input-required:invalid {
    content: "*";
    margin-left: 0.25rem;
    border-color: #d63939;
}

:root {
    --tblr-primary:var(--tblr-orange);
    --tblr-primary-rgb: var(--tblr-orange-rgb);
}


.ix-background {
    background-color: #222222;
}

.btn .icon {
    margin: inherit
}