
.resource-container {
  width: 100%;
}

.resource-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.resource-list-item {
  width: 47.5%;
  border-bottom: .0625rem solid rgb(226, 226, 226);
  display: flex;
  flex-direction: row;
  padding-top: .25rem;
  padding-bottom: .25rem;
  align-items: center;
  cursor: pointer;
}

.resource-list-item:hover > .resource-list-item-name {
  transition: all .3s;
  color: rgb(254, 108, 34);
}

.resource-list-item-arrow {
  width: .25rem;
  height: .25rem;
  border-top: .0625rem solid #999;
  border-right: .0625rem solid #999;
  transform: rotate(45deg);
  margin-right: 1.125rem;
}

.resource-list-item-name {
  flex: 1;
  font-size: .75rem;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.resource-list-item-icon {
  height: 50%;
  margin-bottom: .25rem;
}

.resource-list-item-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1920px) {
  .resource-list-item {
    border-bottom: 1px solid rgb(226, 226, 226);
    padding-top: 6px;
    padding-bottom: 6px;
  }
  
  .resource-list-item-arrow {
    width: 4px;
    height: 4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    margin-right: 20px;
  }
  
  .resource-list-item-name {
    font-size: 14px;
    padding-right: 18px;
  }
  
  .resource-list-item-icon {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 767px) {
  .resource-list-item {
    width: 100%;
  }
}
