/*
Paragraph tags smoothing
*/
p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
Anchor tags color
*/
a {
  color: currentColor;
}

/*
Input tag
*/
input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
/*
Icon Component
*/
.icon-comp {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.small-icon {
  width: 15px;
  height: 15px;
}

.large-icon {
  width: 30px;
  height: 30px;
}

/*
Icon SVG
*/
svg.icon-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

path,
shape,
rect,
polygon,
circle,
ellipse {
  stroke: transparent;
  fill: currentColor;
}

line,
polyline {
  stroke: currentColor;
  fill: transparent;
}
