/* ----- LINKS ----- */
a {
    transition: color 0.2s;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none;
}

a:hover, .pink {
    /*color: var(--essens-blue);*/
    color: var(--essens-pink);
}

a.link-pink{
    color: #dc0069;
}
a.link-orange:hover {
    color: #dc0069;
}

a.link-orange {
    color: #E87F35;
}
a.link-pink:hover {
    color: #E87F35;
}

a.link-white {
    color: white;
}
a.link-white:hover {
    color: #dc0069;
}

a.link-pink-white {
    color: #dc0069;
}
a.link-pink-white:hover {
    color: white;
}
/* ----- PAGE ----- */
.link-page {
    color: blue;
    text-decoration: none;
}
.link-page:hover {
    color: #009EDF;
}

.link-page-current {
    font-weight: bold;
    color: black;
    text-decoration: none;
    cursor: not-allowed;
}
.link-page-current:hover{
    color: black;
}

.link-page-create {
    color: #ba0000;
    text-decoration: none;
}
.link-page-create:hover {
    color: red;

}

.link-unreachable {
    color: #ba0000;
    cursor: not-allowed;
}

.link-disabled {
    color: gray !important;
    cursor: not-allowed;
}

