.refsam-icon-set-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	justify-content: flex-start;   /* left */
	justify-content: center;       /* center */
	justify-content: flex-end;     /* right */
}

.refsam-icon-set-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}

.refsam-icon-set-item i {
    transition: all 0.3s ease;
}

/* FRAME STYLES */
.refsam-icon-circle {
    border-radius: 50%;
}

.refsam-icon-square {
    border-radius: 0;
}

.refsam-icon-rounded {
    border-radius: 10px;
}

.refsam-icon-outline_circle,
.refsam-icon-outline_square,
.refsam-icon-outline_rounded {
    background: transparent !important;
}
.refsam-icon-outline_circle { border-radius: 50%; }
.refsam-icon-outline_square { border-radius: 0; }
.refsam-icon-outline_rounded { border-radius: 10px; }

/* النص */
.refsam-icon-set-item p {
    margin-top: 5px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px){
    .refsam-icon-set-wrapper {
        gap: 12px;
    }
    .refsam-icon-set-item i {
        padding: 8px;
    }
    .refsam-icon-set-item p {
        font-size: 13px;
    }
}
