@import 'src/Components/GlobalStyles/colors';
@import 'src/Components/GlobalStyles/mixins';

.container {
	display: flex;
	max-width: 867px;
	margin: auto;

	&__main {
		display: flex;
		flex-direction: column;
		//margin-left: 65px;
		margin-right: 36px;

		&__header {
			width: 867px;
			margin: 0 auto;

			@media (max-width: 1300px) {
				margin-left: 50px;
			}

			//@media (max-width: 1200px) {
			//  margin-left: 150px;
			//}

			&__paragraph {
				//width: 650px;
				//margin: 0 auto;
				display: inline-block;

				small {
					font-size: 16px;
					color: var(--primary-color);
					font-weight: 600;
				}
			}

			ul {
				display: flex;
				flex-direction: column;
				width: 650px;
				margin: 12px auto 0 10px;
				padding: 0;

				li {
					margin-left: 30px;
				}

				li:last-of-type {
					margin-bottom: 20px;
				}
			}
		}

		&__list {
			margin-top: 30px;

			h4 {
				color: var(--primary-color);
			}

			color: $font-grey-darker;

			&__listTitle {
				margin-top: 40px;
				border-bottom: 1px solid $font-grey-darker;
				padding-bottom: 10px;

				small {
					margin-right: 10px;
					font-size: 18px;
					color: black;
				}
			}
		}
	}
}

.list_items {
	p {
		display: inline-block;
		margin-left: 15px;
		font-size: 17px;
	}

	display: flex;
	flex-direction: column;

	label:hover {
		cursor: pointer;
	}
}

.submitButton {
	@include Button;

	padding: 10px 15px;
	background-color: var(--primary-color);
	color: white;
}

.showLessMore {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
	display: inline-block;
	margin-left: 10px;

	&:hover {
		cursor: pointer;
		transform: scale(1.02);
	}
}

.selectCompaniesContainer {
	//text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;

	& > label {
		font-size: 1.125em;
		font-weight: 600;
	}

	svg {
		fill: var(--primary-color);
	}

	.selectCompaniesBox {
		div {
			//width: 340px;
			text-align: start;
			box-shadow: 0 3px 13px 0 $dropShadow;

			* {
				border: none;
				border-radius: 10px;
			}
		}
	}
}
