/********************************************************************
* Горячие клавиши v1.0 © max, the murderer! 2022
* Запрещено копирование, использование, модификация, передача, продажа третьим лицам
********************************************************************/

.tooltip_extra {
    opacity: .38;
    margin-left: 6px;
    transition: all .2s ease;
}

#addition-area div {
    display: flex;
    justify-content: space-between
}

#hotkeys_wrap {
    background: #121819;
    border-top: 1px solid rgb(var(--white_static) / .12);
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    display: none;
    color: rgb(var(--white_static) / .87);
}

#hotkeys {
    width: 1096px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
    display: flex;
}

#hotkeys .column {
    width: 100%;
}

#hotkeys .column:not(:last-child) {
    padding-right: 16px;
}

#hotkeys .item {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    border: 1px solid rgb(var(--white_static) / .12);
    margin: 0 4px 6px 0;
    border-radius: 4px;
}

#hotkeys .tooltip_extra {
    opacity: .6;
}

#hotkeys p {
    display: inline-block;
    font: 600 16px 'Inter', verdana, sans-serif;
    margin-bottom: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgb(var(--white_static) / .87);
    color: rgb(18 20 24 / 1);
}

.hotkeys_help {
    position: absolute;
    top: -30px;
    right: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 4px 8px;
    color: rgb(var(--basic));
    border: 1px solid rgb(var(--basic) / .12);
    margin-bottom: 16px;
    border-radius: 4px;
    transition: all .2s ease;
}

.hotkeys_help:hover {
    border-color: rgb(var(--accent));
    color: rgb(var(--accent));
    cursor: pointer;
}

.hotkeys_help:hover .tooltip_extra {
    opacity: 1;
    color: rgb(var(--basic));
}