.popup_text{
display: flex;
flex-direction: column;
.select{
z-index: 10;
cursor: pointer;
margin-top: 30px;
.select_body{
max-width: 400px;
.select_title{
border: 1px solid #C6CCD5;
color: #85898C;
padding: 10px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: space-between;
i{
color: #C6CCD5;
}
&.active + .select_content{
.item{
opacity: 1;
visibility: visible;
}
}
&.active{
border-bottom: 1px dashed #C6CCD5;
}
&.active{
.popup_text{
border: 2px solid red;
}
}
}
.select_content{
.item{
opacity: 0;
visibility: hidden;
padding-left: 20px;
padding-top: 10px;
transition: all 0.5s;
background: white;
margin-left: 10px;
margin-top: 10px;
.item_title{
display: flex;
p{
margin-left: 7px;
color: #8D99AB;
font-size: 17px;
}
}
.item_content{
.item{
display: flex;
margin-top: 15px;
p{
margin-left: 7px;
}
}
}
}
}
Я хочу через .select_title с классом active, обратится к классу .popup_text который выше .select_title, как я могу это сделать?