﻿
@font-face {
    font-family: 'upsRoboto';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Roboto-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'upsRoboto';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Roboto-medium.woff2') format('woff2');
}

@font-face {
    font-family: 'upsRoboto';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Roboto-bold.woff2') format('woff2');
}


body {
    font-family: 'upsRoboto', Tahoma, helvetica, arial, sans-serif;
    text-align: left;
    color: #121212;
    background-color: #fff !important;
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 350px;
}

.app-body {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.header {
    position: fixed;
    transition: box-shadow 0.3s ease-in-out;
}

.shadow {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.ribbon {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.ribbon-container {
    display: flex;
    justify-content: end;
    background-color: #f2f2f2;
    position: relative;
    z-index: 1000 !important;
    padding: 8px 4rem 8px 8px;
    cursor: pointer
}


@media (max-width: 1024px) {
    .ribbon-container {
        padding-right: 0;
    }
}

.dropdown-container {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}


    .dropdown-container img, .search-container img {
        width: 24px;
        height: 24px;
        transition: transform 0.2s;
    }

        .dropdown-container img:hover, .search-container img:hover, .grow img:hover {
            transform: scale(1.1);
        }


.custom-dropdown {
    position: absolute;
    top: 40px;
    left: -70px;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    background-color: #f2f2f2;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideOut 0.3s forwards;
    pointer-events: none;
    display: none;
}

    .custom-dropdown.show {
        animation: slideIn 0.3s forwards;
        pointer-events: auto;
        display: block;
    }

.dropdown-ele {
    padding: 10px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    display: block;
}

    .dropdown-ele:hover {
        color: currentColor;
    }

    .dropdown-ele:after {
        content: "";
        display: inline-block;
        width: 25px;
        height: 25px;
        background-image: url('../images/chevron-down.svg');
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
        margin-left: 5px;
        transform: rotate(-90deg);
        transition: margin-left 0.3s ease-in-out;
        line-height: 1.25;
    }

    .dropdown-ele:hover:after {
        margin-left: 10px;
    }


.megamenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-column h6 {
    font-size: .75rem;
    line-height: 1.5;
    font-weight: bold;
    margin-left: 14px;
}

@media (min-width: 1024px) {
    .megamenu {
        flex-direction: row;
    }

    .spacer {
        height: 50px;
        display: block;
    }

    .dropdown-column {
        width: 25%;
    }
}

@media (max-width: 1024px) {
    .megamenu {
        gap: 0;
        overflow-y: auto;
        max-height: 300px;
    }

    .spacer {
        display: none;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    25% {
        opacity: 0.25;
        transform: translateY(-10px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(0);
    }

    75% {
        opacity: 0.75;
        transform: translateY(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    25% {
        opacity: 0.75;
        transform: translateY(5px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(0);
    }

    75% {
        opacity: 0.25;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}



.menu-logo {
    height: 85px;
    margin-top: 10px;
    cursor:pointer;
}

.custom-menu-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 15px;
    display: flex;
    transition: transform 0.3s ease;
}

    .custom-menu-link:hover {
        color: currentColor;
    }

@media (min-width: 1024px) {
    .custom-menu-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -4px;
        left: 50%;
        background-color: #ffc303;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .custom-menu-link:hover::after, .custom-menu-link.slideopen::after {
        width: 25%;
        left: 35%;
        transform: translateX(0);
    }

    .custom-menu-list {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-direction: row;
        align-items: center;
    }
}

.custom-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    background-color: white;
    padding-top: 5px;
    padding-bottom: 8px;
    min-height: 110px;
}

.custom-menu-item {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.menu-dropdown {
    display: none;
    position: fixed;
    top: 154px;
    left: 0;
    width: 100vw;
    max-height: 60vh;
    background-color: rgba(255, 255, 255, 1);
    z-index: 900;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    animation: slideOut 0.3s forwards;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    padding-bottom: 50px;
    padding-top: 20px;
    overflow-y: scroll;
}

    .menu-dropdown.show {
        display: block;
        opacity: 1;
        animation: slideIn 0.3s forwards;
    }

.slideDown {
    top: -40px;
    left: 5px;
    animation: slideDowntext 0.5s ease-out forwards;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@keyframes slideDowntext {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
        opacity: 1;
    }
}

.menu-toggle {
    display: none;
}

@media (max-width: 1024px) {

    .custom-menu {
        flex-direction: column;
        padding: 0;
    }

    .custom-menu-list {
        visibility: hidden;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: -300px;
        background: white;
        width: 80%;
        z-index: 999;
        animation: slideRightOut 0.3s forwards;
    }

    .custom-menu-link {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .custom-menu-link::after {
            content: "";
            position: absolute;
            width: 30px !important;
            height: 30px;
            right: 10px;
            top: 50%;
            background-image: url('../images/chevron-down.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-color: transparent;
            transform: translateY(-50%) rotate(0deg);
            transition: transform 0.3s ease;
        }


    .custom-menu-list.show {
        visibility: visible;
        display: flex;
        opacity: 1;
        animation: slideLeftIn 0.3s forwards;
    }

    .custom-menu-item {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #ddd;
        background-color: white;
        color: #333;
    }

        .custom-menu-item:last-child {
            border-bottom: none;
        }

    .menu-dropdown {
        margin-top: 15px;
        border-top: 2px solid #ffd64c;
        position: static;
        display: none;
        top: auto;
        height: auto;
        width: 100%;
        background-color: #fff;
        z-index: 10;
        transition: max-height 0.3s ease;
        overflow: hidden;
        box-shadow: none;
    }

    .custom-menu-link.slideopen::after {
        transform: translateY(-50%) rotate(180deg);
        transition: transform 0.5s ease;
    }

    .menu-toggle {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        margin-top: 12px;
    }

        .menu-toggle span {
            display: block;
            height: 2px;
            background-color: #000;
            transition: all 0.3s ease;
            width: 20px;
        }

            .menu-toggle span:nth-child(1) {
                transform-origin: top left;
            }

            .menu-toggle span:nth-child(3) {
                transform-origin: bottom left;
            }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg);
            width: 24px;
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg);
            width: 24px;
        }

    .menu-logo {
        margin-top: 15px;
        display: block;
        align-self: flex-start;
    }
    /* end media  */
}

@keyframes slideLeftIn {
    0% {
        right: -300px;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

@keyframes slideRightOut {
    0% {
        right: 0;
        opacity: 1;
    }

    100% {
        right: -300px;
        opacity: 0;
    }
}

.search-container {
    display: flex;
    align-items: center;
    margin-right: 5px;
    margin-top: -3px;
}

.search-button::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('../images/chevron-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transform: rotate(-90deg);
    transition: margin-left 0.3s ease-in-out;
    line-height: 1.25;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.search-bar {
    height: 25px;
    padding: 5px;
    border: 1px solid #252424;
    border-radius: 4px;
    display: inherit;
}

.searchBar-container {
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .searchBar-container.active {
        visibility: visible;
    }

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc400;
    border-color: transparent;
    border-radius: 18px;
    padding: 4px 6px 4px 10px;
    width: auto;
    color: #121212;
    text-decoration: none;
    transition: all .35s ease-in-out;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}


.search-button {
    background-color: #ffc400;
    border: none;
    border-radius: 10px;
    margin-right: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0px 15px;
}

    .search-button:hover {
        background-color: #ffd64c;
    }

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }
}

.flip {
    animation: flip 0.6s ease forwards;
}


@media (max-width: 580px) {
    .search-bar {
        width: 55%;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .ribbon {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99;
}

    .overlay.active {
        display: block;
    }

.flex-right {
    margin-left: auto;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

.footer {
    margin-top: 3rem;
    background-color: #351c15;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    color: #bfb8af;
    padding-top: 35px;
}

.footer-column {
    flex: 1 1 25%;
    position: relative;
}

.footer-title {
    cursor: pointer;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}


.caret {
    width: 35px;
    height: 35px;
    background-image: url('../images/chevron-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-right: 30px;
    transition: transform 0.3s ease;
}


.footer-links li {
    padding: 10px 0;
}

.footer-links {
    display: none;
    padding: 10px;
    flex-direction: column;
    text-decoration: none;
    font-size: 14px;
}

.footer-column .footer-links {
    list-style: none;
}

    .footer-column .footer-links li a {
        text-decoration: none !important;
        color: #bfb8af;
    }

        .footer-column .footer-links li a:hover {
            text-decoration: underline !important;
        }

.footer-title.active + .footer-links {
    display: flex;
}

.footer-links.legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0;
    color: #bfb8af;
}

    .footer-links.legal-links li:first-child {
        margin-left: 0;
        border: none;
    }

    .footer-links.legal-links li {
        margin-left: 15px;
        position: relative;
        line-height: 17px;
    }

        .footer-links.legal-links li:not(:first-child) a::before {
            content: "";
            position: absolute;
            left: -10px;
            width: 1px;
            height: 60%;
            background-color: #bfb8af;
            top: 50%;
            transform: translateY(-50%);
        }

        .footer-links.legal-links li a {
            padding-left: 5px;
            text-decoration: none;
            padding-right: 5px;
            color: inherit;
        }

.legal-header {
    border-top: .5px solid #8c8585;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.footer-bottom {
    display: block;
    text-indent: 0px;
    margin-top: 8px;
    width: 100%;
    text-align: left;
    margin-bottom: 70px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
    }




@media (max-width: 1023px) {

    .footer-title.active + .footer-links {
        display: flex;
    }

    .footer-container {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        flex-direction: column;
        margin: 0px auto;
    }

    .footer-column {
        width: 100%;
        text-indent: 50px;
    }

    .footer-title {
        border-bottom: 1px solid #bfb8af;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-links.legal-links li {
        margin-left: 0px;
        text-indent: 55px;
    }

        .footer-links.legal-links li a {
            padding-left: 0;
        }

        .footer-links.legal-links li:not(:first-child) a::before {
            content: none;
        }

    .footer-links.legal-links {
        flex-direction: column;
    }

    .footer-title .caret {
        display: inline-flex;
    }

    .footer-title.active .caret {
        transform: rotate(-180deg);
    }

    .footer-bottom {
        text-indent: 60px;
        margin-top: 45px;
    }
}

@media (min-width: 1024px) {

    .footer-column {
        flex: 1 1 25%;
    }

    .footer-links {
        display: flex;
    }

    .footer-column:nth-child(5) .footer-title {
        display: none;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
    }

    .legal-header {
        display: flex;
    }

    .footer-title .caret {
        display: none;
    }
}

@media (max-width: 640px) {

    .footer-bottom {
        text-indent: 0%;
        padding: 0 10px 0;
        margin-top: 25px;
        margin-bottom: 25px;
        text-align: center;
    }
}

.skin-logo {
    width: 50px;
}

/* Feedback container with both button and menu */
#feedback-container {
    position: fixed;
    right: -365px;
    top: 25%;
    height: auto;
    width: 400px;
    z-index: 1000;
    transition: right 0.5s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Feedback button */
#feedback-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgb(144, 159, 160);
    color: white;
    font-size: 12px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    z-index: 1001;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotateZ(180deg);
    transition: 0.5s;
    margin-right: 10px;
}

/* Feedback menu */
#feedback-menu {
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    height: 350px;
    z-index: 1001;
    flex-grow: 1;
    margin-left: -10px;
    width: 400px;
    overflow-y: auto;
}

/* Show feedback-container (button and menu) when clicked */
#feedback-container.open {
    right: 0;
}


/* Style the close button */
#close-feedback {
    position: absolute;
    top: 10px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    /* Style the close icon */
    #close-feedback img {
        width: 24px;
        height: auto;
    }

.feedback-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.thumb-button {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
    outline: none;
}

    .thumb-button img {
        width: 40px; /* Adjust size of the thumbs icon */
        height: auto;
    }

    /* Hover effects */
    .thumb-button:hover {
        transform: scale(1.1);
    }
    /* Not Active or selected state */
    .thumb-button:not(.active) {
        opacity: 0.4;
    }
    /* Active (selected) state */
    .thumb-button.active {
        filter: invert(11%) sepia(64%) saturate(7482%) hue-rotate(229deg) brightness(93%) contrast(103%);
    }

    /* Disabled appearance (when a button is disabled) */
    .thumb-button[disabled] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.selected {
    filter: brightness(0.8);
}

.blu-banner {
    background-image: linear-gradient(90deg, #397ab7 1.8992568125516105%, #326a9f 98.51362510322046%);
    color: white;
}

.accordion {
    --bs-accordion-border-color: none;
}

.accordion-collapse {
    transition: height 0.4s ease;
}

.accordion-item {
    margin-bottom: 10px;
    box-shadow: 0px 4px 12px -3px rgba(0, 0, 0, .051), 0px 2px 5px 0px rgba(0, 0, 0, .141);
    border-radius: 4px;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #333;
    font-weight: bold;
}

.accordion-collapse.show {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: -1px;
    z-index: 0;
}

.accordion-button:not(.collapsed):hover,
.accordion-button:not(.collapsed):focus {
    background-color: white;
    color: #333;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button::after {
    transition: transform 0.4s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}


.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100 !important;
}
