/* Base Styles */
.questionari-30anys {
	background: white;
	min-height: 100vh;
	font-family: Lora, ui-serif, Georgia, Cambria, "Times New Roman", Times,
		serif;
	padding: 1rem;
	box-sizing: border-box;
}

.game-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem;
}

/* Header Styles */
.game-header {
	text-align: left;
	margin-bottom: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.header-content {
	width: 100%;
	flex: 1;
}

.game-title {
	font-size: 3rem;
	font-weight: 700;
	color: #f58522;
	margin: 0 0 1.5rem 0;
	line-height: 1;
	margin-top: -14px;
}

.game-description {
	color: #444;
	font-size: 1.1rem;
	line-height: 1.4;
	margin: 0;
	text-align: left;
}

.register-link {
	color: #f58522;
	font-weight: 600;
	text-decoration: none;
}

.register-link:hover {
	color: #f58522;
	border-bottom-color: #f58522;
}

.header-image {
	width: 300px;
	height: auto;
}

/* Timeline Styles */
.question-timeline {
	background: #f58522;
	padding: 1rem;
	margin-bottom: 2rem;
}

.timeline-questions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	align-items: center;
}

.timeline-question {
	color: white;
	font-weight: 700;
	opacity: 0.8;
	font-size: 30px;
	cursor: pointer;
	min-width: 60px;
	max-width: calc(10% - 0.5rem);
	flex: 0 1 calc(10% - 0.5rem);
	text-align: center;
}

.timeline-question.active {
	color: white;
	opacity: 1 !important;
}

.timeline-question.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.timeline-question.disabled:hover {
	background: rgba(255, 255, 255, 0.05);
}

.timeline-question.answered {
	opacity: 0.7;
	position: relative;
	cursor: pointer;
	pointer-events: auto;
}

.timeline-question.answered:hover {
	opacity: 0.8;
}

/* Answer Cards Styles */

.question-answers {
	display: grid;
}

.answer-card {
	width: 100%;
	background: #fee9d6;
	border: 2px solid #fee9d6;
	padding: 1.75rem;
	color: #000;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
}

.answer-card:hover {
	background: #fee9d6;
	border-color: #fee9d6;
}

.answer-card.selected {
	background: #f6b37a;
	color: #000;
	border-color: #f6b37a;
}

/* Submit Button Styles */
.submit-section {
	text-align: center;
}

