//Google font include
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700|Sen:400,700,800&display=swap");

/*
  Mixins
  ---------------------
*/
@mixin transit($attr, $time) {
  -webkit-transition: $attr $time ease;
  -moz-transition: $attr $time ease;
  -ms-transition: $attr $time ease;
  -o-transition: $attr $time ease;
  transition: $attr $time ease;
}

@mixin transform($val) {
  -webkit-transform: $val;
  -moz-transform: $val;
  -ms-transform: $val;
  -o-transform: $val;
  transform: $val;
}

//Padding , Margin css starts
$i: 0;

@while $i<=50 {
  .p {
    &-#{$i} {
      padding: #{$i}px !important;
    }

    &-t-#{$i} {
      padding-top: #{$i}px !important;
    }

    &-b-#{$i} {
      padding-bottom: #{$i}px !important;
    }

    &-l-#{$i} {
      padding-left: #{$i}px !important;
    }

    &-r-#{$i} {
      padding-right: #{$i}px !important;
    }
  }

  .m {
    &-#{$i} {
      margin: #{$i}px !important;
    }

    &-t-#{$i} {
      margin-top: #{$i}px !important;
    }

    &-b-#{$i} {
      margin-bottom: #{$i}px !important;
    }

    &-l-#{$i} {
      margin-left: #{$i}px !important;
    }

    &-r-#{$i} {
      margin-right: #{$i}px !important;
    }
  }

  $i: $i + 5;
}

