


.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999999999;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: block;
    width: 37px;
    height: 37px;
    text-align: center;
    background-color: #B40F31;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    right: 0px;
    border: 3px solid rgba(220,41,79,1.00);
    /* opacity: 0.3; */
    opacity: 1;
    transition: all 0.4s;
    -webkit-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
}

.floatingButton .fa {
    font-size: 27px !important;
    line-height: 32px;
    font-weight: 500;
    color: #FFFFFF;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    opacity: 1;
    color: #fff;
}

.floatingButton .fa {
    transform: rotate(0deg);
    transition: all 0.4s;
}

.floatingButton.open .fa {
    transform: rotate(270deg);
}


.floatingMenu {
    position: absolute;
    bottom: 30px;
    right: 0px;
    /* width: 200px; */
    width: 200px;
    display: none;
}

.floatingMenu li {
    width: 100%;
    float: left;
    list-style: none;
    text-align: right;
    margin-bottom: 12px;
}

.floatingMenu li a {
    padding-top: 1px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 3px;
    display: inline-block;
    background-color: rgba(169,21,59,1.00);
    color: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s;
    /* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
    -webkit-box-shadow: 1px 1px 3px rgba(255,255,255,1.00);
    box-shadow: 1px 1px 3px rgba(255,255,255,1.00);
    text-shadow: 1px 1px 0px rgba(0,0,0,1.00);
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
    font-variant: normal;
}

.floatingMenu li a:hover {
    margin-right: 10px;
    text-decoration: none;
}
