/* BLOG */

#blog_index main,
#blog_article main {
	background: var(--blue_horizontal_gradient);
}

#blog_index,
#blog_article {
	color: var(--blue3);
}

#blog_index h1,
#blog_article h1 {
	color: var(--blue1);
}

#article_title_larticle {
	margin-bottom: 20px;
	font-family: "SourceSans3SemiBold", sans-serif;
}

#article_title_larticle,
#blog_index h1 {
	display: flex;
	gap: 15px;
	color: white;
}

#article_title_larticle {
	gap: 5px;
}

#article_title_larticle span:nth-of-type(1),
#blog_index h1 span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	font-size: 32px;
}

#article_title_larticle span:nth-of-type(2),
#blog_index h1 span:nth-of-type(2) {
	font-size: 64px;
}

#blog_index h2,
#blog_article h2 {
	color: var(--blue1);
}

#blog_index h3,
#blog_article h3 {
	color: var(--blue1);
}

#blog_index h4,
#blog_article h4 {
	color: var(--blue1);
}

.reply_to_comment_details {
	color: var(--blue1);
}
#article_container {
	border-radius: 5px;
}

#article_container .delimiter {
	border-top: thin solid var(--blue3);
}

#blog_index .button,
#blog_article .button {
	color: white;
	border: none !important;
	background-color: var(--blue2);
	box-shadow: -5px 5px var(--green2);
}

#blog_index .button:hover,
#blog_article .button:hover {
	background-color: var(--blue1);
}

.article_item {
	box-shadow: var(--blue1) -15px 15px;
}

#articles {
	padding-top: 0;
}

/* BLOG EDITOR */

.blog_administration {
	background: var(--blue_horizontal_gradient);
	padding: 30px 0;
}

.article_item {
	background-color: white;
}

.blog_administration_content {
	padding: 0 15px;
	padding-bottom: 15px;
}

#add_article {
	color: white;
	margin-right: 20px;
	transition: 0.2s;
}

@media (hover: hover) {
	#add_article:hover {
		transform: scale(1.2);
	}
}

#article_options {
	margin-right: 15px;
	margin-bottom: 15px;
	margin-top: -15px;
	background-color: rgba(13, 44, 99, 0.2);
}

.blog_administration h1 {
	display: flex;
	flex-direction: column;
	color: white;
	font-size: 32px;
	width: 300px;
	height: 100px;
}

.blog_administration h1 span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	align-self: flex-start;
	margin-left: 30px;
}

.blog_administration h1 span:nth-of-type(2) {
	font-family: "SourceSans3Light", sans-serif;
	margin-left: 60px;
	align-self: flex-start;
}

.blog_administration h1 span:nth-of-type(3) {
	font-family: "SourceSans3SemiBold", sans-serif;
	font-size: 64px;
}

.blog_editor {
	background: var(--blue_horizontal_gradient);
}

.blog_editor h1 {
	position: relative;
	display: flex;
	flex-direction: column;
	color: white;
	font-size: 32px;
	width: 300px;
	height: 100px;
	margin-top: 60px;
}

.blog_editor h1 span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	align-self: flex-start;
	margin-left: 50px;
}

.blog_editor h1 span:nth-of-type(2) {
	font-family: "SourceSans3Light", sans-serif;
	margin-left: 40px;
	align-self: flex-start;
}

.blog_editor h1 span:nth-of-type(3) {
	position: absolute;
	bottom: 0px;
	right: 30px;
	font-family: "SourceSans3SemiBold", sans-serif;
	font-size: 64px;
	align-self: flex-end;
}

.blog_constructor {
	border-radius: 10px;
	margin-bottom: 30px;
}

.blog_constructor #title_h1 {
	color: var(--blue1);
}

.blog_editor #help {
	fill: white;
}

.blog_upper_toolbar {
	max-width: 650px;
	padding-bottom: 30px;
	margin-right: 60px;
}

#save_options_wrapper {
	background: var(--blue_horizontal_gradient);
	top: unset;
	flex-direction: column;
	justify-content: flex-start;
	gap: 15px;
}

