.dm-short-menu {
    position: fixed;
    font-size: 0;
    z-index: 1000;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.dm-short-menu .dm-short-menu-window {
    position: fixed;
    bottom: 70px;
    right: 15px;
    width: 225px;
    color: #262626;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    text-align: left;
    cursor: default;

    padding: 20px 25px;

    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.011em;
    margin-bottom: 15px;
}

.dm-short-menu .dm-short-menu-window:after {
    content: "";
    top: 100%;
    right: 24px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-width: 7px;
    margin-left: -7px;
    border-bottom-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
}

.dm-short-menu .dm-short-menu-window .link-box {
    font-size: 14px;
    margin-top: 10px;
    line-height: 2;
}

.dm-short-menu .dm-short-menu-window .link-box a.link:not(:last-child) {
    margin-bottom: 10px;
}

.dm-short-menu .dm-short-menu-window a.link-hover:hover {
    text-decoration: none;
    color: #0451e5;
}

.dm-short-menu .dm-short-menu-window a.dm-short-menu-link {
    display: block;
    color: #0451e5 !important;
    text-decoration: none !important;
    padding-left: 17px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.4" d="M1 1L6 6L1 11" stroke="black"/></svg>');
    background-position: left center;
    background-repeat: no-repeat;
    transition: 0.2s;
}

.dm-short-menu .dm-short-menu-window a.dm-short-menu-link:hover {
    opacity: 1;
    color: #2040e6;
    transform: translateX(2px);
}

.float {
    right: 10px;
    min-width: 16px;
    min-height: 16px;
    font-size: 10px;
    position: fixed;

    z-index: 4;
    color: #f8faff;
    cursor: default;
    border-radius: 4px;
    padding: 5px 12px 4px;
    opacity: 0.8;
}

.float:hover {
    opacity: 1;
}

.transition {
    transition: all 3s ease;
}

.m-fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.m-fadeIn {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s;
}