.so-media-library {
	.breadcrumbs {
		display: flex;
		gap: 12px 38px;
		margin-bottom: 32px;
		flex-wrap: wrap;

		a {
			color: #000;
			text-transform: uppercase;
			font-size: 14px;
			text-decoration: none;
			font-weight: 500;
			font-family: 'Work Sans';
			position: relative;
			transition: all .2s ease-in-out;
		}

		a[href]:hover {
			opacity: .6;
		}

		a:after {
			content: '';
			width: 6px;
			height: 8px;
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			margin-right: -20px;
			display: block;
			background-image: url("data:image/svg+xml,%3Csvg width='6' height='12' viewBox='0 0 6 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.660378 11.5L6 6L0.660378 0.5L0 1.18993L4.66981 6L0 10.8101L0.660378 11.5Z' fill='black'/%3E%3C/svg%3E%0A");
			background-size: 100%;
			background-repeat: no-repeat;
			background-position: center;
		}

		a:last-child:after {
			display: none;
		}
	}

	.so-media-overview {
		display: flex;
		gap: 24px;
		flex-wrap: wrap;

		&:has(.dropbox-embed-container) {
			cursor: pointer;
		}

		.so-media-item {
			background: #F7F4F0;
			aspect-ratio: 242/108;
			position: relative;
			padding: 16px;
			box-sizing: border-box;
			display: flex;
			align-items: center;
			justify-content: center;
			flex: 0 0 calc(25% - ((24px * 3) / 4) );
			transition: all .2s ease-in-out;

			&.is-media {
				aspect-ratio: 242/148;
				position: relative;
				overflow: hidden;

				&:after {
					content: '';
					position: absolute;
					inset: 0;
					background-color: rgba(0, 0, 0, .4);
					background-image: url("data:image/svg+xml,%3Csvg width='64' height='44' viewBox='0 0 64 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 5.86667C37.349 5.84873 42.5945 7.35323 47.1334 10.2072C51.6723 13.0612 55.3204 17.1487 57.6582 22C52.8582 31.8853 43.0545 38.1333 32 38.1333C20.9455 38.1333 11.1418 31.8853 6.34182 22C8.67962 17.1487 12.3277 13.0612 16.8666 10.2072C21.4055 7.35323 26.6509 5.84873 32 5.86667ZM32 0C17.4545 0 5.03273 9.12267 0 22C5.03273 34.8773 17.4545 44 32 44C46.5455 44 58.9673 34.8773 64 22C58.9673 9.12267 46.5455 0 32 0ZM32 14.6667C33.9288 14.6667 35.7787 15.4393 37.1426 16.8146C38.5065 18.1898 39.2727 20.0551 39.2727 22C39.2727 23.9449 38.5065 25.8102 37.1426 27.1854C35.7787 28.5607 33.9288 29.3333 32 29.3333C30.0712 29.3333 28.2213 28.5607 26.8574 27.1854C25.4935 25.8102 24.7273 23.9449 24.7273 22C24.7273 20.0551 25.4935 18.1898 26.8574 16.8146C28.2213 15.4393 30.0712 14.6667 32 14.6667ZM32 8.8C24.7855 8.8 18.9091 14.7253 18.9091 22C18.9091 29.2747 24.7855 35.2 32 35.2C39.2145 35.2 45.0909 29.2747 45.0909 22C45.0909 14.7253 39.2145 8.8 32 8.8Z' fill='white'/%3E%3C/svg%3E%0A");
					background-size: 24px;
					background-position: center;
					background-repeat: no-repeat;
					opacity: 0;
					transition: all .2s ease-in-out;
				}

				a:first-child {
					z-index: 1;
				}

				figure {
					position: absolute;
					inset: 0;
					background-size: cover;
					background-position: center;
					background-repeat: no-repeat;
				}

				a.so-media-download {
					position: absolute;
					bottom: 0;
					right: 0;
					width: 48px;
					height: 52px;
					background-color: #F7F4F0;
					background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12L3 7L4.4 5.55L7 8.15V0H9V8.15L11.6 5.55L13 7L8 12ZM2 16C1.45 16 0.979333 15.8043 0.588 15.413C0.196666 15.0217 0.000666667 14.5507 0 14V11H2V14H14V11H16V14C16 14.55 15.8043 15.021 15.413 15.413C15.0217 15.805 14.5507 16.0007 14 16H2Z' fill='black'/%3E%3C/svg%3E%0A");
					background-size: 18px;
					background-repeat: no-repeat;
					background-position: center;
					top: unset;
					left: unset;
					transform: translateY(100%);
					transition: all .2s ease-in-out;
					z-index: 2;

					&:hover {
						background-color: #fff;
					}
				}

				&:hover {
					&:after {
						opacity: 1;
					}

					a.so-media-download {
						transform: translateY(0);
					}
				}
			}

			&.large {
				aspect-ratio: 242/380;
			}

			img {
				object-fit: contain;
				width: 100%;
			}

			a {
				position: absolute;
				inset: 0;
			}

			&.so-cat,
			&.so-file {
				flex-direction: column;
			}

			&.so-cat {
				font-size: 18px;

				span {
					font-size: 14px;
					color: #515151;
				}
			}

			&:hover {
				background-color: #E2D2BD;
			}

			&.category {
				font-size: 18px;

				span {
					font-size: 14px;
					color: #515151;
				}
			}
		}
	}
}

