.wpsoccon-main {
    top: auto;
    bottom: 70px;
    left: auto;
    right: 0;
    position: fixed;
    width: 400px;
    z-index: 9999999;
    display: none;
}

.wpsoccon-show {
    display: block
}

.wpsoccon-container {
    display: flex;
    flex-direction: column;
}

.wpsoccon-box {
    border-radius: 8px;
    margin: 24px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 300ms ease-in;
}

.wpsoccon-header {
    color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.wpsoccon-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
}

.wpsoccon-description {
    padding: 24px 36px;
    height: 100%;
    position: relative;
}

.wpsoccon-body {
    overflow-x: hidden;
    overflow-y: auto;
	max-height: 200px;
	background: #fff;
}

.wpsoccon-account {
    background-color: #fff;
    color: inherit;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 100%;
	border-bottom: 1px solid #f2f2f2;
}
.wpsoccon-account:hover {
    background: #f3f3f3;
}

.wpsoccon-toggle:hover, .wpsoccon-toggle:focus, .wpsoccon-toggle:active {
    color: #fff;
    outline: none;
	text-decoration: none;
}

.wpsoccon-avatar {
    position: relative;
    width: 62px;
    height: 62px;
}

.wpsoccon-avatar-container {
    background-color: #eee;
    overflow: hidden;
    border-radius: 50%;
    width: inherit;
    height: inherit;
}

.wpsoccon-info {
    padding: 0 16px;
}

.wpsoccon-label {
    font-size: 12px;
    line-height: 1.5em;
    opacity: .6;
    display: block;
}

.wpsoccon-name {
    display: block;
    font-weight: bold;
    line-height: 1.5em;
}

.wpsoccon-footer {
    color: #000;
    background-color: #ccc;
    border-top: 1px solid #e6e6e6;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 12px 36px;
    max-height: 160px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.wpsoccon-box:before {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 13px;
    height: 13px;
    transform: rotate(45deg);
	background-color: #ccc;
}

.wpsoccon-toggle {
    position: fixed;
    margin: 24px auto;
    border-radius: 50px;
    white-space: nowrap;
    padding: 10px 24px;
    color: #fff;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    bottom: 10px;
    right: 24px;
    text-decoration: none;
	font-size: 14px;
}

.wpsoccon-toggle img {
	display: inline-block;
    vertical-align: middle;
    max-width: 24px;
}

.wpsoccon-toggle a {
    text-decoration: none;
}

@media(max-width:767px){
	.wpsoccon-toggle img {
		position: absolute;
		top: 10px;
		left: 11px;
		max-width: 40px;
	}
	a.wpsoccon-toggle {
		font-size: 0;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		padding: 0;
	}
	.wpsoccon-main {
		bottom: 80px;
		right: -10px;
	}
}