.selector:has( .select[show="true"]) {    
    height: 60vh!important;
}

.selector
{
    transition: all 0.5s ease;
}

.select {
    margin-top: 27px;
    position: relative;
    user-select: none;
}

.select .header-selector {
    cursor: pointer;
    display: flex;
    padding: 38px 50px;
    /* width: 438px; */
    gap: 44px;
    height: 104px;
  
    border: none;
    border-radius: 40px;
    /* box-shadow: 6.61111px 8.81481px 19.0988px 2.93827px rgba(229, 96, 131, 0.1); */
    background: #E56083;
  
    color: white;
    
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;

    align-items: center;;
    justify-content: space-between;
    box-sizing: border-box;
    
    transition: box-shadow 0.5s;
}
.select .header-selector:hover{
    box-shadow: 6px 8px 5px rgba(229, 96, 131, 0.3);
}
.select .header-selector img {
    width: 31px;
    height: 28px;
    transition: all 0.5s;
}
.selector:has(.select[show="true"]) img{
    transform: rotate3d(-150, 150, 0, 180deg);
}

.select ul {
    display: flex;
    padding: 45px 0 !important;
    width: 100%;
    max-height: 331px;
    position: absolute;
    top: calc(100% + 27px);
    left: 0;
    border-radius: 45px;
    flex-direction: column;
    box-shadow: 6px 8px 5px rgba(246, 244, 255, 0.3);
    background: #F6F4FF;
    box-sizing: border-box;
    overflow-x: hidden;
}

.select ul li {
    cursor: pointer;
    padding: 12px 64px;
    text-align: left;
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;

    color: #F28181;
    box-sizing: border-box;
    transition: .2s;
}
.select ul li:last-child {
    margin: 0;
}
.select ul li:hover {
    color: #fff;
    background-color: #E56083;
}

option {
    width: 378px;
    height: 331px;
  
    border-radius: 100px;
    box-shadow: 6.61111px 8.81481px 19.0988px 2.93827px rgba(229, 96, 131, 0.1);
}

.select ul, li {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}