.d-flex{
	display: flex;
	flex-wrap: wrap;
}
.comparer_item{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-width: 24%;
	margin: 0 10px 30px;
}
.comparer_item span{
	font-size: 17px;
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}
.comparer_method{
	display: flex;
	flex-direction: column;
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
}
.comparer_item-container{
	margin-left: -10px;
	margin-right: -10px;
}
.comparer_settings{
	justify-content: space-between;
	display: flex;
	padding: 20px 0;
	align-items: flex-start;
}
@media (max-width:  600px){
	.comparer_settings{
		flex-direction: column-reverse;
	}
	.btn_list{
		padding: 0;
		margin-bottom: 30px;
	}
}
.btn_list{
	padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.add_textarea{
	border: none;
	background-color: transparent;
	color: black;
	padding: 0;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	color: #1FC3B0;
}
.add_textarea:hover{
	color: #1FC3B0;	
	background-color: white;
	text-decoration: underline;
}


.comparer_textarea_title{
	position: relative;
}
.textarea_close{
	position: absolute;
	right: 0;
	top: 0;
	max-height: 20px;
	max-width: 20px;
	padding: 0 0 7px 7px;
}
.textarea_close:hover{
	cursor: pointer;
}
.textarea_close svg{
	height: 100%;
	width: 100%;
}
.total_count{
	margin-bottom: 20px;
	display: block;
	font-weight: 600;
	font-size: 24px;
	line-height: 27px;
	display: flex;
	align-items: center;
	color: #1FC3B0;

}
.total_result{
	background: #FFFFFF;
	border: unset;
	width: 100%;
	min-height: 350px;
	max-height: 350px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	padding: 20px;
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	color: #191919;
	resize: none;
}
.result_comparer{
	position: relative;
	margin-bottom: 50px;
}
.comparer_description{
	padding-top: 10px;
    border-top: 3px solid #eeecec;
    margin-bottom: 50px;
}
.get_unique{
	margin-bottom: 60px;
}

/* fancy radio */
.comparer_method [type="radio"]:checked,
.comparer_method [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.comparer_method [type="radio"]:checked + label,
.comparer_method [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.comparer_method [type="radio"]:checked + label:before,
.comparer_method [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.comparer_method [type="radio"]:checked + label:after,
.comparer_method [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #1FC3B0;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.comparer_method [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.comparer_method [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* end fancy radio */
.result_comparer .copy-btn{
	top: 46px;
}