/**** Notification****/

.notification {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: rgb(218 218 236 / 33%);
    border-radius: 100px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 475px;
    z-index: 9 !important;
    cursor: pointer;
}

.notification:after {
    content: "\01F862 ";
    font-size: 25px;
    padding-right: 28px;
    transition: 0.5s cubic-bezier(0.9, 0, 0.1, 1)
}

.notification:hover:after {
    transform: translateX(17px);
}

.noti-container {
    width: 110px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;

}

.noti-container {
    overflow: hidden;
    position: relative;
}

.noti-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.9, 0, 0.1, 1);
    transform: scale(1);
    transform-origin: 65% 0%;

}

.notification:hover .noti-container img {
    transform: scale(1.03);
    transform-origin: 65% 0%;
    transition: transform 0.44s cubic-bezier(0.9, 0, 0.1, 1);
}

.notification .rondleiding-title {
    font-size: 1.27rem;
    color: var(--primary);
    font-family: var(--fontuse);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.notification .rondleiding-paragraaf {
    font-size: 0.95rem;
    color: var(--primary);
    font-family: var(--fontuse);
    font-weight: 400;
    width: 77%;
}

.notificationwrapper {
    margin-left: 15px;
}