﻿.StoreDetailsAreaLight {
    background-image: linear-gradient(142deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.2) 100%), url('/Images/ReportPageBackgroundImage.png');
    background-size: cover, cover;
    background-position: center, center;
    border-radius: 0.75em !important;
}

.StoreDetailsAreaDark {
    background-image: linear-gradient(142deg, rgba(46, 46, 46, 0.9) 50%, rgba(46, 46, 46, 0.2) 100%), url('/Images/ReportPageBackgroundImage.png');
    background-size: cover, cover;
    background-position: center, center;
    border-radius: 0.75em !important;
}

.slide-in-right {
    animation: slide-in-right .5s cubic-bezier(.25,.46,.45,.94) both
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

