.my-extension {
    height: 100%;
    max-height: 455px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}

.my-extension .calls-info {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-around;
}

.my-extension .calls-info .current-calls {
    border-bottom: 1px dashed #cacaca;
    padding: 10px 0;
    max-height: 80px;
    overflow: hidden;
}

.my-extension .calls-info .current-calls > .call-item {
    height: 24px;
    cursor: pointer;
}

.my-extension .calls-info .current-calls > .call-item.selected {
    border: 1px solid #81D4FA;
    font-weight: bold;
}

.my-extension .call-actions {
    text-align: center;
}

.my-extension .calls-info .ext-data .icon {
    margin-right: 5px;
}

.my-extension .call-actions {
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
}

.my-extension .call-actions {
    margin-top: 10px;
}

/*.my-extension .calls-info .waiting-calls .label-call-item[data-status='ringing'] {
    background: #777;
}

.my-extension .calls-info .waiting-calls .label-call-item[data-status='on-call'] {
    background: #5cb85c;
}

.my-extension .calls-info .waiting-calls .label-call-item[data-status='on-hold'] {
    background: #f0ad4e;
}*/

.my-extension .call-actions .action-btn .action-btn-icon {
    font-size: 16px;
}

.my-extension .phone-dialer .screen {
    height: 50px;
    border-bottom: 1px solid #cacaca;
    text-align: right;
    font-size: 26px;
    font-weight: 800;
    position: relative;
}

.my-extension .phone-dialer .screen .screen-dialer {
    width: 260px;
    border: none;
    text-align: right;
    padding: 0 40px;
}

.my-extension .phone-dialer .screen .dialer-action-btn {
    position: absolute;
    color: #757575;
    font-size: 20px;
    bottom: 15px;
    text-align: center;
    padding: 5px 8px;
}

.my-extension .phone-dialer .screen .screen-del-btn {
    right: 0;
}

.my-extension .phone-dialer .screen .dialer-action-btn:hover {
    background-color: #ECEFF1;
}

.my-extension .phone-dialer .dialer {
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 10px;
}

.my-extension .phone-dialer .dialer > span{
    width: 33%;
    padding: 5px 0;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}

.my-extension .phone-dialer .dialer > span:hover,
.my-extension .phone-dialer .screen .history-action-btn:hover{
    background-color: #ECEFF1;
}

.my-extension .phone-dialer .call-btn {
    text-align: center;
    margin: 10px auto;
    background-color: #4CAF50;
}

.my-extension .phone-dialer .screen .history-action-btn{
    position: absolute;
    color: #757575;
    font-size: 18px;
    bottom: 15px;
    text-align: center;
    padding: 7px 5px;
    left: 18px;
}