
/*----------------------poll vote create page---------------------------------*/
.poll_container {
	display: flex;
	flex-direction: column;
	/*width: 80%;*/
    margin: auto;
	padding: 25px;
}
.poll_create_header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #ea650d;
	color: white;
	padding: 10px;
}
.poll_close {
	margin: 0px 10px 0px 0px;
	font-size: 17px;
	cursor: pointer;
}
.poll_title {
	font-size: 17px;
}
.poll_question {
	display: flex;
    flex-direction: column;
    margin: 15px 0px;
}
.poll_question_title {
	font-size: 17px;
	color: #ea650d;
}
.poll_answers {
	display: flex;
    flex-direction: column;
    margin: 10px 0px;
}
.poll_answers_title {
	font-size: 17px;
	color: #ea650d;
}
.poll_multiple_answers {
	display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}
.poll_text {
	font-size: 17px;
	color: #ea650d;
}
.poll_create_btn {
	margin: 10px 0px;
}

/*----------------------------poll vote page---------------------------------*/
.poll_vote_container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 80%;
	margin: auto;
	padding: 10px 0px 30px 0px;
}
.poll_vote_container .collapsible {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 0px !important;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.poll_vote_container .collapsible-header {
	padding-left: 0px !important;
}
.poll_vote_container .collapsible-body {
	padding: 0px !important;
	border-bottom: 0px !important;
}
.poll_vote_question {
	display: flex;
	flex-direction: column;
}
.poll_vote_question_text {
	font-size: 17px;
}
.poll_vote_question_subtext {
    font-size: 10px;
}
.poll_vote_answers {
    display: flex;
	flex-direction: column;
}
.poll_vote_answer {
    display: flex;
	flex-direction: column;
}
.poll_vote_answer_line {
    display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.poll_vote_answer_line label {
	display: block;
	height: 20px;
}
.poll_vote_answer_checkbox {
    width: 25px;
}
.poll_vote_answer_checkbox .filled-in:checked + span:not(.lever):after {
	border-radius: 50%;
	background-color: #26a69a !important;
	border: 2px solid #26a69a !important;
}
.poll_vote_answer_checkbox .filled-in:not(:checked) + span:not(.lever):after {
	border-radius: 50%;
	border: 2px solid #26a69a !important;
}
.poll_vote_answer_text {
    width: 80%;
	padding-left: 2px;
}
.poll_vote_answer_votes {
    width: 20%;
	text-align: right;
}
.poll_vote_answer_progressbar {
    display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.poll_vote_answer_progressbar .progress {
	width: calc(100% - 25px) !important;
    height: 7px;
}
.determinate {

}
.poll_view_votes_btn {

}

/*----------------------------poll view votes page----------------------------*/
.poll_view_container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 80%;
	margin: auto;
}
.poll_view_container .collapsible {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 0px;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.poll_view_container .collapsible .collapsible-body {
	border-bottom: none !important;
	max-height: 400px; /* Set a max height */
    overflow-y: auto; /* Enable vertical scrolling */
}
.poll_view_container .collapsible .collapsible-header {
	border-bottom: none !important;
}
.poll_view_container ul li {
	border: 1px solid #ddd !important;
}
.poll_view_container ul li.active .collapsible-header {
	border-bottom: 1px solid #ddd !important;
}

.poll_view_header {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.poll_view_close {
	margin: 0px 10px 0px 0px;
	font-size: 17px;
	cursor: pointer;
}

.poll_view_title {
	font-size: 17px;
}

.poll_view_question {
	font-size: 17px;
}

.poll_view_answer_container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.poll_view_answer_header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.poll_view_answer_title {
	font-size: 17px;
}

.poll_view_answer_votes {
	font-size: 12px;
}

.poll_view_answer {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	padding: 10px 0px 10px 0px;
}

.poll_view_answer_img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.poll_view_answer_img img {
	border-radius: 50%;
}

.poll_view_answer_text {
	display: flex;
	flex-direction: column;
}

.poll_view_answer_name {
	font-size: 15px;
}

.poll_view_answer_time {
	font-size: 10px;
	color: grey;
}
