.w-btn-wrapper.width_full{
    display: none !important;
}
/* desktop sticky button */
.desktop-sticky-button{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.desktop-sticky-button a{
    display: block;
    width: 50%;
    padding: 10px;
    background-color: red;
    color: #ffffff;
    text-align: center;
    background-color: #1aafde;
}
.desktop-sticky-button i{
    margin-left: 6px;
}
.desktop-sticky-button a:nth-child(even){
    background-color: #163669;
}
.desktop-sticky-button a:hover{
    color: #ffffff !important;
}
@media (max-width: 992px){
    .desktop-sticky-button{
        display: none;
    }
}

/* sticky-button */
.sticky-button {
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 20px;
    width: calc(100% - 1rem);
    z-index: 999999;
}
.sticky-button a {
	position: absolute;
    left: 33.33%;
	top: 0;
	bottom: 0;
	width: 33.33%;
	height: 100%;
	color: white;
	text-decoration: none;
	display: block;
	font-size: 1rem;
}
.sticky-button a.left {
	left: 0;
}
.sticky-button a.right {
	right: 0;
}
.sticky-button:hover {
	background-color: #45a049;
}
.sticky-button i{
	vertical-align: middle;
	font-size: 1.2rem;
	margin-left: 5px;
}
.w-toplink{
    bottom: 60px !important;
}
@media (min-width: 992px){
    .sticky-button{
        display: none;
    }
}