#save_options_wrapper_title {
	position: relative;
	display: flex;
	flex-direction: column;
	color: white;
	font-size: 32px;
	width: 300px;
	height: 100px;
	margin-bottom: 30px;
	margin-top: 60px;
}

#save_options_wrapper_title span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	align-self: flex-start;
	margin-left: 30px;
}

#save_options_wrapper_title span:nth-of-type(2) {
	font-family: "SourceSans3Light", sans-serif;
	margin-left: 70px;
	align-self: flex-start;
}

#save_options_wrapper_title span:nth-of-type(3) {
	position: absolute;
	bottom: 0px;
	right: 20px;
	font-family: "SourceSans3SemiBold", sans-serif;
	font-size: 64px;
	align-self: flex-end;
}

#save_options {
	padding: 30px;
}

#save_options .switch_box {
	background: linear-gradient(white 48%, var(--blue2) 48%, var(--blue2) 52%, white 52%);
}

#save_options .switch_box::after {
	background: var(--blue2);
}

@media (hover: hover) {
	#save_options .switch_box:hover::after {
		background: var(--blue1);
	}
}

#save_button,
#save_options_wrapper .button {
	padding: 15px;
	color: white;
	background-color: var(--blue1);
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	box-shadow: var(--green2) -10px 10px;
	width: 180px;
	cursor: pointer;
	transition: 0.2s;
	font-size: 1rem;
}

#save_button {
	border: 2px solid white;
}

@media (hover: hover) {
	#save_button:hover,
	#save_options_wrapper .button:hover {
		background-color: var(--green1);
		box-shadow: var(--blue3) -10px 10px;
	}
}

/* CLASSIFIEDS */

#classifieds_main {
	color: var(--green3);
	background: var(--green_horizontal_gradient);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#classifieds {
	background-color: transparent;
	padding: 15px;
	padding-top: 0;
}

#classifieds_main h1 {
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	width: 340px;
}

#classifieds_main h1 span:nth-child(1) {
	font-size: 32px;
	font-family: "SourceSans3Regular", sans-serif;
	line-height: 30px;
	align-self: flex-start;
	margin-left: 80px;
}

#classifieds_main h1 span:nth-child(2) {
	font-size: 32px;
	font-family: "SourceSans3Light", sans-serif;
	line-height: 30px;
	align-self: flex-start;
}

#classifieds_main h1 span:nth-child(3) {
	font-size: 64px;
	line-height: 60px;
	margin-left: 15px;
}

#classifieds_main h2 {
	color: var(--green1);
}

#classifieds_main h3 {
	color: var(--green1);
}

#classifieds_main h4 {
	color: var(--green1);
}

#classifieds_main .button {
	color: white;
	border: none !important;
	background-color: var(--green2);
	box-shadow: -5px 5px var(--blue2);
}

#classifieds_main .button:hover {
	background-color: var(--green1);
}

.classifieds_item {
	background-color: white;
	border-radius: 5px;
	border: none;
	box-shadow: var(--green1) -15px 15px;
}

#add_classified {
	color: white;
	margin-right: 20px;
	transition: 0.2s;
}

@media (hover: hover) {
	#add_classified:hover {
		transform: scale(1.2);
	}
}

/* CLASSIFIEDS EDITOR */

#classified_editor_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--green_horizontal_gradient);
}

#classified_editor_wrapper h1 {
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
	width: 340px;
}

#classified_editor_wrapper h1 span:nth-of-type(1) {
	font-size: 32px;
	font-family: "SourceSans3Regular", sans-serif;
	line-height: 30px;
	align-self: flex-start;
	margin-left: 30px;
}

#classified_editor_wrapper h1 span:nth-of-type(2) {
	font-size: 32px;
	font-family: "SourceSans3Light", sans-serif;
	line-height: 30px;
	align-self: flex-start;
}

#classified_editor_wrapper h1 span:nth-of-type(3) {
	font-size: 64px;
	line-height: 60px;
	margin-left: 55px;
}

#classified_editor {
	margin-top: 30px;
	border-radius: 10px;
}

