.sidebar-social-button {
    position: fixed;
    max-width: 100px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - 168px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s;
}
.social-button-wrapper {
    border-radius: 30px;
    overflow: hidden;
}
.social-button-wrapper.fb-btn {
    display: flex;
    align-items: center;
    margin: 5px 0px;
    position: fixed;
    width: 40px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - 64px);
    z-index: 99999;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s;
}
.social-button-wrapper.insta-btn {
    display: flex;
    align-items: center;
    margin: 5px 0px;
    position: fixed;
    width: 40px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - 115px);
    z-index: 99999;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s; 
}
.social-button-wrapper.telegram-btn {
    display: flex;
    align-items: center;
    margin: 5px 0;
    position: fixed;
    width: 40px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - 168px);
    z-index: 99999;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s;
}
.social-button-wrapper.tiktok-btn {
    display: flex;
    align-items: center;
    margin: 5px 0px;
    position: fixed;
    width: 40px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - 11px);
    z-index: 99999;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s;
}
.social-button-wrapper.line-btn {
    display: flex;
    align-items: center;
    margin: 5px 0px;
    position: fixed;
    width: 40px;
    right: 2vw;
    height: fit-content;
    top: calc(60% - -43px);
    z-index: 99999;
    transition: max-width .8s cubic-bezier(.22,1,.36,1) 0s;
}

.social-button {
    transition: all .3s;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #e7f2fb;
    border-radius: 50%;
	display: flex;
}
.social-button-title {
    display: none;
    width: 100%;
    height: 40px;
    background-color: #e7f2fb;
    font-size: 14px;
    color: #1e306e;
    font-weight: 500;
    padding: 0 10px;
    transition: all 0.3s;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media screen and (min-width: 1200px) {
    .social-button-wrapper.fb-btn:hover, .social-button-wrapper.insta-btn:hover, .social-button-wrapper.telegram-btn:hover, .social-button-wrapper.tiktok-btn:hover, .social-button-wrapper.line-btn:hover {
        width: 200px;
        transition: all 0.3s;
    }
    .social-button-wrapper:hover .social-button-title {
        display: flex;
        align-items: center;
    }
    .social-button-wrapper:hover .social-button {
        border-radius: 50% 0 0 50%;
    }
    .social-button-wrapper:hover .social-button svg {
      transform: scale(1.08);  
    }
	.social-button-wrapper:hover .social-button img {
      transform: scale(1.2);  
    }
}

@media only screen and (max-width: 480px) {
    .sidebar-social-button {
        position: fixed;
        right: 8px;
        bottom: 13%;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        top: unset;
    }
    .sidebar-social-button:hover {
        width: 200px;
        right: -2vw;
    }
    .social-button-title {
        height: 30px;
        font-size: 12px;
    }
    .social-button {
        margin: 6px 0px;
        transition: all 0.3s;
        width: 30px;
        height: 30px;
        padding: 6px;
        background: #e7f2fb;
        border-radius: 50%;
    }
	.tiktok-btn .social-button, .line-btn .social-button {
		padding: 4px;
	}
    .social-button svg {
        vertical-align: unset;
    }
	.tiktok-btn .social-button svg{
		padding: 2px 2px 4px 2px;
	}
}
