.btn-child {
  /* Add margin for button on list item */
  margin-top: -8px;
  margin-bottom: -5px;
  /* font-size: 5px; */
  padding: 0.3rem 0.8rem;
}
.text-close {
  margin-top: 0px;
  margin-bottom: 0px;
}
.button-loading-container {
  display: flex;
  flex-direction: row;
  margin-top: 4px;
}
.loader {
  margin-left: 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin-load 2s linear infinite;
}

.button-loading {
  min-width: 40px;
}

@keyframes spin-load {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

