// ACF color picker
.wp-picker-holder {
    .iris-picker {
        height: auto !important;
        padding-bottom: 10px !important;
        .iris-picker-inner,
        .iris-palette,
        .iris-palette-container {
            position: static;
            height: auto !important;
        }
        .iris-picker-inner,
        .iris-palette-container {
            margin-left: 10px;
            margin-top: 10px;
            &::after {
                display: table;
                content: "";
                width: 100%;
            }
        }
        .iris-picker-inner {
            display: flex;
            width: calc(100% - 20px);
            .iris-square {
                height: auto !important;
                flex: 0 0 85%;
                margin-right: 5%;
                .iris-square-inner {
                    border-radius: 0;
                }
            }
            .iris-slider {
                min-height: 200px;
                flex: 0 0 10%;
                border-radius: 0;
            }
        }
        .iris-palette-container {
            left: 0;
            bottom: 0;
            width: calc(100% - 20px);
            .iris-palette {
                min-width: 12%;
                aspect-ratio: 1 / 1;
                border-radius: 100%;
                margin: 0 .3rem .3rem 0 !important;
                box-shadow: inset 0 0 2px rgba(0,0,0,.2);
                box-sizing: border-box;
            }
        }   
    }
}