// #wpcontent {
//   height: 100%;
//   padding-left: 20px;
//   padding-right: 15px;
// }
// body {
//   background: #f5f7f9;
// }
.page-giftpress {
  @import "normalize";
  @import "grid";
  @import "typography";
  @import "base";
  @import "utilities";
  @import "icons";
  @import "buttons";
  @import "forms";
  @import "tables";
  @import "tags";
  @import "tabs";
  @import "alerts";
  @import "tips";
  @import "header";
  @import "zero-state";
  @import "media-queries";

  $bg-color: #40cb97;
  $primary: #6774c8;
  $text-color: #737c83;
  $white: #ffffff;
  $font-family: "Sen", sans-serif;

  font-family: $font-family;
  font-weight: 500;
  font-size: 15px;
  color: $text-color;

  a {
    text-decoration: none;
    cursor: pointer;
    color: $primary;
    transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);

    &:hover,
    &:focus {
      outline: none;
    }
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.2rem;
  }

  h2.page-title {
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 0;
  }

  p {
    font-size: 16px;
  }

  input[type="email"],
  input[type="number"],
  input[type="search"],
  input[type="text"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  textarea,
  select {
    font-family: $font-family;
    font-size: 16px;
    min-height: 38px;
    line-height: 2;
  }

  input[type="radio"]:checked::before {
    float: none;
  }

  input[type=checkbox]:checked::before, input[type=radio]:checked::before {
    float: none;
    margin: 0;
  }

  .button, button, input[type=submit], input[type=reset], input[type=button] {
    min-height: auto;
    font-family: $font-family;
    font-weight: 600;
  }

  .m-l-auto {
    margin-left: auto;
  }

  .m-r-auto {
    margin-right: auto;
  }

  .float-right {
    float: right;
  }

  .float-left {
    float: left;
  }

  .d-block {
    display: block;
  }

  .d-inline-block {
    display: inline-block;
  }

  .d-flex {
    display: flex;
  }

  .d-inline-flex {
    display: inline-flex;
  }

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

  .align-items-end {
    align-items: flex-end;
  }

  .justify-content-center {
    justify-content: center;
  }

  .text-muted {
    color: #878f96;
  }

  .font-weight-normal {
    font-weight: 400;
  }

  .font-weight-bold {
    font-weight: 600;
  }

  .text-transform-capitalize {
    text-transform: capitalize;
  }

  .text-center {
    text-align: center;

  }

  .button {
    font-family: $font-family;
    font-weight: 700;
    min-height: auto;
    min-width: auto;
    padding: 12px 20px;

    &:focus {
      outline: none;
    }
  }

  .fgcfw-button {
    @include transit(all, 0.3s);
    border: 1px solid $primary;
    background: $primary;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 6px;
    min-width: 3.6rem;
    min-height: auto;
    box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1), 0 2px 7px 0 rgba(31, 36, 39, 0.18);

    &:hover, &:focus {
      color: $white;
      background: darken($primary, 12%);
    }
  }

  .tag {
    font-size: 13px;
    padding: 7px 10px;
    line-height: 1;
  }

  .table {
    color: #111111;

    thead {
      tr {
        th {
          color: $text-color;
        }

        th, td {
          padding: 20px 12px;
        }
      }
    }

    tbody {
      tr {
        th {
          color: $text-color;
        }

        th, td {
          padding: 12px;

          a {
            font-weight: 700;
          }
        }
      }
    }
  }

  section + section {
    border-top: none;
  }

  .hidden {
    display: none;
  }

  .switch-btn {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;

    input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    input:checked + .slider {
      background-color: #00c096;
    }

    input:focus + .slider {
      box-shadow: 0 0 1px #00c096;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    input:checked + .slider:before {
      -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
      transform: translateX(20px);
    }

    .round {
      border-radius: 34px;
    }

    .round:before {
      border-radius: 50%;
    }
  }

  .top-box {
    .box-notice {
      background: linear-gradient(135deg, #6749f5 0%, #25ced1 100%);
      color: #fff;
      display: flex;
      align-items: center;
      padding: 7px 15px;
      margin-bottom: 15px;
      border-radius: 6px;

      p {
        color: #fff;
        font-size: 16px;
        margin-bottom: 0;
      }

      a {
        color: #ffc53a;
        font-weight: 700;
      }

      .fgcfw-button {
        box-shadow: rgba(0, 0, 0, 0.15) 0 7px 20px;
        background-color: #40cb97;
        border-color: #40cb97;
        margin-left: 10px;
        padding: 6px 20px;
        font-size: 15px;

        &:hover {
          background-color: #2bbd87;
          border-color: #2bbd87;
        }

        &:disabled {
          background: #f4f6f8;
          border: 1px solid #c4cdd5;
        }
      }
    }

    .alert {
      p {
        margin-bottom: 0;
      }
    }
  }

  .dropdown-actions {
    position: relative;
    display: inline-block;

    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: #ffffff;
      min-width: 200px;
      box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
      z-index: 1;
      padding: 10px 5px;

      a {
        color: $text-color;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-weight: 600;

        &:hover, &:focus {
          color: $primary;
          background-color: #f7f7f7;
        }
      }
    }

    .gfwp-dropdown-btn {
      padding: 0;
      font-size: 14px;
      font-weight: 600;
      line-height: 40px;
      border-radius: 6px;
      min-height: 40px;
      // height: 40px;
      min-width: 40px;
      box-shadow: none;
    }

    .icon-gear {
      position: relative;
      bottom: 3px;
    }

    &:hover {
      .dropdown-content {
        display: block;
      }
    }
  }

  .icon-addition {
    display: none;
  }

  .gfwp-btn {
    border: 1px solid $bg-color;
    background: $bg-color;
    color: $white;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
    border-radius: 6px;
    min-width: 3.6rem;
    float: right;
    box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
    0 2px 7px 0 rgba(31, 36, 39, 0.18);

    &:hover, &:focus {
      border-color: darken($bg-color, 12%);
      background: darken($bg-color, 12%);
      color: $white;
    }
  }

  input[type="checkbox"] {
    line-height: 1.5em;
    height: 12px;
    min-height: 24px;
    font-size: 15px;
    padding: 0.5rem 0.9rem 0.5rem 0.9rem;
    background-color: #ffffff;
    max-width: 100%;
    margin-right: 0;
    border: 1px solid #d3dae3;
    box-shadow: none;
    display: inline-block;
    border-radius: 6px;
  }

  .gfwp-form-control {
    color: #555555;
    line-height: 1.5em;
    height: 47px;
    min-height: 30px;
    font-size: 15px;
    padding: 0.5rem 0.9rem 0.5rem 0.9rem;
    background-color: #ffffff;
    max-width: 100%;
    margin-right: 1em;
    border: 1px solid #d3dae3;
    box-shadow: none;
    display: inline-block;
    border-radius: 7px;
  }

  .gfwp-search-form {
    display: inline-flex;

    .gfwp-btn {
      border: 1px solid #989898;
      background: #989898;
      color: #ffffff;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 5px;
      min-height: 43px;
      height: 39px;
      min-width: 3.6rem;
      box-shadow: none;
      margin-left: -10px;
      margin-right: 19px;
      margin-top: 2px;
    }

    input[type="search"] {
      color: #555;
      line-height: 1.5em;
      height: 47px;
      min-height: 30px;
      font-size: 15px;
      padding: 5px 10px 5px 38px;
      background-color: #ffffff;
      max-width: 100%;
      margin-right: -2em;
      border: 1px solid #d3dae3;
      box-shadow: none;
      display: inline-block;
      border-radius: 7px;
      margin-left: -1em;
    }
  }

  .gfwp-card-section-list {
    margin-top: 40px;
  }

  .gfwp-create-import {
    a {
      display: inline-block;
    }

    .gfwp-btn-create {
      border: 1px solid #40cb97;
      background: #40cb97;
      color: #ffffff;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 6px;
      margin-left: 10px;
      box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
      0 2px 7px 0 rgba(31, 36, 39, 0.18);
    }

    .gfwp-btn-import {
      border: 1px solid #555;
      background: #555;
      color: #ffffff;
      padding: 8px 22px;
      margin-left: 10px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 6px;
      box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
      0 2px 7px 0 rgba(31, 36, 39, 0.18);
    }
  }

  .gfwp-bulk-action {
    label {
      display: inline-block;
      margin: 0;
    }

    .gfwp-btn-bulk {
      margin: 0;
      color: #ffffff;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 6px;
      min-height: 43px;
      height: 35px;
      min-width: 3.6rem;
      box-shadow: none;
    }
  }

  .gf-date-filter-section {
    color: #212b35;

    input[type="text"] {
      line-height: 1.6;
      min-height: 43px;
    }

    label {
      display: inline-block;
      color: #212b35;
    }

    p {
      color: #464646;
      font-size: 16px;
      margin-top: 10px;
      text-align: center;
    }

    .gift-control-select {
      line-height: 1.5em;
      min-height: 2.4rem;
      box-shadow: none;
      border-radius: 50px;

      &:focus {
        color: #333333;
      }
    }
  }

  .gift-navigation {
    padding-right: 15px;

    .gift-tabs {
      box-shadow: none;
      margin-bottom: 20px;

      li {
        padding: 0 15px;
        line-height: 2;

        &:first-child {
          padding-left: 0;
        }

        a {
          @include transit(all, 0.3s);
          text-decoration: none;
          cursor: pointer;
          color: $text-color;
          display: inline-block;
          font-size: 17px;
          border: none;
          font-weight: 500;
          border-bottom: 3px solid transparent;

          &:hover,
          &:focus {
            box-shadow: none;
            border-bottom-color: $primary;
          }
        }

        &.active {
          a {
            font-weight: 700;
            border-bottom-color: $primary;
          }
        }
      }
    }
  }

  .gift_card_container {
    border: 2px solid $primary;
    padding: 20px;
    border-radius: 6px;

    .card {
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 0;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      min-width: 100%;
    }

    h3 {
      font-size: 20px;
      line-height: 1;
      margin-bottom: 0;
      font-weight: 600;
      margin-top: 0;
      color: #333333;

      .amount {
        color: #333333;
      }
    }

    h4 {
      display: block;
      font-size: 16px;
      font-weight: 400;
      color: $text-color;
      margin-top: 0;
      margin-bottom: 0;
    }

    p {
      font-size: 15px;
      font-weight: 400;
      color: #222222;
      margin-top: 0;
      margin-bottom: 20px;
    }
  }

  .gfwp-recent-activities {
    margin-top: 20px;

    h6 {
      color: $text-color;
      font-weight: 500;
      font-size: 20px;
      margin-top: 0;
      margin-bottom: 0;
    }
  }

  .gfwp-recent-activities-table {
    background: $white;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(18, 52, 77, 0.05),
    0 2px 18px 0 rgba(18, 52, 77, 0.08);
    padding-top: 0;
    .fgcfw-search-result-buttons{
      display: flex;
      .rotate-90{
        transform: rotate(90deg);
      }
      .fgcfw-button{
        padding: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 40px;
        border-radius: 6px;
        min-height: 40px;
        min-width: 40px;
        box-shadow: none;
        margin-right: 5px;
        [class^=icon-] {
          position: relative;
          bottom: 5px;
          color: $white;
          filter: brightness(2);
        }
      }
    }
  }

  .gfwp-email-panel-container {
    .gfwp-btn-email {
      border: 1px solid #40cb97;
      background: #40cb97;
      color: #ffffff;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 6px;
      min-height: 42px;
      height: 32px;
      min-width: 3.6rem;
      float: right;
      box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
      0 2px 7px 0 rgba(31, 36, 39, 0.18);
    }

    .gfwp-email-edit-panel {
      background: #fff;
      padding: 20px 20px;
      margin-top: 30px;
      border-radius: 6px;
      box-shadow: 0 2px 4px 0 rgba(18, 52, 77, 0.04),
      0 2px 18px 0 rgba(18, 52, 77, 0.11);

      label {
        display: block;
        margin-right: 8px;
        font-size: 15px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #878f96;
      }

      .gfwp-form-control {
        color: #555555;
        line-height: 1.5em;
        height: 47px;
        min-height: 30px;
        font-size: 15px;
        padding: 0.5rem 0.9rem 0.5rem 0.9rem;
        background-color: #ffffff;
        max-width: 100%;
        margin-right: 1em;
        border: 1px solid #d3dae3;
        box-shadow: none;
        display: inline-block;
        border-radius: 7px;
      }

      .gfwp-btn-email {
        border: 1px solid #40cb97;
        background: #40cb97;
        color: #ffffff;
        padding: 8px 22px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.9;
        border-radius: 6px;
        min-height: 42px;
        height: 32px;
        min-width: 3.6rem;
        float: right;
        box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
        0 2px 7px 0 rgba(31, 36, 39, 0.18);
      }

      .wp-color-picker {
        color: #717171;
        line-height: 1.5em;
        height: 47px;
        min-height: 30px;
        font-size: 15px;
        padding: 0.5rem 0.9rem 0.5rem 0.9rem;
        background-color: #ffffff;
        max-width: 64%;
        margin-right: 1em;
        border: 1px solid #b0b3b7;
        box-shadow: none;
        border-radius: 7px;
        margin-top: 21px;
        display: inline-block;
      }

      .wp-color-result {
        border-color: #d3dae3;
        background: #f3f5f6;
        vertical-align: top;
      }

      .wp-color-result-text {
        background: #ffffff;
        border-radius: 0 2px 2px 0;
        border-left: 1px solid #d3dae3;
        color: #333;
        display: block;
        line-height: 2.54545455;
        padding: 2px 20px;
        text-align: center;
        font-weight: 500;
      }
    }

    .gfwp-email-template-design {
      background: #fff;
      padding: 20px 20px;
      margin-top: 30px;
      border-radius: 6px;
      box-shadow: 0 2px 4px 0 rgba(18, 52, 77, 0.04),
      0 2px 18px 0 rgba(18, 52, 77, 0.11);

      .gfwp-btn-email-preview {
        border: 1px solid #dee2e7;
        background: #0791a7;
        color: #ffffff;
        padding: 8px 22px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.9;
        border-radius: 6px;
        float: right;
        box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.1),
        0 2px 7px 0 rgba(31, 36, 39, 0.18);
      }
    }
  }

  .pagination {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    display: inline;
    margin-left: 0;
    position: relative;
    top: 2px;
  }

  .pagination li {
    display: inline-block;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
  }

  .pagination li a {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-left: -1px;
    line-height: 1.25;
    color: $bg-color;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 9px 16px;
  }

  .pagination .active {
    background-color: $bg-color;
    border-color: $bg-color;
    color: $white;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
  }

  .dataTables_info {
    float: right;
    margin-top: 15px;
    color: #212b36;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .gfwp-select-design-add {
    label {
      display: block;
      margin-right: 8px;
      font-size: 19px;
      margin-bottom: 18px;
      font-weight: 500;
      color: #252525;
    }

    .gfwp-btn {
      border: 1px solid $bg-color;
      background: $bg-color;
      color: $white;
      padding: 8px 22px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.9;
      border-radius: 6px;
      min-height: 42px;
      min-width: 3.6rem;
      float: right;
      margin-top: 15px;
      margin-bottom: 15px;
      box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.08),
      0 2px 7px 0 rgba(31, 36, 39, 0.06);
    }
    #fgcfw-add-templates-list{
      .template-name-container,.template-subject-container{
        .edit-template{
          display: flex;
          align-items: center;
        }
        .edit-template-name,.edit-template-subject{
          background-color: #ffffff;
          border: 1px solid #ced4da;
          box-shadow: none;
          border-radius: 4px;
          padding: 10px;
          margin-right: 5px;
          width: 80%;
        }
        .save-template-name-btn,.save-template-subject-btn{
          border: 1px solid $primary;
          background: $primary;
          color: $white;
          padding: 8px 22px;
          font-size: 14px;
          font-weight: 600;
          line-height: 1.5;
          border-radius: 4px;
          margin-top: 15px;
          margin-bottom: 15px;
          box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.08),
          0 2px 7px 0 rgba(31, 36, 39, 0.06);
          transition: all 0.3s ease 0s;
          &:hover{
            opacity: 0.8;
          }
        }
      }
      .fgcfw-cutomize-email-design, .fgcfw-delete-email-design{
        display: inline-block;
        border: 1px solid $bg-color;
        background: $bg-color;
        color: $white;
        padding: 8px 22px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        border-radius: 4px;
        margin-top: 15px;
        margin-bottom: 15px;
        box-shadow: 0 1px 7px 0 rgba(18, 52, 77, 0.08),
        0 2px 7px 0 rgba(31, 36, 39, 0.06);
        transition: all 0.3s ease 0s;
        &:hover{
          opacity: 0.8;
        }
      }
      .fgcfw-delete-email-design{
        background: #ff3863;
        border-color: #ff3863;
      }
    }
  }

  .model-license-key {
    width: 44%;
    box-shadow: 0 5px 20px 0 rgba(21, 21, 21, 0.05);
    text-align: center;
    z-index: 999;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 5%;

    .form-container {
      position: relative;
      display: flex;
      flex-direction: column;
      min-width: 0;
      word-wrap: break-word;
      background-color: #fff;
      background-clip: initial;
      border: 1px solid #f1f1f1;
      border-radius: 0.3125em;
      padding: 1.3em 1.5em;
      text-align: center;
    }
  }

  .hvrbox-layer_top {
    position: absolute;
    filter: blur(4px);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(193, 193, 193, 0.4);
    color: #fff;
    padding: 15px;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    z-index: 9;
  }

  .gfwp-transactions-table {
    padding: 20px;
    background: $white;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(18, 52, 77, 0.05),
    0 2px 18px 0 rgba(18, 52, 77, 0.08);
    width: 100%;
    overflow: auto;
  }

  .gfwp-widget-timeline {
    padding-left: 0;
    margin-top: 1rem;
    margin-left: 2rem;
    margin-bottom: 0;

    h6 {
      color: #12344d !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      margin-bottom: 1px !important;
      text-transform: inherit !important;
    }

    p {
      margin-top: 3px;
      margin-bottom: 0;
      color: #212b36;
      display: inline-block;
    }
  }

  .gfwp-widget-timeline {
    li {
      padding: 0.7rem 0 0.7rem;
      list-style: none;
      position: relative;

      .timeline-time {
        float: right;
        color: #353d9f;
        font-size: 14px;
        font-weight: 600;
        position: relative;
        top: 0;
      }

      .timeline-title {
        margin-bottom: 0.25rem;
      }

      .timeline-text {
        margin-bottom: 0.5rem;
      }
    }

    li.timeline-items.timeline-icon-success {
      &:before {
        border-color: #2dcb73;
      }
    }

    li.timeline-items.border-danger {
      &:before {
        border-color: #e24343;
      }
    }

    li.timeline-items {
      &:before {
        position: absolute;
        content: "";
        left: -37px;
        top: 17px;
        border: 3px solid #fff;
        box-shadow: 1px 2px 6px 0 rgba(25, 42, 70, 0.3);
        border-radius: 50%;
        background: #fff;
        height: 13px;
        width: 13px;
        z-index: 2;
      }

      .timeline-content {
        padding: 0.5rem 1rem;
        background-color: #ebeff3;
        color: #4d5256;
        border-radius: 0.267rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
      }
    }

    li.timeline-items.active {
      &:not(:last-child) {
        &:after {
          position: absolute;
          content: "";
          width: 2px;
          background: #c5cfd8;
          left: -28px;
          top: 22px;
          height: 100%;
          z-index: 1;
        }
      }
    }
  }

  .gwpl-setting {
    #fgcfw-create-admin-gift-cards-form {
      max-width: 600px;
      width: 100%;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 6px;
      margin-top: 20px;

      label {
        margin-bottom: 10px;
        color: $text-color;
      }

      input[type="number"] {
        width: auto;
      }
    }

    #fgcfw-plugin-settings-form {
      max-width: 800px;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 6px;

      .row {
        margin-bottom: 5px;
      }

      .form-wecp-input-group {
        width: 100%;
        max-width: 480px;

        input[type="text"] {
          margin-bottom: 0;
        }
      }

      input[type="text"], select {
        width: 100%;
        max-width: 480px;
        margin-bottom: 10px;
      }

      p {
        font-size: 14px;
        margin-top: 8px;
      }

      .form-label {
        display: inline-block;
        max-width: 30%;
        width: 100%;
        white-space: pre-wrap;
        font-weight: 600;
        margin-bottom: 0px;
      }
    }
  }

  .card-actions {
    .gift-card-coupon {
      display: inline-block;
      border: 2px dashed $primary;
      padding: 10px;
    }

    #fgcfw-copy-gift-code {
      border-radius: 0;
      border-left: none;
    }

    .back-buttons {
      .email-btn {
        border: 1px solid $bg-color;
        background: $bg-color;
        color: $white;
      }

      [class^=icon-] {
        position: relative;
        bottom: 5px;
        margin-right: 10px;
        color: $white;
        filter: brightness(2);
      }
    }
  }

  .fgcfw-card-actions-form {
    .row {
      margin-bottom: 10px;
    }

    label {
      color: $text-color;
      margin-bottom: 10px;
    }

    p {
      color: #878f96;
      margin-bottom: 0;
      margin-top: 10px;
      font-size: 14px;
    }

    .fgcfw-button {
      float: right;
    }
  }

  @media (max-width: 520px) {
    .side-elements {
      flex-wrap: wrap;
    }
    .gift-navigation {
      .gift-tabs {
        flex-wrap: wrap;

        li {
          a {
            line-height: 2;
          }
        }
      }
    }
  }
  @media (max-width: 782px) {
    .d-inline-flex, .d-flex {
      flex-wrap: wrap;
    }
  }
}

.flycart-plugin-modal {
  margin-top: 25px;
  max-width: 500px;
  width: 100%;
  padding: 30px;

  .fgcfw-card-actions-form {
    max-height: 100%;
    overflow: auto;
  }
}