.loader-container{min-height:100vh;display:flex;justify-content:center;align-items:center}.loader-container .loader{width:48px;height:48px;border-radius:50%;display:inline-block;position:relative;border-color:#e0d0d0 #e0d0d0 transparent transparent;border-style:solid;border-width:3px;box-sizing:border-box;animation:rotation 1s linear infinite}.loader-container .loader:after,.loader-container .loader:before{content:"";position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;border-color:transparent transparent #4132cc #4132cc;border-style:solid;border-width:3px;width:40px;height:40px;border-radius:50%;box-sizing:border-box;animation:rotationBack .5s linear infinite;transform-origin:center center}.loader-container .loader:before{width:32px;height:32px;border-color:#e0d0d0 #e0d0d0 transparent transparent;animation:rotation 1.5s linear infinite}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotationBack{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}