/*!*****************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./layout/networks/network-item.scss ***!
  \*****************************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/*
$grids: (
    'default': $mobile_base,
    'switches': (
        $mobile_switch: $mobile_base,
        $tablet_switch: $tablet_base,
        $max_switch: $max_base
    ),
    'definitions': (
        $mobile_base: (
            'columns': 8,
            'column': 44,
            'gutter': 14,
            'fix': false
        ),
        $tablet_base: (
            'columns': 12,
            'column': 56,
            'gutter': 22,
            'fix': false
        ),
        $max_base: (
            'columns': 12,
            'column': 139,
            'gutter': 54,
            'fix': true
        )
    )
);
*/
/* EASING */
/* Font settings */
/************
/** COLOR VARIABLES
/****************************************/
/* **************************** */
/* Pimcore-editmode used colors */
/* **************************** */
/* **************************** */
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
/* stylelint-disable */
.network-item {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.network-item:focus-visible {
  outline-offset: 2px;
  outline-color: var(--textlink-foreground-color);
  outline-style: solid;
  outline-width: 2px;
  border-radius: 50%;
}
.network-item .network-item__label {
  opacity: 0;
  font-size: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.network-item svg {
  width: 100%;
  height: auto;
}
.network-item svg path {
  fill: var(--networks-icon-color);
  transition: fill 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.network-item svg rect {
  stroke: var(--networks-icon-color);
  transition: stroke 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (min-width: 1024px) {
  .network-item {
    width: 28px;
    height: 28px;
  }
}
@media (hover: hover) {
  .network-item:hover {
    --networks-icon-color: var(--networks-icon-color-hover);
  }
}
