﻿/*# sourceMappingURL=styles.css.map */

.anchors-bar {
	color: #fff;
	background-color: #2ba1cf;
}

.anchors-bar__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px 0;
}

@media (min-width: 768px) {
	.anchors-bar__wrap {
		flex-direction: row;
		padding: 20px 0;
	}
}

.anchors-bar__link {
	position: relative;
	font-size: 1rem;
	line-height: 1;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	margin: 5px 0;
	transition: .3s;
}

@media (min-width: 768px) {
	.anchors-bar__link {
		font-size: 1.3rem;
		margin: 0 20px;
	}
}

.anchors-bar__link:hover {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.anchors-bar__link:not(:last-child):after {
		content: "";
		position: absolute;
		height: 100%;
		width: 2px;
		background: #fff;
		top: 50%;
		transform: translateY(-50%);
		right: -21px;
	}
}
