* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper-bg {
    background-image: url(/assets/images/bg.jpg);
}

.page-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;

}

/* filter */
.filter-container {
    width: calc(25% - 16px);
    background: #444e71;
    border-radius: 24px;
    padding: 0 16px;
    height: fit-content;
}

.filter-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
}

.filter-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-icon {
    color: rgb(229 131 66);
    font-weight: bold;
}

.header-label {
    color: rgb(229 131 66);
    font-weight: bold;
}

.close-icon {
    color: white;
    width: 12px;
    height: 12px;
}

.item-label {
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.item-label-menu {
    padding-left: 16px;
    cursor: pointer;
}

.item-label-menu p {
    display: flex;
}

.item-label-menu i {
    margin-left: auto;
    font-size: 14px;
    display: none;
}

.item-label-menu .fa-chevron-down.show,
.item-label-menu .fa-chevron-up.show {
    display: inline;
}

.item-label-menu ul.active {
    display: block;
}

.item-label-menu ul {
    display: none;
}

.item-label-menu li:hover {
    color: rgb(229 131 66);
}

.item-label-menu li {
    list-style: none;
    margin-top: 8px;
    padding-left: 16px;
    margin-bottom: 4px;
}

input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.checkbox {
    accent-color: white;
    background: transparent;
}

.count {
    color: white;
    opacity: 0.3;
}

/* content */
.content-container {
    width: calc(75% - 16px);
    background: transparent;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/*
.resource-card {
  background-color: #252640;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  padding: 8px;
  border: 1px solid rgb(71 83 120);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image {
  width: 100%;
  object-fit: cover;
  background-color: #333;
}

.resource-info {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
}

.resource-title {
  color: #9b9a9a;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
}

.resource-subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.resource-price {
  font-size: 14px;
  color: rgb(229 131 66);
  margin-top: auto;
  text-align: center;
  padding-bottom: 5px;
} */
/* paginator */

.paginator-container,
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    gap: 20px;
}

.paginator-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    font-weight: bold;
    color: white;
    border-radius: 4px;
}

.paginator-item a {
    color: white;
    text-decoration: none;
}

.paginator-item:hover {
    background-color: #444e71;
}

.active {
    background-color: #444e71;
}

.video--demo {
    width: 100%;
}

@media screen and (min-width: 1200px) {

    .content-wrapper {
        width: 90%;
        padding: 8px 42px;
    }
}

@media screen and (max-width: 767px) {
    .resource-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-container,
    .content-container {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .resource-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* common */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.border-b {
    border-bottom: 1px solid white;
}


.checkbox {
    display: none;
  }

  .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    cursor: pointer;
  }

  .checkbox:checked + .custom-checkbox::after {
    content:'✔' ;
    font-size: 16px;
    color: #ee7f4b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    /* border-radius: 3px; */
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
