
/*floating action button main*/

.fab-wrapper {
    position: fixed;
    display: block;
    width: 80px;
    height: 80px;
    z-index: 90000;
    position: fixed;
    /* left: 0; */
    right: 18px;
    /* right: 0; */
    bottom: 20px;
    border-radius: 50%;
    outline: none;
  }
  
  .fab-checkbox {
    display: none;
  }
  .fabchat {
    position: absolute;
    vertical-align: bottom;
    line-height: 60px;
    margin-left: 20px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    bottom: 0px;
    right: 15px;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    z-index: 90000;
    border-radius: 100%;
    -webkit-animation: glowing-btn 1500ms infinite;
    -moz-animation: glowing-btn 1500ms infinite;
    -o-animation: glowing-btn 1500ms infinite;
    animation: glowing-btn 1500ms infinite;
    border-bottom-right-radius: 6px;
    outline: none;
  }
  
  .fabchat:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background-color: rgba(128, 21, 21, 0.1);
  }

  .fab-checkbox:checked ~ .fabchat {
    transform: rotate(-135deg);
    transition-duration: 0.5s;
    -webkit-animation: glowing-btn 5000ms infinite;
    -moz-animation: glowing-btn 5000ms infinite;
    -o-animation: glowing-btn 5000ms infinite;
    animation: glowing-btn 5000ms infinite;
  }
  .fab-checkbox:checked ~ .fabchat span{
      transform: rotate(135deg);
      transition-duration: 1s;
      opacity: 0;
  }
  .fab-checkbox:checked ~ .fabchat #close{
    opacity: 1;
    transform:  scale(1) rotate(315deg);
    transition-duration: 1s;
  }
  .fab-checkbox:checked ~ .fabchat:hover #close{
    transform:scale(1.1) rotate(315deg);

  }
  .fab-checkbox:checked ~ .fab-options {
	opacity: 1;
    transform: scale(1);
    transition-duration: 0.8s;
}

  .fab-checkbox:checked ~ .fabchat:hover #hover_text{
    opacity: 0;
    transition-duration: 0;
  }

  .fabchat:hover {
    transform: scale(1.3);
    -webkit-animation: glowing-btn 800ms infinite;
    -moz-animation: glowing-btn 800ms infinite;
    -o-animation: glowing-btn 800ms infinite;
    animation: glowing-btn 800ms infinite;
  }

  .fabchat:hover #hover_text {
    -webkit-transition: opacity .0.1s .0.1s;
    transition: opacity .0.1s .0.1s;
    opacity: 1;
    filter: alpha(opacity=100);
}
.fabchat:hover #hover_icon{
    transform: rotate(180deg) scale(0);
}

.fab-options {
	list-style-type: none;
	margin: 0;
	position: absolute;
	bottom: 80px;
	right: 0;
	opacity: 0;
	transition: all 0.5s ease;
	transform: scale(0);
    transform-origin: 50% bottom;
}

.fab-options li {
	justify-content: flex-end;
	padding: 0px;
}

#hover_text {
    display: block;
    line-height: 15px;
    text-align: center;
    position: absolute;
    margin: 8px;
    opacity: 0;
    right: 0px;
    top:10%;
    bottom: 10%;
    
    /*padding-top:30px;*/
    font-size: 8px;
    color: #fff;
    font-weight: 700;
    
    background: transparent;
    font-family: Roboto, sans-serif;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

#close {
    display: inline;
    line-height: 0px;
    position: absolute;
    margin: auto;
    opacity: 0;
    bottom:26px;
    right:13px;
    transform: scale(0);
    /*padding-top:30px;*/
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.fabchat span{
    transition-duration: 1s;
}




    
/*Whatsapp button*/

#whatsapp {
    position:absolute;
    left:3%;
    top:0px;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}

#whatsapp .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#whatsapp.active .inner_blob {
    border-color: #7cc576;
}

#whatsapp:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#whatsapp button,
#whatsapp button:link,
#whatsapp button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-whatsapp 1500ms infinite;
    -moz-animation: glowing-whatsapp 1500ms infinite;
    -o-animation: glowing-whatsapp 1500ms infinite;
    animation: glowing-whatsapp 1500ms infinite;
}

#whatsapp button:hover,
#whatsapp button:focus,
#whatsapp button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#whatsapp.active button,
#whatsapp.active button:link,
#whatsapp.active button:visited {
    background: #25d366;
}

#whatsapp:hover button {
    width: 80px;
    height: 80px;
}

#whatsapp button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#whatsapp.active button .hover_text {
    padding-top: 20px;
}

#whatsapp:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#whatsapp button .hover_text {}

#whatsapp button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#whatsapp:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.whatsapp-button:hover .whatsapp-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.whatsapp-fixed {
    color: #fff;
}

