html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
}

.content {
    
}

.scroller {
    max-height: calc(100vh - 80px);
}

#scroller * {
    overflow-anchor: none;
}

.logo {
    height: 80px;
}

.webchat {
    margin-top: 30px;
    max-width: 480px;
    box-shadow: rgba(20, 20, 20, 80) 10px 10px inset;
    margin-left: auto;
    margin-right: auto;
    max-height:calc(100vh - 111px);
    overflow-y: auto;
    overflow-x: auto;
}

#anchor {
    overflow-anchor: auto;
    height: 1px;
}

div::-webkit-scrollbar {
    width: 1px;
}

div::-webkit-scrollbar-track {
}

div::-webkit-scrollbar-thumb {
    background-color: darkgrey;
}

.webchat__bubble {
    scroll-margin-bottom: 90px;
}

.webchat__send-box {
    position:sticky;
    bottom: 0px;
}