.gkits-control-container {
    &.icon-picker-control {
        .components-base-control {
            margin-bottom: 8px !important;
        }

        .icon-placeplaceholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            width: 100%;
            border: 1px solid #e6e7e9;
            border-radius: 2px;
            cursor: pointer;
            flex-direction: column;
            position: relative;
            .selected-icon i {
                font-size: 24px;
            }
        }

        button.components-button.replace-btn {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 30px;
            background: #bfeaff;
            text-align: center;
            margin: 0 auto;
            justify-content: center;
            border-radius: 0;
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 500;
            &:focus {
                box-shadow: none;
            }
        }
        button.components-button.remove-btn.has-icon {
            position: absolute;
            top: 0;
            right: 0;
            color: #a40606;
            &:focus {
                box-shadow: none;
                outline: none;
            }
        }
    }
}

// Modal
.gkits-icons-modal {
    height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 15px;
    .icon-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    button.components-button.icon-item {
        width: 100%;
        height: 40px;
        border: 1px solid #ccc;
        margin: 0;
        padding: 10px;
        justify-content: center;
        &.active {
            background: #ccc;
        }
        i {
            font-size: 18px;
        }
    }
    .icon-search {
        padding-top: 1px;
        input {
            width: 100%;
            border: 1px solid #ccc;
            padding: 5px 10px;
            box-sizing: border-box;
        }
    }
}
