:root {
    --notification-transition: 0.7s;
    --notification-bg-color: #FFC580;
    --notification-padding: 20px;
    --notification-gap: 10px;
    --notification-text-color: #FFF;
    --notification-text-fw: 300;
    --notification-text-fs: 18px;
}

.notification__container {
    margin-bottom: calc(var(--notification-gap) * 2);
    padding: 0 var(--notification-padding);
}

.notification__container.hide {
    display: none;
}

.notification__block {
    border-radius: calc(var(--notification-gap) * 2);
    background-color: var(--notification-bg-color);
    padding: calc(var(--notification-gap) * 2);
    gap: calc(var(--notification-gap) * 2);
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    display: flex;
}

.notification__title {
    font-weight: var(--notification-text-fw);
    font-size: var(--notification-text-fs);
    color: var(--notification-text-color);
    margin: 0;
}

.notification__icons {
    gap: var(--notification-gap);
    justify-content: end;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    display: flex;
}

.notification__link {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    display: flex;
}

.notification__icon {
    transition: var(--notification-transition);
    cursor: pointer;
}

.notification__icon:hover {
    scale: 1.05;
}

#notification-tel {
    margin-inline-end: calc(var(--notification-gap) * 4);
}

@media only screen and (max-width: 1280px) {
    :root {
        --notification-padding: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .notification__icons {
        flex-direction: column-reverse;
        align-items: end;
    }

    #notification-tel {
        margin-inline-end: 0;
    }

    #notification-close {
        margin-bottom: var(--notification-gap);
    }

    .notification__block {
        gap: calc(var(--notification-gap) * 4);
    }
}