.whatsapp-001 div#whatsapp {
    right: 75px;
}

.whatsapp-001 {
    margin-top: 0;
}


/*email button*/

#email {
    position:absolute;
    left:3%;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}

#email .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#email.active .inner_blob {
    border-color: #7cc576;
}

#email:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#email button,
#email button:link,
#email button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-email 1500ms infinite;
    -moz-animation: glowing-email 1500ms infinite;
    -o-animation: glowing-email 1500ms infinite;
    animation: glowing-email 1500ms infinite;
}

#email button:hover,
#email button:focus,
#email button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#email.active button,
#email.active button:link,
#email.active button:visited {
    background: #25d366;
}

#email:hover button {
    width: 80px;
    height: 80px;
}

#email button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#email.active button .hover_text {
    padding-top: 20px;
}

#email:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#email button .hover_text {}

#email button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#email:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.email-button:hover .email-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.email-fixed {
    color: #fff;
}

.email-001 div#email {
    right: 75px;
}

.email-001 {
    margin-top: 0;
}


/*phone button*/

#phone {
    position:absolute;
	left:3%;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}


#phone .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#phone.active .inner_blob {
    border-color: #7cc576;
}

#phone:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#phone button,
#phone button:link,
#phone button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-phone 1500ms infinite;
    -moz-animation: glowing-phone 1500ms infinite;
    -o-animation: glowing-phone 1500ms infinite;
    animation: glowing-phone 1500ms infinite;
}

#phone button:hover,
#phone button:focus,
#phone button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#phone.active button,
#phone.active button:link,
#phone.active button:visited {
    background: #25d366;
}

#phone:hover button {
    width: 80px;
    height: 80px;
}

#phone button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#phone.active button .hover_text {
    padding-top: 20px;
}

#phone:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#phone button .hover_text {}

#phone button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#phone:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.phone-button:hover .phone-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.phone-fixed {
    color: #fff;
}

.phone-001 div#phone {
    right: 75px;
}

.phone-001 {
    margin-top: 0;
}


/*facebook button*/

#facebook {
    position:absolute;
    left:3%;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}

#facebook .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#facebook.active .inner_blob {
    border-color: #7cc576;
}

#facebook:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#facebook button,
#facebook button:link,
#facebook button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-facebook 1500ms infinite;
    -moz-animation: glowing-facebook 1500ms infinite;
    -o-animation: glowing-facebook 1500ms infinite;
    animation: glowing-facebook 1500ms infinite;
}

#facebook button:hover,
#facebook button:focus,
#facebook button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#facebook.active button,
#facebook.active button:link,
#facebook.active button:visited {
    background: #25d366;
}

#facebook:hover button {
    width: 80px;
    height: 80px;
}

#facebook button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#facebook.active button .hover_text {
    padding-top: 20px;
}

#facebook:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#facebook button .hover_text {}

#facebook button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#facebook:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.facebook-button:hover .facebook-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.facebook-fixed {
    color: #fff;
}

.facebook-001 div#facebook {
    right: 75px;
}

.facebook-001 {
    margin-top: 0;
}



/*instagram button*/

#instagram {
    position:absolute;
    left:3%;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}

#instagram .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#instagram.active .inner_blob {
    border-color: #7cc576;
}

#instagram:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#instagram button,
#instagram button:link,
#instagram button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-instagram 1500ms infinite;
    -moz-animation: glowing-instagram 1500ms infinite;
    -o-animation: glowing-instagram 1500ms infinite;
    animation: glowing-instagram 1500ms infinite;
}

#instagram button:hover,
#instagram button:focus,
#instagram button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#instagram.active button,
#instagram.active button:link,
#instagram.active button:visited {
    background: #25d366;
}

#instagram:hover button {
    width: 80px;
    height: 80px;
}

#instagram button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#instagram.active button .hover_text {
    padding-top: 20px;
}

#instagram:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#instagram button .hover_text {}

#instagram button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#instagram:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.instagram-button:hover .instagram-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.instagram-fixed {
    color: #fff;
}

.instagram-001 div#instagram {
    right: 75px;
}

.instagram-001 {
    margin-top: 0;
}


/*tiktok button*/

#tiktok {
    position:absolute;
    left:3%;
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    z-index: 90000;
    position: relative;
    /* left: 0; */
     right: 10px;
}

#tiktok .inner_blob {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 65px;
    height: 65px;
    /* border: 1px solid #ffffff; */
    border-radius: 100%;
    -webkit-animation-name: pulse_animation;
    animation-name: pulse_animation;
    -webkit-animation-duration: 2000ms;
    animation-duration: 2000ms;
    -webkit-transform-origin: 70% 70%;
    transform-origin: 70% 70%;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: center center;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    /*box-shadow:inset 0 0 15px rgba(191, 30, 46, .6);*/
}

