.line-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 14px;
    background: linear-gradient(297deg, #a3cff2 45.25%, #1e57a3 100%);
    z-index: 999999999;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

label.error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.form-control.error {
    border-color: #dc3545;
}

.form-control.valid {
    border-color: #28a745;
}

#form-message {
    margin-bottom: 20px;
    display: none;
}

.text-justify {
    text-align: justify;
}

h2.hightlights {
    font-style: italic;
    color: #1e57a3;
    font-weight: bold;
    font-size: 3rem;
}

h4.hightlights {
    font-style: italic;
    color: #1e57a3;
    font-weight: bold;
    font-size: 1.5rem;
}

.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#222;
    color:#fff;
    padding:20px;
    z-index:999999;
    box-shadow:0 -2px 10px rgba(0,0,0,.2);
}

.cookie-content{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cookie-content p{
    margin:0;
    font-size:14px;
}

.cookie-content a{
    color:#fff;
    text-decoration:underline;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    flex-shrink:0;
}

.cookie-buttons button{
    border:0;
    padding:10px 20px;
    cursor:pointer;
    border-radius:5px;
}

#cookie-accept{
    background:#28a745;
    color:#fff;
}

#cookie-reject{
    background:#dc3545;
    color:#fff;
}

@media(max-width:768px){
    .cookie-content{
        flex-direction:column;
        text-align:center;
    }
}

.btn-text-short {
    display: none;
}

@media (max-width: 419px) {
    .btn-text-full {
        display: none;
    }

    .btn-text-short {
        display: inline;
    }
}