#loader {-moz-transition: opacity 0.2s linear;-webkit-transition: opacity 0.2s linear;align-items: center;background-color: #435ebe;display: flex;height: 100%;justify-content: center;padding: 10px;position: fixed;transition: opacity 0.2s linear;width: 100%;z-index: 9998;}.loader {animation: rotation 1s linear infinite;border: 3px solid;border-color: #FFF #FFF transparent transparent;border-radius: 50%;box-sizing: border-box;display: inline-block;height: 48px;position: relative;width: 48px;}.loader::after, .loader::before {animation: rotationBack 0.5s linear infinite;border: 3px solid;border-color: transparent transparent #FF3D00 #FF3D00;bottom: 0;border-radius: 50%;box-sizing: border-box;content: "";height: 40px;left: 0;margin: auto;position: absolute;right: 0;transform-origin: center center;top: 0;width: 40px;}.loader::before {animation: rotation 1.5s linear infinite;border-color: #FFF #FFF transparent transparent;height: 32px;width: 32px;}@keyframes rotation {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}@keyframes rotationBack {0% {transform: rotate(0deg);}100% {transform: rotate(-360deg);}}