/* CSS Reset from https://alligator.io/css/minimal-css-reset/ */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Styles */
.hidden {
  display: none !important;
}

/* Widget Styles */
.root {
  position: relative;
  display: inline-block;
  padding: 10px;
  margin: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-family: 'Source Sans Pro Semibold', sans-serif;
  font-size: 20px;
  min-width: 150px;
}

.live-indicator {
  position: absolute;
  top: 1px;
  right: 4px;
  font-size: 10px;
}

.logo {
  text-decoration: none;
}

.conversions {
  margin-top: 5px;
}

.toggle-conversion {
  cursor: pointer;
  text-align: center;
}

.price {
  text-align: center;
}

.actions {
  display: flex;
  font-size: 12px;
}

.actions__toggle-calc {
  cursor: pointer;
}

.actions__buy-sell {
  margin: 0 0 0 auto; /* pull to the right */
  text-decoration: none;
  font-size: 12px;
  color: rgb(0, 0, 0);
}

.calc {
  font-size: 16px;
  margin-top: 8px;
}

.calc__amount {
  display: flex;
  align-items: center;
}

.calc__amount__input {
  margin-right: 5px;
}

.jqstooltip {
  box-sizing: content-box;
}