/* Media preview pop-up */
.so-media-popup {
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	transition: all .2s ease-in-out;

	&.active {
		opacity: 1;
		pointer-events: initial;

		.content-wrapper {
			transform: translate(-50%, -50%) scale(1);
		}
	}

	.close {
		margin-left: auto;
		margin-bottom: 12px;
		width: 18px;
		aspect-ratio: 1/1;
		display: block;
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00584 9.39591L1.70222 15.7077C1.49365 15.9148 1.26177 16.0118 1.00657 15.9989C0.751367 15.9859 0.519483 15.8759 0.310917 15.6689C0.102352 15.4619 -0.00128345 15.227 1.19949e-05 14.9644C0.00130744 14.7017 0.104942 14.4668 0.310917 14.2598L6.5951 7.98487L0.310917 1.73905C0.103647 1.53072 1.19949e-05 1.29329 1.19949e-05 1.02674C1.19949e-05 0.760186 0.103647 0.522102 0.310917 0.312485C0.518188 0.102867 0.753959 -0.000647108 1.01823 0.00194076C1.2825 0.00194076 1.51762 0.105455 1.7236 0.312485L8.00584 6.62236L14.2609 0.310543C14.4694 0.103514 14.7013 0 14.9565 0C15.2117 0 15.4436 0.103514 15.6522 0.310543C15.8659 0.525336 15.9728 0.762775 15.9728 1.02286C15.9728 1.28294 15.8659 1.51584 15.6522 1.72158L9.36993 7.98487L15.6891 14.2812C15.8964 14.4895 16 14.7211 16 14.976C16 15.2309 15.8964 15.4625 15.6891 15.6708C15.4741 15.8843 15.2363 15.9911 14.976 15.9911C14.7156 15.9911 14.4824 15.8843 14.2764 15.6708L8.00584 9.39591Z' fill='white'/%3E%3C/svg%3E%0A");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center;
		transition: all .2s ease-in-out;
		cursor: pointer;

		&:hover {
			opacity: .6;
		}
	}

	.content-wrapper {
		max-width: 1400px;
		margin: auto;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(.6);
		transition: all .2s ease-in-out;

		.preview {
			min-width: 800px;
			aspect-ratio: 1920/1080;
			background: #000;
			max-width: 1400px;
		}
	}
}

.so-media-toolbar {
	width: 100%;
	background: #F7F4F0;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	gap: 16px;

	.title {
		display: flex;
		flex-direction: column;
		gap: 4px;

		h4 {
			font-size: 20px;
			font-weight: 500;
			text-transform: uppercase;
			margin: 0;
			font-family: 'Work Sans';
		}

		span {
			display: block;
			color: #8e8e8e;
			font-size: 14px;
		}
	}

	.so-media-download {
		width: 48px;
		height: 48px;
		border-radius: 100%;
		border: 2px solid #000;
		background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 16.5L4.125 9.625L6.05 7.63125L9.625 11.2062V0H12.375V11.2062L15.95 7.63125L17.875 9.625L11 16.5ZM2.75 22C1.99375 22 1.34658 21.731 0.8085 21.1929C0.270416 20.6548 0.000916667 20.0072 0 19.25V15.125H2.75V19.25H19.25V15.125H22V19.25C22 20.0062 21.731 20.6539 21.1929 21.1929C20.6548 21.7319 20.0072 22.0009 19.25 22H2.75Z' fill='black'/%3E%3C/svg%3E%0A");
		background-size: 24px;
		background-repeat: no-repeat;
		background-position: center;
		transition: all .2s ease-in-out;
		cursor: pointer;

		&:hover {
			background-color: #000;
			background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 16.5L4.125 9.625L6.05 7.63125L9.625 11.2062V0H12.375V11.2062L15.95 7.63125L17.875 9.625L11 16.5ZM2.75 22C1.99375 22 1.34658 21.731 0.8085 21.1929C0.270416 20.6548 0.000916667 20.0072 0 19.25V15.125H2.75V19.25H19.25V15.125H22V19.25C22 20.0062 21.731 20.6539 21.1929 21.1929C20.6548 21.7319 20.0072 22.0009 19.25 22H2.75Z' fill='white'/%3E%3C/svg%3E%0A");
		}
	}
}

