﻿
.date-select {
    cursor: pointer;

    outline: none;
    box-shadow: none;

    background: transparent;
    border: none;

    font: inherit;
    color: inherit;

    margin: 0;
    padding: 0;

    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.date-select:focus,
.date-select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.date-select {
    text-align: right;
    text-align-last: right;
}


.pulse {
    display: inline-block;
    transform-origin: center;
    animation: pulse 1.4s ease-in-out infinite;
}

.pulse {
    display: inline-block;
    transform-origin: center;
    animation: heartbeat 1.3s infinite;
}

@keyframes heartbeat {
    0%, 40%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15);
    }
}






.adv{
    
}

.adv h2{
    margin:0 0 16px;
    font-size:1rem;
    font-weight:700;
    color:#222;
    text-align:center;
}

.adv p{
    margin:0 0 14px;
    font-size:0.9rem;
    line-height:1.7;
    color:#555;
}

.adv .lead{
    margin-bottom:18px;
    font-weight:600;
    color:#333;
}

.adv .ending{
    margin-top:20px;
    font-weight:600;
    color:#222;
}

.adv strong{
    font-weight:600;
    color:#000;
}

@media (max-width:768px){
    .adv{
        margin:24px auto;
        padding:0 16px;
    }

    .adv p{
        line-height:1.6;
    }
}