/* reset */
html {
  text-size-adjust: 100%;
}
html, body, div, form, fieldset, legend, label {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: inherit;
}
body {
  line-height: 1.42857143;
  font-size: 13px;
  text-size-adjust: inherit;
}
* {
    outline: none;
}
html, body, #app {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
}

@media print {
  html, body, #app {
    height: unset !important;
    overflow: unset !important;
  }
}
b {
  color: #2e3b51;
}
input:-webkit-autofill {
    background-color: transparent !important;
}
.text-center{
    text-align: center;
}
#app {
  line-height: 1.42857143;
  background-color: white;
  font-size: 13px;
  color: #2e3b50;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

img { border: 0; }

h1 {
  font-size: 20px;
}

a{
  cursor: pointer;
  text-decoration: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
a:hover{
  text-decoration: none;
}
.root_app {
  padding-top: 20px;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f9fafc;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-color), 0.6);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

strong {
  font-weight: 700;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
p {
  margin: 0 0 10px;
}
body a {
  color: var(--primary-color);
  text-decoration: none;
}
body a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.link-white,
.link-white:hover {
  color: #fff;
  text-decoration: underline;
}
.link-white:hover {
  opacity: 0.8;
  cursor: pointer;
}
.icon {
  /*top: 3px; */
}
.icon:before {
  display: block;
}

form {
  max-width: 80%;
}
.break-word {
  word-wrap: break-word;
  word-break: break-all;
}

.dropdown{
  position: relative;
  height: 100%;
  width:100%;
}

/** Animations */
@keyframes fadein {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.fadein {
  animation-duration: 1s;
  animation-name: fadeIn;
}

/* Mobile Adaptive */
@media screen and (min-width: 769px) {
  #app .hide-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  #app .k-activity {
    display: block;
  }
  #app .k-activity-content.has-advertising {
    width: 100%;
    display: block;
    height: auto;
    /*padding-top: 80px;*/
  }
}

.pointer-event-none {
    pointer-events: none;
}