#classified_editor #title_h1 {
	color: var(--green1);
}

#classified_content {
	border: 2px solid var(--green2);
	border-radius: 5px;
	color: var(--green3);
}

#classified_editor .button {
	padding: 15px;
	color: white;
	background-color: var(--green1);
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	box-shadow: var(--blue2) -10px 10px;
	width: 180px;
	cursor: pointer;
	transition: 0.2s;
	font-size: 1rem;
}

@media (hover: hover) {
	#classified_editor .button:hover {
		background-color: var(--blue1);
		box-shadow: var(--green3) -10px 10px;
	}
}

/* CHALLENGES */

#challenges_main {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--green_horizontal_gradient);
	color: var(--green3);
}

#challenges_main h1,
#article_title_le_challenge {
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: white;
	padding-top: 0;
}

#article_title_le_challenge {
	margin-top: 30px;
	margin-bottom: 60px;
}

#challenges_main h1 span:nth-of-type(1),
#article_title_le_challenge span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	font-size: 32px;
	line-height: 20px;
	align-self: flex-start;
}

#challenges_main h1 span:nth-of-type(2),
#article_title_le_challenge span:nth-of-type(2) {
	font-family: "SourceSans3SemiBold", sans-serif;
	font-size: 64px;
	line-height: 40px;
	margin-left: 10px;
}

#challenges .article_item {
	box-shadow: var(--green1) -15px 15px;
	background-color: white;
}

#challenges h2,
#challenge_main h2,
#challenge_main h1 {
	color: var(--green1);
}

#challenge_main {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--green_horizontal_gradient);
	color: var(--green3);
}

/* CHALLENGES EDITOR */

#challenges_administration_main {
	background: var(--green_horizontal_gradient);
	color: var(--green3);
}

#challenges_administration_main .blog_administration {
	background: unset;
	padding-top: 0;
}

#challenges_administration_title {
	display: flex;
	flex-direction: column;
	color: white;
	font-size: 32px;
	width: 300px;
}

#challenges_administration_title span:nth-of-type(1) {
	font-family: "SourceSans3Regular", sans-serif;
	align-self: flex-start;
	margin-left: 30px;
	line-height: 20px;
}

#challenges_administration_title span:nth-of-type(2) {
	font-family: "SourceSans3Light", sans-serif;
	margin-left: 60px;
	align-self: flex-start;
}

#challenges_administration_title span:nth-of-type(3) {
	font-family: "SourceSans3SemiBold", sans-serif;
	font-size: 64px;
	line-height: 40px;
}

#challenges_administration_main .article_item {
	box-shadow: var(--green1) -15px 15px;
}

#challenge_editor {
	background: var(--green_horizontal_gradient);
	color: var(--green3);
}

#challenge_editor h1 span:nth-of-type(1) {
	line-height: 10px;
}

#challenge_editor h1 span:nth-of-type(2) {
	line-height: 50px;
	margin-left: 30px;
}

#challenge_editor #title_h1 {
	color: var(--green1);
}

#challenge_editor h2 {
	color: var(--green1);
}

#challenge_editor #save_button,
#challenge_editor #save_options_wrapper .button {
	background-color: var(--green1);
	box-shadow: var(--blue2) -10px 10px;
}

@media (hover: hover) {
	#challenge_editor #save_button:hover,
	#challenge_editor #save_options_wrapper .button:hover {
		background-color: var(--blue1);
		box-shadow: var(--green3) -10px 10px;
	}
}

#delete_challenge_button {
	display: none;
	padding: 15px;
	color: white;
	background-color: rgba(255, 0, 0, 0.6);
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	box-shadow: rgba(208, 83, 83, 0.6) -10px 10px;
	width: 180px;
	cursor: pointer;
	transition: 0.2s;
	font-size: 1rem;
	border: 2px solid red;
	margin-right: 30px;
}

@media (hover: hover) {
	#delete_challenge_button:hover {
		background-color: rgba(255, 0, 0, 0.8);
		box-shadow: rgba(208, 83, 83, 0.8) -10px 10px;
	}
}
