/**
 * Metaboxes fields styling
 * 
 * 
 * @package Theme Wing
 * @since 1.0.0
 * 
 */
.theme-wing-meta-box-wrap .theme-wing-meta-field {
	margin: 16px 8px;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field {
	margin-top: 4px;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field-title {
	font-weight: 500;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field-description {
	font-style: italic;
    font-size: 12px;
    margin: 0;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field input,
.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field select,
.theme-wing-meta-box-wrap .theme-wing-meta-field .meta-field textarea {
	width: 100%;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icon-holder {
	width: 50%;
	box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    background-color: #fff;
    color: #2c3338;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icon-header {
	cursor: pointer;
	display: flex;
	padding: 8px 2px;
	border-bottom: 1px solid #8c8f94;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icon-header > div {
	flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icons-list {
	padding: 16px;
	height: 20rem;
    overflow-y: scroll;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icons-list i {
	cursor: pointer;
	float: left;
    width: 12%;
    text-align: center;
    font-size: 26px;
    padding: 6px;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .icons-list i.selected {
	background: #000000;
    color: #ffffff;
    border-radius: 4px;
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .search-field {
	border-bottom: 1px solid rgb(0 0 0 / 18%);
}

.theme-wing-meta-box-wrap .theme-wing-meta-field.meta-icon-picker-field .search-field input {
	width: -webkit-fill-available;
    border-radius: 0;
    margin: 6px 2px;
    border: none;
}