@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --font: "Sarabun", system-ui, -apple-system, sans-serif;
}

html, body {
    height: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font);
    font-weight: 700;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
}

main.main-content {
    flex: 1 0 auto;
}

nav .nav-wrapper .brand-logo {
    font-weight: 700;
}

nav .nav-wrapper .brand-logo img {
    height: 50px;
    vertical-align: middle;
    background-color: #fff;
    padding: 5px 10px 5px 10px;
    border-radius: 8px;
    margin-left: 20px;
}

.dash-line {
    border: 1px dashed #eee;
    margin-top: 25px;
    margin-bottom: 25px;
}

.bubble{
    position: absolute;
    z-index: 99999;
    background-color: white;
    color: black;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 5px #aaaaaa;
    line-height: 40px;
    left: 45px;
    bottom: -55px;
}
.bubble:before{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    position: absolute;
    top: -7px;
    left: 20px;
    background-color: white;
    box-shadow: 5px 5px 10px 5px #aaaaaa;
}
.bubble-in{
    position: relative;
    background-color: white;
    padding: 0 20px;
    border-radius: 5px;
}
.bubble-close{
    font-size: 12px;
    margin-left: 5px;
    cursor: pointer;
    color: red;
} 

nav .input-field.search {
    height: auto;
}