.form-control:focus {
    border-color: #aa8c48 !important;
    box-shadow: 0 0 0 0.25rem #aa8c4861 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #aa8c48 !important;
    color: white;
}
input.select2-search__field:focus-visible {
    outline: unset;
}
.FormContentWrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.HeaderMast {
  height: 278px;
  background: #000;
  align-items: center;
  display: flex;
}
.FormTitle {
    margin: auto;
    color: #fff;
    margin-top: 0;
    text-align:center
}
    .FormTitle h2 {
        margin-bottom: 0;
    }
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    line-height: 28px;
    font-weight: bold !important;
}
.CenteredContent {
  margin: auto;
  width: 600px;
}
.FormCard:first-of-type {
  margin-top: -100px;
}

.FormCard {
  background-color: #fff;
  margin-bottom: 48px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  word-wrap: break-word;
}

.AccentProgress {
    background-color: #aa8c48;
    height: 8px;
}
.FormContent {
  color: rgba(0, 0, 0, 0.87);
  padding: 20px 35px;
}

.form-control {
  /* height: 50px; */
  font-weight: bold;
}

button {
    font-family: inherit;
    font-size: 20px;
    background: #aa8c48;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    width: 150px;
    justify-content: center;
    margin: auto 0 auto auto;
}

button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
  transform: translateX(5em);
}

button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

.modal#statusSuccessModal .modal-content {
  border-radius: 30px;
}
.modal#statusSuccessModal .modal-content svg {
  width: 100px;
  display: block;
  margin: 0 auto;
}
.modal#statusSuccessModal .modal-content .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.modal#statusSuccessModal .modal-content .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
.modal#statusSuccessModal .modal-content .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
  animation: dash 0.95s 0.35s ease-in-out forwards;
}
.modal#statusSuccessModal .modal-content .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
  animation: dash-check 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
.box00 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.select2-container--default .select2-selection--single {
    height: 40px !important;
}
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 40px !important;
        /*height: 35px;
        display: flex;
        align-items: center;*/
    }
@media (max-width: 660px) {
  .HeaderMast {
    height: 150px;
  }
  .FormCard:first-of-type {
    margin-top: 50px;
  }

  .CenteredContent {
    width: 90%;
  }
}
