﻿.float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .7;
}

.modal-open .modal {
    overflow: hidden;
}

.cw-navigation-menu.modal.fade .modal-dialog {
    margin: 0;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    transform-origin: bottom right;
}

.cw-navigation-menu.modal.fade.show .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.cw-navigation-menu .modal-body {
    padding: 0;
}

    .cw-navigation-menu .modal-body .action {
        padding: 10px;
        font-size: 16px;
    }

        .cw-navigation-menu .modal-body .action i {
            margin-right: 5px;
        }