.submit-button {
	background: #f58522;
	color: white;
	border: none;
	padding: 1.25rem 3rem;
	font-size: 23px;
	font-weight: 700;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.submit-button:hover {
	background: #f58522;
}

/* Responsive Design */
@media (max-width: 768px) {
	.questionari-30anys {
		padding: 0.5rem;
	}

	.game-container {
		padding: 1rem;
	}

	.game-header {
		flex-direction: column-reverse;
		text-align: center;
	}

	.game-title {
		font-size: 33px;
		margin-top: 10px;
	}

	.header-image {
		width: 100%;
		order: -1;
	}

	.timeline-questions {
		justify-content: center;
		gap: 0.2rem;
	}

	.timeline-question {
		font-size: 26px;
		padding: 0.5rem 0.8rem;
		min-width: 50px;
		flex: 0 1 calc(20% - 0.3rem);
		max-width: calc(20% - 0.3rem);
	}

	.answer-card {
		padding: 1.25rem;
		font-size: 20px;
	}

	.submit-button {
		width: 100%;
		padding: 1rem 2rem;
		font-size: 20px;
	}

	.form-group input[type="checkbox"] {
		transform: scale(0.9);
	}
	.game-description{
		text-align: center;
	}
}

@media (max-width: 480px) {
	.game-container {
		padding: 0.75rem;
	}

	.timeline-question {
		font-size: 22px;
		padding: 0.4rem 0.2rem;
		flex: 0 1 calc(20% - 0.3rem);
		max-width: calc(20% - 0.3rem);
	}

	.answer-card {
		padding: 1rem;
		font-size: 18px;
	}
}

/* Accessibility Improvements */
.timeline-question:focus {
	outline: none;
}

.answer-card:focus,
.submit-button:focus {
	outline: 3px solid #fff;
	outline-offset: -3px;
}

.answer-card:focus {
	outline-color: #f58522;
}

/* Print Styles */
@media print {
	.questionari-30anys {
		background: white;
		color: black;
	}

	.submit-button {
		display: none;
	}
}

/* Modal Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(3px);
}

.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	font-family: Lora, ui-serif, Georgia, Cambria, "Times New Roman", Times,
		serif;
}

.modal-header {
	text-align: center;
	margin-bottom: 2rem;
}

.modal-header h2 {
	color: #f58522;
	font-size: 2.5rem;
	margin: 0 0 1rem 0;
	font-weight: 700;
	line-height: 1.2;
	font-family: inherit;
}

.modal-header p {
	color: #333;
	font-size: 1.2rem;
	margin: 0;
	line-height: 1.4;
	font-weight: 600;
	font-family: inherit;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: 600;
	font-size: 1rem;
	font-family: inherit;
}

.form-group input {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 1.1rem;
	box-sizing: border-box;
	background: white;
	font-family: inherit;
	color: black;
}

/* style for input type checkbox */
.form-group input[type="checkbox"] {
	width: auto;
	margin-right: 0.5rem;
	transform: scale(1.2);
	vertical-align: middle;
}

.form-group input:focus {
	outline: none;
	border-color: #f58522;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) {
	border-color: #dc3545;
}

.error-message {
	display: block;
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1.2rem;
}

.modal-actions {
	text-align: center;
	margin-bottom: 2rem;
}

.modal-submit-btn {
	background: #f58522;
	color: white;
	border: none;
	padding: 0.8rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	width: 100%;
	text-transform: none;
	letter-spacing: 0;
	font-family: inherit;
}

.modal-submit-btn:hover {
	background: #f58522;
}

.modal-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* Modal Responsive Design */
@media (max-width: 480px) {
	.modal-content {
		padding: 1.5rem;
		margin: 1rem;
		width: calc(100% - 2rem);
	}

	.modal-header h2 {
		font-size: 2rem;
	}

	.modal-header p {
		font-size: 1.1rem;
	}

	.form-group input {
		padding: 0.7rem;
		font-size: 1rem;
	}

	.form-group input[type="checkbox"] {
		transform: scale(0.8);
	}

	.modal-submit-btn {
		width: 100%;
		padding: 0.7rem;
		font-size: 1.1rem;
	}
}

/* Visually hidden elements */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Results Page Styles */
.results-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.result-card {
	background: #feead7;
	border-radius: 0;
	padding: 25px;
	padding-bottom: 15px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.result-card:hover {
	background: #feead7;
}

.result-year {
	color: #f58522;
	font-size: 2.2em;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}

.year-number {
	position: absolute;
	top: 0px;
	/* centered */
	left: 50%;
	transform: translateX(-50%);
	background: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 2px;
	font-size: 1em;
	font-weight: bold;
}

.result-content {
	width: 100%;
	text-align: center;
}

.result-answer {
	color: black;
	font-size: 23px;
	margin: 0 0 15px 0;
	line-height: 1.4;
	font-weight: 700;
}

.result-percentage {
	text-align: center;
}

.percentage-number {
	background: transparent;
	color: #f58522;
	font-size: 1.4em;
	font-weight: bold;
	padding: 0;
	border-radius: 0;
	display: inline-block;
	min-width: auto;
}

.no-results {
	text-align: center;
	color: #333;
	font-size: 1.2em;
	padding: 40px;
	background: #feead7;
	border-radius: 0;
}

.subtitle {
	font-size: 30px;
	font-weight: bold;
	margin-top: -16px;
}

.subtitle2 {
	font-size: 16px;
	font-weight: bold;
	color: #f58522;
	margin-top: 8px;
}

.long-subtitle {
	display: block;
}

@media (max-width: 768px) {
	.subtitle {
		font-size: 21px;
		margin-top: -8px;
	}
	.subtitle2 {
		font-size: 16px;
		margin-top: 16px;
	}
	.long-subtitle {
		display: none;
	}
}

.participation-info {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.4;
}

.participant-count {
	font-weight: bold;
	font-size: 1.1em;
}

.instructions {
	font-size: 0.9em;
	opacity: 1;
	color: #444;
}

/* Detailed View Styles */
.detailed-title {
	text-align: center;
	margin: 2rem 0;
	padding: 0 1rem;
}

.detailed-title h2 {
	color: #f58522;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.detailed-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin: 0 0 1rem 0;
	font-weight: normal;
}

.detailed-instructions {
	font-size: 0.95rem;
	color: #888;
	line-height: 1.4;
}

.instruction-highlight {
	font-weight: bold;
	color: #f58522;
}

.detailed-results {
	margin: 0 auto;
}

.most-voted {
	background: #f6b37a !important;
	color: #000 !important;
	border-color: #f6b37a !important;
}

.detailed-header {
	background: #f58522;
	color: white;
	padding: 2px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.detailed-year-header {
	font-size: 2.5em;
	font-weight: bold;
	color: white;
	margin: 0;
}

.detailed-year {
	font-size: 2.5em;
	font-weight: bold;
	margin: 0;
}

.close-button {
	background: none;
	border: none;
	color: #ff6600;
	font-size: 1.5em;
	padding: 5px;
}

.close-button:hover {
	opacity: 0.8;
}

.detailed-question {
	background: #feead7;
	padding: 25px;
	text-align: center;
	margin-bottom: 0;
}

.detailed-question h2 {
	font-size: 1.2em;
	color: #333;
	margin: 0;
	font-weight: 500;
	line-height: 1.4;
}

.detailed-answers {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.detailed-answer-card {
	background: #fee9d6;
	border: 2px solid #fee9d6;
	padding: 1.75rem;
	color: #000;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
	display: block;
	align-items: center;
	gap: 20px;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
}

.detailed-answer-card:hover {
	background: #fee9d6;
	border-color: #fee9d6;
}

.detailed-answer-card.user-selected {
	background: #e9ae7b;
	color: #000;
	border-color: #e9ae7b;
}

.answer-index,
.answer-ranking {
	background: white;
	color: #f58522;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2em;
	flex-shrink: 0;
}

.answer-content {
	flex: 1;
	text-align: center;
}

.answer-text {
	color: #000;
	margin: 0 0 5px 0;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
}

.answer-percentage {
	text-align: center;
	color: #f58522;
	font-size: 1.2em;
	font-weight: bold;
	min-width: 60px;
}

/* Results page responsive design */
@media (max-width: 768px) {
	.result-card {
		padding: 20px;
	}

	.result-year {
		font-size: 1.8em;
	}

	.result-answer {
		font-size: 1.1em;
	}

	.percentage-number {
		font-size: 1.4em;
	}

	/* Detailed view responsive */
	.detailed-title {
		margin: 1.5rem 0;
		padding: 0 0.5rem;
	}

	.detailed-title h2 {
		font-size: 1.5rem;
	}

	.detailed-subtitle {
		font-size: 1rem;
	}

	.detailed-instructions {
		font-size: 0.9rem;
	}

	.detailed-header {
		padding: 15px;
	}

	.detailed-year {
		font-size: 2em;
	}

	.detailed-question {
		padding: 20px;
	}

	.detailed-question h2 {
		font-size: 1.1em;
	}

	.detailed-answer-card {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.answer-index,
	.answer-ranking {
		width: 35px;
		height: 35px;
		font-size: 1.1em;
	}

	.answer-text {
		font-size: 1em;
	}

	.answer-percentage {
		font-size: 1.1em;
		min-width: 50px;
	}
}

@media (max-width: 480px) {
	.result-card {
		padding: 15px;
	}

	.result-year {
		font-size: 1.5em;
	}

	.result-answer {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.percentage-number {
		font-size: 1.2em;
	}

	/* Detailed view responsive */
	.detailed-title {
		margin: 1rem 0;
		padding: 0 0.25rem;
	}

	.detailed-title h2 {
		font-size: 1.3rem;
	}

	.detailed-subtitle {
		font-size: 0.95rem;
	}

	.detailed-instructions {
		font-size: 0.85rem;
	}

	.detailed-results {
		padding: 10px;
	}

	.detailed-header {
		padding: 12px;
	}

	.detailed-year {
		font-size: 1.6em;
	}

	.close-button {
		font-size: 1.3em;
	}

	.detailed-question {
		padding: 15px;
	}

	.detailed-question h2 {
		font-size: 1em;
	}

	.detailed-answer-card {
		padding: 1.25rem;
		margin-bottom: 1.25rem;
	}

	.answer-index,
	.answer-ranking {
		width: 30px;
		height: 30px;
		font-size: 1em;
	}

	.answer-text {
		font-size: 0.9em;
	}

	.answer-percentage {
		font-size: 1em;
		min-width: 45px;
	}
}

.hidden-force {
	display: none !important;
}

.modal-header {
	padding: 0;
	border: 0;
}
.modal-header .close {
	margin-top: 10px;
	font-size: 30px;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #ff6600;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: 0.8;
}

#container-base-legal .modal-content .modal-body,
#container-result .modal-content .modal-body,
#container-form-participacio .modal-content .modal-body {
	padding: 0;
}
#container-form-participacio .modal-content .modal-body .header {
	border-bottom: 1px solid #51baec;
}
#container-form-participacio .modal-content .modal-body .header .result_text {
	font-weight: 100;
	font-size: 25px;
	display: flex;
	align-items: center;
}
#container-form-participacio
	.modal-content
	.modal-body
	.header
	.result_text
	.result {
	font-weight: 100;
	font-size: 25px;
	color: #0971a3;
	padding-left: 20px;
}
#container-form-participacio
	.modal-content
	.modal-body
	.header
	.result_text
	.result
	.num_respostes_correctes {
	color: #81c765;
}
#container-form-participacio
	.modal-content
	.modal-body
	.header
	.modal-header-text {
	font-weight: 100;
	font-size: 16px;
	color: #0971a3;
}
#container-form-participacio .modal-body .landing-question-success {
	font-weight: 100;
	font-size: 16px;
	color: #0971a3;
	padding: 20px 0px;
}
#container-form-participacio .modal-body .landing-question-success span {
	font-size: 25px;
}
#container-form-participacio .modal-body .input-col-2.left {
	margin-right: 4%;
}
#container-form-participacio .modal-body .input-col-2 {
	width: 50%;
}
#container-form-participacio .modal-body #form-messages,
#container-form-participacio .modal-body .landing-question-obligatori {
	font-size: 10px;
}
#container-form-participacio .modal-body input {
	background-color: #ededed;
	border: inherit;
	margin: 8px 0px;
	border-radius: 30.5px;
	height: 55px;
	width: 100%;
	padding-left: 38px;
	box-sizing: border-box;
}
@media screen and (max-width: 520px) {
	#container-form-participacio .modal-body input {
		font-size: 10px;
		padding-left: 10px;
	}
}
#container-form-participacio .modal-body input::placeholder {
	color: inherit;
}
#container-form-participacio .modal-body .input_left {
	margin-right: 3%;
}
#container-form-participacio .modal-body .name {
	width: 100%;
}
#container-form-participacio .modal-body .form-line {
	border-bottom: 1px solid #51baec;
	margin: 0px -15px 20px -15px;
}
#container-form-participacio .modal-body .form-button-center {
	text-align: center;
}
#container-form-participacio .modal-body .form-button-submit {
	border-radius: 30.5px;
	height: 40px;
	background-color: #026392;
	margin-bottom: 20px;
	margin-top: 30px;
	border: inherit;
	padding: 5px 30px;
}
#container-form-participacio .modal-body .form-check {
	font-size: 12px;
	line-height: 15px;
}
#container-form-participacio .modal-body .form-check .form-check-input {
	display: flex;
	align-items: center;
}
#container-form-participacio
	.modal-body
	.form-check
	.invalid
	#container-form-participacio
	.modal-body
	.form-check
	.form-check-label {
	font-weight: 100;
	padding-top: 11px;
	padding-left: 10px;
}
#container-form-participacio .modal-body .form-check input {
	height: 20px;
	width: 20px;
	margin-right: 10px;
}
#container-form-participacio
	.modal-body
	.form-check
	.form-check-input
	.form-check-label {
	margin: 0;
}
#container-form-participacio .modal-body .form-check .form-check-input em {
	margin-left: 5px;
}
#container-result {
	font-family: "Merriweather", serif;
}

