.box-form {
  margin-top: 40px;
}
.box-form form {
  text-align: start;
}
.box-form p {
  margin: 0;
}
.title-form {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
}
.title-form:not(:first-child) {
  margin-top: 20px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input{
  color: #1a4048;
}
.form-group input,
.group-select {
  width: 100%;
  border: 1px solid #1a404873;
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  outline: none;
}
.form-group input {
  padding: 10px;
}
.box-form label {
  color: #757575;
  font-size: 16px;
}
.form-group label:not(.not-absolute) {
  position: absolute;
  left: 8px;
  top: 12px;
  pointer-events: none;
  transition: 0.2s ease all;
}
.form-group input:focus {
  outline: solid 1px #1195f933;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -6px;
  left: 5px;
  padding: 0 5px;
  font-size: 12px;
  background-color: #fff;
}
.group-select {
  margin-bottom: 20px;
}
.custom-select-container {
  position: relative;
}
.custom-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 10px 25px 10px 10px;
}
.custom-select-container .option-active {
  font-size: 16px;
  font-weight: 700;
  color: #1a4048;
  padding-right: 8px;
  position: relative;
  max-width: 75%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.custom-select-container .option-active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #1a4048;
}
.custom-select-container .arrow {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease;
}
.custom-select-container.expanded .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select-container .custom-select-body {
  position: absolute;
  top: 110%;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #1a404873;
  border-radius: 8px;
  display: none;
  overflow: hidden;
  max-height: 230px;
}
.custom-select-container.expanded .custom-select-body {
  display: block;
  overflow: auto;
}
.custom-select-container .custom-select-body .custom-select-option {
  padding: 5px 10px;
  cursor: pointer;
  text-align: end;
  color: #1a4048;
  font-size: 16px;
  user-select: none;
}
.custom-select-container .custom-select-body .custom-select-option:hover,
.custom-select-container .custom-select-body .custom-select-option.selected {
  background-color: #1195f9;
  color: #fff;
}
.custom-select-container .custom-select-body .custom-select-option.selected {
  cursor: default;
}
.box-form .btn-container {
  margin-top: 40px;
  position: relative;
}
.box-form .btn-container .new-btn-outline {
  width: 100%;
}
.row-range {
  position: relative;
  margin-top: 10px;
}
.row-range input[type="range"] {
  width: 100%;
  margin: 0;
}
.row-range span {
  position: absolute;
  color: #757575;
}
.row-range .right,
.row-range .left {
  bottom: -10px;
  font-size: 14px;
}
.row-range .right {
  right: 0;
}
.row-range .left {
  left: 0;
}
.row-range .tooltip {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  pointer-events: none;
}
.row-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}
.row-checkbox input {
  width: auto;
}
.msg-error{
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  color: #db0000;
}
.loader-container{
  position: absolute;
  top: 15px;
  right: 20%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.loader-container .loader{
  width: 100%;
  height: 100%;
  border: 3px solid #1195f9;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 576px) {
  .box-form .btn-container .new-btn-outline {
    margin: 0 auto;
    width: auto;
    min-width: 387px;
  }
}
@media (min-width: 768px) {
  .new-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .row-selects {
    display: flex;
  }
  .row-selects .group-select {
    width: 50%;
  }
  /* .row-selects .group-select:first-child {
    border-right: 0;
    border-radius: 8px 0 0 8px;
  }
  .row-selects .group-select:last-child {
    border-left: 0;
    border-radius: 0 8px 8px 0;
  } */
  .new-row .form-group {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .box-container-form {
    padding: 40px 20px;
    border-radius: 24px;
    border: 2px solid #1a40481a;
    box-shadow: 0px 15px 200px -50px #1195f933;
  }
  .title-form {
    font-size: 18px;
  }
}
