/* Phone shortcut */
.ak-phone-shortcut {
    position: fixed;
    bottom: -60px;
    right: 40px;
    color: #000;
    padding: 5px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    text-decoration: none;
}

.ak-phone-shortcut:hover {
    background-color:  #ff3d24;
    color: #fff;
}

.ak-phone-shortcut.ak-phone-shortcut-show {
    bottom: 110px;
}

.ak-phone-shortcut svg {
    width: 21px;
    height: 21px;
}

@media screen and (max-width: 991px) {
    .ak-phone-shortcut {
        right: 15px;
    }
}