.channel_join_box{
    position: relative;
    width: 100%;
    height: 100svh;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.channel_join_box .channels_box{
    position: relative;
    width: 400px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.channels_box .title{
    font-size: 20px;
    font-weight: bold;
    color: var(--ptt-title);
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    font-family: inter_bold, serif;
}

.channels_box .select_channel{
    position: relative;
    width: 100%;
    padding: 17px 10px;
    border-radius: 10px;
    background-color: var(--input-card);
    margin-bottom: 15px;
    cursor: pointer;
    border: none;
    outline: none;
}

.channels_box .select_channel .selected_channel{
    width: 100%;
    color: white;
    font-family: inter_regular;
    padding-left: 50px;
    text-align: left;
}

.channels_box .select_channel .icon{
    position: absolute;
    width: 34px;
    height: 36px;
    left: 12px;
    top: 11px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../images/channel/antenna.png);
    opacity: 0.7;
}

.channels_box .select_channel .icon_down {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 20px;
    top: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url('../../images/channel/down.png');
    opacity: 0.9;
}

.channels_box .channel_list{
    position: relative;
    width: 100%;
    height: max-content;
    background-color: var(--input-card);
    border-radius: 10px;
    padding: 5px 5px;
    margin-bottom: 15px;
    display: none;
}

.channels_box .channel_list .item{
    width: 100%;
    line-height: 40px;
    font-family: inter_regular, serif;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 19px;
}

.channels_box .channel_list .item:hover{
    background-color: var(--input-card);
}
.channels_box .channel_list .item:nth-child(1){
    border-radius: 5px 5px 0px 0px;
}
.channels_box .channel_list .item:last-child{
    border-radius: 0px 0px 5px 5px;
}
.channels_box .channel_list .item:not(:last-child){
    border-bottom: 1px solid #4d4d4d73;
}


.channels_box .input_card{
    position: relative;
    width: 100%;
    padding: 17px 10px;
    border-radius: 10px;
    background-color: var(--input-card);
    margin-bottom: 15px;
}


.channels_box .input_card input{
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    font-size: 15px;
    background-color: var(--input-bg);
    color: var(--ptt-title);
    font-family: inter_regular, serif;
}

.channels_box .input_card .icon{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 15px;
    top: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.7;
}

.channels_box .input_card .icon_user{
    background-image: url("../../images/index/username.png");
}


.channels_box .join_button{
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: rgb(134 175 136 / 59%);
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.channels_box .join_button:hover{
    background-color: rgba(102, 134, 104, 0.59);
}

.channels_box .join_button .caption{
    font-size: 20px;
    color: white;
    font-family: inter_regular, serif;
    height: 18px;
}

.channels_box .join_button .icon{
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("../../images/channel/join.png");
}

.test_mic_box{
    position: relative;
    width: 100%;
    padding: 7px 0px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 15px;
}

.test_mic_box .test_mic_btn{
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.test_mic_box .mic_open{
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../images/channel/micopen.png");
    background-color: rgb(255 255 255 / 16%) !important;
    border: 5px solid rgb(255 255 255 / 0%) !important;
}

.test_mic_box .mic_close{
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../images/channel/micclose.png");
    background-color: #dd7119bd;
    cursor: pointer;
}


.test_mic_box .test_caption{
    text-align: center;
    color: white;
    font-family: inter_regular, serif;
    font-size: 15px;
    letter-spacing: 2px;
}

.join_error_box{
    width: 100%;
    height: max-content;
    background-color: #ff5e5e4d;
    color: #f1bcbc;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 2px 10px;
    display: none;
}

.join_error_box .item{
    width: 100%;
    line-height: 30px;
    font-size: 12px;
    font-family: inter_regular, serif;
    /* background-color:red ; */
}