@import url('base.css');

.inbox-cont {
	width: 100%;
    display: flex;
	gap: 10px;
	margin: 0 auto;
	justify-content: space-between;
}

.index-card {
    width: 20%;
	height: fit-content;
	margin-left: 10px;

}

.user-input-forms {
    width: 80%;
}

.actual-forms {
    margin-top: 10px;
	margin-right: 10px;
}

.inbox-tabs {
    display: none;
	padding: 5px;
}

.ask-butts button {
    font-size: 14px;
}

.comment-input.common-background {
    border: none;
	background: none;
}

.contact-block {
	background: var(--bg0);
	margin-top: 10px;
	margin-left: 5px;
	border: 2px var(--bg0h) solid;
	border-left: 5px solid var(--light-yellow);
	outline: 1px var(--bg0) solid;	
	border-radius: 5px;

}

.options-div {
	padding: 10px;
    display: flex;
	justify-content: space-evenly;
}

#queue-password {
    margin-top: 0;
}

.all-files-container, .full-width-input {
    margin-bottom: 5px;
}

.req-form {
    width: 80%;
	margin: 0 auto;
}

.pond-button {
    display: flex;
	justify-content: right;
}

.button-active {
    background: var(--dark-aqua);
}

.tiers {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align:center;
    width: 100%;
}

.tier {
    width: 90%;
    padding: 2%;
}

.tier input {
    display: none;
}

.tier img {
	width: 100%;
	height: 100%;	
    border-radius: 10px;
}

.tierimg {
    position: relative;
	border: 1px solid var(--bg);
	background: var(--bg);
    border-radius: 10px;
	overflow: hidden;
	padding: 5px;
	padding-bottom: 1px;
}

[type=radio] + .tierimg {
    cursor: pointer;
}

[type=radio]:checked +.tierimg {
    border-color: var(--light-aqua);
	background: var(--light-aqua);
}

.tierimg-top, .tierimg-bottom {
    position: absolute;
	font-family: "friendly-fire";
	font-size: 48px;
	-webkit-text-stroke: 1px var(--bg0h);
	text-stroke: 1px var(--bg0h);
}

.tierimg-top {
    top: 2%;
	left: 5%;
}

.tierimg-bottom {
    bottom: 5%;
	right: 5%;
}

label {
    letter-spacing: 1px;
    padding: 10px;
    max-width: 100%;
}

.faq {
	width: 75%;
	margin: 0 auto;
	background-color: var(--fg);
	padding: 20px;
	border: 5px solid black;
	border-radius: 10px;
}

.faq-duo {
	background-color: var(--bg0h);
	margin-bottom: 10px;
	border: 1px solid var(--bg0);
	outline: 1px solid var(--bg0h);
	cursor: pointer;
}

.adv-button {
    padding: 10px;
}

.adv-button h3 {
    margin: 0;
}

.answer {
	height: auto;
	overflow: hidden;
	transition: height 0.5s ease;
	background: var(--bg);
}

.hide {
	height: auto;
}

.ul-faq {
	margin-top: -30px;
	padding-bottom: 2%;
}

.li-faq {
	padding: 0;
	margin: 20px;
	margin-bottom: 0px;
}


@media (max-width: 1000px) {
    .inbox-cont {
		display: block;
	}

	.index-card, .user-input-forms, .actual-forms {
		width: 95%;
		margin: 0 auto;
		margin-top: 10px;
	}

	.comment-functions {
		display: flex;
		width: 95%;
		margin: 0 auto;
	}

    .comment-options {
		gap: 0;
		flex-wrap:wrap;
	}

	.comment-options button {
		font-size: 10px;
		width: fit-content;
	}

	.comment-options input {
		width: 80px;
		margin: 0;
	}

	.markdown-options {
		display: none;
	}

	.comment-input-header {
		display: flex;
		justify-content: right;
	}

	.contact-block {
		margin: 0 auto;
	}

	.tierimg-top, .tierimg-bottom {
		font-size: 32px;
	}
}
