.content {
    max-width: 920px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.content_wrapper {
    flex-basis: 50%;
}
.discord_wrapper {
    max-width: 420px;
    display: block;
    box-shadow: 0px 8px 20px 5px rgba(0,0,0, 0.4);
    border-radius: 10px;
}
.discord_wrapper:hover {
    box-shadow: 0px 8px 20px 5px rgba(0,0,0, 0.4);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
      box-shadow: 0px 8px 20px 5px rgba(88,101,242, 0.7);
    }
    50% {
      box-shadow: 0px 8px 20px 5px rgba(88,101,242, 0);
    }
  }
.discord_widget {
	margin-bottom:16px;
}
.discord_widget a{
    color: #fff;
    text-decoration: none;
}
.discord_header {
	background-color: #5865F2;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
	border-radius: 10px 10px 0px 0px;
	color: #fff;
}
.discord_header * {
    background-color:none;
}
.discord_header_logo {
	background: url(/assets/images/discord-logo-white.svg) 50% no-repeat;
    width: 124px;
    height: 34px;
    background-size: 124px 34px;
    display: inline-block;
    -webkit-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
}
.discord_header .members_online {
	-webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    background-color: none;
}
.discord_members {
	background-color: #202225;
    background-image: url(https://discord.com/assets/db9fd9dac08621e31b06609781c8851c.png),url(https://discord.com/assets/1c7d080332a1c9778182bc19c2f407bc.png);
    background-size: 200px 180px,110px 130px;
    background-position: 0 100%,100% 100%;
    background-repeat: no-repeat,no-repeat;
	min-height: 345px;
	max-height: 345px;
    overflow-y: auto;
	color:#fff;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.discord_members * {
    background-color: none!important;
    max-width: 100px;
    overflow: hidden;
}
.discord_avatar {
	width:64px;
	height:64px;
	border-radius:100%;
	border: 4px solid;
}
.discord_status_dnd {
	border-color:#f04747;
}
.discord_status_idle {
	border-color:#faa61a;
}
.discord_status_online {
	border-color:#43b581;
}
.discord_member {
	padding-top:25px;
    flex-basis: 25%
}
/* width */
.discord_members::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.discord_members::-webkit-scrollbar-track {
  background: none; 
}
 
/* Handle */
.discord_members::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.discord_members::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.discord_footer {
	-webkit-box-shadow: 0 -1px 18px rgba(0,0,0,.2), 0 -1px 0 rgba(0,0,0,.2);
    box-shadow: 0 -1px 18px rgba(0,0,0,.2), 0 -1px 0 rgba(0,0,0,.2);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #202225;
    padding: 6px 6px 6px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 30px;
	color:#fff;
	border-radius: 0px 0px 10px 10px;
}
.discord_footer_info {
	display: inline-block;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.discord_footer_button {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding:5px;
    border: 1px solid #212325;
    border-radius: 4px;
    background-clip: padding-box;
    background-color: hsla(0,0%,100%,.1);
    -webkit-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.04);
    box-shadow: inset 0 1px 0 hsla(0,0%,100%,.04);
    -webkit-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
}
.discord_footer_button:hover {
	opacity:.6
}