#container-result .modal-content {
	padding: 10px 47px;
	text-align: center;
}
#container-result h2 {
	color: #09a324;
	font-size: 20px;
	font-weight: 100;
}
#container-result .subtitle {
	font-size: 20px;
	margin-top: 17px;
	margin-bottom: 17px;
}
#container-result .modal-button-header {
	padding: 33px 0px;
	border-bottom: 1px solid #026392;
	border-top: 1px solid #026392;
	margin-top: 40px;
	margin-bottom: 20px;
}
#container-result .modal-button-header .modal-button-classificacio {
	background-color: #026392;
	border-radius: 30.5px;
	max-width: 350px;
	padding: 5px 10px;
	margin: 0 auto;
}
#container-result .modal-button-header a {
	border: inherit;
	font-size: 20px;
	font-weight: 100;
	color: white;
	text-transform: uppercase;
	text-decoration: none;
}
#container-result .form-list p {
	font-weight: 100;
	font-size: 20px;
	padding: 0px 100px;
}
@media screen and (max-width: 768px) {
	#container-result .form-list p {
		padding: 0px;
	}
}
#container-result .form-list .games-categories li {
	padding-top: 5px;
	font-size: 16px;
	font-weight: 100;
	color: #cccccc;
	letter-spacing: 1px;
}
#container-result .form-list .games-categories li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 100;
	color: #cccccc;
	letter-spacing: 1px;
	text-transform: uppercase;
}
#container-result .form-list .games-categories li a:hover {
	color: #cccccc;
	cursor: default;
}
#container-result .form-list .games-categories li a.active {
	color: #51baec;
	cursor: pointer;
}
#container-result .black-social-icon img {
	height: 22px;
	padding-right: 40px;
}
@media screen and (min-width: 768px) {
	#container-base-legal .modal-dialog {
		min-width: 700px;
	}
}
#container-base-legal .modal-content {
	padding: 25px 47px;
	min-width: 700px;
}

