/* ===============================
	TABS
================================ */
.tabs {
	width: 25%;
	display: flex;
	flex-direction: column;
	padding-right: 2rem;
}

.tablink {
	padding-bottom: 3em;
	width: 100%;
	cursor: pointer;
	transition: color 0.3s;
	font-style: italic;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: var(--primary-color);
}

.tablink:hover {
	color: var(--hover-color);
}

.tablink.active {
	color: var(--hover-color);
}

.tabcontent h2 {
	margin-bottom: 1em;
}

.tabcontent {
	width: 70%;
	border-left: 1px solid var(--primary-color);
	padding-left: 2rem;
}

@media (max-width: 800px) {
	.tabs {
		display: none;
	}

	.tabcontent {
		border-left: none;
		padding-left: 0;
		width: 100%;
	}
}

/* ===============================
	DROPDOWN
================================ */
.dropdown {
	width: 100%;
	cursor: pointer;
	position: relative;
	margin-bottom: 4rem;
	display: none;
}

.dropdown i {
	color: var(--primary-color);
}

.select {
	padding: 1em;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	font-weight: 500;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.options-list {
	position: absolute;
	width: 100%;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin-top: 14px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	max-height: 0;
	transition: max-height 0.4s ease;
}

.options-list.active {
	max-height: 600px;
}

.option {
	padding: 20px;
	font-weight: 500;
	font-size: 14px;
	color: var(--secondary-color);
	transition: .3s ease-in-out;
	border-bottom: 0.5px solid var(--secondary-color);
}

.option:last-child {
	border-bottom: none;
}

.option:hover,
.option.selected {
	color: var(--hover-color);
}

@media (max-width: 800px) {
	.dropdown {
		display: block;
	}
}