

.order-plash {
    position: fixed;
    right: -8rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
	background: rgb(50, 49, 217);
	border-radius: 1rem;
	max-width: 300px;
	padding: 1.3rem;
	opacity: 0;
	z-index: 999;
	pointer-events: none;
	transition: .3s ease-in-out;
}

.order-plash.shown {
	right: 2rem;
	opacity: 1;
}

.order-plash__wrapper { 
    display: flex;
    align-items: center;
  	width: 48px
}

.order-plash p {
    font-size: 14px;
    line-height: 1.4 !important;
    color: #ffffff;
}

.order-plash p:last-child {
	margin: 0;
}

@media (max-width: 960px) {
	.order-plash {
		bottom: 0;
        width: 100%;
		padding: 1rem;
	}
    
    .order-plash p {
        font-size: 12px;
        line-height: 1.2 !important;
    }
}
