.xtfw-admin-tabs-wrap {
	.xtfw-customizer-tab {

		.xtfw-modules-title{
			font-size: 15px;
			margin: 0 0 15px;
		}

		> ul{
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			margin: 0 -20px 30px -20px;

			ul{
				padding: 0 20px 20px;
				margin-top: 10px;

				li {
					a{
						font-size: 14px;
						padding: 5px;
					}
				}
			}
		}
		li{
			cursor: pointer;
			transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
			margin: 0;
			display:block;
			flex: 0 0 100%;
			@media screen and (min-width: 600px) {
				flex: 0 0 50%;
			}
			@media screen and (min-width: 1080px) {
				flex: 0 0 33%;
			}
			@media screen and (min-width: 1600px) {
				flex: 0 0 25%;
			}
			a{
				display:block;
				background-color: transparent;
				text-decoration: none;
				padding: 10px;
				border: 0;
				border-radius: 0;
				font-size: 16px;
				font-weight: 500;
				border-bottom: 1px solid #eaeaea;
				border-top: 1px solid transparent;
				color: #777;
				will-change: auto;
				position: relative;
				margin: 0 15px;
				transition: background-color 0.2s;

				.dashicons{
					margin-right: 10px;
				}

				&:hover{
					background-color: #eaeaea;
					color: #000;

					.dashicons{
						color: #000;
					}
				}
			}
		}
	}
}