.widget {
    bottom: 20px;
    position: fixed;
    right: 20px
}

@media (max-width: 767.98px) {
    .widget {
        bottom: 10px;
        position: static;
        right: 10px
    }
}

.widget-button {
    background-color: #2AABEE;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .3s ease;
    position: relative
}

@media (max-width: 767.98px) {
    .widget-button {
        bottom: 10px;
        position: fixed;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 16px
    }
}

.widget-button:hover {
    background-color: #31b4fc
}

.widget-button .icon {
    color: inherit;
    display: block;
    width: 60%;
    height: 60%
}

.widget-notification {
    position: absolute;
    bottom: 110%;
    right: 0;
    background: #fff;
    color: #1a1a1a;
    padding: 8px 16px 8px 8px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    white-space: nowrap;
    z-index: 1000;
    display: none
}

.widget-notification .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a1a
}

.widget-notification .close-btn:hover {
    color: #2AABEE
}

.widget-menu {
    position: absolute;
    bottom: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #bebebe;
    color: #1a1a1a;
    padding: 0 6px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    display: none;
    width: 240px
}

@media (max-width: 767.98px) {
    .widget-menu {
        border-radius: 0;
        left: 0;
        right: 0;
        position: fixed;
        bottom: 0;
        padding: 0;
        width: 100%
    }
}

.widget-menu--item {
    border-bottom: 1px solid #bebebe
}

.widget-menu--item:last-child {
    border-bottom: none
}

.widget-menu--item__cancel {
    border-bottom: none;
    display: none
}

@media (max-width: 767.98px) {
    .widget-menu--item__cancel {
        display: block
    }
}

.widget-menu--item-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 6px;
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500
}

@media (max-width: 767.98px) {
    .widget-menu--item-link {
        font-weight: bold;
        gap: 8px;
        padding: 16px 12px 14px
    }
}

.widget-menu--item-link:hover {
    color: #2AABEE
}

.widget-menu--item-link .icon {
    display: block;
    width: 1em;
    height: 1em
}