@import "https://use.fontawesome.com/releases/v5.15.1/css/all.css";
*{
    
    font-family: Arial,Helvetica,sans-serif;
}
.popup {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: Arial,Helvetica,sans-serif;
    position: fixed;
    bottom: 60px;
    left: -2px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, .3);
    overflow: hidden;
    transition: .6s ease;
    z-index: 1000; 
    display: none; 
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #fff;

}

.popup > .container > .top {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    width: 100%;
    min-width: 220px;
    min-height: 100%;
}

.popup  > .img{
    min-width: 40px;
    min-height: 110px;
    color: black;
    font-size: 15px;
    padding-left: 10px;
}
.popup > .img > .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 40px;
    outline: none;
    color: black;
    border: none;
    background-color: #fff;
    font-size: 15px;
    margin: none;
}
.popup > .img > #mute:hover{
    color: gray;
    transition-duration: 0.5s;
} 

.popup > .container > .top > .space{
    width: 100%;
    min-height: 100%;
}

.popup > .container > .top > .space > .span{
    width: 100%;
    margin-top:5px;
    text-align:center;
}

.popup > .container > .top > .space > .choseDevice{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    height: 60px;
    max-width: 220px;
}
.popup > .container > .top > .space > .profileContent{

    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 60px;

}

.popup > .container > .top > .space > .profileContent > .profile{
    width: 100%;
    padding-top: 5px;
}
.popup > .container > .top > .space > .profileContent > .profile > .name{
    height: 40px;
    font-size: 17px;
    padding-right: 30px;
    text-align: right;

}
.popup > .container > .top > .space > .profileContent > .profile > .time{
    text-align:right;
    font-size: 15px;
    padding-right: 30px;
}
.popup > .container > .top > .space > .profileContent > .profile > .extension{
    height: 20px;
    font-size: 10px;
    padding-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    color: gray;
}
.popup > .container > .top > .space > .profileContent >.profileIcon{
    width: 80px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 30px;
    color: purple;
}

.popup > .container > .top > .space > .option{
    display: flex;
    flex-direction: row-reverse;
    margin-right: 30px;
}

.popup > .container > .top > .space > .option > .button{
    height: 50px; 
    overflow: hidden;
    width: 50px;
    padding: 0px 10px;
    border: none;
    background-color: #fff;
    color: gray;
    outline: none;
    font-size: 20px;
    border-radius: 50px;
}
.popup > .container > .top > .space > .option > .button:hover{
    color: black;
    transition-duration: 1s;
}
.popup > .container > .top > .space > .option > .button > img{
    width: 20px;
    height: 20px;
    margin-top:2px;
}
.popup > .container > .top > .space > .option.hangup{
    color: red;
}
.popup > .container > .top > .space > .option> .button.hangup:hover{
    color: darkred;
}
.popup > .container > .top > .space > .option > .button.answer{
    color: green;
}
.popup > .container > .top > .space > .option> .button.answer:hover{
    color: darkgreen;
}

.dropdown {
    display: block;
    position: fixed;
    background-color: #fff;
    min-width: 190px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1500;
    margin-left: 6rem;
    margin-top: 0.3rem;/* 
    min-height: 140px; */
    bottom: 160px;
}
.dropdown > .title{
    font-size: 14px;
}
.dropdown > .list {
    width: 190px;
    height: 110px;
    overflow:Auto;
}
.dropdown > .list > button {
    min-width: 100%;
    background-color: #fff;
    text-align: left;
    border: none;
    border-bottom: 0.5px solid gray;
    height: 25px;
    font-size: 12px;
}
.dropdown > .list > .input > button {
    border: none;
    color: gray;
    background-color: #fff;
}
.dropdown > .list > .input > button:hover{
    color: black;
    transition-duration: 0.5s;
}
.dropdown > .list > button:hover {
    background-color: #eee;
}
