.success-message{
    position: fixed;
    bottom: 20px;
    right: 19px;
    transform: translateX(115%);
    background-color: rgba(77, 189, 116,0.5);
    padding: 20px 25px;
    border-radius: 5px;
    font-weight: 600;
    animation: slideOut 0.5s ease forwards;
}

.success-message.active{
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn{
    from{
        transform: translateX(115%);
    }
    to{
        transform: translateX(0);
    }
}
@keyframes slideOut{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(115%);
    }
}

#accordion .card-header:after{
    display: none;
}
.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.border-bottom{
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.flex-between.p-2:first-child{
    padding-top: 0 !important;
}
.flex-between.p-2:last-child{
    padding-bottom: 0 !important;
    border-bottom: 0;
}
.related-products-div.fixed-height{
    max-height: 350px;
}
.filter-container, 
.parameter-list-wrapper,
.filter-crop-card-wrapper,
.modal-filter-list{
    display: none;
}
.modal-content{
    margin-top: 100px;
}
.inline-editing-header{
    height: 30px;
    display: flex;
    align-items: center;
}
.inline-editing-header input{
    width: 200px;
}
.inline-editing-header .form-control{
    height: 30px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-right: 10px;
}
.save-changes-btn{
    padding: 5px 10px;
}
.modal-header{
    border-bottom: 1px solid #cfd8dc;
    background-color: #eceff1;
}
.error-text{
    color: #dc3545;
    font-size: 12px;
}
.error-list-item{
    list-style: none;
}