@charset "UTF-8";
:root {
  --background-color: #eeeeee;
  --light-grey: #c4c1c1;
  --capturly-color: rgb(234, 126, 33);
}

.capturly-settings-page {
  max-width: 1200px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: normal;
  font-family: "Quicksand", serif;
  color: #555971;
}
.capturly-settings-page .qs {
  font-family: "Quicksand", serif;
}
.capturly-settings-page .lato {
  font-family: "Lato", serif;
}
.capturly-settings-page .roboto {
  font-family: "Roboto", serif;
}
.capturly-settings-page h1, .capturly-settings-page h2, .capturly-settings-page h3, .capturly-settings-page h4 {
  color: #555971;
}
.capturly-settings-page .logo-container {
  font-family: "Lato", serif;
  font-weight: 700;
  position: relative;
  display: flex;
  margin-top: 5px;
}
.capturly-settings-page .logo-container .logo-text {
  margin-top: 8px;
}
.capturly-settings-page .logo-container .bottom-text {
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  margin-left: 35px;
}
.capturly-settings-page .capturly-subtitle {
  font-weight: bolder;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
}
.capturly-settings-page .form-label {
  font-family: "Quicksand", serif;
  font-weight: bold;
}
.capturly-settings-page .form-control {
  border: 1px solid #555971;
}
.capturly-settings-page h1 {
  font-size: 25px !important;
  font-weight: bold !important;
  margin: 25px 0 !important;
}
.capturly-settings-page .tab-wrapper {
  display: table;
}
.capturly-settings-page .tab-wrapper .nav-tab {
  margin-left: 0;
  margin-right: 5px;
  border-top: 6px solid #dcdcde;
  font-size: 14px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 0px;
  font-weight: normal;
  padding-left: 20px;
  padding-right: 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.capturly-settings-page .tab-wrapper .nav-tab:hover {
  background-color: #dcdcde;
}
.capturly-settings-page .tab-wrapper .nav-tab.nav-tab-active {
  background-color: white;
  border-top: 6px solid var(--capturly-color);
  font-weight: bold;
}
.capturly-settings-page .text-center {
  text-align: center;
}
.capturly-settings-page .row {
  margin-bottom: 15px;
}
.capturly-settings-page .flash {
  border-radius: 8px;
  overflow: hidden;
}
.capturly-settings-page .flash .capturly-error {
  padding: 5px;
  color: white;
  background-color: #dc8888;
}
.capturly-settings-page .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  border: 1px solid transparent;
  padding: 0.2rem 2rem;
  line-height: 1.5;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-family: Roboto, serif;
  font-size: 14px;
}
.capturly-settings-page .btn.btn-primary {
  background-color: #27B2FA;
}
.capturly-settings-page .btn.btn-primary:hover {
  cursor: pointer;
  background-color: #2991c5;
}
.capturly-settings-page .btn.btn-gray {
  background-color: transparent;
  border: 1px solid #c4cbdc;
  color: #555971;
}
.capturly-settings-page .btn.btn-gray:hover {
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #25b2fe;
}
.capturly-settings-page .btn.btn-error {
  background-color: #d9534f;
}
.capturly-settings-page .btn.btn-error:hover {
  cursor: pointer;
  background-color: #ad3e3a;
}
.capturly-settings-page .btn.btn-success {
  background-color: #4b9820;
}
.capturly-settings-page .btn.btn-success:hover {
  cursor: pointer;
  background-color: #40831c;
}
.capturly-settings-page .capturly-container {
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  padding: 25px 40px;
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.capturly-settings-page .capturly-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.capturly-settings-page .info-title {
  font-size: 14px;
}
.capturly-settings-page .check-icon {
  background: #4b9820;
  color: transparent;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  margin-right: 7px;
  font-size: 11px;
  border-radius: 4px;
  font-weight: normal;
}
.capturly-settings-page .check-icon::after {
  content: "✓";
  color: white;
  margin-left: -7px;
  font-weight: bold;
}
.capturly-settings-page .container {
  text-align: center;
}
.capturly-settings-page .progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  max-width: 100%;
  width: 350px;
  margin-right: auto;
  margin-left: auto;
}
.capturly-settings-page .progress-container::before {
  content: "";
  background-color: var(--light-grey);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  z-index: 1;
}
.capturly-settings-page .progress {
  background-color: var(--capturly-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  z-index: 2;
  transition: 0.4s ease;
}
.capturly-settings-page .circle {
  background: var(--light-grey);
  color: var(--light-grey);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--light-grey);
  transition: 0.4s ease;
  z-index: 2;
}
.capturly-settings-page .circle.active {
  border-color: var(--capturly-color);
  background-color: #fff;
  color: var(--capturly-color);
  scale: 1.1;
}

/*# sourceMappingURL=admin-page-settings.css.map */
