HEX
Server: LiteSpeed
System: Linux sg-cp4.cloudnetwork.vn 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64
User: thu28850 (1134)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/thu28850/www/wp-content/themes/martfury/css/elementors/icon-list.scss
.mf-elementor-icons-list {
	.icons-list-wrapper {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	.box-item {
		position: relative;

		&:last-child {
			.separator {
				display: none;
			}
		}
	}

	.martfury-icon-box {
		font-size: 14px;
		display: flex;
		align-items: center;
		padding: 10px;
		justify-content: center;
		position: relative;
		margin-bottom: 0;
	}


	.mf-icon-right {
		flex-direction: row-reverse;

		.box-wrapper {
			text-align: right;
		}
	}

	.mf-icon-center {
		flex-direction: column;
		text-align: center;
	}

	.separator {
		position: absolute;
		top: 50%;
		right: 0;
		width: 1px;
		height: 60px;
		background-color: #dadada;
		transform: translateY(-50%);
	}

	.box-icon {
		color: var(--mf-primary-color);
		line-height: 1;
		font-size: 40px;
	}

	.box-title {
		font-size: 18px;
		font-weight: 500;
		margin-bottom: 0;
		margin-top: 0;
		color: #000;
		transition: 0.5s;
		display: block;
	}
}

@media  (min-width: 1025px) {
	.elementor-widget-martfury-icons-list {
		$i: 5;
		@while $i > 0 {
			&.columns-#{$i} {
				.box-item {
					flex: 0 0 1 / $i * 100%;
					max-width: 1 / $i * 100% ;

					&:nth-child(#{$i}n) {
						.separator {
							display: none;
						}
					}
				}
			}

			$i: $i - 1;
		}
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-martfury-icons-list {
		$i: 5;
		@while $i > 0 {
			&.columns--tablet#{$i} {
				.box-item {
					flex: 0 0 1 / $i * 100%;
					max-width: 1 / $i * 100% ;

					&:nth-child(#{$i}n) {
						.separator {
							display: none;
						}
					}
				}
			}

			$i: $i - 1;
		}
	}
}

@media (max-width: 767px) {
	.elementor-widget-martfury-icons-list {
		$i: 5;
		@while $i > 0 {
			&.columns--mobile#{$i} {
				.box-item {
					flex: 0 0 1 / $i * 100%;
					max-width: 1 / $i * 100% ;

					&:nth-child(#{$i}n) {
						.separator {
							display: none;
						}
					}
				}
			}

			$i: $i - 1;
		}
	}
}