@import '~compass-mixins';
@import './variables';
.rootElement {
  position: relative; // makes absolute position stuff relative to the coreLibrary.rootElement
  * {
    font-size: 12px;
    line-height: 24px;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
  }
  *,
  *::after,
  *::before {
    @include box-sizing(border-box);
  }
  a {
    text-decoration: none;
  }
  strong {
    font-weight: bold;
  }
  &Embedded {
    box-sizing: border-box;
    height: 0;
    overflow-y: hidden;
  } // Chrome clipping bug: crbug.com/157218
  .KambiWidget-outcome__odds-wrapper {
    transform: none !important;
  } // Address margins set differently in Firefox 4+, Safari, and Chrome
  input:matches([type='button'], [type='submit'], [type='reset']),
  input[type='file']::-webkit-file-upload-button {
    margin: initial;
  }
}

// CSS rules for when not embedded
html.notEmbedded {
  min-width: 100%;
  width: 1px;
  margin: 0;
  padding: 0;
  width: 100%;
  body {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
