.progress-bar {
transition: width 0.3s ease;
}
.fade-in {
animation: fadeIn 0.15s ease-in;
}
@keyframes fadeIn {
from { opacity: 0.95; }
to { opacity: 1; }
}
button {
transition: all 0.2s ease !important;
}
.bw-partners {
margin-top: 12px;
display: flex;
flex-direction: column;
gap: 8px;
}
.bw-partner-link {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
background-color: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 8px;
text-decoration: none;
font-size: 14px;
font-weight: 500;
color: #0D263A;
transition: all 0.2s ease;
}
.bw-partner-link:hover {
background-color: #FFC700;
border-color: #FFC700;
color: #0D263A;
}
.bw-partner-link .icon {
font-size: 16px;
}
.bw-partner-link .arrow {
margin-left: auto;
font-size: 14px;
}