/* Icons */
.so-wsmedia-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.so-wsmedia-icon.image {
	background-image: url("data:image/svg+xml,%3Csvg width='28' height='25' viewBox='0 0 28 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0001 20.5C15.8445 20.5 17.417 19.8502 18.7174 18.5507C20.017 17.2502 20.6667 15.6778 20.6667 13.8333C20.6667 11.9889 20.017 10.4164 18.7174 9.116C17.417 7.81644 15.8445 7.16667 14.0001 7.16667C12.1556 7.16667 10.5836 7.81644 9.28408 9.116C7.98364 10.4164 7.33342 11.9889 7.33342 13.8333C7.33342 15.6778 7.98364 17.2502 9.28408 18.5507C10.5836 19.8502 12.1556 20.5 14.0001 20.5ZM14.0001 17.8333C12.889 17.8333 11.9445 17.4444 11.1667 16.6667C10.389 15.8889 10.0001 14.9444 10.0001 13.8333C10.0001 12.7222 10.389 11.7778 11.1667 11C11.9445 10.2222 12.889 9.83333 14.0001 9.83333C15.1112 9.83333 16.0556 10.2222 16.8334 11C17.6112 11.7778 18.0001 12.7222 18.0001 13.8333C18.0001 14.9444 17.6112 15.8889 16.8334 16.6667C16.0556 17.4444 15.1112 17.8333 14.0001 17.8333ZM22.0001 9.83333C22.3779 9.83333 22.6943 9.70533 22.9494 9.44933C23.2054 9.19422 23.3334 8.87778 23.3334 8.5C23.3334 8.12222 23.2054 7.80533 22.9494 7.54933C22.6943 7.29422 22.3779 7.16667 22.0001 7.16667C21.6223 7.16667 21.3059 7.29422 21.0507 7.54933C20.7947 7.80533 20.6667 8.12222 20.6667 8.5C20.6667 8.87778 20.7947 9.19422 21.0507 9.44933C21.3059 9.70533 21.6223 9.83333 22.0001 9.83333ZM3.33341 24.5C2.60008 24.5 1.97253 24.2391 1.45075 23.7173C0.928081 23.1947 0.666748 22.5667 0.666748 21.8333V5.83333C0.666748 5.1 0.928081 4.47244 1.45075 3.95067C1.97253 3.428 2.60008 3.16667 3.33341 3.16667H7.53341L9.60008 0.933333C9.73341 0.8 9.88319 0.694222 10.0494 0.616C10.2165 0.538667 10.389 0.5 10.5667 0.5H17.4334C17.6112 0.5 17.7836 0.538667 17.9507 0.616C18.117 0.694222 18.2667 0.8 18.4001 0.933333L20.4667 3.16667H24.6667C25.4001 3.16667 26.0281 3.428 26.5507 3.95067C27.0725 4.47244 27.3334 5.1 27.3334 5.83333V21.8333C27.3334 22.5667 27.0725 23.1947 26.5507 23.7173C26.0281 24.2391 25.4001 24.5 24.6667 24.5H3.33341Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-wsmedia-icon.video {
	background-image: url("data:image/svg+xml,%3Csvg width='28' height='27' viewBox='0 0 28 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4545 11.5724H21.6364V15.4293L28 12.2448V26.3276L21.6364 23.1431V27H0V11.5724H1.97273C1.54804 11.152 1.21098 10.6499 0.981426 10.0958C0.751868 9.54175 0.634458 8.94683 0.636117 8.34617C0.637776 7.74552 0.75847 7.15127 0.991085 6.59848C1.2237 6.04569 1.56352 5.54553 1.99053 5.12751C2.41753 4.70948 2.92306 4.38204 3.47732 4.1645C4.03159 3.94696 4.62336 3.84371 5.21775 3.86085C5.81213 3.87799 6.39711 4.01516 6.93819 4.26429C7.47926 4.51342 7.96548 4.86945 8.36818 5.3114C8.54865 4.27903 8.9763 3.30689 9.61386 2.47969C10.2514 1.65249 11.0795 0.995316 12.0261 0.565427C12.9726 0.135539 14.0089 -0.0540238 15.0446 0.0132549C16.0803 0.0805336 17.084 0.402613 17.9682 0.951431C18.8525 1.50025 19.5904 2.25916 20.1178 3.16204C20.6453 4.06492 20.9461 5.08437 20.9942 6.13159C21.0423 7.17881 20.8361 8.22202 20.3937 9.17034C19.9513 10.1186 19.286 10.9433 18.4558 11.5724M9.27818 9.89853C9.05009 10.5302 8.68478 11.1021 8.20909 11.5724H10.8182C10.21 11.1118 9.68843 10.5449 9.27818 9.89853Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-wsmedia-icon.multimedia {
	background-image: url("data:image/svg+xml,%3Csvg width='28' height='29' viewBox='0 0 28 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33333 15.1667V4.5C9.33333 3.03333 10.5333 1.83333 12 1.83333H24C25.4667 1.83333 26.6667 3.03333 26.6667 4.5V12.5H22.0933L20.3867 10.18C20.3701 10.1524 20.3466 10.1295 20.3186 10.1137C20.2905 10.0978 20.2589 10.0895 20.2267 10.0895C20.1945 10.0895 20.1628 10.0978 20.1348 10.1137C20.1067 10.1295 20.0833 10.1524 20.0667 10.18L17.4133 13.8333C17.3333 13.9133 17.1733 13.9267 17.0933 13.8333L15.1867 11.5C15.1676 11.478 15.1441 11.4603 15.1176 11.4482C15.0912 11.4361 15.0624 11.4299 15.0333 11.4299C15.0042 11.4299 14.9755 11.4361 14.949 11.4482C14.9226 11.4603 14.899 11.478 14.88 11.5L12.0667 15.0467C11.96 15.1667 12.0533 15.3667 12.2133 15.3667H20.6667V17.8333H12C10.52 17.8333 9.33333 16.6467 9.33333 15.1667ZM5.33333 27.1667V25.8333H2.66667V27.1667H0V0.5H2.66667V1.83333H5.33333V0.5H8.52C7.38667 1.48667 6.66667 2.9 6.66667 4.5V15.1667C6.66667 18.1133 9.05333 20.5 12 20.5H18.2667C16.8933 21.6067 16 23.2733 16 25.1667C16 25.8733 16.1467 26.54 16.3733 27.1667H5.33333ZM2.66667 7.16667H5.33333V4.5H2.66667V7.16667ZM2.66667 12.5H5.33333V9.83333H2.66667V12.5ZM2.66667 17.8333H5.33333V15.1667H2.66667V17.8333ZM5.33333 23.1667V20.5H2.66667V23.1667H5.33333ZM28 15.1667V17.8333H25.3333V25.1667C25.3333 26.0507 24.9821 26.8986 24.357 27.5237C23.7319 28.1488 22.8841 28.5 22 28.5C21.1159 28.5 20.2681 28.1488 19.643 27.5237C19.0179 26.8986 18.6667 26.0507 18.6667 25.1667C18.667 24.6133 18.805 24.0688 19.0683 23.5821C19.3316 23.0955 19.7119 22.682 20.175 22.379C20.638 22.0761 21.1692 21.8932 21.7206 21.8468C22.2719 21.8004 22.8262 21.892 23.3333 22.1133V15.1667H28Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-wsmedia-icon.other,
.so-wsmedia-icon.folder {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='25' viewBox='0 0 20 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.33342 11.8333H14.6667V10.5H5.33342V11.8333ZM5.33342 6.5H14.6667V5.16667H5.33342V6.5ZM19.2161 23.0827L14.6614 17.176C14.3352 16.7511 13.9454 16.4213 13.4921 16.1867C13.0387 15.9511 12.5414 15.8333 12.0001 15.8333H0.666748V2.65467C0.666748 2.04044 0.872526 1.528 1.28408 1.11733C1.69564 0.706667 2.20808 0.500889 2.82141 0.5H17.1801C17.7934 0.5 18.3059 0.705778 18.7174 1.11733C19.129 1.52889 19.3343 2.04133 19.3334 2.65467V22.3467C19.3334 22.4747 19.3236 22.6013 19.3041 22.7267C19.2845 22.8529 19.2552 22.9716 19.2161 23.0827ZM2.82141 24.5C2.20719 24.5 1.69475 24.2947 1.28408 23.884C0.873414 23.4733 0.667637 22.9609 0.666748 22.3467V17.1667H12.0001C12.3254 17.1667 12.625 17.2378 12.8987 17.38C13.1734 17.5231 13.4116 17.7262 13.6134 17.9893L18.3161 24.144C18.1534 24.2569 17.977 24.3444 17.7867 24.4067C17.5965 24.4689 17.3939 24.5 17.1787 24.5H2.82141Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-wsmedia-icon.docx {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='%23000000' d='M8 12h8v-2H8zm0-4h8V6H8zm12 12.55L14.975 14H4V2h16zM4 22v-6h10l4.6 6z'/%3E%3C/svg%3E");
}

.woocommerce-MyAccount-content h2 {
	padding: 0;
	margin-bottom: 32px;
	font-size: 24px;
	color: #000;
}

/* Dashboard */
.so-dashboard-content {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.so-dashboard-item {
	flex: 0 0 calc(25% - ((24px * 3) / 4) );
	background: #F7F4F0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px 8px;
	color: #000;
	text-decoration: none;
	text-align: center;
	transition: all .2s ease-in-out;
}

.so-dashboard-item:hover {
	background: #E2D2BD;
}

.so-dashboard-item:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
}

body.woocommerce-dashboard .woocommerce-MyAccount-content > p {
	display: none;
}

@media screen and (max-width: 1100px) {
	.so-dashboard-item {
		flex: 0 0 calc(33.333333% - ((24px * 2) / 3) );
	}
}

@media screen and (max-width: 650px) {
	.so-dashboard-item {
		flex: 0 0 calc(50% - (24px / 2) );
	}
}

/* WC Styling */
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
	padding: 0 !important;
	background-color: transparent !important;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
	background: var(--tint-1);
	padding: 6px 16px !important;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
	flex-grow: 1;
}

.woocommerce-MyAccount-navigation-link.is-active,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:hover {
	background: #E2D2BD !important;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:first-child {
	margin-bottom: 4px;
}

body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
	margin-top: 4px;
}

.woocommerce-MyAccount-navigation-link {
	display: flex;
	gap: 8px;
	align-items: center;
}

.woocommerce-MyAccount-navigation-link:before {
	content: '';
	width: 16px;
	height: 16px;
	display: inline-block;
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
}

.so-dashboard-item.dashboard:before,
.woocommerce-MyAccount-navigation-link--dashboard:before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.72875 3.75C7.55625 3.75 7.4125 3.6925 7.2975 3.5775C7.1825 3.4625 7.125 3.31575 7.125 3.13725V0.61275C7.125 0.43425 7.1835 0.2875 7.3005 0.1725C7.4175 0.0575 7.5625 0 7.7355 0H11.3955C11.569 0 11.713 0.0575 11.8275 0.1725C11.942 0.2875 11.9995 0.43425 12 0.61275V3.13725C12 3.31625 11.9415 3.463 11.8245 3.5775C11.7075 3.6925 11.5625 3.75 11.3895 3.75H7.72875ZM0.60375 6C0.43125 6 0.2875 5.9425 0.1725 5.8275C0.0575 5.7125 0 5.57 0 5.4V0.6C0 0.43 0.0585002 0.2875 0.1755 0.1725C0.2925 0.0575 0.4375 0 0.6105 0H4.2705C4.444 0 4.588 0.0575 4.7025 0.1725C4.817 0.2875 4.8745 0.43 4.875 0.6V5.4C4.875 5.57 4.8165 5.7125 4.6995 5.8275C4.5825 5.9425 4.4375 6 4.2645 6H0.60375ZM7.72875 12C7.55625 12 7.4125 11.9425 7.2975 11.8275C7.1825 11.7125 7.125 11.57 7.125 11.4V6.6C7.125 6.43 7.1835 6.2875 7.3005 6.1725C7.4175 6.0575 7.5625 6 7.7355 6H11.3955C11.569 6 11.713 6.0575 11.8275 6.1725C11.942 6.2875 11.9995 6.43 12 6.6V11.4C12 11.57 11.9415 11.7125 11.8245 11.8275C11.7075 11.9425 11.5625 12 11.3895 12H7.72875ZM0.60375 12C0.43125 12 0.2875 11.9425 0.1725 11.8275C0.0575 11.7125 0 11.5658 0 11.3873V8.86275C0 8.68425 0.0585002 8.5375 0.1755 8.4225C0.2925 8.3075 0.4375 8.25 0.6105 8.25H4.2705C4.444 8.25 4.588 8.3075 4.7025 8.4225C4.817 8.5375 4.8745 8.68425 4.875 8.86275V11.3873C4.875 11.5663 4.8165 11.713 4.6995 11.8275C4.5825 11.9425 4.4375 12 4.2645 12H0.60375Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.orders:before,
.woocommerce-MyAccount-navigation-link--orders:before {
	background-image: url("data:image/svg+xml,%3Csvg width='11' height='14' viewBox='0 0 11 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 14V2.79982H2.74981C2.74469 2.43152 2.81375 2.06605 2.95271 1.72597C3.09166 1.38588 3.29758 1.0784 3.55776 0.822489C3.81229 0.561826 4.11493 0.354971 4.44825 0.213818C4.78157 0.0726656 5.139 0 5.5 0C5.861 0 6.21843 0.0726656 6.55175 0.213818C6.88508 0.354971 7.18771 0.561826 7.44224 0.822489C7.70242 1.0784 7.90834 1.38588 8.04729 1.72597C8.18625 2.06605 8.25531 2.43152 8.25019 2.79982H11V14H0ZM4.12548 2.79982H6.87452C6.87543 2.52276 6.79545 2.25167 6.64474 2.02099C6.49403 1.7903 6.27939 1.61044 6.02808 1.50423C5.77677 1.39803 5.50013 1.37028 5.23329 1.42451C4.96646 1.47873 4.72148 1.61249 4.52946 1.8088C4.39927 1.93717 4.29626 2.09132 4.22679 2.26176C4.15731 2.43219 4.12284 2.61531 4.12548 2.79982ZM2.74981 6.30066H4.12471V4.20063H2.74981V6.30066ZM6.87529 6.30066H8.25019V4.20063H6.87452L6.87529 6.30066Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.edit-address:before,
.woocommerce-MyAccount-navigation-link--edit-address:before {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10.6667C7.72917 10.6667 8.34896 10.4074 8.85938 9.88889C9.36979 9.37037 9.625 8.74074 9.625 8C9.625 7.25926 9.36979 6.62963 8.85938 6.11111C8.34896 5.59259 7.72917 5.33333 7 5.33333C6.27083 5.33333 5.65104 5.59259 5.14062 6.11111C4.63021 6.62963 4.375 7.25926 4.375 8C4.375 8.74074 4.63021 9.37037 5.14062 9.88889C5.65104 10.4074 6.27083 10.6667 7 10.6667ZM1.75 14.2222H12.25V13.9778C12.25 13.7704 12.2063 13.5778 12.1188 13.4C12.0312 13.2222 11.9 13.0815 11.725 12.9778C11.0104 12.5185 10.2559 12.1668 9.46137 11.9227C8.66687 11.6785 7.84642 11.5561 7 11.5556C6.15358 11.555 5.33342 11.6773 4.5395 11.9227C3.74558 12.168 2.99075 12.5197 2.275 12.9778C2.1 13.0815 1.96875 13.2222 1.88125 13.4C1.79375 13.5778 1.75 13.7704 1.75 13.9778V14.2222ZM0 16V5.33333L7 0L14 5.33333V16H0Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.my-points:before,
.woocommerce-MyAccount-navigation-link--my-points:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols Light by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='%23000000' d='m7.325 18.923l1.24-5.313l-4.123-3.572l5.431-.47L12 4.557l2.127 5.01l5.43.47l-4.123 3.572l1.241 5.313L12 16.102z'/%3E%3C/svg%3E");
}

.so-dashboard-item.edit-account:before,
.woocommerce-MyAccount-navigation-link--edit-account:before {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.99963 6.0016C5.60473 6.00804 5.2127 5.93347 4.84775 5.78249C4.48281 5.63151 4.1527 5.40732 3.87781 5.12379C3.59422 4.84896 3.36999 4.51891 3.21898 4.15404C3.06796 3.78917 2.99338 3.39722 2.99982 3.0024C2.99338 2.60758 3.06796 2.21563 3.21898 1.85076C3.36999 1.48589 3.59422 1.15584 3.87781 0.881015C4.1555 0.601804 4.48566 0.38023 4.8493 0.229033C5.21293 0.0778363 5.60288 0 5.99671 0C6.39054 0 6.78048 0.0778363 7.14412 0.229033C7.50775 0.38023 7.83791 0.601804 8.1156 0.881015C8.3992 1.15584 8.62343 1.48589 8.77444 1.85076C8.92545 2.21563 9.00004 2.60758 8.99359 3.0024C9.00079 3.3968 8.92713 3.78849 8.77713 4.15334C8.62714 4.51819 8.40399 4.84845 8.12145 5.12379C7.84657 5.40732 7.51646 5.63151 7.15151 5.78249C6.78657 5.93347 6.39454 6.00804 5.99963 6.0016ZM6.97319e-06 12V9.90056C-0.00101505 9.49122 0.110326 9.08944 0.321903 8.73899C0.533481 8.38854 0.837183 8.10285 1.19993 7.91304C1.95199 7.53413 2.74455 7.24161 3.56247 7.04108C5.16439 6.65367 6.83561 6.65367 8.43753 7.04108C9.25536 7.24157 10.0479 7.53384 10.8001 7.91231C11.1629 8.10199 11.4667 8.38765 11.6783 8.73813C11.8899 9.08861 12.0012 9.49045 12 9.89983V12H6.97319e-06Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.downloads:before,
.woocommerce-MyAccount-navigation-link--downloads:before {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 18.75L4.5 10.9375L6.6 8.67187L10.5 12.7344V0H13.5V12.7344L17.4 8.67187L19.5 10.9375L12 18.75ZM3 25C2.175 25 1.469 24.6943 0.882 24.0828C0.295 23.4714 0.001 22.7354 0 21.875V17.1875H3V21.875H21V17.1875H24V21.875C24 22.7344 23.7065 23.4703 23.1195 24.0828C22.5325 24.6953 21.826 25.001 21 25H3Z' fill='black'/%3E%3C/svg%3E%0A");	
}

.so-dashboard-item.mediabibliotheek:before,
.woocommerce-MyAccount-navigation-link--mediabibliotheek:before {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12V2.91664H0.7V11.283H11.9V11.9986L0 12ZM2.1 9.85331V0H6.7039L8.1039 1.43113H14V9.85331H2.1ZM5.2227 7.15563H11.3078L9.3772 4.54097L7.6594 6.74275L6.5478 5.39463L5.2227 7.15563Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.customer-logout:before,
.woocommerce-MyAccount-navigation-link--customer-logout:before {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.00001 1.33334H10C10.3536 1.33334 10.6928 1.47381 10.9428 1.72386C11.1929 1.97391 11.3333 2.31305 11.3333 2.66667V4H10V2.66667H4.00001V13.3333H10V12H11.3333V13.3333C11.3333 13.687 11.1929 14.0261 10.9428 14.2761C10.6928 14.5262 10.3536 14.6667 10 14.6667H4.00001C3.64638 14.6667 3.30724 14.5262 3.0572 14.2761C2.80715 14.0261 2.66667 13.687 2.66667 13.3333V2.66667C2.66667 2.31305 2.80715 1.97391 3.0572 1.72386C3.30724 1.47381 3.64638 1.33334 4.00001 1.33334Z' fill='black'/%3E%3Cpath d='M10.7267 10.3933L11.6667 11.3333L15 8L11.6667 4.66666L10.7267 5.60666L12.4467 7.33333H6V8.66666H12.4467L10.7267 10.3933Z' fill='black'/%3E%3C/svg%3E%0A");
}

.so-dashboard-item.affiliate-dashboard:before,
.woocommerce-MyAccount-navigation-link--affiliate-dashboard:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Tabler Icons by Paweł Kuna - https://github.com/tabler/tabler-icons/blob/master/LICENSE --%3E%3Cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275m-5.381-5.752l5.759-5.759M4 5.5a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0-3 0m13 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0-3 0m0 13a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0-3 0m-13-3a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0-9 0'/%3E%3C/svg%3E");
}

/* Lity styling */
body:has(.so-media-library) {
	.lity-content {
		background: #fff !important;

		img {
			max-height: calc(100dvh - 300px) !important;
		}
	}
}