/**
* Font Awesome CSS
* @author Agus Prawoto Hadi
* @url https://webdev.id
* @copyright Agus Prawoto Hadi
* @notice You can use this code for personal use only, you are not allowed to republish or to sell !!!.
*/

.fapicker-search {
	border: 1px solid #CCCCCC;
    padding: .4rem 1rem;
    width: 100%;
    margin: 0 15px 0 10px;
	outline: none;
	padding: 0.5em 1rem;
}

.fapicker-icons-container {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
	padding: 1em 0;
}
.fapicker-icons-container a{
	width: 48px;
    height: 48px;
    text-align: center;
    color: #4a4a4a;
    font-size: 1.4em;
    display: block;
}
.fapicker-icons-container a:hover{
	color: #ff5151;
}

a.fapicker-hidden {
	display: none;
}

.fapicker-modal .close {
	position: relative;
	width: 23px;
	height: 23px;
	border: 0;
	background-color: #CCCCCC;
	outline: none;
	margin: auto;
	}
.fapicker-modal .close::before, 
.fapicker-modal .close::after {
	position: absolute;
	top: 10px;
	left: 5px;
	width: 13px;
	height: 3px;
	content: "";
	background-color: #FFFFFF;
	}
.fapicker-modal .close::before {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
.fapicker-modal .close::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.fapicker-modal .close:hover { cursor: pointer; }