/*
Aggiungere sempre il NORMALIZE nell'header di pagina con questo codice:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">

Oppure nel css con:
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

html {
    /*background-color: #f6f6f6;*/
    overflow-x: hidden;
}

body {
    /* max-width: 1080px; */     /* nessun elemento può essere full-width, cioè a pieno browser */
                                /* Max larghezza consentita è indicata qui */
                                /* cancallare/commentare la riga se invece si vogliono elementi full-width */
    margin: 0 auto;
    background-color: white;
    overflow-x: hidden;
}

/*
Copyright (c) 2020 by Nick Else (https://codepen.io/nickelse/pen/MEWPwm)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/


.flex-wrapper {
	/*margin-bottom: 2rem;
	margin-top: 2rem;*/
}

.flex-row {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

/*.flex-row:nth-child(odd) div {background: #999; padding: 1rem 0;}
.flex-row:nth-child(even) div {background: #555; padding: 1rem 0;}*/


/* forza le colonne di una riga ad avere tutte la medesima altezza */
/* (cioè quella della colonna più alta) */
/* N.B. la classe sottostante va attribuita ad ogni colonna della riga */
.eq-height{
    height: inherit;
}


@media (min-width: 980px) {
	.flex-wrapper {
        padding: 0 1%;      /* mettere lo stile inlinea "padding: 0;" */
    }                       /* (oppure "padding-left: 0;  padding-right: 0;") */
                            /* per avere uno specifico wrapper full-width */

	.flex-row {margin-top: 2rem;}
	.flex-row:first-child {margin-top: 0;}


	.d-1 						{width: 7.05%;}
	.d-2 						{width: 15.5%;}
  .d-one-5        {width: 18.85%;}  /* per fare 5 colonne da 1/5 l'una */
	.d-3      			{width: 23.95%;}
	.d-4 		        {width: 32.4%;}
  .d-45           {width: 36.63%;}  /* schema "tipo": d-45 + d-45 + d-3 */
	.d-5 						{width: 40.85%;}
	.d-6					  {width: 49.3%;}
	.d-7 						{width: 57.75%;}
	.d-8 						{width: 66.2%;}
	.d-9 						{width: 74.65%;}
	.d-10 					{width: 83.1%;}
	.d-11 					{width: 91.55%;}
	.d-12  					{width: 100%;}

    .no-d {
        display: none !important;
    }
}



@media only screen and (min-width: 661px) and (max-width: 979px) {
	.flex-wrapper {
        padding: 0 2%;
	}

	.flex-row {-webkit-box-orient: horizontal;-webkit-box-direction: normal;flex-flow: row wrap;}

	.t-4,
  .t-4on10,
	.t-6,
  .t-6on10,
  .t-8,
	.t-12 {margin-top: 2rem}

	.t-4 		     {width: 31.46%;}
  .t-4on10     {width: 34.88%;}   /* 40% */
	.t-6 		     {width: 48.6%;}
  .t-6on10     {width: 62.32%;}   /* 60% */
  .t-8 		     {width: 65.74%;}
	.t-12 		   {width: 100%;}

	.flex-row:first-child .t-4,
  .flex-row:first-child .t-4on10,
	.flex-row:first-child .t-6,
  .flex-row:first-child .t-6on10,
  .flex-row:first-child .t-8,
	.flex-row:first-child .t-12 {
		 margin-top: 0;
	}

    .no-t {
        display: none !important;
    }
}




@media only screen and (min-width: 0px) and (max-width: 660px) {
	.flex-wrapper {
        padding: 0 3%;
	}

	.flex-row {-webkit-box-orient: horizontal;-webkit-box-direction: normal;flex-flow: row wrap;}

	.m-6,
	.m-12   {margin-top: 2rem;}

	.m-6 		{width: 47.2%;}
	.m-12 	{width: 100%;}

	.flex-row:first-child .m-6,
	.flex-row:first-child .m-12 {
		 margin-top: 0;
	}

    .no-m {
        display: none !important;
    }
}



/* N.B. di seguiro tutto ciò che non è "grid" da Skeledton */



/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/



/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 661px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB; }
a:hover {
  color: #0FA0CE;
  cursor: pointer;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 400; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }

