@media (max-width: 768px) {
    .message-show{
        margin-bottom: 50px !important;
    }
}
.progress-container {
	margin: 17px;
	display: block;
	width: 100%;
	height: 15px;
	background: #e0e0e0;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
	/*display: inline-block;*/
	vertical-align: middle;
	margin-left: 0px;
}

.message-show {
    display: inline-block;
    max-width: 100%;
    padding: 10px 14px;
    margin: 10px 0;
    
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #333;
    
    border-radius: 18px;
    
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    font-size: 14px;
    line-height: 1.4;
    
    transition: all 0.3s ease;
}


.progress-bar {
    height: 100%;
    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #4caf50 0%,
        #66bb6a 25%,
        #81c784 50%,
        #66bb6a 75%,
        #4caf50 100%
    );

    background-size: 200% 100%;
    animation: loading 2s linear infinite;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;
    overflow: hidden;

    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
    transition: width 0.6s ease;
}


.progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );

    animation: shine 2s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 120%; }
}


.progress-text {
    font-size: 11px;
    color: #fff;
    padding-right: 10px;
    font-weight: 600;
    z-index: 1;
}

.progress-container {
    background: rgba(0,0,0,0.08);
    border-radius: 50px;
    overflow: hidden;
}

.custom-icon {
    height: 33px;
    width: 40px;
    object-fit: contain;
    display: inline-block;
    vertical-align: -0.125em;
}

@media (max-width: 768px) {
    .message-show {
        max-width: 95%;
        width: 100%;
    }
}