#tiktok.active .inner_blob {
    border-color: #7cc576;
}

#tiktok:hover .inner_blob {
    -webkit-animation-name: none;
    animation-name: none;
}

#tiktok button,
#tiktok button:link,
#tiktok button:visited {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 100%;
    text-decoration: none;
    text-align: center !important;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    color: #fff;
    -webkit-animation: glowing-tiktok 1500ms infinite;
    -moz-animation: glowing-tiktok 1500ms infinite;
    -o-animation: glowing-tiktok 1500ms infinite;
    animation: glowing-tiktok 1500ms infinite;
}

#tiktok button:hover,
#tiktok button:focus,
#tiktok button:active {
    /*transform:scale(1.25);*/
    outline: none;
}

#tiktok.active button,
#tiktok.active button:link,
#tiktok.active button:visited {
    background: #25d366;
}

#tiktok:hover button {
    width: 80px;
    height: 80px;
}

#tiktok button .hover_text {
    display: block;
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: -34px;
    right: -29px;
    margin: auto;
    opacity: 0;
    /*padding-top:30px;*/
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: transparent;
    font-family: Roboto, sans-serif;
}

#tiktok.active button .hover_text {
    padding-top: 20px;
}

#tiktok:hover button .hover_text {
    -webkit-transition: opacity .3s .3s;
    transition: opacity .3s .3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

#tiktok button .hover_text {}

#tiktok button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 18px;
    height: 17px;
    /* background:transparent url(../images/whatsapp-logo.png) no-repeat; */
    transition: opacity 0.3s ease 0.3s;
}

#tiktok:hover button:after {
    transition: opacity 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
}

button.tiktok-button:hover .tiktok-fixed:before {
    visibility: hidden;
}


/*whatsapp button end*/

.com-content #sp-main-body {
    padding: 0px;
}

i.tiktok-fixed {
    color: #fff;
}

.tiktok-001 div#tiktok {
    right: 75px;
}

.tiktok-001 {
    margin-top: 0;
}


/*animation*/


/*@-webkit-keyframes glowing {
  0% { background-color: #0084FF; -webkit-box-shadow: 0 0 3px #0084FF; }
  50% { background-color: #0084FF; -webkit-box-shadow: 0 0 40px #0084FF; }
  100% { background-color: #0084FF; -webkit-box-shadow: 0 0 3px #0084FF; }
}

@-moz-keyframes glowing {
  0% { background-color: #0084FF; -moz-box-shadow: 0 0 3px #0084FF; }
  50% { background-color: #0084FF; -moz-box-shadow: 0 0 40px #0084FF; }
  100% { background-color: #0084FF; -moz-box-shadow: 0 0 3px #0084FF; }
}

@-o-keyframes glowing {
  0% { background-color: #0084FF; box-shadow: 0 0 3px #0084FF; }
  50% { background-color: #0084FF; box-shadow: 0 0 40px #0084FF; }
  100% { background-color: #0084FF; box-shadow: 0 0 3px #0084FF; }
}

@keyframes glowing {
  0% { background-color: #0084FF; box-shadow: 0 0 3px #0084FF; }
  50% { background-color: #0084FF; box-shadow: 0 0 40px #0084FF; }
  100% { background-color: #0084FF; box-shadow: 0 0 3px #0084FF; }
}


@-webkit-keyframes glowing2 {
  0% { background-color: #000; -webkit-box-shadow: 0 0 3px #000; }
  50% { background-color: #000; -webkit-box-shadow: 0 0 40px #000; }
  100% { background-color: #000; -webkit-box-shadow: 0 0 3px #000; }
}

@-moz-keyframes glowing2 {
  0% { background-color: #000; -moz-box-shadow: 0 0 3px #000; }
  50% { background-color: #000; -moz-box-shadow: 0 0 40px #000; }
  100% { background-color: #000; -moz-box-shadow: 0 0 3px #000; }
}

@-o-keyframes glowing2 {
  0% { background-color: #000; box-shadow: 0 0 3px #000; }
  50% { background-color: #000; box-shadow: 0 0 40px #000; }
  100% { background-color: #000; box-shadow: 0 0 3px #000; }
}

@keyframes glowing2 {
  0% { background-color: #000; box-shadow: 0 0 3px #000; }
  50% { background-color: #000; box-shadow: 0 0 40px #000; }
  100% { background-color: #000; box-shadow: 0 0 3px #000; }
}*/


/*end of animation*/

.fab-options li .dujdm{
    display: none;
    background: #fff;
    border-radius: 15px;
    padding: 5px 15px;
    right: 98px;
    top: 24px;
    position: absolute;
    
}
.fab-options li:hover .dujdm{
    display: inline-block;
}
