* {
  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 11pt;
}

button {
  outline: none;
}

.hidden {
  display: none !important;
}

.toggle-widget-btn {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background: #94ca62;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.widget-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 360px;
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;

  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .widget-container {
    position: absolute;
    top: 0;
    left: 50%;
    /* height: 100vh;
    width: 100vw; */
  }
  /* .widget-container .title-bar {
    display: none !important;
  } */
}

.widget-container .title-bar {
  background: #00b4ab;
  color: white;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  font-size: 12pt;
}

.widget-container .title-bar .close-btn {
  background: none;
  cursor: pointer;
  border: none;
  color: white;
  right: 10px;
  margin-left: auto;
}

.widget-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: 1px solid #ececec;
  border-top: none;
  background: white;
}
