body {
  margin-top: 40px;
}

$_1: red;
$_2: transparent;

$line: 1px solid $_2;

.pl-16 {
  padding-left: 16px;
}
.odeljak{
  margin-left: 10px;
}

.price-table {
  border: $line;
  width: 100%;
  border-collapse: collapse;
  .table-header {
    background-color: #5e6f81;
    th {
      padding-top: 9px;
      padding-bottom: 9px;
      &:first-child {
        padding-left: 15px;
        border: $line;
        border-top-left-radius: 6px;
        border-right: 1px solid white;
        width: 50%;
      }
      &:last-child {
        border: $line;
        border-top-right-radius: 6px;
      }
      h2 {
        color: white;
        font-weight: bold;
        @media screen and (max-width: 768px) {
          font-size: 16px;
        }
      }
      span {
        color: white;
        @media screen and (max-width: 768px) {
          font-size: 16px;
        }
      }
    }
  }
}

.colored-1 {
  background-color: #edeff0;
  td:first-child {
    padding: 25px 12px;
    border-right: 1px solid white;
  }
  td {
    border-bottom: 1px solid white;
  }
}

.text-bold {
  font-weight: bold;
}

.text-14 {
  font-size: 15px;
  padding-top:10px;
  padding-bottom: 10px;
  margin-left: 20px;
}

.colored-2 {
  td {
    background-color: #f8f8f8;
    padding: 20px 12px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}



/*bar percentage*/


.bar-main-container {
  margin: 10px auto;
  width: 300px;
  height: 50px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 0.8em;
  color: #FFF;
}

.wrap { padding: 8px; }

.bar-percentage {
  float: left;
  /*background: rgba(0,0,0,0.13);*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 9px 0px;
  width: 18%;
  height: 16px;
}

.bar-container {
  float: right;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  height: 10px;
  background: rgba(0,0,0,0.13);
  width: 78%;
  margin: 12px 0px;
  overflow: hidden;
}

.bar {
  float: left;
  background: #FFF;
  height: 100%;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  border-radius: 10px 0px 0px 10px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* COLORS */
.azure   { background: #9da921; }
.emerald { background: #2CB299; }
.violet  { background: #8E5D9F; }
.yellow  { background: #EFC32F; }
.red     { background: #E44C41; }

/*bar percentage*/