.jet-woo-product-gallery-anchor-nav{
	display: flex;
	
	&-items{
		flex: 0 1 100%;
		max-width: 100%;
	}
	
	&-controller{
		position: absolute;
		flex: 0 1 100%;
		max-width: 100%;
		width: 100%;
		margin: 0;
		list-style: none;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		align-self: flex-start;
		align-content: stretch;
		flex-wrap: nowrap;
		transition: none;
		
		.controller-item{
			display: block;
		
			&__bullet{
				width: 10px;
				height: 10px;
				background-color: #d8dbe3;
				border-radius: 50px;
				display: block;
				margin: 5px 15px;
			}
			
			a.current-item{
				.controller-item__bullet{
					background-color: #3c4b71;
				}
			}
		}
	}
	
	.jet-woo-product-gallery__image{
		img{
			width: 100%;
		}
	}
}

.jet-woo-product-gallery-anchor-nav-controller-left{
	.jet-woo-product-gallery-anchor-nav{
		flex-direction: row-reverse;
	}
	
	.jet-woo-product-gallery-anchor-nav-controller {
		left: 0;
	}
}

.jet-woo-product-gallery-anchor-nav-controller-right{
	.jet-woo-product-gallery-anchor-nav{
		flex-direction: row;
	}
	.jet-woo-product-gallery-anchor-nav-controller {
		right: 0;
	}
}