body {
    margin: 0px;
}

.topbar {
    padding: 12px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e8ebf2;
    position: sticky;
    top: 0;
    z-index: 5;
    box-sizing: border-box;
}

.topbar .desktop {
    display: flex;
    align-items: center;

}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand img {
    height: 26px;
    width: auto;
}

.topbar .links {
    margin: 0px auto 0 50px;
}

.topbar .links .inner-links {
    padding: 0px;
    list-style: none;
    display: flex;
    gap: 30px;
}

.topbar .links .inner-links li {
    position: relative;
}

.navlink {
    color: #121212;
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
    font-family: 'GT America Regular', sans-serif;
    cursor: pointer;
}

.navlink:hover {
    text-decoration: underline;
}

.mark {
    border-color: #121212 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    right: -13px;
    position: absolute;
    top: 10px;
}

.actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar .actions .search img {
    width: 20px;
}


.topbar .actions .talk-to {
    background: #121212;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    font-family: 'GT America Regular', sans-serif;
}

.topbar .actions .talk-to::after {
    content: "";
    display: inline-block;
    transform: rotate(-45deg);
    position: relative;
    right: -2px;
    border-style: solid;
    border-color: rgb(255 255 255);
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    padding: 0.15rem;
}

.topbar .actions .language {
    position: relative;
    display: flex;
}

.topbar .actions .language .globe {
    width: 20px;
    margin-right: 5px;
}

button,
.btn {
    background: #fff;
    color: #111318;
    border: 1px solid #e8ebf2;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.mobile-nav {
    display: none;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.mobile-nav img {
    cursor: pointer;
}

.mobile-nav .logo {
    height: 23px;
    width: auto;
}

.mobile-nav .pen-square {
    color: #a1a1a1;
}

.topbar .close {
    display: none;
}

@media (max-width: 767px) {

    .topbar .close {
         display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: transparent;
        color: #000;
        transition: 0.2s ease-in-out;
        border: none;
        font-weight: 600;
        font-size: 16px;
    }

    .topbar .close:hover {
        background-color: rgb(95, 95, 95);
    }

    .topbar {
        padding: 12px 20px;
        border: none;
    }

    .topbar .desktop {
        padding: 30px;
        position: fixed;
        background: white;
        height: 100%;
        top: 0px;
        left: -200%;
        transition: 0.4s ease-in-out;
        border: none;
        z-index: 10;
        display: block;
        overflow: auto;
    }

    .topbar .desktop.show {
        left: 0%;
        box-shadow: 2px 2px 5px rgb(217 217 217);
    }

    .mobile-nav {
        display: flex;
    }

    .brand img {
        height: 32px;
        width: auto;
    }

    .topbar .links .inner-links {
        display: block;
    }

    .topbar .links .inner-links li {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid #e8ebf2;
    }

    .topbar .links {
        margin: 40px 0px;
    }

    .mark {
        right: 0px;
        top: 20px;
    }

    .topbar .links .inner-links a {
        width: 100%;
        display: inline-block;
    }

    .navlink:hover {
        text-decoration: none;
    }


    .topbar .actions .search,
    .topbar .actions .login,
    .topbar .actions .language {
        display: none;
    }


}

@media (min-width: 1024px) and (max-width: 1220px) {
    .topbar {
        padding: 12px 20px;
    }

    .topbar .links .inner-links {
        gap: 24px;
    }

    .topbar .links {
        margin: 0px auto 0 15px;
    }

    .navlink {
        font-size: 14px;
    }

    .topbar .actions .talk-to {
        padding: 10px 14px;
    }

    .actions {
        gap: 15px;
    }
}
@media (min-width: 992px) and (max-width: 1024px) {

    .main-wrapper.retrieval-show > .inner-wrapper .chat-coversation-wrp {
        height: -webkit-fill-available;
            height: calc(100dvh - 245px);
    }
    .chat-coversation-wrp {
        height: -webkit-fill-available;
            height: calc(100dvh - 218px);
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .topbar .close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: transparent;
        color: #000;
        transition: 0.2s ease-in-out;
        border: none;
        font-weight: 600;
        font-size: 16px;
    }

    .topbar .close:hover {
        background: transparent;
        color: #000;
    }

    .topbar {
        padding: 12px 20px;
        border: none;
    }

    .topbar .desktop {
        padding: 30px;
        position: fixed;
        background: white;
        height: 100%;
        top: 0px;
        left: -200%;
        transition: 0.4s ease-in-out;
        border: none;
        z-index: 10;
        display: block;
        overflow: auto;
    }

    .topbar .desktop.show {
        left: 0%;
        box-shadow: 2px 2px 5px rgb(217 217 217);
    }

    .mobile-nav {
        display: flex;
    }

    .brand img {
        height: 40px;
        width: auto;
    }

    .topbar .links .inner-links {
        display: block;
    }

    .topbar .links .inner-links li {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid #e8ebf2;
    }

    .topbar .links {
        margin: 40px 0px;
    }

    .mark {
        right: 0px;
        top: 20px;
    }

    .topbar .links .inner-links a {
        width: 100%;
        display: inline-block;
    }

    .navlink:hover {
        text-decoration: none;
    }

    .topbar .actions .search,
    .topbar .actions .login,
    .topbar .actions .language {
        display: none;
    }


}