/* Floating icons */
#scroll-to-top {
    transform: rotate(-90deg);
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    outline: 0;
    border: 2px solid #485B60;
    border-radius: 30px;
    background: #ffffff;
    cursor: pointer;
    opacity: 0.5;
}
#scroll-to-top svg {
    width: 51px;
    height: 51px;
    border-radius: 50%;
}
.communication-button {
    display: none;
    position: fixed;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    outline: 0px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    width: 55px;
    height: 55px;
    opacity: 0.5;
}
.communication-button img {
    display: block;
    border-radius: 50%;
}
#call-us {
    bottom: 20px;
    left: 20px;
}
#contact-us {
    bottom: 20px;
    right: 20px;
}
#scroll-to-top:focus, .communication-button:focus {
    transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -webkit-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    opacity: 1;
}
@media (hover: hover) {
    #scroll-to-top:hover, .communication-button:hover {
      transition: opacity .25s ease-out;
      -moz-transition: opacity .25s ease-out;
      -webkit-transition: opacity .25s ease-out;
      -o-transition: opacity .25s ease-out;
      opacity: 1; 
    }
}
/* "Call us" popup */
.call-us__popup {
    /* Fix for not clickable modal background */
    pointer-events: none;
}
.call-us__popup .action-close {
    cursor: pointer;
    background: #cecece;
    width: 40px;
    height: 40px;
}
.call-us__popup .action-close:active, .call-us__popup .action-close:focus {
    background: #cecece;
}
.call-us__popup .action-close:before {
    content: "\2715";
    font-size: 24px;
    vertical-align: middle;
}
.call-us__popup .modal-inner-wrap {
    max-width: 600px;
}
.call-us__popup .modal-header {
    padding: 20px 0;
}
.call-us__popup .modal-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.call-us__popup .modal-content .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.call-us__popup .modal-content .logo img {
    width: 100%;
    max-width: 400px;
}
.call-us__popup .modal-content .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 700;
}