.loaderCntMain {height:100vh;background-color: rgb(255, 255, 255);padding: 0rem 0rem;}
.loaderCnt {display: grid;grid-template-columns: 280px 1fr;height: 100%;}
.leftDiv, .large, .small, .rightUpper, .rightLower {animation: sliderAnimation .7s linear infinite alternate;}
.rightDiv {background-color: white;display: grid;grid-template-rows: 141px 1fr;}
.rightHeader {display: flex;justify-content: right;align-items: center;}
.large {padding: 1.5rem 6rem;margin-right: 1rem;}
.small {padding: 1.5rem; margin-right: 1rem;}
.large, .small {border-radius: .25rem;}
.rightMain {width: 100%;display: grid;grid-template-rows: 195px 1fr;}
.rightUpper, .rightLower {border-radius: .5rem;margin-left: 1rem;margin-right: 1rem;}
.rightUpper {margin-bottom: 1rem;}

@keyframes sliderAnimation {
    0%{
        background-color: rgb(224, 224, 224);
    }
    100%{
        background-color: rgb(248, 248, 248);
    }
}

@media only screen and (max-width: 600px) {
    .loaderCnt {display: block;}
    .leftDiv {height: 55px;}
    .rightHeader {display: grid;grid-template-columns: 1fr 1fr;align-items: normal;gap: 10px;padding: 10px;}
    .large {margin: 0;}
    .small {display: none;}
    .rightMain {display: block;}
    .rightUpper, .rightLower {margin: 0 0.5rem 0.5rem 0.5rem;}
    .rightUpper {height: 60px;}
    .rightLower {height: calc(100vh - 275px);}
}