.warning-txt {
    font-weight: 500;
    color: var(--red);
}

/* Service card description menu button */
.service-card-wrap {
    position: relative;
}

.service-card-menu-btn {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0;
    line-height: 0;
    text-align: center;
    display: flex
;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-menu-btn::before,
.service-card-menu-btn::after {
    content: '';
}

.service-card-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card-menu-btn::before {
    width: 14px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 -4px 0 0 #fff, 0 4px 0 0 #fff;
}

/* Modal content styling */
.service-description-modal .tingle-modal-box__content {
    background: var(--grey-md);
    color: white;
    text-align: center;
}

/* Slightly rounded corners for description modals on all pages */
.service-description-modal .tingle-modal-box {
    border-radius: 10px !important;
    overflow: hidden; /* ensure inner content respects rounded corners */
}

@media (max-width: 540px) {
    .service-description-modal .tingle-modal-box {
        border-radius: 10px !important;
    }
}

/* Service page video styling */
.service-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Big centered play button overlay */
.service-video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.service-video-overlay::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 40px solid #fff;
}

.service-video-overlay.is-hidden {
    display: none;
}

@media (max-width: 540px) {
    .service-video-overlay {
        width: 84px;
        height: 84px;
    }

    .service-video-overlay::before {
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 28px;
    }
}