
/* CALL-LABLE-START */

#sidebar-call-r {
    position: fixed;
    left: calc(100% - 64px);
    transition: left .7s;
    transition-timing-function: cubic-bezier(0.1, 0.3, 0.5, 0.1);
    width: 260px;
    height: 84px;
    display: flex;
    flex-direction: row;
    bottom: 2rem;
    background-color: #97af7d;
    border: 1px solid #969696;
    /* box-shadow: 0 5px 7px rgba(0, 0, 0, .35); */
    box-shadow: -2px 3px 5px #00000030;
    z-index: 150;
 }
 
 #sidebar-call-r:hover {
    left: calc(100% - 260px);
    width: 260px;
    /* background-color: #fff; */
    /* box-shadow: 0 3px 5px rgba(0, 0, 0, .15); */
 }
 
 #list-contacts {
    padding: 13px 0;
    display: flex;
    flex-direction: column;
 }
 
 .item-contacts {
    display: flex;
    flex-direction: row;
    font-size: 1.2em;
 }
 
 .default-list {
    display: flex;
    flex-direction: column;
    align-self: center;
    /* padding: auto; */
    width: 100%;
    padding-left: 15px;
 }
 
 .icon-menu-r {
    display: flex;
    height: 100%;
    align-self: center;
    align-items: center;
    padding: 5px;
 }
 
 #sidebar-call-r:hover .icon-menu-r {
    transform: rotate(360deg);
    transition-duration: 1s;
 }
 
 .call-href {
    text-decoration: none;
    color: #fff;
    /* font-family: "Verdana, Geneva, sans-serif"; */
    font-weight: bold;
    font-size: 1em;
 }
 
 .call-href:hover {
    color: #ec463f;
    font-weight: normal;
 }
 
 /* CALL-LABLE-END */