

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

/*font-family: Montserrat, sans-serif;
@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf'); 
}

@font-face {
  font-family: OpenSans-SemiBold;
  src: url('../fonts/OpenSans/OpenSans-SemiBold.ttf'); 
}
@font-face {
  font-family: OpenSans-Bold;
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf'); 
}*/

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
/** {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: sans-serif;
}*/

/* ------------------------------------ */
a {
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

/* ------------------------------------ */
/*h1,h2,h3,h4,h5,h6 {margin: 0px;}

p {margin: 0px;}

ul, li {
	margin: 0px;
	list-style-type: none;
}*/


/* ------------------------------------ */
input {
  display: block;
	outline: none;
	border: none !important;
}

textarea {
  display: block;
  outline: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

/* ------------------------------------ */
/*button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}*/


/*//////////////////////////////////////////////////////////////////
[ Table ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-table100 {
  width: 100%;
  min-height: 100px;
  background: #ffffff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 0 33px 0;
}

.wrap-table100 {
  /*width: 960px;*/
  border-radius: 10px;
  overflow: hidden;
}

.table-div {
  width: 100%;
  display: table;
  margin: 0;
  padding-bottom:14px;
}

@media screen and (max-width: 768px) {
  .table-div {
    display: block;
  }
}

.table-row {
  display: table-row;
  background: #fff;
}

.table-row.header {
  color: #ffffff;
  background: #0195db;
}
.table-row.header:hover {
  background: #000000;
}

@media screen and (max-width: 768px) {
  .table-row {
    display: block;
  }

  .table-row.header {
    padding: 0;
    height: 0px;
  }

  .table-row.header .cell {
    display: none;
  }

  .table-row .cell:before {
    font-family: OpenSans-Bold;
    font-size: 12px;
    color: #808080;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: unset !important;

    margin-bottom: 13px;
    content: attr(data-title);
    min-width: 98px;
    display: block;
  }
}

.cell {
  display: table-cell;
}

@media screen and (max-width: 768px) {
  .cell {
    display: block;
  }
}

.table-row .cell {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  font-weight: unset !important;

  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

.table-row.header .cell {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  font-weight: unset !important;

  padding-top: 19px;
  padding-bottom: 19px;
}

.table-row .cell:nth-child(1) {
  width: 40%;
  padding-left: 40px;
  padding-right:14px;
  color:#000000;
  /*font-family: OpenSans-Bold;*/
}

.table-row .cell:nth-child(2) {
  width: 60%;
  padding-right: 15px;
}

/*.row .cell:nth-child(3) {
  width: 250px;
}

.row .cell:nth-child(4) {
  width: 190px;
}*/


.table-div, .table-row {
  width: 100% !important;
}

.table-row:hover {
  background-color: #ecf8fe;
  cursor: pointer;
}
.table-row.second {
  /*background-color: #f4f4f4;*/
  background-image: linear-gradient(#ffffff, #eff6fd);
}
.table-row.second:hover {
  /*background-color: #daedfd;*/
  background-image: linear-gradient(#ffffff, #daedfd);
}

@media (max-width: 768px) {
  .table-row {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    padding-top: 30px;
    padding-right: 15px;
    margin: 0;
  }
  
  .table-row .cell {
    border: none;
    padding-left: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .table-row .cell:nth-child(1) {
    padding-left: 30px;
  }
  
  .table-row .cell {
    font-family: OpenSans-Regular;
    font-size: 16px;
    color: #555555;
    line-height: 1.4;
    font-weight: unset !important;
  }

  .table-div, .table-row, .cell {
    width: 100% !important;
  }
}