ul, ol {
	padding-left: 20px;
	margin-bottom: 30px;
}

.comment-list {
	ul, ol {
		padding-left: 25px;
		margin-bottom: 30px;
	}

	ol ol, ol ul, ul ol, ul ul {
		margin-bottom: 0;
	}
}

ul ul {
	list-style-type: disc;
}

.tt__list {
	margin: 0;
	padding: 0;
	list-style: none;

	li {
		color: $color__body;
		line-height: 1.9;
		display: flex;
		align-items: baseline;
		position: relative;
		font-size: 16px;
		margin-bottom: 6px;

		&.icon-shape {
			i {
				height: 20px;
				width: 20px;
				text-align: center;
				line-height: 20px;
				background-color: rgba($color__theme, 0.102);
				border-radius: 50%;
				color: $color__theme;
				display: inline-block;
			}
		}

		p {
			margin: 0;
		}

		i {
			margin-right: 10px;
			font-size: 14px;
			color: #a6afbc;
			min-width: 18px;
			text-align: center;
		}

		a {
			color: $color__heading;
			display: flex;
			align-items: baseline;

			&:hover {
				color: $color__theme;
			}
		}
	}

	&.list-dice {
		li {
			padding-left: 25px;
			display: block;

			&:before {
				content: "";
				position: absolute;
				width: 8px;
				height: 8px;
				border-radius: 50%;
				left: 0;
				top: 15px;
				background: #6730e3;
				transform: translateY(-50%);
				transition: all .5s;
			}
		}
	}

	&.inline-items {
		li {
			display: inline-block;

			&:not(:last-child) {
				margin-right: 20px;
			}
		}
	}
}