*/


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
p,
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width, .full-width, .w100 {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width, .max-width, .mw100 {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Utilities "mie"
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cursor-pointer {
  cursor: pointer;
}

.block {display: block;}
.inline {display: inline;}
.inline-block {display: inline;}

/* N.B. si deve anche mettere classe .realative al parent */
/* a meno che il parent non sia il body, allora sarebbe superfluo */
.centerXY {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p0 {padding: 0;}
.pt0 {padding-top: 0;}
.pr0 {padding-right: 0;}
.pb0 {padding-bottom: 0;}
.pl0 {padding-left: 0;}

.m0 {margin: 0;}
.mt0 {margin-top: 0;}
.mr0 {margin-right: 0;}
.mb0 {margin-bottom: 0;}
.ml0 {margin-left: 0;}

.color0, .color000 {color: #000}
.color1, .color111 {color: #111}
.color2, .color222 {color: #222}
.color3, .color333 {color: #333}
.color4, .color444 {color: #444}
.color5, .color555 {color: #555}
.color6, .color666 {color: #666}
.color7, .color777 {color: #777}
.color8, .color888 {color: #888}
.color9, .color999 {color: #999}
.colora, .coloraaa {color: #aaa}
.colorb, .colorbbb {color: #bbb}
.colorc, .colorccc {color: #ccc}
.colord, .colorddd {color: #ddd}
.colore, .coloreee {color: #eee}
.colorf, .colorfff {color: #fff}




  /* Utilities prese dal framework CSS Tachyons
  (N.B. Le classi dopo la virgola sono mie)
–––––––––––––––––––––––––––––––––––––––––––––––––– */



.ratio--16x9 { height: 0; position: relative; padding-bottom: 56.25%; }
.ratio--9x16 { height: 0; position: relative; padding-bottom: 177.77%; }
.ratio--4x3 { height: 0; position: relative; padding-bottom: 75%; }
.ratio--3x4 { height: 0; position: relative; padding-bottom: 133.33%; }
.ratio--6x4 { height: 0; position: relative; padding-bottom: 66.6%; }
.ratio--4x6 { height: 0; position: relative; padding-bottom: 150%; }
.ratio--8x5 { height: 0; position: relative; padding-bottom: 62.5%; }
.ratio--5x8 { height: 0; position: relative; padding-bottom: 160%; }
.ratio--7x5 { height: 0; position: relative; padding-bottom: 71.42%; }
.ratio--5x7 { height: 0; position: relative; padding-bottom: 140%; }
.ratio--1x1 { height: 0; position: relative; padding-bottom: 100%; }
.ratio--object { 
  position: absolute; 
  top: 0; right: 0; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 100; 
}


/* 
ESEMPIO:

<div class="ratio--16x9">
   <iframe class="ratio--object"></iframe>
</div>
*/


/* ––––––––––––––––––––––––––––– */


/*
BORDERS
Docs: http://tachyons.io/docs/themes/borders/
*/

.ba, .b-all { border-style: solid; border-width: 1px; }
.bt, .b-top { border-top-style: solid; border-top-width: 1px; }
.br, .b-right { border-right-style: solid; border-right-width: 1px; }
.bb, .b-bottom { border-bottom-style: solid; border-bottom-width: 1px; }
.bl, .b-left { border-left-style: solid; border-left-width: 1px; }
.bn, .b-none { border-style: none; border-width: 0; }

.b-dotted { border-style: dotted; }
.b-dashed { border-style: dashed; }
.b-solid { border-style: solid; }
.b-none { border-style: none; }

.bw0 { border-width: 0; }
.bw1 { border-width: .125rem; }
.bw2 { border-width: .25rem; }
.bw3 { border-width: .5rem; }
.bw4 { border-width: 1rem; }
.bw5 { border-width: 2rem; }


.br0 { border-radius: 0; }
.br1 { border-radius: .125rem; }
.br2 { border-radius: .25rem; }
.br3 { border-radius: .5rem; }
.br4 { border-radius: 1rem; }
.br-50 { border-radius: 50%; }
.br-100 { border-radius: 100%; }
.br-pill { border-radius: 9999px; }


.b-black { border-color: #000; }
.b-near-black { border-color: #111; }
.b-dark-gray { border-color: #333; }
.b-mid-gray { border-color: #555; }
.b-gray { border-color: #777; }
.b-silver { border-color: #999; }
.b-light-silver { border-color: #aaa; }
.b-moon-gray { border-color: #ccc; }
.b-light-gray { border-color: #eee; }
.b-near-white { border-color: #f4f4f4; }
.b-white { border-color: #fff; }


/* ––––––––––––––––––––––––––––– */


/*
SHADOW
*/

.shadow {box-shadow: 0 0 8px #ccc;}  /*questa è mia */

.shadow-1 { box-shadow: 0 0 4px 2px rgba( 0, 0, 0, .2 ); }
.shadow-2 { box-shadow: 0 0 8px 2px rgba( 0, 0, 0, .2 ); }
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, .2 ); }
.shadow-4 { box-shadow: 2px 2px 8px 0 rgba( 0, 0, 0, .2 ); }
.shadow-5 { box-shadow: 4px 4px 8px 0 rgba( 0, 0, 0, .2 ); }


/* ––––––––––––––––––––––––––––– */


/* 
DISPLAY
Docs: http://tachyons.io/docs/layout/display
*/

.dn, .d-none { display: none; }
.di, .d-inline { display: inline; }
.db, .d-block { display: block; }
.dib, .d-inline-block, .d-i-block { display: inline-block; }
.dit, .d-inline-table, .d-i-table { display: inline-table; }
.dt, .d-table { display: table; }
.dtc, .dt-cell, .d-table-cell, .d-t-cell { display: table-cell; }
.dt-row, .d-table-row, .d-t-row { display: table-row; }
.dt-column, .dt-col, .d-table-col, .d-t-col { display: table-column; }

.collapse { border-collapse: collapse; border-spacing: 0; }


/* ––––––––––––––––––––––––––––– */

/* 
Nicolas Gallaghers Clearfix solution
Ref: http://nicolasgallagher.com/micro-clearfix-hack/ 

Basta aggiungere la classe "cf" all'elemento che contiene COME FIGLI DIRETTI gli elementi flottanti.

Esempio:

<div class="cf">
  <div class="float-left">...</div>
  <div class="float-left">...</div>
  ...
</div>
*/

.cf:before, .cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; }


.cl { clear: left; }
.cr { clear: right; }
.cb, .clear-both, .c-both { clear: both; }
.cn { clear: none; }


/* ––––––––––––––––––––––––––––– */

/*
FLOATS
http://tachyons.io/docs/layout/floats/

Don't forget to clearfix your floats with .cf
*/

.fl, .float-left, .f-left { float: left; _display: inline; }
.fr, .float-right, .f-right { float: right; _display: inline; }
.fn, .float-none, .f-none { float: none; }

/* vedi .clear-both nella sezione appena sopra */


/* ––––––––––––––––––––––––––––– */

/* FONTS */

.i { font-style: italic; }
.fs-normal { font-style: normal; }

.fw-normal { font-weight: normal; }
.b { font-weight: bold; }
.fw100 { font-weight: 100; }
.fw200 { font-weight: 200; }
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw700 { font-weight: 700; }
.fw800 { font-weight: 800; }
.fw900 { font-weight: 900; }

.tracked, .ls-dot1 { letter-spacing: .1em; }
.tracked-tight, .ls-dot05 { letter-spacing: -.05em; }
.tracked-mega, .ls-dot25 { letter-spacing: .25em; }

.lh-solid, .lh1, .l-height-1, .l-height-100, .line-height-1, .line-height-100 { line-height: 1; }
.lh-title, .lh125, .l-height-125, .line-height-125 { line-height: 1.25; }
.lh-copy, .lh150, .l-height-150, .line-height-150 { line-height: 1.5; }
.lh175, .l-height-175, .line-height-175 { line-height: 1.75; }
.lh2, .l-height-2, .l-height-200, .line-height-2, .line-height-200 { line-height: 2; }


/*
 LINKS
 Docs: http://tachyons.io/docs/elements/links/
*/


.link { text-decoration: none; transition: color .15s ease-in; }
.link:link, .link:visited { transition: color .15s ease-in; }
.link:hover { transition: color .15s ease-in; }
.link:active { transition: color .15s ease-in; }
.link:focus { transition: color .15s ease-in; outline: 1px dotted currentColor; }


/* ––––––––––––––––––––––––––––– */

/*
POSITIONING
Docs: http://tachyons.io/docs/layout/position/
*/

.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.top-0 {top: 0;}
.bottom-0 {bottom: 0;}
.left-0 {left: 0;}
.right-0 {right: 0;}


/* ––––––––––––––––––––––––––––– */

/*
OPACITY
Docs: http://tachyons.io/docs/themes/opacity/
*/

.o-100, .op-100 { opacity: 1; }
.o-90, .op-90 { opacity: .9; }
.o-80, .op-80 { opacity: .8; }
.o-70, .op-70 { opacity: .7; }
.o-60, .op-60 { opacity: .6; }
.o-50, .op-50 { opacity: .5; }
.o-40, .op-40 { opacity: .4; }
.o-30, .op-30 { opacity: .3; }
.o-20, .op-20 { opacity: .2; }
.o-10, .op-10 { opacity: .1; }
.o-05, .op-05 { opacity: .05; }
.o-025, .op-025 { opacity: .025; }
.o-0, .op-0 { opacity: 0; }


/* scale???? */

.rotate-45 { -webkit-transform: rotate( 45deg ); transform: rotate( 45deg ); }
.rotate-90 { -webkit-transform: rotate( 90deg ); transform: rotate( 90deg ); }
.rotate-135 { -webkit-transform: rotate( 135deg ); transform: rotate( 135deg ); }
.rotate-180 { -webkit-transform: rotate( 180deg ); transform: rotate( 180deg ); }
.rotate-225 { -webkit-transform: rotate( 225deg ); transform: rotate( 225deg ); }
.rotate-270 { -webkit-transform: rotate( 270deg ); transform: rotate( 270deg ); }
.rotate-315 { -webkit-transform: rotate( 315deg ); transform: rotate( 315deg ); }


/*
   TEXT DECORATION
   Docs: http://tachyons.io/docs/typography/text-decoration/
*/

.strike { text-decoration: line-through; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/*

  TEXT ALIGN
  Docs: http://tachyons.io/docs/typography/text-align/

  Base
    t = text-align

  Modifiers
    l = left
    r = right
    c = center
    j = justify

  Media Query Extensions:
    -ns = not-small
    -m  = medium
    -l  = large
*/

.tl, .t-align-l, .text-align-left { text-align: left; }
.tr, .t-align-r, .text-align-right { text-align: right; }
.tc, .t-align-c, .text-align-center { text-align: center; }
.tj, .t-align-j, .text-align-justify { text-align: justify; }

/*
   TEXT TRANSFORM
   Docs: http://tachyons.io/docs/typography/text-transform/

   Base:
     tt = text-transform

   Modifiers
     c = capitalize
     l = lowercase
     u = uppercase
     n = none
*/

.ttc, .text-t-cap, .text-t-c { text-transform: capitalize; }
.ttl, .text-t-low, .text-t-l { text-transform: lowercase; }
.ttu, .text-t-up, .text-t-u { text-transform: uppercase; }
.ttn, .text-t-none, .text-t-n { text-transform: none; }


 /*  */

.center { margin-right: auto; margin-left: auto; }
.center_imp { margin-right: auto !important; margin-left: auto !important; }

.mr-auto { margin-right: auto; }
.ml-auto { margin-left: auto; }


.v-base { vertical-align: baseline; }
.v-mid { vertical-align: middle; }
.v-top { vertical-align: top; }
.v-btm { vertical-align: bottom; }


/*

  HOVER EFFECTS
  Docs: http://tachyons.io/docs/themes/hovers/

    - Dim
    - Glow
    - Hide Child
    - Underline text
    - Grow
    - Pointer
    - Shadow

*/

/* Dim element on hover by adding the dim class. */
.dim { opacity: 1; transition: opacity .15s ease-in; }
.dim:hover, .dim:focus { opacity: .5; transition: opacity .15s ease-in; }
.dim:active { opacity: .8; transition: opacity .15s ease-out; }

/* Animate opacity to 100% on hover by adding the glow class. */

.glow { transition: opacity .15s ease-in; }
.glow:hover, .glow:focus { opacity: 1; transition: opacity .15s ease-in; }


/* z-index */


.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }
.z-999 { z-index: 999; }
.z-9999 { z-index: 9999; }
.z-max { z-index: 2147483647; }
.z-inherit { z-index: inherit; }
.z-initial { z-index: initial; }
.z-unset { z-index: unset; }


