.big-loader {
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #FFE600;
  /* Blue */
  border-left: 8px solid #404040;
  /* Blue */
  border-bottom: 8px solid #FFE600;
  /* Blue */
  border-right: 8px solid #404040;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.small-loader {
  border: 4px solid #f3f3f3;
  /* Light grey */
  border-top: 4px solid #FFE600;
  /* Blue */
  border-left: 4px solid #404040;
  /* Blue */
  border-bottom: 4px solid #FFE600;
  /* Blue */
  border-right: 4px solid #404040;
  /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-check-label {
  padding-left: 8px;
}

.hoz-item-center {
  align-items: center;
  display: block;
}

.padding-left-15 {
  padding-left: 15px
}

.child-red p {
  color: rgb(255, 0, 0);
}

.child-green {
  color: rgb(2, 74, 122);
}

.child-blue p {
  color: rgb(4, 139, 38);
}

.child-yellow {
  color: rgb(83, 5, 114);
}

.child-font-14 * {
  font-size: 14px;
}

.modal-result {
  width: '1000px';
}