.vci-w-50 {
  width: 50% !important;
}

.vci-w-100 {
  width: 100% !important;
}

.vci-w-auto {
  width: auto !important;
}

.vci-w-screen {
  width: 100vw !important;
}

.vci-h-50 {
  height: 50% !important;
}

.vci-h-100 {
  height: 100% !important;
}

.vci-h-auto {
  height: auto !important;
}

.vci-h-screen {
  height: 100vh !important;
}

/* stylelint-disable */
.vci-size-100 {
  @extend .vci-w-100;
  @extend .vci-h-100;
}

.vci-size-auto {
  @extend .vci-w-auto;
  @extend .vci-h-auto;
}

.vci-screen {
  @extend .vci-w-screen;
  @extend .vci-h-screen;
}

/* stylelint-enable */
