.page-container {
  border: 1px solid rgba(185, 185, 185, 0.507);
  padding: 10px;
  background-color: rgba(228, 228, 228, 0.055);
  .header-row {
    .header-container {
      font-size: 20px;
      line-height: 38px;
      font-weight: 500;
      padding-left: 30px;
      display: flex;
      justify-content: start;
      align-items: center;
      text-transform: uppercase;
      color: black;
      font-family: "Roboto Slab";
    }
  }
  .instructions-data {
    .top-container, .middle-container {
      padding: 10px;
      padding: 10px 30px;
      h4 {
        font-size: 20px;
        font-weight: normal;
      }
      p {
        color: rgba(95, 95, 95, 1);
      }
    }
    .top-container {
      border-top: 1px solid rgba(185, 185, 185, 0.507);
      border-bottom: 1px solid rgba(185, 185, 185, 0.507);
    }
  }
  .section-data {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10px 30px;
    border-top: 1px solid rgba(185, 185, 185, 0.507);
    border-left: 1px solid rgba(185, 185, 185, 0.507);
    .brand-list {
        width: 100%;
        .brand-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: start;
            border-bottom: 1px solid rgba(223, 223, 223, 0.281);
            .brand-header {
                width: 95%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                i {
                    color: black;
                    font-size: 22px;
                }
            }
            .brand-header.active {
                i {
                    transform: rotate(180deg);
                }
            }
            .products-by-brand {
                list-style: none;
                opacity: 0;
                display: none;
                transition: 0.3s ease all;
                li {
                    width: 100%;
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 20px;
                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        padding-left: 10px;
                        font-weight: normal;
                    }
                    input[type="checkbox"] {
                        width: 20px;
                        height: 20px;
                        accent-color: #a7a7a77a; /* moderna opcija za boju */
                        cursor: pointer;
                        padding-top: 10px;
                        cursor: pointer;
                        position: relative;
                    }
                }
            }
            .products-by-brand.show {
                opacity: 1;
                display: flex;
                flex-direction: column;
            }
        }
    }
  }
}
#primary > div > div.page-layout.woo-layout.grid > div > div > div > div > div:nth-child(2) > div.col-md-9.section-data > div > input {
    width: 20px;
    height: 20px;
}
#primary > div > div.page-layout.woo-layout.grid > div > div > div > div > div:nth-child(2) > div.col-md-9.section-data > div > input[type="checkbox" i] {
    background-color: green;
}


