@keyframes push-and-spin {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf") format("truetype"); }
@font-face {
    font-family: "Inter-Medium";
    src: url("../fonts/Inter-Medium.ttf") format("truetype"); }

.grecaptcha-badge{
    display: none;
}

.wh_content_area{
    position: relative;
    display: flex;
}
.chat-bot__main-logo-button{
    border: none;
    background-color: transparent;
    border-radius: 100%;
    background-image: url(../img/chatBotLogo.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: fixed;
    bottom: 13px;
    right: calc(50% - 771px);
    display: none;
    transition: transform 0.5s ease;
}
.chat-bot__main-logo-button:hover,
.chat-bot__main-logo-button.chat-bot__main-logo-button_animation{
    animation: push-and-spin 0.5s ease-in-out 1;
}
.chat-bot__main-logo-button.chat-bot__main-logo-button_active{
    display: block;
    z-index: 700;
}
.chat-bot__on-landing-page .chat-bot__main-logo-button.chat-bot__main-logo-button_active{
    z-index: 699;
}
@media (max-width: 1599px) {
    .chat-bot__main-logo-button {
        right: 30px;
    }
}
.chat-bot__content{
    display: none;
    flex-direction: column;
    background-color: #ffffff;

    box-sizing: border-box;
    width: 452px;
    min-height: 524px;
    padding: 16px;
    border-radius: 26px;
    box-shadow: 0 4px 32px 0 #0000000A;

    position: fixed;
    right: 0;
    bottom: 0;
}
@media (max-height: 564px) {
    .chat-bot__content{
        min-height: auto;
    }
}
.chat-bot__content.chat-bot__content_active{
    display: flex;
    z-index: 700;
    max-height: calc(100% - 40px);
}
.chat-bot__on-landing-page .chat-bot__content.chat-bot__content_active{
    z-index: 699;
}
.chat-bot__content.chat-bot__content_sidebar-mode{
    position: sticky;
    position: -webkit-sticky;
    top: 40px;
    height: calc(100vh - 40px);
    width: 283px;
    min-width: 283px;
    max-width: 360px;
    margin-right: -15px;
    margin-left: 15px;
    flex-shrink: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: 1px solid #CBCACA;
}

.chat-bot__content_sidebar-mode-marker #wh_topic_toc{
    margin-right: -15px;
}
@media (min-width: 1050px){
    .chat-bot__content.chat-bot__content_sidebar-mode {
        width: calc(100vw - 767px);
    }
}
@media (min-width: 1600px){
    .chat-bot__content.chat-bot__content_sidebar-mode{
        margin-right: calc((1600px - 100vw)/2 - 6px);
    }
}
@media (min-width: 2289px){
    .chat-bot__content.chat-bot__content_sidebar-mode{
        margin-right: 0;
        position: fixed;
    }
    .chat-bot__content_sidebar-mode-marker #wh_topic_toc{
        margin-right: 0;
    }
}
.chat-bot__header-row{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.chat-bot__header-logo{
    width: 24px;
    height: 24px;
    margin-right: auto;
}
.chat-bot__header-toggle-mode-button{
    border: none;
    background-color: transparent;
    background-image: url(../img/chatBotToggleMode.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 7px;
}
.chat-bot__content_sidebar-mode-marker .chat-bot__header-toggle-mode-button{
    background-image: url(../img/chatBotToggleModeSidebar.svg);
}
.chat-bot__header-close-button{
    border: none;
    background-color: transparent;
    background-image: url(../img/chatBotClose.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}
.chat-bot__chat-container-row{
    position: relative;
    display: flex;
    overflow: hidden;
}
.chat-bot__chat-container{
    height: auto;
    overflow: auto;
    min-height: 30px;
    padding-bottom: 8px;
    padding-right: 5px;
    width: 100%;
}
.chat-bot__chat-container-navigation-button{
    border: none;
    background-color: transparent;
    background-image: url(../img/chatBotNavigate.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 16px;
    right: 21px;
    display: none;
}
@media (hover: none) and (pointer: coarse) {
    .chat-bot__chat-container-navigation-button{
        right: 6px;
    }
}
.chat-bot__chat-container-navigation-button_active{
    display: block;
}
.chat-bot__chat-container-top-fade{
    background-image: linear-gradient(180deg, #ffffff 0%, #fff0 100%);
    width: 100%;
    height: 48px;
    display: none;
    position: absolute;
    top: 0;
}
.chat-bot__chat-container-top-fade.chat-bot__chat-container-top-fade_active{
    display: block;
}
.chat-bot__chat-container-bottom-fade{
    background-image: linear-gradient(180deg, #fff0 0%, #ffffff 100%);
    width: 100%;
    height: 48px;
    display: none;
    position: absolute;
    bottom: 0;
}
.chat-bot__chat-container-bottom-fade.chat-bot__chat-container-bottom-fade_active{
    display: block;
}
.chat-bot__new-message-ballon{
    margin-top: auto;
    position: relative;
    line-height: 24px;
}
.chat-bot__message-textarea{
    border-radius: 16px;
    border: solid 2px #F7F7F7;
    padding: 16px 48px 16px 16px;
    background-color: #F7F7F7;
    width: 100%;
    min-height: 112px;
    box-sizing: border-box;
    font-family: "Inter-Medium", Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #000000;
    resize: none;
}
.chat-bot__message-textarea:focus,
.chat-bot__message-textarea:hover
{
    outline: none;
    border: solid 2px rgb(100, 3, 162);
    color: rgb(25, 25, 25);
    background-color: rgb(236, 232, 255);
}
.chat-bot__message-textarea::placeholder {
    color: #8C8C8C;
}
.chat-bot__message-submit{
    position: absolute;
    right: 16px;
    bottom: 16px;

    border: none;
    border-radius: 100%;
    background-color: transparent;
    background-image: url(../img/chatBotSendActive.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;

}
.chat-bot__message-submit:disabled{
    background-image: url(../img/chatBotSend.svg);
}
.chat-bot__message-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.chat-bot__message-container:not(:first-child){
    margin-top: 24px;
}
.chat-bot__message-container.chat-bot__message-container_user{
    align-items: flex-end;
}
.chat-bot__message-container.chat-bot__message-container_assistant{
    align-items: flex-start;
}
.chat-bot__message-container.chat-bot__message-container_user .chat-bot__message{
    background-color: #ece8ff;
}
.chat-bot__message-container.chat-bot__message-container_assistant .chat-bot__message{
    padding-top: 0;
    padding-bottom: 0;
}
.chat-bot__message{
    padding-block: 8px;
    padding-inline: 12px;
    border-radius: 15px;
    display: inline-block;
    font-family: "Inter-Medium", Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #191919;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}
.chat-bot__message > *:last-child{
    margin-bottom: 0;
}
.chat-bot__chat-container_no-messages h1,
.chat-bot__message h1{
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages h2,
.chat-bot__message h2{
    margin-bottom: 1em;
    font-family: Inter-Medium;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #191919;
}
.chat-bot__chat-container_no-messages strong,
.chat-bot__message strong,
.chat-bot__chat-container_no-messages b,
.chat-bot__message b{
    font-family: Inter-Medium;
    font-weight: 600;
}
.chat-bot__chat-container_no-messages h3,
.chat-bot__message h3{
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages h4,
.chat-bot__message h4{
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages h5,
.chat-bot__message h5{
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages h6,
.chat-bot__message h6{
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages p,
.chat-bot__message p{
    margin-bottom: 1em;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #191919;
}
.chat-bot__chat-container_no-messages li,
.chat-bot__message li{
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #191919;
}

.chat-bot__chat-container_no-messages code,
.chat-bot__message code {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #4B007C;
    margin-bottom: 1em;
}

.chat-bot__chat-container_no-messages pre,
.chat-bot__message pre {
    margin-bottom: 1em;
}

.chat-bot__chat-container_no-messages ol,
.chat-bot__chat-container_no-messages ul,
.chat-bot__message ol,
.chat-bot__message ul{
    padding-left: 18px;
    margin-bottom: 1em;
}
.chat-bot__chat-container_no-messages ol,
.chat-bot__message ol{
    list-style-type: decimal;
}
.chat-bot__chat-container_no-messages ul,
.chat-bot__message ul{
    list-style-type: disc;
}
.chat-bot__chat-container_no-messages a,
.chat-bot__message a{
    margin-bottom: 1em;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #191919;
    text-decoration: underline;
}

.chat-bot__chat-container_no-messages a.chat-bot__message-source-link,
.chat-bot__message a.chat-bot__message-source-link{
    font-size: 85%;
    position: relative;
    top: -4px;
    text-decoration: none;
    color: #1E89E7;
}

.a{
    text-decoration: underline;
    color: #6403a2;
}

.chat-bot__date{
    color: #767676;
    font-size: 12px;
    line-height: 140%;
    font-family: Inter, Arial, sans-serif;
    padding-left: 12px;
}

.chat-bot__content_sidebar-mode-marker .side-menu-button.side-menu-button-right:not(.chat-bot__side-menu-button-clone){
    display: none;
}
.chat-bot__content_sidebar-mode .chat-bot__side-menu-button-clone {
    display: block;
}
@media (min-width: 2289px) {
    .chat-bot__content_sidebar-mode-marker .side-menu-button.side-menu-button-right:not(.chat-bot__side-menu-button-clone){
        display: block;
    }
    .chat-bot__content_sidebar-mode .chat-bot__side-menu-button-clone {
        display: none;
    }
}

.chat-bot__side-menu-button-clone {
    position: absolute;
    left: -34px;
    top: 18px;
    display: none;
}

/*sidebar + side menu layout BEGIN*/
@media (max-width: 1649.9px){
    .chat-bot__content_sidebar-mode-marker .side-menu__layout{
        display: block;
    }
    .chat-bot__content_sidebar-mode-marker.right-side-menu-close:not(.left-side-menu-close) .side-menu-button-right{
        z-index: 698;
        opacity: .3;
        pointer-events: none;
        filter: blur(1px);
    }
    .chat-bot__content_sidebar-mode-marker.left-side-menu-close:not(.right-side-menu-close) .side-menu-button-left{
        z-index: 698;
        opacity: .3;
        pointer-events: none;
        filter: blur(1px);
    }
    .chat-bot__content_sidebar-mode-marker nav#wh_topic_toc {
        position: fixed;
        right: 360px;
    }
    .chat-bot__content_sidebar-mode-marker:not(.left-side-menu-close) nav#wh_publication_toc {
        left: 0;
        background: #fff;
    }
    .chat-bot__content_sidebar-mode-marker.right-side-menu-close div#wh_topic_body,
    .chat-bot__content_sidebar-mode-marker.left-side-menu-close div#wh_topic_body,
    .chat-bot__content_sidebar-mode-marker div#wh_topic_body {
        padding-right: 75px;
        padding-left: 72px;
    }
    .chat-bot__content_sidebar-mode-marker nav#wh_publication_toc {
        width: 0;
        flex-basis: 0;
        position: fixed;
    }
    .chat-bot__content_sidebar-mode-marker:not(.left-side-menu-close) nav#wh_publication_toc {
        width: 280px;
        flex-basis: 280px;
    }
}
@media (min-width: 1050px) and (max-width: 1143px){
    .chat-bot__content_sidebar-mode-marker nav#wh_topic_toc {
        right: calc(100vw - 767px);
    }
}
@media (max-width: 1049px){
    .chat-bot__content_sidebar-mode-marker nav#wh_topic_toc {
        right: 0;
    }
    #go2top {
        transition-duration: unset;
    }
}
/*sidebar + side menu layout END*/
@media (max-width: 1279.9px) {
    .chat-bot__main-logo-button.chat-bot__main-logo-button_active {
        bottom: 50px;
        right: 27px;
        z-index: 500;
    }
    body:not(.left-side-menu-close):not(.chat-bot__content_sidebar-mode-marker) .chat-bot__content.chat-bot__content_active,
    body:not(.right-side-menu-close):not(.chat-bot__content_sidebar-mode-marker) .chat-bot__content.chat-bot__content_active {
        z-index: 600;
    }
}
@media (max-width: 1049px){
    .chat-bot__header-toggle-mode-button{
        display:none;
    }
    .chat-bot__content.chat-bot__content_sidebar-mode,
    .chat-bot__content {
        width: 100%;
        height: 100%;
        min-width: unset;
        max-width: unset;
        border-radius: 26px;
        box-shadow: 0 4px 32px 0 #0000000A;
        position: fixed;
        right: 0;
        bottom: 0;
        top: 40px;
        left: 0;
        margin-right: 0;
        margin-left: 0;
        border-left: none;
    }
    .chat-bot__content_popup-mode-marker .side-menu-button,
    .chat-bot__content_sidebar-mode-marker .side-menu-button{
        display: none;
    }
}
@media (max-width: 919px) {
    .chat-bot__main-logo-button.chat-bot__main-logo-button_active {
        right: 22px;
    }
}
@media (max-width: 767px) {
    .chat-bot__main-logo-button.chat-bot__main-logo-button_active {
        right: 32px;
    }
}
@media (min-width: 1650px) and (max-width: 2289px) {
    .chat-bot__content_sidebar-mode-marker:not(.right-side-menu-close) #go2top {
        right: 625px;
        z-index: 699;
    }
    .chat-bot__content_sidebar-mode-marker #go2top {
        right: 385px;
    }
}
@media (max-width: 1649px) {
    .chat-bot__content_sidebar-mode-marker #go2top {
        right: 375px;
    }
}
@media (min-width: 1050px) and (max-width: 1143px){
    .chat-bot__content_sidebar-mode-marker #go2top {
        right: calc(100vw - 750px);
    }
}

.chat-bot__on-landing-page .chat-bot__header-toggle-mode-button{
    display: none!important;
}