/* =========================================
   Doctolib Widget
   ========================================= */

.doctolib-widget {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 999999;

    display: block;
    width: auto;
    padding: 5px;

    border-radius: 4px 0 0 4px;
    background: #00264c;
    color: #fff;

    text-align: center;
    text-decoration: none;
    font-family: var(--headline-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    opacity: 0.9;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.doctolib-widget a {
    display: block;
    margin-top: 5px;
    padding: 6px;

    border-radius: 4px;
    background: #fff;
    color: #00264c;

    text-decoration: none;
    font-weight: 700;

    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.doctolib-widget a:hover,
.doctolib-widget a:focus {
    opacity: 0.9;
    outline: 2px solid #f5f5f5;
    outline-offset: 2px;
}

.doctolib-widget img {
    display: inline-block;
    width: auto;
    height: 18px;
    margin: 3px 0;
    vertical-align: middle;
}

.doctolib-widget .skip-link {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.doctolib-widget .skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
}

@media (max-width: 980px) {

    .doctolib-widget {
        top: 280px;
    }

}