@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=latin-ext');

/*//////////////////////////////////////////////////////////////////
        [ 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 ]*/

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

.limiter {
    width: 100%;
    margin: 0 auto;
    background: #acbac9;
    background: -webkit-linear-gradient(bottom,#acbac9,#9caab9);
    background: -o-linear-gradient(bottom,#acbac9,#9caab9);
    background: -moz-linear-gradient(bottom,#acbac9,#9caab9);
    background: linear-gradient(bottom,#acbac9,#9caab9);
}

.container-table100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-table100 {
    width: 960px;
    border-radius: 10px;
    overflow: hidden;
}

.table {
    max-width: 100%;
    display: table;
    margin: 0;
    background-color: transparent;
}

.table a {
    color: #666;
    text-decoration: none;
}

.table, .row {
    width: 100%;
}

.table .row {
    display: table-row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    background: #fff;
}

.table .row.header:hover {
    background: #fff;
}

.table .row:hover, .table .row:hover .row  {
    background-color: #d7dfe5;
}

.table .cell {
    display: table-cell;
    padding-left: 20px;
    padding-right: 20px;
}

.table .row .cell {
    font-size: 15px;
    color: #666;
    line-height: 1.2;
    font-weight: unset;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: middle;
}

.table .row .cell.title {
    padding-top: 30px;
    padding-bottom: 30px;
}

.table .row .cell:nth-child(1) {
    width: 360px;
}

.table .row .row .cell {
    padding-left: 0;
}

.table .row .row .cell:last-child {
    border-bottom: 0;
}

.table h1, h2 {
    text-align: center;
    color: #212529;
}

.font-normal {
  font-weight: normal !important;
}


/*.table .row .cell:nth-child(2) {*/
    /*width: 160px;*/
/*}*/

@media screen and (max-width: 1024px) {
  .table .row .cell:nth-child(1) {
    width: 100%;
  }

  .table h1 {
    font-size: 22px;
  }

  .table h2 {
    font-size: 18px;
  }

  .table .row {
    border-bottom: 1px solid #f2f2f2;
  }

  .table .row .cell {
    display: block;
    border-bottom: none;
    padding-top: 4px;
  }

  .table .row.header .cell {
    width: 100%;
    padding-top: 20px;
  }

  .table .row:not(.header) .cell:not(.title):nth-child(1) {
    width: 100%;
    padding-bottom: 0;
  }

  .table .row .cell:first-child { 
    font-weight: bold;
  }

  .word-wrap {
    width: calc(100% - 39%);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
}