@media (max-width: 768px) {
	#container-base-legal .modal-content {
		min-width: auto;
		width: 95%;
		max-width: 100%;
		padding: 20px 25px;
		margin: 10px;
	}
}

@media (max-width: 480px) {
	#container-base-legal .modal-content {
		padding: 15px 20px;
		margin: 5px;
	}
}
#container-base-legal .modal-content .title {
	text-align: center;
	line-height: inherit !important;
	margin-left: 0 !important;
}
#container-base-legal .modal-content .bases-legals-title {
	font-size: 20px;
	font-weight: bold;
	margin-left: 20px;
	line-height: 75px;
}
@media screen and (min-width: 768px) {
	#container-base-legal .modal-content .bases-legals-title {
		line-height: 40px;
	}
}
#container-base-legal .modal-content .bases-legals {
	padding-top: 30px;
}
#container-base-legal .modal-content .font-weight-bold {
	font-weight: bold;
}

@media screen and (min-width: 600px) {
	.footer-mobile {
		display: none;
	}
	.site-footer {
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.footer-mobile {
		display: block;
	}
	.site-footer {
		display: none;
	}
}

.modal-open {
	overflow: hidden;
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
}

.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}

.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0;
}

.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.modal-header .close {
	margin-top: -2px;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
}

.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
	margin-bottom: 0;
	margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
	margin-left: 0;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto;
	}

	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	.modal-sm {
		width: 300px;
	}
}

@media (min-width: 992px) {
	.modal-lg {
		width: 900px;
	}
}
