.phone-container {
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    min-height: 149px;
    border-radius: 10px;
    right: 0px;
    bottom: 86px;
    background-color: rgb(255, 255, 255);
    width: 302px;
    position: absolute;
    line-height: 23px;
    font-size: 14px;
    text-align: center;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    display: none;
    animation-duration: 0.2s;
    animation-timing-function: ease;
    animation-delay: 0.05s;
    transform: translateY(0px);
    animation-fill-mode: backwards;
    animation-name: fadeIn;
    display: none;
}

.show-container {
    display: block;
}

.hide-container {
    animation-name: fadeOut;
    animation-duration: 0.5s;
    display: block;
    animation-fill-mode: forwards;
}

.phone-header {
    background-color: rgb(236, 89, 35);
    display: flex;
    height: 50px;
    border-radius: 9px 9px 0px 0px;
    -webkit-box-align: center;
    align-items: center;
    text-align: left;
}

.phone_header_text {
    text-align: left;
    color: rgb(255, 255, 255);
}

.phone_img_div {
    width: 28px;
    height: 28px;
    margin: 0px 3px 0px 12px;
}