/* right sidebar */
.sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        height: 100vh;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 115;
        width: auto;
        padding: 20px;
        background: #FFFFFF;
        box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
    }

    .sidebar__social {
        margin-top: 10vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: .7;
    }

    .sidebar__socials {
        margin-bottom: 20px;
    }
}

/* bottom sidebar */
.bottom__sidebar {
    padding: 7px 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,.7);
    box-shadow: 0px -10px 15px 0px rgba(135, 152, 165, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px 10px 0 0;
    transform: translateY(calc(100% - 50px))!important;
    transition: .5s all ease-in-out;
}

.bottom__sidebar.active {
    transform: translateY(0)!important;
    box-shadow: 0px -10px 30px 0px rgba(135, 152, 165, 0.22);
}

.bottom__sidebar_btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bottom__sidebar_btn {
    width: 25%;
}

.bottom__sidebar_phone {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #77B09D;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px #DDEEE8;
    padding: 10px;
    margin: 10px 0;
}

.bottom__sidebar_phone svg {
    display: block;
}

.bottom__sidebar_call {
    padding-left: 10px;
}

.bottom__sidebar_call .h4 {
    padding: 0;
}

.bottom__sidebar_msgs {
    display: flex;
    justify-content: space-between;
}

.bottom__sidebar_msg {
    text-align: center;
    padding: 20px;
    width: calc(50% - 5px);
    border-radius: 10px;
}

.bottom__sidebar_wa {
    background: #E5FAE6;
    color: #17701D;
}

.bottom__sidebar_tg {
    background: #E5F3FF;
    color: #1F629D;
}

@media (min-width: 768px) {
    .bottom__sidebar {
        display: none;
    }
}