

.table{
 
    width: 77%;
  border-spacing: 0;
  border-collapse: collapse;
  /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 1px 2px 0 rgba(0, 0, 0, .24);*/
  background-color: var(--tableBgColor, #fff);
}

.table__thead{
  background-color: var(--tableTitleBgColor);
  color: var(--tableTitleTextColor);
}

.table__mobile-caption{
  display: none;
}

.table__td, .table__th{
  padding: var(--tableCellPadding, 20px);
  box-sizing: border-box;
}

@media screen and (min-width: 769px){

  /*.table__tr:hover{
    background-color: var(--tableRowBgColorHover);
  }*/

  .table__td:first-child, .table__th:first-child{
    width: 30%;
    text-align: left;
  }

  .table__td, .table__th{
    text-align: center;
  }
}

@media screen and (max-width: 768px){

  .table, .table__thead, .table__tbody, .table__tr{
    display: block;
  }

  .table__td{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .table__head{
    display: none;
  }

  .table__mobile-title{
    background-color: var(--tableTitleBgColor);
    color: var(--tableTitleTextColor);
  }

  .table__td{
    border-bottom: 1px solid var(--tableSeparatorColor);
  }

  .table__td:last-of-type{
    border-bottom: none;
  }

  .table__mobile-caption, .table__value{
    display: block;
    width: 50%;
    box-sizing: border-box;
  }

  .table__mobile-caption{
    padding-right: 2%;
  }
}

/* demo styles for table */

.table{
  --tableCellPadding: 2rem;
 --tableTitleBgColor: #a30a0d;
  --tableTitleTextColor: #fff;
  --tableRowBgColorHover: #f0f0f0;
  --tableSeparatorColor: #eee;
  font-size:12px;
}

/*
* demo page
*/

@media screen and (min-width: 768px){

  html{
    font-size: 62.5%;
  }
}

@media screen and (max-width: 767px){

  html{
    font-size: 50%;
  }
}

body{
  color: #222;
  margin: 0;
  -webkit-overflow-scrolling: touch;   
}

a{
  text-decoration: none;
  color: #5668ca;
}

a:hover, a:focus{
  text-decoration: underline;
}

.page{
/*  min-height: 100vh;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.page__demo{
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main-container{
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1000px;
  
  margin-right: auto;
  margin-left: auto;
}

.page__container{
  margin-top: 4rem;
  margin-bottom: 4rem;
}


@media screen and (min-width: 641px){

  .footer__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .melnik909{
    margin-left: 2rem;
  }  
}

@media screen and (max-width: 640px){

  .melnik909{
    display: none;
  } 
}

 .table > tbody > tr > td {
	 vertical-align: middle;
     /*border: 1px solid #ddd !important;*/
 }
 .table > thead > tr > th,.table > tbody > tr > td{
 padding: 14px !important;
 }
 
 .table__th{
     font-family: 'Gotham3';
    vertical-align: middle !important;
	text-transform:uppercase;
	font-weight:300;
	 }
	 
	 .table > thead >tr > th{
	border:none;
} 


.table__tr:nth-child(odd){background-color: #fff;cursor:pointer;}
.table__tr:nth-child(even){  background-color: rgb(211,211,211);;cursor:pointer;}