@font-face { font-family: "Inter"; src: url("inter.ttf") format("truetype"); } @font-face { font-family: "Onest"; src: url("onest.ttf") format("truetype"); } .inter { font-family: "Inter", sans-serif !important; } .onest { font-family: "Onest", sans-serif !important; } @tailwind base; @tailwind components; @tailwind utilities; .ant-select-selection-search-input { border: none !important; box-shadow: none !important; } /* Hide scrollbar for Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar { display: none; } /* Hide scrollbar for IE, Edge and Firefox */ .no-scrollbar { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } @keyframes gradient-border { 0% { border-image-source: linear-gradient( 45deg, #f79533, #f37055, #ef4e7b, #a166ab ); } 50% { border-image-source: linear-gradient(45deg, #ef4e7b, #a166ab); } 74% { border-image-source: linear-gradient(60deg, #5073b8, #1098ad); } 100% { border-image-source: linear-gradient( 45deg, #f79533, #f37055, #ef4e7b, #a166ab ); } } .animated-gradient-border { border: 4px solid; border-image-slice: 1; animation: gradient-border 3s infinite; border-radius: 10px; }