#cosmosfarm-survey {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-top:2px solid var(--ast-global-color-0);
}

#cosmosfarm-survey .explanation {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 2rem;
	padding: 1rem 2rem;
}

#cosmosfarm-survey .explanation .number {}

#cosmosfarm-survey .survey {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #ddd;
}

#cosmosfarm-survey .survey .head {
	display: grid;
	grid-template-columns: 70% 30%;
	background-color:var(--ast-global-color-5);
}

#cosmosfarm-survey .survey .head .title {
	border: 1px solid #ddd;
	padding: 0.25rem;
	border-bottom: 0;
	border-right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color:var(--ast-global-color-1);
	font-weight:900;
}

#cosmosfarm-survey .survey .head .answer-list {
	text-align: center;
	border: 1px solid #ddd;
	border-bottom: 0;
	border-right: 0;
	display: flex;
	justify-content: space-around;
}

#cosmosfarm-survey .survey .head .answer-list span {
	padding:15px;
	display: flex;
	width: 100%;
	border-right: 1px solid #ddd;
	justify-content: center;
	color:var(--ast-global-color-1);
	font-weight:900;
}

#cosmosfarm-survey .survey .body {
	display: grid;
	grid-template-columns: 70% 30%;
}

#cosmosfarm-survey .survey .body .content {
	text-align: left;
	border: 1px solid #ddd;
	padding:15px;
	border-bottom: 0;
	border-right: 0;
	display: flex;
	gap: 1rem;
}

#cosmosfarm-survey .survey .body .content .number {
	border:none;
	font-weight:900;
	width:30px;
	height:30px;
	padding:0;
	display:inline-block;
	text-align:center;
	background-color:var(--ast-global-color-0);
	border-radius:15px; 
	color:var(--ast-global-color-4);
	line-height:30px;
}

#cosmosfarm-survey .survey .body .content .text {
	line-height:30px;
	color:var(--ast-global-color-1);
	font-weight:900;
}

#cosmosfarm-survey .survey .body .answers {
	text-align: center;
	border: 1px solid #ddd;
	border-bottom: 0;
	border-right: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	line-height: 30px;
}

#cosmosfarm-survey .survey .body .answers label {
	padding:15px;
	cursor: pointer;
	width: 100%;
	border-right: 1px solid #ddd;
}

#cosmosfarm-survey .survey .body .answers input {
	position: relative;
	top: 3px;
	cursor: pointer;
}

#cosmosfarm-survey .buttons {
	display: flex;
	justify-content: space-between;
}

#cosmosfarm-survey .buttons svg{
	width: 12px;
	height: 12px;
    margin-right: 10px;
}

#cosmosfarm-survey .buttons .get-result {
	font-weight: 900;
    fill: var(--e-global-color-astglobalcolor0 );
    color: var(--e-global-color-astglobalcolor0 );
    background-color: var(--e-global-color-astglobalcolor4 );
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: var(--e-global-color-astglobalcolor0 );
	padding: 15px 30px 15px 30px;
}

#cosmosfarm-survey .buttons .reset {
	border:2px solid var(--e-global-color-astglobalcolor6 );
	padding: 15px 30px 15px 30px;
	color: var(--e-global-color-astglobalcolor3 );
	font-weight: 900;
}
#cosmosfarm-survey .buttons .reset svg{

}

#cosmosfarm-survey .result {
	display: flex;
	padding: 2rem;
	justify-content: center;
	font-weight: 900;
    color: var(--ast-global-color-4);
    border: 2px solid var(--ast-global-color-0);
    font-size: 20px;
    background: var(--ast-global-color-0);
    border-radius: 2px;
    margin-top: 30px;
}
@media only screen and (max-width: 767px){
	#cosmosfarm-survey .survey .body .content{
		gap: 10px;
		padding:5px;
	}
	#cosmosfarm-survey .survey .head .answer-list span,
	#cosmosfarm-survey .survey .body .answers label{
		padding: 5px;
		align-items: center;
		display: flex;
		justify-content: center;
	}
	#cosmosfarm-survey .survey .head .title{font-size:12px;}
	#cosmosfarm-survey .survey .head .answer-list{}
	#cosmosfarm-survey .survey .head,
	#cosmosfarm-survey .survey .body{grid-template-columns: 60% 40%;}
	#cosmosfarm-survey .survey .body .answers{align-items: initial;}
	#cosmosfarm-survey .survey .body .content .number{
		width: 16px;
		height: 16px;
		min-width: 16px;
		font-size:10px;
		line-height:16px;}
	#cosmosfarm-survey .survey .body .content .text {
		font-size:12px;
		line-height:1.5em;
	}
	#cosmosfarm-survey .survey .body .answers input{
		top: 0px;
	}
	#cosmosfarm-survey .buttons .get-result,
	#cosmosfarm-survey .buttons .reset{
		padding: 10px 20px;
		font-size: 12px;
	}
}
