/* --------loader modal css--------- */ .loader { /* background-color: #b90e0a; */ border: 16px solid #efefef; /* Light grey */ border-top: 16px solid #E18874; /* Blue */ border-radius: 50%; width: 20px; height: 20px; margin: auto; margin-bottom: 10px; animation: spin .7s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }