.triangle-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1051;
    overflow: hidden;
}

.triangle-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 60px solid transparent;
    border-top: 60px solid transparent;
    border-bottom: 60px solid var(--primary-color);
    z-index: -1;
}

.triangle-button i {
    position: absolute;
    bottom: 6px;
    left: 2px;
    color: black;
}

.triangle-button:hover::before {
    border-bottom-color: var(--secondary-color);
}

.cookie-banner a, #cookieSettingsModal .modal-body p a {
    color: var(--primary-color);
}