html,
body {
  height: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.text-gold {
  color: #f9c607;
}

.text-divider {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 14px;
  margin: 30px 0;
}
.text-divider:before {
  content: "";
  display: block;
  height: 1px;
  flex: 1;
  background: #b3b3b3;
  margin-right: 10px;
}
.text-divider:after {
  content: "";
  display: block;
  height: 1px;
  flex: 1;
  background: #b3b3b3;
  margin-left: 10px;
}

.btn {
  font-size: 15px;
  width: auto;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  line-height: 14px;
  border-radius: 0.5rem;
}
.btn.btn-sm {
  padding: 12px 20px;
  font-size: 12px;
}
.btn.btn-lg {
  padding: 20px 40px;
  font-size: 16px;
}
.btn.btn-block {
  width: 100%;
  justify-content: center;
}
.btn.btn-white {
  background: white;
  color: black;
}
.btn.btn-white:hover,
.btn.btn-white:focus {
  background: rgba(255, 255, 255, 0.8);
}
.btn.btn-floating {
  height: 50px;
  width: 50px;
  padding: 0;
  font-size: 18px !important;
  justify-content: center;
  border-radius: 50%;
}
.btn.btn-floating.btn-sm {
  height: 35px;
  width: 35px;
  font-size: 14px !important;
}
.btn.btn-floating.btn-lg {
  height: 65px;
  width: 65px;
  font-size: 22px !important;
}

.bg-facebook {
  background: #3b5998 !important;
}

.bg-google {
  background: #db4437 !important;
}

.bg-twitter {
  background: #55acee !important;
}

.bg-linkedin {
  background: #0077b5 !important;
}

.bg-dribbble {
  background: #ea4c89 !important;
}

.bg-behance {
  background: #1769ff !important;
}

.bg-github {
  background: #00405d !important;
}

.bg-pinperest {
  background: #bd081c !important;
}

.border-facebook {
  color: #3b5998 !important;
  border: 1px solid #3b5998 !important;
}
.border-facebook:hover {
  background: #3b5998 !important;
  color: white !important;
}

.border-google {
  color: #db4437 !important;
  border: 1px solid #db4437 !important;
}
.border-google:hover {
  background: #db4437 !important;
  color: white !important;
}

.border-twitter {
  color: #55acee !important;
  border: 1px solid #55acee !important;
}

.border-linkedin {
  color: #0077b5 !important;
  border: 1px solid #0077b5 !important;
}

.border-dribbble {
  color: #ea4c89 !important;
  border: 1px solid #ea4c89 !important;
}

.border-behance {
  color: #1769ff !important;
  border: 1px solid #1769ff !important;
}

.border-github {
  color: #00405d !important;
  border: 1px solid #00405d !important;
}

.border-pinperest {
  color: #bd081c !important;
  border: 1px solid #bd081c !important;
}

.form-control {
  font-size: 14px;
  transition: all 0.3s;
}

.custom-checkbox {
  user-select: none;
}

.form-wrapper {
  padding: 30px 20px;
  min-height: 100%;
}
.form-wrapper .container,
.form-wrapper .container-fluid {
  min-height: 100%;
}

@media (max-width: 500px) {
  .form-wrapper {
    display: block !important;
    padding: 20px 10px !important;
  }
}

body {
  background: #f7f2fd;
}

a {
  color: #f9c607;
}
a:hover,
a:focus {
  color: #f9c607;
}

.btn-primary {
  background: linear-gradient(to right, #ffbc04, #f9c607) !important;
  border: none;
  border-radius: 10px !important;
}

.form-wrapper {
  display: flex;
  align-items: center;
}

.card {
  border: none;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
}
.card .row .col {
  padding: 30px;
  min-height: 500px;
}
.card .row .col:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.card .row .col:last-child > * {
  position: relative;
  z-index: 1;
}
.card .row .col:last-child:before {
  content: "";
  display: block;
  background: linear-gradient(
    90deg,
    #fff,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.54)
  );
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}
.form-group .form-icon-wrapper {
  position: relative;
}
.form-group .form-icon-wrapper .form-icon-left,
.form-group .form-icon-wrapper .form-icon-right {
  padding: 0;
  transform: translateY(-50%);
  top: 50%;
  font-size: 20px;
  border: none;
  position: absolute;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: white;
  border-radius: 100px;
}
.form-group .form-icon-wrapper .form-icon-left {
  left: 15px;
}
.form-group .form-icon-wrapper .form-icon-right {
  right: 15px;
  left: auto;
}

.form-control {
  height: auto;
  padding: 13px 20px;
  padding-left: 55px;
  border: 1px solid #cccccc;
  border-radius: 10px !important;
}
.form-control:focus {
  box-shadow: none;
  border-color: #673ab7;
}

.form-shape {
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  width: 60%;
  height: 100vh;
  /* background: #f9c607; */
  /* fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #0d0d0d, #f9c607); */
  /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #0d0d0d, #f9c607); */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /* clip-path: polygon(0% 100%, 0 0, 100% 0, 70% 100%); */
}

.titulo-uniq {
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  margin: 15px 0;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  color: #ffb400;
}
.row.no-gutters-dark {
  background: #090909;
}
.row.no-gutters {
  background: #5D5D5D;
}
.btn-gym {
  background-color: transparent;
  border-color: #ffb400;
  color: #ffb400;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gym::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffb400;
  top: 0;
  left: -100%;
  transition: left 0.4s ease-in-out;
  z-index: -1;
}

.btn-gym:hover::before {
  left: 100%;
}

.btn-gym span {
  position: relative;
  z-index: 2;
}

.btn-gym-cancel {
  background-color: transparent;
  border-color: #bd081c;
  color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gym-cancel::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #bd081c;
  top: 0;
  left: -100%;
  transition: left 0.4s ease-in-out;
  z-index: -1;
}

.btn-gym-cancel:hover::before {
  left: 100%;
}

.btn-gym-cancel span {
  position: relative;
  z-index: 2;
}

.btn:hover {
  color: white !important;
}

.modal-content-custom {
  border-radius: 30px;
  background-color: #242424;
  color: #ffb400;
  font-family: "Raleway", sans-serif;
}

.modal-dialog-custom {
  max-width: 72%;
}
.message-alert {
  max-width: 30% !important;
}
@media (max-width: 600px) {
  .modal-dialog-custom {
    max-width: 100%;
  }
}
.modal-header-custom {
  border-bottom: none;
}

.modal-title-custom {
  color: #ffb400;
  font-size: 2rem;
  font-weight: bold;
}

.modal-body-custom {
  padding: 40px;
}

.close {
  color: #ffb400;
}

.form-icon-wrapper {
  position: relative;
}

.form-icon-wrapper .form-icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

#modalProgressbar {
 z-index: 9999;
}

.progress-bar {
  height: 4px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
      transform:  translateX(0) scaleX(0);
  }
  40% {
      transform:  translateX(0) scaleX(0.4);
  }
  100% {
      transform:  translateX(100%) scaleX(0.5);
  }
}

