﻿@media (min-width: 1200px) .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover, .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover, .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
    color: rgba(255, 255, 255, 0.6);
}

.cityname:focus {
    border-color: #297cbb;
}
.notification {
    position: absolute;
    background-color: #ff8c00;
    text-align: center;
    border-radius: 12px;
    min-width: 17px;
    height: 17px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    line-height: 15px;
    top: -10px;
    right: 10px;
    letter-spacing: -1px
}
.app-download {
    position: absolute;
    right: 0;
    display: flex;

}

    .app-download i {
        font-size: 0.9rem; /* Adjust font size if needed */
        animation: bounce 0.5s alternate cubic-bezier(0.5, 0.05, 1, 0.5) infinite;
    }

/*.second-title {
    font-size: 1.2rem;
    font-weight: bold;
}*/

.discount-box {
    display: flex;
    flex-direction: column; /* stack text vertically */
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #003580;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
}

    .discount-box .percent {
        font-size: 12px;
        line-height: 1;
    }

    .discount-box .off {
        font-size: 10px;
        line-height: 1;
    }
.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align all text to the right */
    line-height: 1.4;
}

.discount-valid {
    font-size: 14px;
    font-weight: 600;
}

.old-price {
    font-size: 14px;
    margin: 2px 0;
}

.new-price {
    font-size: 18px;
}

.service-description {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show 2 lines max */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bounce {
    animation: bounce 0.5s;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    animation-iteration-count: infinite;
    -webkit-animation-name: bounce;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    -webkit-animation-iteration-count: infinite;
}
@keyframes bounce {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 3px, 0);
    }
}

@-webkit-keyframes bounce {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 3px, 0);
        transform: translate3d(0, 3px, 0);
    }
}
.show-more {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}

.show-more-text {
    color: #007bff !important;
    font-weight: 600;
    text-decoration: underline;
}