@keyframes mivaFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mivaLogoIn {
    from { opacity: 0; transform: scale(0.85) translateY(-10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

#headerContent .mivaWelcomeLogo {
    display: block;
    margin: 0 auto 18px auto;
    height: 110px;
    width: auto;
    animation: mivaLogoIn 0.7s ease-out both;
}
#headerContent .Header__searchTitle {
    animation: mivaFadeUp 0.7s ease-out 0.15s both;
}
#headerContent .Header__description {
    animation: mivaFadeUp 0.7s ease-out 0.35s both;
}
#headerContent .Header__searchSection .search-container,
#headerContent .mivaSearchWrap {
    animation: mivaFadeUp 0.7s ease-out 0.55s both;
}
/* Search button */
#headerContent .Header__searchSection button,
.Header__searchSection .search-btn,
.searchButton,
button[type="submit"] {
    background: #E73832 !important;
    border-color: #E73832 !important;
}:root {
    --color-brand: #E73832 !important;
}
#portal_tabBookings {
    position: relative;
    cursor: pointer;
    overflow: visible;
}

#bookingsMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    z-index: 999999;
}

#portal_tabBookings:hover #bookingsMenu,
#portal_tabBookings:focus-within #bookingsMenu {
    display: block !important;
}
#bookingsMenu li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #12344D;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}
#bookingsMenu li a svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-right: 10px;
}
#bookingsMenu li a:hover {
    background: #f4f6f8;
    color: #E73832;
}
#bookingsMenu li a::before {
    margin-right: 10px;
    font-size: 15px;
    line-height: 1;
    color: inherit;
    flex-shrink: 0;
}

#bookingsMenu li a.bk-team::before  { content: '\1F465'; }
#bookingsMenu li a.bk-hours::before { content: '\1F551'; }
#bookingsMenu li a.bk-guide::before { content: '\1F9ED'; }

#bookingsLabel::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
}

#portal_tabBookings:hover #bookingsLabel::after,
#portal_tabBookings:focus-within #bookingsLabel::after {
    transform: rotate(180deg);
}

body,
#portalWrapper,
.portal,
#mainContainer {
    background-color: #12344D !important;
    background-image: url('https://i.ibb.co/4RvhY7vs/miva-v-faded-05.png') !important;
    background-repeat: repeat !important;
    background-size: 110px auto !important;
    background-attachment: fixed !important;
    background-blend-mode: soft-light !important;
}
#mivaWebLink:hover {
    color: #E73832 !important;

