.customer__order{
    position: fixed;
    display: flex;
    align-items: center;
    left: 25px;
    bottom: -100px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    padding: 10px 15px;
    border-radius: 5px;
    gap: 10px;
    transition: all .4s ease-in-out;
    opacity: 0;
}
.customer__order.pc.active{
    bottom: 25px;
    opacity: 1;
}
.customer__order::before{
    content: '';
    position: absolute;
    left: 15%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    z-index: 2;
}
.customer__order::after{
    content: '';
    position: absolute;
    left: 15%;
    bottom: -10.5px;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    z-index: 1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #c9c9c9;
}
.customer__order .customer__header ion-icon {
    font-size: 1.6rem;
    color: #1a73e8;
}
.customer__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.customer__content--title{
    color: #222;
    font-size: 1rem;
}
.customer__content--description{
    color: #555;
    font-size: .8rem;
}
.customer__content--description.pc{
    width: 100%;
}
@media screen and (max-width: 800px){
    .customer__order{
        display: none;
    }
    .customer__order.mobile {
        display: flex;
        position: relative;
        width: 10%;
        opacity: 1;
        right: 0;
        left: unset;
        top: 0px;
        flex-direction: row-reverse;
        box-shadow: none;
        padding: 0;
        z-index: 1;
    }
    .customer__order.mobile.active .customer__header {
       opacity: 1;
    }
    .customer__order.mobile .customer__header {
        position: relative;
        height: 50px;
        width: 55px;
        display:flex;
        align-items: center;
        justify-content: center;
        margin-right: 0px;
        background: #fff;
        z-index: 3;
        transition: all .3s ease;
        opacity: 0;
    }
    .customer__order.mobile::before,
    .customer__order.mobile::after{
        display: none;
    }
    .header__title {
        padding-bottom: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0 !important;
        justify-content: space-between;
    }
    .customer__order.mobile.active .customer__content{
        right: 50px;
    }
    .customer__content--description{
        font-size: .95rem;
    }
    .customer__order.mobile .customer__content{
        line-height: 1.2;
        position: absolute;
        padding: 5px 10px;
        border-radius: 10px;
        bottom: 0;
        right: -300px;
        min-width: 200px;
        align-items: end;
        z-index: 1;
        transition: right .3s ease-in-out;
        padding-top: 10px;
        background: #fff;
    }

    .customer__order.mobile.active .bell-border{
        animation-name: bord-pop;
        box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;
    }
    .customer__order.mobile.active .btn-bell {
        animation-name: bell-ring;
    }
    .bell, .bell-border, .btn-bell {
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    
    .bell {
        height: 30px; 
        margin-top: 5px;
        width: 30px;

        background: #1a73e8;

        animation-duration: 2s;
    
        animation-iteration-count: infinite;
    
    }
    
    .bell-border {
    
        height: 23px; 
    
        width: 23px;
    
        border: 1px solid #1a73e8!important;
        animation-duration: 2s;
    
        animation-iteration-count: infinite;
    
    }
    
    .btn-bell {
    
        color: white;
    
        font-size: 16px;
    
        animation-duration: 2s;
    
        animation-iteration-count: infinite;
    
    }
    
    @keyframes bord-pop {
    
        0% {
    
            transform: translate(-50%, -50%);
    
        }
    
        50% {
    
            transform: translate(-50%, -50%) scale(1.9);
    
            opacity: 0.1;
    
        }
    
        100% {
    
            transform: translate(-50%, -50%) scale(1.9);
    
            opacity: 0;
    
        }
    
    }

    
    @keyframes bell-ring {
    
        0% {
    
            transform: translate(-50%, -50%);
    
        }
    
        5%, 15% {
    
            transform: translate(-50%, -50%) rotate(25deg);
    
        }
    
        10%, 20% {
    
            transform: translate(-50%, -50%) rotate(-25deg);
    
        }
    
        25%  {
    
            transform: translate(-50%, -50%) rotate(0deg);
    
        }
    
        100% {
    
            transform: translate(-50%, -50%) rotate(0deg);
    
        }
    
    }
    
}

@media screen and (max-width: 500px){
    .customer__content--title{
        color: #222;
        font-size: .9rem;
    }
    .customer__content--description{
        color: #555;
        font-size: .8rem;
    }
    
}