/*Muse elements transitions*/
a,
p,
nav p,
nav .MenuItem,
nav .MenuItemWithSubMenu,
.SSSlideLink,
.PamphletNextButton,
.PamphletPrevButton,
.PamphletCloseButton,
.popup_element,
.SSPreviousButton,
.SSNextButton,
.popup_element > .clip_frame,
.Button > .clip_frame {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

/*User elements transitions*/
.social-icon-team,
.work-thumb-hover {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

/*User Style*/
.btn-link, .btn-zoom {
	opacity: 0;
}

.thumb-gallery:hover .btn-link, .thumb-gallery:hover .btn-zoom {
    opacity: 1;
}
/*Services Page*/
.AccordionPanel {
    margin-bottom: 5px;
}

.TabbedPanelsContentVisible {
    -webkit-animation: tabvisible 0.8s ease 1;
    animation: tabvisible 0.8s ease 1;
}

@keyframes tabvisible {
    from { transform-origin: center; transform: scale(0.97); opacity: 0; }
    to { transform-origin: center; transform: scale(1); opacity: 1; }
}

@-webkit-keyframes tabvisible {
    from { transform-origin: center; transform: scale(0.97); opacity: 0; }
    to { transform-origin: center; transform: scale(1); opacity: 1; }
}