:root {
  --background-color: #eeeeee;
  --light-grey: #c4c1c1;
  --capturly-color: rgb(234, 126, 33);
}
$capturly-text-color: #555971;

.capturly-settings-page {
  max-width:1200px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: normal;
  font-family: 'Quicksand', serif;
  color: $capturly-text-color;

  .qs {
    font-family: 'Quicksand', serif;
  }
  .lato {
    font-family: 'Lato', serif;
  }
  .roboto {
    font-family: 'Roboto', serif;
  }

  h1, h2, h3, h4 {
    color: $capturly-text-color;
  }

  .logo-container {
    font-family: 'Lato', serif;
    font-weight: 700;
    position: relative;
    display: flex;
    margin-top: 5px;

    .logo-text {
      margin-top: 8px;
    }

    .bottom-text {
      font-size: 12px;
      font-weight: normal;
      position: absolute;
      margin-left: 35px;
    }
  }

  .capturly-subtitle {
    font-weight: bolder;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 20px;
  }

  .form-label {
    font-family: "Quicksand", serif;
    font-weight: bold;
  }
  .form-control {
    border: 1px solid $capturly-text-color;
  }

  h1 {
    font-size: 25px !important;
    font-weight: bold !important;
    margin: 25px 0 !important;
  }

  .tab-wrapper {
    display: table;

    .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;

      &:hover {
        background-color: #dcdcde;
      }

      &.nav-tab-active {
        background-color: white;
        border-top: 6px solid var(--capturly-color);
        font-weight: bold;
      }
    }
  }

  .text-center {
    text-align: center;
  }

  .row {
    margin-bottom: 15px;
  }

  .flash {
    border-radius: 8px;
    overflow: hidden;
    .capturly-error {
      padding: 5px;
      color: white;
      background-color: #dc8888;
    }
  }

  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    padding: .2rem 2rem;
    line-height: 1.5;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-family: Roboto, serif;
    font-size: 14px;

    &.btn-primary {
      background-color: #27B2FA;

      &:hover{
        cursor: pointer;
        background-color: #2991c5;
      }
    }

    &.btn-gray {
      background-color: transparent;
      border: 1px solid #c4cbdc;
      color: $capturly-text-color;

      &:hover{
        cursor: pointer;
        background-color: transparent;
        border: 1px solid #25b2fe;
      }
    }

    &.btn-error {
      background-color: #d9534f;

      &:hover{
        cursor: pointer;
        background-color: #ad3e3a;
      }
    }

    &.btn-success {
      background-color: #4b9820;

      &:hover{
        cursor: pointer;
        background-color: #40831c;
      }
    }
  }
  .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;

    .title {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  .info-title {
    font-size: 14px;
  }

  .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;
  }
  .check-icon::after {
    content: "✓";
    color: white;
    margin-left: -7px;
    font-weight: bold;
  }

  .container {
    text-align: center;
  }

  .progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    max-width: 100%;
    width: 350px;
    margin-right: auto;
    margin-left: auto;
  }

  .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;
  }

  .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;
  }

  .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;
  }

  .circle.active {
    border-color: var(--capturly-color);
    background-color: #fff;
    color: var(--capturly-color);
    scale: 1.1;
  }
}