

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
  font-family: Arial, Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Arial, Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, 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;
  vertical-align: top;
  border: 2px black;
}

.container-table100 {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: top;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px 10px;  
}

.wrap-table100 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;  
}

.table {
  width: 100%;
  display: table;
  margin: 0;  
}

@media screen and (max-width: 768px) {
  .table {
    display: block;
  }
}

.row {
  display: table-row;
  background: #fff;
}

.row.header {
  color: #ffffff;  
  background: #4F90EA;
}

@media screen and (max-width: 768px) {
  .row {
    display: block;
  }

  .row.header {
    padding: 0;
    height: 0px;
  }

  .row.header .cell {
    display: none;
  }

  .row .cell:before {
    font-family: Arial, Poppins-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;
  }
}

.cab {
  font-family: Arial, Tahoma;
  font-size: 16px;
  color: #161D4F;
  line-height: 1.2;
  font-weight: unset !important;
  padding-left: 10px;
}
.txt {
  font-family: Arial, Tahoma;
  font-size: 14px;
  color: #161D4F;
  line-height: 0.5;
  font-weight: unset !important;
  padding-left: 10px;
}
.txt2 {
  font-family: Arial, Poppins-Regular;
  font-size: 15px;
  color: #4F90EA;
  line-height: 1.5;
}


.row .cell {
  font-family: Arial, Tahoma;
  font-size: 14px;
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}

.row.header .cell {
  font-family: Arial, Tahoma;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 10px;
  padding-bottom: 10px;
}

.row .cell:nth-child(1) {
  width: 140px;
  padding-left: 10px;
}

.row .cell:nth-child(2) {
  width: 360px;
}

.row .cell:nth-child(3) {
  width: 180px;
}

.row .cell:nth-child(4) {
  width: 120px;  
}

.row .cell:nth-child(5) {
  width: 90px;
}

.row .cell:nth-child(6) {
  width: 90px;
}

.row .cell:nth-child(7) {
  width: 90px;
}

.row .cell:nth-child(8) {
  width: 100px;
}

.row .cell:nth-child(9) {
  width: 20px;
}

.table, .row {
  width: 100% !important;
}

.row:hover {
  background-color: #ececff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .row {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    padding-top: 30px;
    padding-right: 15px;
    margin: 0;
  }
  
  .row .cell {
    border: none;
    padding-left: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .row .cell:nth-child(1) {
    padding-left: 30px;
  }
  
  .row .cell {
    font-family: Arial, Poppins-Regular;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .table, .row, .cell {
    width: 100% !important;
  }
}