#voiceMessegePopup {
    position: absolute;
    z-index: 10000000;
    min-width: 295px;
    height: fit-content;
    background-color: #FFFFFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    padding-top: 30px;
    padding-bottom: 10px;

    animation-name: fading;
    animation-duration: 0.6s;

    box-shadow: 0px 0px 12px 1px #888888;
}

@keyframes fading {
    0% {
        opacity: 0;
    }

    100% {
        visibility: 1;
    }
}

.progress-bar {
    background: #E6E6E6;
    width: 180px;
    height: 3px;
    display: flex;
    align-items: center;
    transition: 1s;
    direction: ltr;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    /* overflow: hidden; */
    /* transition: 0.2s; */
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #3BB5F2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.icons-section {
    /* width: 255px; */
    height: 69px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.pilot-icon {
    width: 54px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.airplane-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    /* margin: 5px;
    margin-bottom: 10px; */
    text-align: center;
}

.airplane-type {
    font-size: 18px;
    font-weight: 400;
    padding-right: 5px;
    margin: 0;
}

.airplane-des {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.audio-progress-section {
    width: 255px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 6.4px;

    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.audio-section {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-pause-icon {
    -webkit-user-drag: none;
    cursor: pointer;
}

.seperetor {
    width: 100%;
    background: #E7E7E7;
    height: 1px;
    transition: none;
}

.text-section {
    width: 255px;
    /* overflow: scroll; */
}

.audio-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    margin: 0;
    text-align: start;
}

.exit-icon {
    position: absolute;
    top: 18px;
    left: 20px;
    width: 12px;
    cursor: pointer;
}

/*listen-to-voice-messege-button*/

.listen-to-voice-messege-button {
    -webkit-user-select: none;

    position: absolute;
    height: 56px;
    width: 200px;
    background-color: #1388B7;
    border-radius: 30px;
    z-index: 100000;
    bottom: 18px;
    left: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: 0.3s;
}
#listen-to-voice-messege-button {
    -webkit-user-select: none;

    position: absolute;
    height: 56px;
    width: 200px;
    background-color: #1388B7;
    border-radius: 30px;
    z-index: 100000;
    bottom: 18px;
    left: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: 0.3s;
}

.button-text {
    color: white;
    font-size: 14px;
    margin: 0;
    margin-left: 15px;
    line-break: auto;
}