html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    text-align: center;
}

a {
    color: #404040;
    text-decoration: none;
}

a:hover {
    color: #0BA5D1;
}

/*Error pages*/
.error-title {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgb(76, 88, 99);
}

table tr td,
table tr th {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* ** custom css ** */
.cover-container {
    max-width: 100em;
}

.container {
    padding: 0 15px;
}

.form-group {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.svg-filter {
    filter: opacity(70%);
    fill: #8e20f5;
    filter: invert(11%) sepia(88%) saturate(4081%) hue-rotate(269deg) brightness(83%) contrast(109%);
    filter: invert(11%) sepia(800%) saturate(100%) brightness(83%);
}

.darken-default {
    background-color: rgba(217,210,233,0.5);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.darken-vapor {
    background-color: rgba(149, 214, 249);
    background-image: linear-gradient(rgba(149, 214, 249, 0.7), rgba(219, 134, 242, 0.7));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.darken-blup {
    background-color: rgba(163, 195, 224);
    background-image: linear-gradient(rgba(163, 195, 224), rgba(149, 214, 249, 0.7));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.darken-neitzke {
    background-color: rgba(170,226,223);
    background-image: linear-gradient(rgba(170,226,223), rgba(149, 214, 249, 0.7));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.gradient-edge {
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
/*    background: linear-gradient(to right, #00a5b2, #7209d4, #ff6b08, #cf23cf);*/
    background: linear-gradient(to right, #00a5b2, #7209d4, #ff6b08);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.border-lighten {
    border-style: solid;
    border-color: rgb(2,59,99);
    border-width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    padding: 25px;
    min-height: 300px;
    margin-top: 50px;
}

.border-vapor {
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.176);
    border-width: 1px;
    background-color: rgb(255, 255, 255, 0.3);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    padding: 25px;
    min-height: 300px;
    width: auto;
}


/* ** htmx stuff ** */
.fade-me-in.htmx-added {
    opacity: 0;
}
.fade-me-in {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}
.fade-me-out.htmx-swapping {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

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