.container_grid.task h1 {
    width: 100%;
    text-align: left;
    margin-top: 1em;
}   

.task_descr {
    width: 100%;
    text-align: left;
}  



.task_choose_block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: 2em;
    gap: 0.5em;
}

.task_choose_single {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.65em 0;
    font-size: 0.75em;
    font-weight: 600;
    border-radius: 0.6em;
    border: solid #363434 0.05em;
    background: linear-gradient(90deg, #181818 25%, #181818 50%, #181818 75%);
    color: #838383;
}

.task_choose_single.choosen {
    background: linear-gradient(90deg, #FFC9AA 50%, #DFA381 100%);
    color: #181818;
}

.task_list_block {
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0.5em;
    width: 100%;
    margin-top: 1em;
}

.task_list_block.choosen {
    display: flex;
}

.task_list_single {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0.75em 1em;
    border-radius: 0.6em;
    background-color: #181818;
    border: solid #363434 0.05em;
    width: 100%;
    gap: 0.25em;
}

.task_list_single:active {
    background-color: #363434;
}

.task_list_single.orange {
    border: solid #DFA381 0.05em;
}

.task_list_single_text {
    color: #fff;
    text-align: left;
    font-weight: 500;
    font-size: 1em;
}

.task_list_single_values {
    display: flex;
    justify-content: end;
    align-items: center;
    box-sizing: border-box;
    gap: 0.5em;
}

.task_list_single_values_reward {
    display: flex;
    justify-content: end;
    align-items: center;
    box-sizing: border-box;
    gap: 0.15em;
    border-radius: 0.6em;
    background: linear-gradient(90deg, #FFC9AA 50%, #DFA381 100%);
    padding: 0.25em 0.5em;
}

.task_list_single_values_reward img {
    width: 0.65em;
}

.task_list_single_values_reward span {
    color: #181818;
    font-size: 0.65em;
    font-weight: 500;
}

.task_list_single_values_arrow {
    box-sizing: border-box;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 1.25em;
}

.task_list_single_values_arrow svg {
    width: 100%;
}









/* OVERLAY START */
.overflow_ads {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	visibility: hidden;
	/* фон затемнения */
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	position: fixed; /* фиксированное поцизионирование */
	cursor: default; /* тип курсара */
	-webkit-transition:  0.5s;
	-moz-transition:  0.5s;
	-ms-transition:  0.5s;
	-o-transition:  0.5s;
	transition: .3s ease-in-out;
	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    box-sizing: border-box;
    padding: 1em;
}

.popup_ads {
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	box-sizing: border-box;
    background-color: #181818;
    width: 100%;
    z-index: 2;
	/* margin-bottom: 2.8em; */
	transform: translate(0,45em);
	transition: .2s ease-in-out;
    overflow-y: scroll;
    overflow-x: hidden;
    border: solid #DFA381 0.05em;
    border-radius: 1em;
    padding: 1em;
    gap: 1em;
}


.popup_ads.show_up {
	transform: translate(0,0);
    -webkit-transform: translate(0,0); /** Safari & Chrome **/
    -o-transform: translate(0,0); /** Opera **/
    -moz-transform: translate(0,0); /** Firefox **/
	transition: .2s ease-in-out;
}

.popup_ads_cross {
    height: 2em;
    position: absolute;
    top: 0;
    right: 0.75em;
}
    
.popup_ads_cross svg{
    width: 2em;
}

.popup_ads img {
    width: 6em;
}

.popup_ads_title {
    text-align: center;
    color: #fff;
    font-size: 1.25em;
    font-weight: 600;
    width: 100%;
}

.popup_ads_title span {
    color: #F99963;
    font-size: 1em;
    text-align: left;
}

.popup_ads_desc {
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.popup_ads_count_block {
    margin-top: 2.25em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    gap: 1em;
    width: 100%;
}
/* OVERLAY END */

#ads_true {
    display: block;
}

#ads_false {
    display: none;
}