﻿.double-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.double-grid-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.container-with-sort {
    position: relative;
}

    .container-with-search .search-container,
    .container-with-sort .search-container,
    .container-with-sort .combobox-wrapper {
        margin: 0;
    }

.container-with-search {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.search-box {
    width: 400px;
}

    .search-box.center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

.sort-box {
    margin-left: auto;
    width: 195px;
}

.left-grid {
    background-color: #F5F5F5;
}

.right-grid {
    background-color: #DAF8E0;
}

.left-grid, .right-grid {
    padding: 32px 16px 32px 32px;
    border-radius: 16px;
    flex: 1;
}

.move-all-items-button {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 16px;
}

.grid-header-none {
    display: none;
}

.double-grid-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.grid-item-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.grid-item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.double-grid-title {
    font-size: 18px;
    margin-left: 32px;
    margin-bottom: 16px;
}

.double-grid-button {
    height: 48px;
    width: 48px;
    border-radius: 6px;
    border: 1px solid #D4D4D4;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px 0px #0000000D;
}

.grid-containers-full-width {
    width: 100%;
    max-height: 510px;
    padding-right: 16px;
    overflow-y: auto;
}

@media screen and (max-width: 768px) {
    .double-grid {
        gap: 0px;
    }

    .double-grid-container {
        height: auto;
        flex-direction: column;
    }

    .double-grid-title {
        font-size: 14px;
        margin: 0;
    }

    .move-all-items-button.desktop-hide {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 0 10px 0
    }

    .double-grid-button {
        height: 32px;
        width: 32px;
    }

        .double-grid-button img {
            height: 16px;
            width: 16px;
        }

    .grid-containers-full-width {
        width: 100%;
        max-height: 304px;
        padding-right: 8px;
    }

    .left-grid, .right-grid {
        padding: 16px 8px 16px 16px;
    }
}
