/*
 *  tabellajs - v0.4.1
 *  2016-11-09
 *
 *  https://github.com/iliketomatoes/tabellajs
 */

/*
 *  Copyright (C) 2014-2017  Interpromotion <info@interpromotion.com>
 *  Copyright (C) 2014-2017  Giancarlo Soverini <giancarlosoverini@gmail.com>
 *
 *  This file is part of Tabellajs.
 *
 *  Tabellajs is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as
 *  published by the Free Software Foundation, either version 3 of the
 *  License, or (at your option) any later version.
 *
 *  Tabellajs is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Affero General Public License for more details.
 *
 *  You should have received a copy of the GNU Affero General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>
 */

.tabella-ctr *,
.tabella-ctr *:after,
.tabella-ctr *:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tabella-ctr {
  display: block;
  position: relative;
  width: 100%;
  margin: 1rem 0 2rem;
  transition: all 100ms ease-out;
}

/*
===========================
TABLE HEADER
===========================*/
.t-fixed-header {
  display: block;
  z-index: -1;
}

.t-first-row {
  z-index: 100;
}

.t-shadow {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
  -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.1);
}

.t-shadow::before {
  position: absolute;
  content: '';
  top: -1px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/**
* WATCH OUT! The height property given to a table displayed element, is equal to min-height.
* Hence, it is going to expand when the content is higher than that height.
*/
.t-first-row .t-row-cell {
  height: 3.4rem;
}

/*
===========================
MAIN RULES
===========================*/
.t-row {
  position: relative;
  display: block;
  width: 100%;
  /*margin-top: .25rem;
  border: 1px solid rgba(0, 0, 0, 0.0);*/
}

.t-row-content-wrapper {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-top: 1px solid #d2d2d2;
}
.t-first-row .t-row-content-wrapper {border-top: none;}
.t-row-content {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
#tabella .t-row.t-first-row {border-top: none;}
.t-row .t-row-values .t-row-cell  {
  background: #fff;
}
/*** COLORED COLUMNS   ***/
.t-row .t-row-values .t-row-cell:nth-of-type(even)  {
  background: #fff;
}
.t-row .t-row-values .t-row-cell:nth-of-type(odd)  {
  background: #f4f4f4;
	
}
/*lt blue*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(1) {background-color: #c6e5f1;border-bottom:5px solid #6ed0f7;}
/*END lt blue*/
/*Orange*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(2) {background-color: #f3d9ad;border-bottom:5px solid #f9a61a;}
/*Magenta*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(3) {background-color: #f7cae3;border-bottom:5px solid #ed1c91;}
/*END Magenta*/
/*Green*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(4) {background-color: #e7efc7;border-bottom:5px solid #b2d233;}
/*END Green*/
/*blue*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(5) {background-color: #bbd9e6;border-bottom:5px solid #1da2dd;}
/*END blue*/
/*Red*/
.t-row.t-first-row .t-row-values .t-row-cell:nth-child(6) {background-color: #f4c3c1;border-bottom:5px solid #ef2a24;}
/*END Red*/
/*** END COLORED COLUMNS   ***/

.t-row-header {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.3rem 0.5rem;
  float: none;
  overflow: auto;
  color: #3F51B5;
}

.t-cell-desc-l .t-header-devider,
.t-cell-desc-s .t-header-devider {
  text-align: left;
}

.t-header-devider {
  display: block;
  clear: both;
  text-align: center;
  line-height: 0.4rem;
  margin-bottom: 0.2rem;
}

.t-sliding-row {
  position: relative;
  overflow: auto;
  will-change: transform;
}

.t-row-values {
  float: left;
  position: relative;
  font-size: .85rem;
  overflow: hidden;
}

.t-row-desc {
  float: left;
  display: table;
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0.1rem;
  font-size: .9rem;
  font-weight:600;
  text-align: left;
  height: 90px;
  
background-color: #e2e2e2;
color: #1f1f1f;}

.t-row.t-first-row .t-row-desc {height: 72px;
border-bottom: none;
    background: transparent;
}
.t-row-cell {
  float: left;
  display: table;
  position: relative;
  text-align: left;
  /*padding: 0.4rem 0.1rem;*/
  color: rgba(0, 0, 0, 0.85);
  border-left: 1px solid #fff;
  padding: .25em .5em;
  height: 90px;
}
.t-row:last-of-type .t-row-cell {
  height: 10em;
}
/*.t-row:nth-child(23) .t-row-desc {
    height: 136px;}*/

.t-row.t-first-row:last-of-type .t-row-cell {
  height: 5.33em;
}

.t-row-cell:nth-of-type(odd) {
  background-color: #C5CAE9;
}
.t-row-cell:nth-of-type(even) {
  background-color: #9FA8DA;
}

.t-cell-border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.12);
}

.t-element {
  display: table-cell;
  width: 100%;
  height: 2.88em;
  margin: 0 auto;
  padding: 0 .25em;
  overflow: hidden;
  line-height: 1.4;
  vertical-align: middle;
}

.t-cell-value {
  display: inline-block;
  /*text-align: left;*/
  cursor: default;
}

.t-cell-desc-s {
  display: block;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: .9em;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);;
}

.t-cell-desc-l {
  display: table-cell;
  position: relative;
  height: 100%;
margin: 0 auto;
padding: 0 .5em;
vertical-align: middle;
text-align: left;
/*color: rgba(0, 0, 0, 0.8);*/
/*font-style: italic;*/
	font-size: 110%;
}

.t-hide {
  display: none !important;
  width: 0;
  height: 0;
  z-index: -1;
}

.t-arrow, .t-arr-right, .t-arr-left {
  position: absolute;
  z-index: 500;
  width: 3rem;
  height: 3rem;
  top: 0;
  margin-top: 0.25rem;
  line-height: 1.4;
  font-size: 2rem;
  text-align: center;
  border-radius: 50%;
  background-color: #FF4081;
  color: #fff;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: 1px 0px 2px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: 1px 0px 2px 0px rgba(50, 50, 50, 0.75);
  box-shadow: 1px 0px 2px 0px rgba(50, 50, 50, 0.75);
  transition: all 100ms ease-out;
}

.t-arrow:active, .t-arr-right:active, .t-arr-left:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-top: 0.28rem;
}

.t-arr-right {
  right: 0;
  margin-right: -0.7rem;
}

.t-arr-right svg {
  position: relative;
  width: 60%;
  height: 60%;
  top: 10%;
}

.t-arr-left {
  left: 0;
  margin-left: -0.7rem;
}

.t-arr-left svg {
  position: relative;
  width: 60%;
  height: 60%;
  top: 10%;
}

.t-svg-arrow {
  fill: #fff;
}
.t-arrow, .t-arr-right, .t-arr-left {
    background-color: rgba(55,55,55,.5);
}
.t-arrow:hover, .t-arr-right:hover, .t-arr-left:hover {
    background-color: rgba(55,55,55,.9);
}
.t-bold {
  font-weight: bold;
}

/*
=====================
 COMMON RULES
=====================*/
.t-no-select, .t-sliding-row, .t-cell-value, .t-arr-right, .t-arr-left {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  /* No support for these yet, use at own risk */
  -o-user-select: none;
  user-select: none;
	font-size: 110%;
}




@media only screen and (max-width: 504px) {
.t-row-cell {text-align: center;}
.t-cell-value {padding: .25em;
	}
	


	
}
