*, *:before, *:after {
  -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: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 7px 0px 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; }
.t-first-row .t-row-desc {
  height: 3.4rem; }
/*
===========================
MAIN RULES
===========================*/
.t-row {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(226, 216, 204, 0.12); }

.t-row-content-wrapper {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden; }

.t-row-content {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
 }

.t-row-header {
  display: block;
  background-color:#e7e3e2;
  position: relative;
  width: 100%;
  padding: 2px 5px;
  float: none;
  overflow: auto;
  color: #2e2e2e;
  font-size: 16px; 
  text-align:left;
  }

.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;
 /* -webkit-backface-visibility: hidden;
  backface-visibility: hidden; */}

.t-row-values {
  float: left;
  position: relative;
  font-size: 16px;
  overflow: hidden; }

.t-row-desc {
  float: left;
  display: table;
  position: relative;
  overflow: hidden;
  padding: 2px 5px;
  font-size: 16px;
 /* background-color: #2e2e2e;
 */ text-align: left; 
 background:#9b9c8c;
    color: #e7e3e2;
 }

.t-row-cell {
  float: left;
  display: table;
  position: relative;
  text-align: center;
  padding: 2px 5px;
  color:#2e2e2e; }
  .t-row-cell:nth-of-type(odd) {
/*    background: url('/templates/yoo_finch/images/sfondo-menu.jpg') repeat;
	*/background:#b1b0a5; 
 }
  .t-row-cell:nth-of-type(even) {
  /* background: url('/templates/yoo_finch/images/sfondo-menu.jpg') repeat;
 */background:#d0cdc9; 
 }

.t-cell-border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 0px;
  border-top: 0px dotted rgba(0, 0, 0, 0.12); }

.t-element {
  display: table-cell;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  line-height: 30px;
  vertical-align: middle; }
.t-element .t-cell-desc-l > div {
  line-height: 25px;
}
.t-element .t-cell-desc-s > div {
  line-height: 24px;
}
.t-element .t-cell-desc-s {
  line-height: 30px;
}
.t-cell-value {
  display: inline-block;
  text-align: left;
  cursor: default; }

.t-cell-desc-s {
  display: inline-block;
  margin-right: 0.4rem;
  text-align: left;
  color:#2e2e2e; }

.t-first-row .t-cell-desc-l {
  line-height: 30px;
  vertical-align:middle;
}

.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: 2rem;
  height: 2rem;
  top: 0;
  margin-top: 0.7rem !important;
  line-height: 32px;
  font-size: 2rem;
  text-align: center;
  border-radius: 50%;
  background-color: #2e2e2e;
  color: #9b9c8c;
  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.7rem !important; }

.t-arr-right {
  right: 0;
  margin-right: -0.7rem; }
  .t-arr-right svg {
    position: relative;
    width: 18px;
    height: 18px;
    top: -6%;
}
.t-arr-left {
  left: 0;
  margin-left: -0.7rem; }
  .t-arr-left svg {
    position: relative;
    width: 18px;
    height: 18px;
    top: -6%;
}
.t-svg-arrow {
  fill: #e7e3e2; }

.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; }
.t-cell-value {
	line-height: 30px;
}