@ionic/angular
Version:
Angular specific wrappers for @ionic/core
1,101 lines (977 loc) • 25.6 kB
CSS
/**
* Convert a font size to a dynamic font size.
* Fonts that participate in Dynamic Type should use
* dynamic font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param unit (optional) - The unit to convert to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a maximum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a minimum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* maximum and minimum font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
.ion-no-padding {
--padding-start: 0;
--padding-end: 0;
--padding-top: 0;
--padding-bottom: 0;
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
}
.ion-padding {
--padding-start: var(--ion-padding, 16px);
--padding-end: var(--ion-padding, 16px);
--padding-top: var(--ion-padding, 16px);
--padding-bottom: var(--ion-padding, 16px);
-webkit-padding-start: var(--ion-padding, 16px);
padding-inline-start: var(--ion-padding, 16px);
-webkit-padding-end: var(--ion-padding, 16px);
padding-inline-end: var(--ion-padding, 16px);
padding-top: var(--ion-padding, 16px);
padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-top {
--padding-top: var(--ion-padding, 16px);
padding-top: var(--ion-padding, 16px);
}
.ion-padding-start {
--padding-start: var(--ion-padding, 16px);
-webkit-padding-start: var(--ion-padding, 16px);
padding-inline-start: var(--ion-padding, 16px);
}
.ion-padding-end {
--padding-end: var(--ion-padding, 16px);
-webkit-padding-end: var(--ion-padding, 16px);
padding-inline-end: var(--ion-padding, 16px);
}
.ion-padding-bottom {
--padding-bottom: var(--ion-padding, 16px);
padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-vertical {
--padding-top: var(--ion-padding, 16px);
--padding-bottom: var(--ion-padding, 16px);
padding-top: var(--ion-padding, 16px);
padding-bottom: var(--ion-padding, 16px);
}
.ion-padding-horizontal {
--padding-start: var(--ion-padding, 16px);
--padding-end: var(--ion-padding, 16px);
-webkit-padding-start: var(--ion-padding, 16px);
padding-inline-start: var(--ion-padding, 16px);
-webkit-padding-end: var(--ion-padding, 16px);
padding-inline-end: var(--ion-padding, 16px);
}
.ion-no-margin {
--margin-start: 0;
--margin-end: 0;
--margin-top: 0;
--margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
margin-bottom: 0;
}
.ion-margin {
--margin-start: var(--ion-margin, 16px);
--margin-end: var(--ion-margin, 16px);
--margin-top: var(--ion-margin, 16px);
--margin-bottom: var(--ion-margin, 16px);
-webkit-margin-start: var(--ion-margin, 16px);
margin-inline-start: var(--ion-margin, 16px);
-webkit-margin-end: var(--ion-margin, 16px);
margin-inline-end: var(--ion-margin, 16px);
margin-top: var(--ion-margin, 16px);
margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-top {
--margin-top: var(--ion-margin, 16px);
margin-top: var(--ion-margin, 16px);
}
.ion-margin-start {
--margin-start: var(--ion-margin, 16px);
-webkit-margin-start: var(--ion-margin, 16px);
margin-inline-start: var(--ion-margin, 16px);
}
.ion-margin-end {
--margin-end: var(--ion-margin, 16px);
-webkit-margin-end: var(--ion-margin, 16px);
margin-inline-end: var(--ion-margin, 16px);
}
.ion-margin-bottom {
--margin-bottom: var(--ion-margin, 16px);
margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-vertical {
--margin-top: var(--ion-margin, 16px);
--margin-bottom: var(--ion-margin, 16px);
margin-top: var(--ion-margin, 16px);
margin-bottom: var(--ion-margin, 16px);
}
.ion-margin-horizontal {
--margin-start: var(--ion-margin, 16px);
--margin-end: var(--ion-margin, 16px);
-webkit-margin-start: var(--ion-margin, 16px);
margin-inline-start: var(--ion-margin, 16px);
-webkit-margin-end: var(--ion-margin, 16px);
margin-inline-end: var(--ion-margin, 16px);
}
/**
* Convert a font size to a dynamic font size.
* Fonts that participate in Dynamic Type should use
* dynamic font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param unit (optional) - The unit to convert to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a maximum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a minimum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* maximum and minimum font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
.ion-float-left {
float: left ;
}
.ion-float-right {
float: right ;
}
.ion-float-start {
float: left ;
}
:host-context([dir=rtl]) .ion-float-start {
float: right ;
}
[dir=rtl] .ion-float-start {
float: right ;
}
@supports selector(:dir(rtl)) {
.ion-float-start:dir(rtl) {
float: right ;
}
}
.ion-float-end {
float: right ;
}
:host-context([dir=rtl]) .ion-float-end {
float: left ;
}
[dir=rtl] .ion-float-end {
float: left ;
}
@supports selector(:dir(rtl)) {
.ion-float-end:dir(rtl) {
float: left ;
}
}
@media (min-width: 576px) {
.ion-float-sm-left {
float: left ;
}
.ion-float-sm-right {
float: right ;
}
.ion-float-sm-start {
float: left ;
}
:host-context([dir=rtl]) .ion-float-sm-start {
float: right ;
}
[dir=rtl] .ion-float-sm-start {
float: right ;
}
@supports selector(:dir(rtl)) {
.ion-float-sm-start:dir(rtl) {
float: right ;
}
}
.ion-float-sm-end {
float: right ;
}
:host-context([dir=rtl]) .ion-float-sm-end {
float: left ;
}
[dir=rtl] .ion-float-sm-end {
float: left ;
}
@supports selector(:dir(rtl)) {
.ion-float-sm-end:dir(rtl) {
float: left ;
}
}
}
@media (min-width: 768px) {
.ion-float-md-left {
float: left ;
}
.ion-float-md-right {
float: right ;
}
.ion-float-md-start {
float: left ;
}
:host-context([dir=rtl]) .ion-float-md-start {
float: right ;
}
[dir=rtl] .ion-float-md-start {
float: right ;
}
@supports selector(:dir(rtl)) {
.ion-float-md-start:dir(rtl) {
float: right ;
}
}
.ion-float-md-end {
float: right ;
}
:host-context([dir=rtl]) .ion-float-md-end {
float: left ;
}
[dir=rtl] .ion-float-md-end {
float: left ;
}
@supports selector(:dir(rtl)) {
.ion-float-md-end:dir(rtl) {
float: left ;
}
}
}
@media (min-width: 992px) {
.ion-float-lg-left {
float: left ;
}
.ion-float-lg-right {
float: right ;
}
.ion-float-lg-start {
float: left ;
}
:host-context([dir=rtl]) .ion-float-lg-start {
float: right ;
}
[dir=rtl] .ion-float-lg-start {
float: right ;
}
@supports selector(:dir(rtl)) {
.ion-float-lg-start:dir(rtl) {
float: right ;
}
}
.ion-float-lg-end {
float: right ;
}
:host-context([dir=rtl]) .ion-float-lg-end {
float: left ;
}
[dir=rtl] .ion-float-lg-end {
float: left ;
}
@supports selector(:dir(rtl)) {
.ion-float-lg-end:dir(rtl) {
float: left ;
}
}
}
@media (min-width: 1200px) {
.ion-float-xl-left {
float: left ;
}
.ion-float-xl-right {
float: right ;
}
.ion-float-xl-start {
float: left ;
}
:host-context([dir=rtl]) .ion-float-xl-start {
float: right ;
}
[dir=rtl] .ion-float-xl-start {
float: right ;
}
@supports selector(:dir(rtl)) {
.ion-float-xl-start:dir(rtl) {
float: right ;
}
}
.ion-float-xl-end {
float: right ;
}
:host-context([dir=rtl]) .ion-float-xl-end {
float: left ;
}
[dir=rtl] .ion-float-xl-end {
float: left ;
}
@supports selector(:dir(rtl)) {
.ion-float-xl-end:dir(rtl) {
float: left ;
}
}
}
/**
* Convert a font size to a dynamic font size.
* Fonts that participate in Dynamic Type should use
* dynamic font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param unit (optional) - The unit to convert to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a maximum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a minimum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* maximum and minimum font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
.ion-text-center {
text-align: center ;
}
.ion-text-justify {
text-align: justify ;
}
.ion-text-start {
text-align: start ;
}
.ion-text-end {
text-align: end ;
}
.ion-text-left {
text-align: left ;
}
.ion-text-right {
text-align: right ;
}
.ion-text-nowrap {
white-space: nowrap ;
}
.ion-text-wrap {
white-space: normal ;
}
@media (min-width: 576px) {
.ion-text-sm-center {
text-align: center ;
}
.ion-text-sm-justify {
text-align: justify ;
}
.ion-text-sm-start {
text-align: start ;
}
.ion-text-sm-end {
text-align: end ;
}
.ion-text-sm-left {
text-align: left ;
}
.ion-text-sm-right {
text-align: right ;
}
.ion-text-sm-nowrap {
white-space: nowrap ;
}
.ion-text-sm-wrap {
white-space: normal ;
}
}
@media (min-width: 768px) {
.ion-text-md-center {
text-align: center ;
}
.ion-text-md-justify {
text-align: justify ;
}
.ion-text-md-start {
text-align: start ;
}
.ion-text-md-end {
text-align: end ;
}
.ion-text-md-left {
text-align: left ;
}
.ion-text-md-right {
text-align: right ;
}
.ion-text-md-nowrap {
white-space: nowrap ;
}
.ion-text-md-wrap {
white-space: normal ;
}
}
@media (min-width: 992px) {
.ion-text-lg-center {
text-align: center ;
}
.ion-text-lg-justify {
text-align: justify ;
}
.ion-text-lg-start {
text-align: start ;
}
.ion-text-lg-end {
text-align: end ;
}
.ion-text-lg-left {
text-align: left ;
}
.ion-text-lg-right {
text-align: right ;
}
.ion-text-lg-nowrap {
white-space: nowrap ;
}
.ion-text-lg-wrap {
white-space: normal ;
}
}
@media (min-width: 1200px) {
.ion-text-xl-center {
text-align: center ;
}
.ion-text-xl-justify {
text-align: justify ;
}
.ion-text-xl-start {
text-align: start ;
}
.ion-text-xl-end {
text-align: end ;
}
.ion-text-xl-left {
text-align: left ;
}
.ion-text-xl-right {
text-align: right ;
}
.ion-text-xl-nowrap {
white-space: nowrap ;
}
.ion-text-xl-wrap {
white-space: normal ;
}
}
/**
* Convert a font size to a dynamic font size.
* Fonts that participate in Dynamic Type should use
* dynamic font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param unit (optional) - The unit to convert to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a maximum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a minimum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* maximum and minimum font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
.ion-text-uppercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: uppercase ;
}
.ion-text-lowercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: lowercase ;
}
.ion-text-capitalize {
/* stylelint-disable-next-line declaration-no-important */
text-transform: capitalize ;
}
@media (min-width: 576px) {
.ion-text-sm-uppercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: uppercase ;
}
.ion-text-sm-lowercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: lowercase ;
}
.ion-text-sm-capitalize {
/* stylelint-disable-next-line declaration-no-important */
text-transform: capitalize ;
}
}
@media (min-width: 768px) {
.ion-text-md-uppercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: uppercase ;
}
.ion-text-md-lowercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: lowercase ;
}
.ion-text-md-capitalize {
/* stylelint-disable-next-line declaration-no-important */
text-transform: capitalize ;
}
}
@media (min-width: 992px) {
.ion-text-lg-uppercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: uppercase ;
}
.ion-text-lg-lowercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: lowercase ;
}
.ion-text-lg-capitalize {
/* stylelint-disable-next-line declaration-no-important */
text-transform: capitalize ;
}
}
@media (min-width: 1200px) {
.ion-text-xl-uppercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: uppercase ;
}
.ion-text-xl-lowercase {
/* stylelint-disable-next-line declaration-no-important */
text-transform: lowercase ;
}
.ion-text-xl-capitalize {
/* stylelint-disable-next-line declaration-no-important */
text-transform: capitalize ;
}
}
.ion-align-self-start {
align-self: flex-start ;
}
.ion-align-self-end {
align-self: flex-end ;
}
.ion-align-self-center {
align-self: center ;
}
.ion-align-self-stretch {
align-self: stretch ;
}
.ion-align-self-baseline {
align-self: baseline ;
}
.ion-align-self-auto {
align-self: auto ;
}
.ion-wrap {
flex-wrap: wrap ;
}
.ion-nowrap {
flex-wrap: nowrap ;
}
.ion-wrap-reverse {
flex-wrap: wrap-reverse ;
}
.ion-justify-content-start {
justify-content: flex-start ;
}
.ion-justify-content-center {
justify-content: center ;
}
.ion-justify-content-end {
justify-content: flex-end ;
}
.ion-justify-content-around {
justify-content: space-around ;
}
.ion-justify-content-between {
justify-content: space-between ;
}
.ion-justify-content-evenly {
justify-content: space-evenly ;
}
.ion-align-items-start {
align-items: flex-start ;
}
.ion-align-items-center {
align-items: center ;
}
.ion-align-items-end {
align-items: flex-end ;
}
.ion-align-items-stretch {
align-items: stretch ;
}
.ion-align-items-baseline {
align-items: baseline ;
}
/**
* Convert a font size to a dynamic font size.
* Fonts that participate in Dynamic Type should use
* dynamic font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param unit (optional) - The unit to convert to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a maximum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* a minimum font size.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* Convert a font size to a dynamic font size but impose
* maximum and minimum font sizes.
* @param size - The initial font size including the unit (i.e. px or pt)
* @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
* @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
* @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
* convert to a unit other than $baselineUnit.
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
/**
* A heuristic that applies CSS to tablet
* viewports.
*
* Usage:
* @include tablet-viewport() {
* :host {
* background-color: green;
* }
* }
*/
/**
* A heuristic that applies CSS to mobile
* viewports (i.e. phones, not tablets).
*
* Usage:
* @include mobile-viewport() {
* :host {
* background-color: blue;
* }
* }
*/
.ion-hide {
display: none ;
}
.ion-hide-up {
display: none ;
}
.ion-hide-down {
display: none ;
}
@media (min-width: 576px) {
.ion-hide-sm-up {
display: none ;
}
}
@media (max-width: 575.98px) {
.ion-hide-sm-down {
display: none ;
}
}
@media (min-width: 768px) {
.ion-hide-md-up {
display: none ;
}
}
@media (max-width: 767.98px) {
.ion-hide-md-down {
display: none ;
}
}
@media (min-width: 992px) {
.ion-hide-lg-up {
display: none ;
}
}
@media (max-width: 991.98px) {
.ion-hide-lg-down {
display: none ;
}
}
@media (min-width: 1200px) {
.ion-hide-xl-up {
display: none ;
}
}
@media (max-width: 1199.98px) {
.ion-hide-xl-down {
display: none ;
}
}
/*# sourceMappingURL=utils.bundle.css.map */