#social_sms{
	position: fixed;
	left:20px;
	bottom: 25px;
	z-index: 4;
}

#social_sms a.sc {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 1.5rem;
    text-align: center;
    line-height: 50px;
    color: white;
    box-shadow: 2px 2px 5px #959595;
}

#social_sms a.open-sc{
	background-color: #073955;
}

#social_sms a.sc:hover i, #social_sms a.sc:hover svg{
	animation: spin 0.25s linear 1;
}

#social_sms a.sc svg {
    fill: white;
    width: 41px;
    height: 50px;
}

#social_sms a.line{
	background-color: #01c301;
}

#social_sms .sms_list{
	margin-bottom: 5px;
}

#social_sms a.fb{
	background: #0084ff;
}

#social_sms a.tel{
	background-color: #ec5923;
}

#social_sms a.mail{
	background-color: #848484;
}

#social_sms a.chat{
	background-color: #dd1c1d;
}

#social_sms .sms_list a{
	margin-bottom: 10px;
    position: relative;
}

#social_sms .sms_list{
	display: none;
	transition: all 0.5s;
}

#social_sms .sms_list.on{
	display: block;
}

#social_sms .sms_list a .sms_box {
    position: absolute;
    width: 300px;
    background: white;
    border-radius: 5px;
	display: none;
	transition: display 0.5s;
	cursor: default;
}

#social_sms .sms_list a .sms_box.on{
	display: block;
	transition: display 0.5s;
}

#social_sms .sms_list a .sms_box .title {
    background-color: #dd1c1d;
    font-size: 1rem;
    text-align: left;
    padding-left: 20px;
    border-radius: inherit;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#social_sms .sms_list a .sms_box .detail {
    text-align: left;
    padding: 10px;
    font-size: 0.9rem;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#social_sms .sms_list a .sms_box {
    position: absolute;
    width: 300px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    left: 60px;
    top: 0;
}