:root {
    color-scheme: light only;
}

.with-chevron[aria-expanded='true'] i {
    display: block;
    transform: rotate(180deg) !important;
}

.btn-info {
    background-color: #001a57;
    color: #fff;
}

body {
    min-height: 100vh;
    background-color: #fafafa;
}

li {
    list-style: none;
}

ul {
    padding: 2 !important;
}

li::before {
    content: "\00BB";
}

.btn-primary {
    font-family: Raleway-SemiBold;
    font-size: 13px;
    color: rgba(58, 133, 191, 0.75);
    letter-spacing: 1px;
    line-height: 15px;
    border: 2px solid rgba(58, 133, 191, 0.75);
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease 0s;
}

.btn-primary:hover {
    color: #FFF;
    background: rgba(58, 133, 191, 0.75);
    border: 2px solid rgba(58, 133, 191, 0.75);
}

.scrolling-wrapper {
    overflow-x: auto;
}

.card-block {
    padding: 0.4rem;
    color: #fff;
    background-color: #fff;
    border: none;
    background-position: center;
    background-size: cover;
    transition: all 0.2s ease-in-out !important;
    border-radius: 24px;
    margin: 0px;

    &:hover {
        transform: translateY(-5px);
        box-shadow: none;
        opacity: 0.9;
    }

    img {
        border-radius: 24px;
    }
}

.card-1 {
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

}

.card-2 {

    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.card-3 {
    background-color: #127e44;
    background-image: linear-gradient(45deg, #085d30 0%, #FFFB7D 100%);
}

.card-4 {
    background-color: #0b042e;
    background-image: linear-gradient(62deg, #120223 0%, #040c7d 100%);
}

.card-5 {
    background-color: #ac6a45;
    background-image: linear-gradient(62deg, #b87249 0%, #F7CE68 100%);
}


.col-5 {
    padding: 0px;
    margin: 5px;
    min-width: 220px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-12px);
    }
}

/* desktop size paused*/
@media (min-width: 768px) {
    .marquee-wrapper .marquee {
        animation-play-state: paused;
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.loader {
    display: none;
    margin: auto;
    padding-top: 25px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.loading {
    border: 5px solid #ccc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-top-color: var(--orange-soda);
    border-left-color: var(--orange-soda);
    animation: spin 1s infinite ease-in;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    width: 100%;
    /* Set a default minimum width */
    right: 0%;
    margin: -50px 0 0 -50px;
    justify-content: center;
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}