html {
    scroll-behavior: smooth;
}

.text-primary {
    color: #1375F0;
}

.border-primary {
    border-color: #1375F0;
}

.bg-primary {
    background-color: #1375F0;
}

.bg-secondary {
    background-color: #1C2639;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.rotation {
    animation: rotation 1.4s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fade-in 0.3s;
}

.items::-webkit-scrollbar {
    width: 8px;
}

.items::-webkit-scrollbar-thumb {
    background: #b1b1b1;
    border-radius: 4px;
}

.items::-webkit-scrollbar-thumb:active {
    background-color: #b1b1b1;
}

.items::-webkit-scrollbar-thumb:hover {
    background: #b1b1b1;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.items::-webkit-scrollbar-track {
    background: #e9e9e9;
    border-radius: 4px;
}

.items::-webkit-scrollbar-track:hover,
.items::-webkit-scrollbar-track:active {
    background: #d4d4d4;
}

::-webkit-input-placeholder {
    color: rgba(247, 247, 247, 0.664) !important;
}

:-moz-placeholder {
    color: rgba(247, 247, 247, 0.664) !important;
}

::-moz-placeholder {
    color: rgba(247, 247, 247, 0.664) !important;
}

:-ms-input-placeholder {
    color: rgba(247, 247, 247, 0.664) !important;
}

div.icon > svg {
    width: 1.2rem;
    height: 1.2rem;
}