.header-quickmenu > .search {
    border-bottom: 1px solid darkgrey;
    margin-bottom: 10px;
    padding-top: 8px;
    padding-bottom: 18px;
}

.header-quickmenu > .search input {
    border-right-color: #cfcfcf;
    border-bottom-color: #cfcfcf;
}

.header-quickmenu .actions-group {
  margin-bottom: 15px;
}

.header-quickmenu .actions-group-header {
    width: 100%;
    padding: 0 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
}

.header-quickmenu .actions {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.header-quickmenu .actions > .action-item {
    display: flex;
    flex-direction: row;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    padding: 8px 11px;
    justify-content: flex-start;
    margin: 10px;
    cursor: pointer;
    line-height: 30px;
    width: calc((100% - 60px) / 3);
}

.header-quickmenu .actions > .action-item:hover {
    background: #eaeaea;
}

.header-quickmenu .actions > .action-item .action-icon {
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    padding: 0 !important;
    margin: 0;
    color: #00bbe3;
    font-size: 21px;
}

.header-quickmenu .actions > .action-item > .action-label {
    min-height: 20px;
    margin-left: 10px;
    line-height: 30px;
}

@media screen and (max-width: 1024px) {
    .header-quickmenu .actions > .action-item {
        width: calc((100% - 40px) / 2);
    }
}

@media screen and (max-width: 700px) {
    .header-quickmenu .actions > .action-item {
        width: 100%
    }
}