@charset "utf-8";
/* CSS Document */

.lalyssoise-premium-ad {
    position: fixed;
    top: 15%;
    right: 20px;
    width: 450px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
    z-index: 99999;
    overflow: hidden;
    transition: width .3s ease, height .3s ease;
}

.lalyssoise-premium-content {
    padding: 20px;
}

.lalyssoise-premium-label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 8px;
	width:80%;
}

.lalyssoise-premium-toggle {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0,0,0,.08);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

.lalyssoise-premium-ad.collapsed {
    width: 45px;
    height: 120px;
    right: 0;
    border-radius: 10px 0 0 10px;
}

.lalyssoise-premium-ad.collapsed .lalyssoise-premium-content {
    display: none;
}

.lalyssoise-premium-ad.collapsed .lalyssoise-premium-toggle {
    top: 0;
    left: 0;
    width: 45px;
    height: 120px;
    border-radius: 0;
    background: #fff;
    font-size: 0;
	padding-left:10px;
}

.lalyssoise-premium-ad.collapsed .lalyssoise-premium-toggle::after {
    content: "PUBLICITÉ LOCALE";
    display: block;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
	color:red;
}

@media screen and (max-width: 600px) {
    .lalyssoise-premium-ad {
        top: 25%;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 350px;
    }
}