

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf'); 
}



/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: sans-serif;
	background: #1B2838;
}

/* ------------------------------------ */
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;
}




/*//////////////////////////////////////////////////////////////////
[ Utiliti ]*/






/*//////////////////////////////////////////////////////////////////
[ Table ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-table100 {
  width: 100%;
  min-height: 95vh;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.wrap-table100 {
  width: 1170px;
}

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: #2F343F;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
table * {
  position: relative;
}
table td, table th {
  padding-left: 8px;
}
table thead tr {
  height: 60px;
  background: #36304a;
}
table tbody tr {
  height: 50px;
  border: 1px solid black;
}
table td, table th {
  text-align: center;
}
table td.l, table th.l {
  text-align: right;
}
table td.c, table th.c {
  text-align: center;
}
table td.r, table th.r {
  text-align: center;
}


.table100-head th{
  font-family: OpenSans-Regular;
  font-size: 18px;
  color: #fff;
  background-color: #080C11;
  line-height: 1.2;
  font-weight: unset;
}

tbody tr {
  font-family: OpenSans-Regular;
  font-size: 15px;
  color: #ffffff;
  background-color: #2F343F;
  line-height: 1.2;
  font-weight: unset;
}

tbody tr:hover {
  color: #ffffff;
  background-color: #111923;
  cursor: pointer;
}

.column1 {
  width: 260px;
  padding-left: 20px;
}

.column2 {
  width: 160px;
}

.column3 {
  width: 245px;
}

.column4 {
  text-align: left;
}

.complete {
    background: #1C7D45;
    color: #ffffff;
    padding-right: 20px
}

.complete:hover{
    background: #092A17;
    cursor:pointer;
}

@media screen and (max-width: 600px) {

.table100-head th:nth-child(1){
  text-align: center;
}
.table100-head th:nth-child(2){
  font-size: 0px;
  display: none;
}
.table100-head th:nth-child(3){
  text-align: center;
}
table tbody tr td:nth-child(2){
    display: none
}

.column1 {
  width: 95px;
}
.column2 {
  width: 95px;
}
.column3 {
  width: 0px;
}

}
