/* TOASTS */
#crtoast_container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    text-align: left;
    z-index: 25;
}

.crtoast {
    display: flex;
    flex-direction: row;
    padding: 8px 10px 8px 8px;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--main-black-shades-90);
    background: var(--main-white);
    box-shadow: var(--boxshadow);

    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

.crtoast .toast_heart svg {
    color: var(--ratings-red);
}

.crtoast .toast_star svg {
    color: var(--ratings-yellow);
}

.crtoast_target {
    font-weight: 600;
}

@media screen and (max-width: 575px) {
    #crtoast_container {
        width: 100%;
        left: 0;
        bottom: 111px;
        align-items: center;
    }
}