﻿.sticky {
    bottom: 30px;
    position: fixed;
    right: 36px;
    z-index: 11;
}

.dnnEditState.personabar-visible .sticky {
    position: inherit;
}

.sticky__content {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.sticky__list {
    margin: 0 15px 0 0;
    opacity: 0;
    transition: all 400ms ease;
    visibility: hidden;
}

.sticky__list.active {
    opacity: 1;
    visibility: visible;
}

.sticky__list_button,
.sticky__list_button:visited {
    background: #fff;
    border-radius: 15px;
    box-shadow: 3px 3px 6px #00000040;
    color: #006633;
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 8px 15px 8px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.sticky__list_button:hover {
    background: #C0E0D0;
    color: #002914;
    text-decoration: none;
}

.sticky__link {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 55px;
    position: relative;
    transition: all 0.3s ease 0s;
    width: 55px;
	bottom: 73px;
}

.sticky__link:hover {
    text-decoration: none;
}

.sticky__link:hover .sticky__list {
    opacity: 1;
    visibility: visible;
}

.sticky__link:before {
    background: url('/Portals/0/skins/sede/images/iconos/logo-cens-sticky.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    height: 35px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.sticky__link.active:before {
    background: url('/Portals/0/skins/sede/images/iconos/close-site.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    height: 20px;
    width: 20px;
}