// Varibles
:root {
  --btn-bg: #efeeff;
  --head-clr: #f6f7f8;
  --text-clr: #7e7e7e;
  --info-lighter-v1: #d6e4f7;
  --info-lighter-v2: #e1ecfa;
  --info-lighter-v3: #ebf3fc;
  --info-dark: #2d6cd6;
  --danger-lighter-v1: #f7d4d6;
  --danger-lighter-v2: #fae1e2;
  --danger-lighter-v3: #fceeef;
  --danger-dark: #d92632;
  --success-lighter-v1: #cff2d7;
  --success-lighter-v2: #dbf5e1;
  --success-lighter-v3: #e7f8eb;
  --success-dark: #36c055;
  --warning-lighter-v1: #f7e7d4;
  --warning-lighter-v2: #faeedf;
  --warning-lighter-v3: #fcf5eb;
  --warning-dark: #d9a926;
  --panel-heading-size: 16px;
  --panel-heading-weight: 600;
  --radius: 4px;
}

// Body
html {
  scroll-behavior: smooth;

  body {
    background-color: #fff;
    font-family: var(--main-font);
  }
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: var(--head-clr);
  border: 1px solid #eee;
}

// Modal
.fade {
  transition: opacity 0.15s linear !important;
}
.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  opacity: 1 !important;
  transition: opacity 0.15s linear !important;
}
.modal-dialog {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.modal-content {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.12), 0px 16px 40px rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0 !important;
  .panel-heading.modal-header {
    background-color: #fff;
    border-color: #eee;
    color: #242424;
    padding: 20px;
    .close {
      font-size: 20px;
      margin: 0;
      position: relative;
      top: 1px;
    }
    .modal-title {
      font-size: 17px;
      font-weight: 400;
      color: #242424;
    }
  }
  .modal-body {
    padding: 20px;
    color: var(--text-clr);
    font-size: 14px;
    line-height: 25px;
  }
}
.modal-footer {
  background-color: var(--head-clr);
  border-color: #eee;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: var(--main-clr);
  border-color: var(--main-clr);

  h4,
  button,
  h3 {
    color: inherit;
  }
}

// General

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  color: var(--main-clr);
  background-color: var(--domain-btn);
  border-color: var(--main-clr);
  box-shadow: none;
}

.phox-main-color {
  color: var(--main-clr);
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
  background-color: #fff;
}

.text-success {
  color: #36c055;
}

.d-flex {
  display: flex;
}

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

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

.justify-space {
  justify-content: space-between;
}

.flex-column {
  flex-flow: column;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.h-100 {
  height: 100%;
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  > li {
    > a {
      font-size: 14px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease-in-out;
      &:hover {
        background-color: var(--btn-bg);
        color: var(--main-clr);
      }
    }
  }
}

.alert {
  border-radius: var(--radius);
  font-size: 14px;
  padding: 16px 24px;
  strong {
    font-weight: 600;
  }
  strong + ul {
    margin-top: 6px;
  }
}

.alert-danger {
  color: var(--danger-dark);
  background-color: var(--danger-lighter-v3);
  border-color: var(--danger-lighter-v2);
}

.alert-success {
  color: var(--success-dark);
  background-color: var(--success-lighter-v3);
  border-color: var(--success-lighter-v2);
}

.alert-info {
  color: var(--info-dark);
  background-color: var(--info-lighter-v3);
  border-color: var(--info-lighter-v2);
}

.alert-warning {
  color: var(--warning-dark);
  background-color: var(--warning-lighter-v3);
  border-color: var(--warning-lighter-v2);
}

label {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-clr);
}

.label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px 10px;
  text-align: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
}

.btn + .btn {
  margin-left: 10px;
}

.label-success {
  background-color: #dbf5e1 !important;
  color: #2d9f46 !important;
}

.label-info {
  background-color: #e1ecfa !important;
  color: #2d6cd6 !important;
}

.panel {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: none;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius);
  padding: 11px 20px;
  gap: 5px;
}

.btn-primary {
  color: #fff;
  background-color: var(--main-clr);
  border-color: var(--main-clr);
  font-family: var(--main-font);
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.3s;

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

  &:focus,
  &.focus &.active,
  &:active,
  &.disabled.focus,
  &.disabled:focus,
  &.disabled:hover,
  &[disabled].focus,
  &[disabled]:focus,
  &[disabled]:hover {
    background-color: #242424 !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

.btn-danger {
  background-color: var(--danger-lighter-v2);
  border-color: var(--danger-lighter-v2);
  color: var(--danger-dark);
  &:hover,
  &:focus,
  &:active,
  &:focus-visible {
    background-color: var(--danger-lighter-v1) !important;
    border-color: var(--danger-lighter-v1) !important;
    color: var(--danger-dark) !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

.btn-success {
  background-color: var(--success-lighter-v2) !important;
  border-color: var(--success-lighter-v2) !important;
  color: var(--success-dark) !important;
  &:hover,
  &:focus,
  &:active,
  &:focus-visible {
    background-color: var(--success-lighter-v1) !important;
    border-color: var(--success-lighter-v1) !important;
    color: var(--success-dark) !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

.btn-info {
  background-color: var(--info-lighter-v2) !important;
  border-color: var(--info-lighter-v2) !important;
  color: var(--info-dark) !important;
  &:hover,
  &:focus,
  &:active,
  &:focus-visible {
    background-color: var(--info-lighter-v1) !important;
    border-color: var(--info-lighter-v1) !important;
    color: var(--info-dark) !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: var(--main-clr);
  border-color: var(--main-clr);
  font-family: var(--main-font);
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.3s;

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

  &:focus {
    background-color: #242424;
    outline: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  color: #242424;
}

body,
button,
input,
select,
textarea {
  font-family: var(--main-font);
}

.panel-default > .panel-heading {
  color: #242424;
  background-color: var(--head-clr);
  border-color: #eee;
  font-family: var(--main-font);
}

.panel-title {
  font-size: 15px;
}

.panel-title--head {
  font-size: 18px;
}

.form-control,
.field {
  border: 1px solid #eee;
  border-radius: 2px;
  box-shadow: none;
  font-family: var(--main-font);
  color: var(--text-clr);
}

.cart-sidebar {
  a.list-group-item:focus,
  a.list-group-item:hover,
  button.list-group-item:focus,
  button.list-group-item:hover {
    color: var(--main-clr);
    text-decoration: none;
    background-color: transparent;
    outline: none;
  }
}

div.header-lined {
  margin-bottom: 40px;

  h1 {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--main-font);
    font-size: calc(var(--heading-size) + 6px);
    font-weight: var(--heading-weight);
    color: #242424;
    word-break: break-word;
    line-height: 48px;
  }

  small,
  p {
    font-family: var(--main-font);
    font-size: 14px;
    color: var(--text-clr);
    margin: 10px 0;
    display: block;
  }

  ol.breadcrumb {
    margin-top: 13px;
    padding-left: 0;
    background: 0 0;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    font-family: var(--main-font);
    color: var(--text-clr);
    font-size: var(--description-size);
    font-weight: var(--description-weight);

    li a {
      text-decoration: none;
      color: var(--text-clr);
      &:hover {
        color: var(--main-clr);
      }
    }

    > .active {
      color: #242424;
    }
  }
}

.btn {
  font-size: var(--buttons-size);
  font-weight: var(--buttons-weight);
  border-radius: var(--radius);
  transition: all 0.3s ease-in-out;
  font-family: var(--main-font);
}

.btn-lg {
  padding: 17px 30px;
  font-size: 16px;
}

.btn-default {
  color: #242424;
  background-color: #fff;
  border-color: #eee;
  transition: all 0.3s;
  &:hover,
  &:focus,
  &:active {
    background-color: #fff !important;
    border-color: var(--main-clr) !important;
    color: var(--main-clr) !important;
    box-shadow: none !important;
    outline: none !important;
  }
}

.btn-group-sm > .btn,
.btn-sm {
  font-size: var(--buttons-size);
  font-weight: var(--buttons-weight);
}

.btn-link {
  color: var(--main-clr);

  &:hover,
  &:focus {
    color: #242424;
  }
}

// Logo
.logo {
  text-decoration: none;
  &:hover,
  &:focus {
    text-decoration: none;
  }
}

.info-text-sm {
  font-size: 13px;
}

.phox-logo {
  display: none;
}

// Header
section#header {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  border-radius: 0;

  .wdes-header {
    display: flex;
    align-items: center;

    // Logo
    .logo {
      width: 200px;

      img {
        max-height: 40px;
        max-width: 100%;
      }
    }

    // Menu
    section#main-menu {
      background-color: transparent;
      width: calc(100% - 200px);
      margin: 0 auto;
      display: flex;
      align-items: center;

      .navbar-main {
        background-color: transparent;
        min-height: initial;
        width: 100%;
        font-family: var(--main-font);
        font-weight: var(--buttons-weight);
        font-size: var(--buttons-size);

        .navbar-collapse {
          padding: 0;
        }

        .navbar-nav {
          text-align: center;
          width: 100%;
          display: flex;
          float: none;
          margin: 0;
          justify-content: flex-end;
          align-items: center;
          gap: 25px;

          &::after {
            content: unset;
          }

          > .active > a,
          > .active > a:focus,
          > .active > a:hover,
          > .open > a,
          > .open > a:focus,
          > .open > a:hover,
          > li > a:focus,
          > li > a:hover,
          > li > .dropdown button:hover,
          > li > .dropdown button:focus,
          > li > .dropdown button:active {
            color: var(--main-clr);
            background-color: transparent;
          }

          > li {
            float: none;
            display: inline-block;

            > a {
              color: #242424;
              padding: 0;
              transition: all 0.3s;
              i {
                margin-right: 3px;
              }
            }

            .dropdown {
              > button {
                background-color: transparent;
                padding: 0;
                border: 0;
                color: #242424;
                transition: all 0.3s;
                @media screen and (max-width: 991px) {
                  padding: 10px 15px;
                  border-bottom: 1px solid #eee;
                  width: 100%;
                  text-align: left;
                }
              }
            }

            .wdes-nav-menu-item_icon {
              font-size: 12px;
              margin-left: 2px;
            }

            &[menuitemname="Open Ticket"] {
              display: none;
            }
          }

          ul.dropdown-menu {
            border: 1px solid #e6e8ec;
            border-radius: 4px;
            box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
            left: 0;
            top: calc(100% + 10px);
            max-height: 80vh;
            width: 250px;
            overflow-y: auto;
            overflow-x: hidden;
            @media screen and (max-width: 991px) {
              width: 100%;
            }

            > li {
              > a {
                color: var(--text-clr);
                font-size: var(--buttons-size);
                font-weight: 400;
                padding: 8px 15px;
                transition: all 0.3s;
                word-wrap: break-word;
                white-space: initial;
              }
            }

            > .active > a,
            > .active > a:focus,
            > .active > a:hover,
            > .open > a,
            > .open > a:focus,
            > .open > a:hover,
            > li > a:focus,
            > li > a:hover {
              color: var(--main-clr);
              background-color: transparent;
            }
          }

          .client-alerts {
            li {
              a {
                padding: 20px 15px !important;
                border-bottom: 1px solid #eee;
                flex-wrap: wrap;
                > i {
                  width: 40px;
                  height: 40px;
                  background-color: var(--btn-bg);
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  text-align: center;
                  border-radius: 50%;
                  color: var(--main-clr);
                  font-size: 16px;
                  margin-bottom: 10px;
                }
              }
              &:last-child {
                a {
                  border-bottom: 0;
                }
              }
            }
          }

          li.active-currency > a {
            color: var(--main-clr) !important;
          }

          li.wdes-menu-item-layout--button {
            > a {
              font-family: var(--main-font);
              font-weight: 400;
              font-size: 13px;
              color: var(--main-clr);
              text-decoration: none;
              background-color: var(--btn-bg);
              padding: 5px 10px;
              border-radius: 2px;
              transition: all 0.3s;
              &:hover,
              &:focus {
                background-color: var(--main-clr);
                color: #fff !important;
                outline: none;
              }
            }
          }

          li.wdes-menu-item-position-—left {
            margin-right: auto;
          }

          li.wdes-menu-item-position-—center {
            margin-right: auto;
            margin-left: auto;
          }

          li.wdes-menu-item-position-—right {
            margin-left: auto;
          }

          a.wdes-notifications {
            position: relative;
            padding: 0;

            span.wdes-new-notification {
              position: absolute;
              right: -2px;
              top: 0;
              background-color: var(--main-clr);
              width: 5px;
              height: 5px;
              border-radius: 50%;
              @media screen and (max-width: 767px) {
                left: 23px;
                top: 10px;
              }
            }
          }
        }
      }
    }

    // Shortcuts
    ul.top-nav {
      margin-top: 0;
      display: flex;
      align-items: center;

      > li {
        margin-right: 20px;

        &:last-child {
          margin-right: 0;
        }

        > a {
          padding: 0;
          color: #242424;
          font-size: 16px;
          transition: all 0.3s;

          i {
            color: inherit;
          }

          &:hover {
            color: var(--main-clr);
          }
        }
      }

      .wdes-account-area {
        margin: 0;
        padding: 0;
        list-style: none;

        > li {
          > a {
            font-family: var(--main-font);
            font-weight: 400;
            font-size: 13px;
            color: var(--main-clr);
            text-decoration: none;
            background-color: var(--btn-bg);
            padding: 5px 10px;
            border-radius: 2px;
            transition: all 0.3s;

            &:hover,
            &:focus {
              background-color: var(--main-clr);
              color: #fff;
              outline: none;
            }
          }
        }

        .dropdown-menu {
          display: none;
          border: 1px solid #e6e8ec;
          border-radius: 4px;
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
          left: 10px;
          top: 30px;

          a {
            color: var(--text-clr);
            padding: 8px 15px;
            transition: all 0.3s;
            font-family: var(--main-font);

            &:hover,
            &:focus {
              background-color: transparent;
              color: var(--main-clr);
              outline: none;
            }
          }

          li.active {
            a {
              color: #fff;
              background-color: var(--main-clr);
            }
          }
        }

        .nav-divider {
          height: 1px;
          margin: 9px 0;
          overflow: hidden;
          background-color: #e5e5e5;
        }
      }
    }
  }
}

section#header .wdes-header section#main-menu .navbar-main .navbar-nav {
  .wdes-account-area {
    .dropdown-menu {
      right: 0;
      left: auto;
    }
  }
  .client-alerts {
    right: 0;
    left: auto !important;
  }
  [aria-labelledby="languageChooser"] {
    right: 0;
    left: auto !important;
  }
}

// Notifications
.popover-user-notifications ul li {
  min-height: initial;
  border-bottom: 1px solid #eee;
  padding: 10px;

  a {
    display: block;
    padding: 0;
    text-decoration: none;
    color: var(--text-clr);
    font-family: var(--main-font);
    font-size: 14px;

    i {
      font-size: 11px !important;
      background-color: #9e98ff;
      padding: 9px !important;
      border-radius: 50%;
      color: #fff !important;
      width: 30px;
      height: 30px;
    }

    &:hover {
      background-color: #fff;
      color: #242424;
    }
  }
}

// Content
section#main-body {
  padding: 60px 0;

  section#home-banner {
    margin: 0;
    margin-bottom: 60px;
    padding: 0;
    background-color: transparent;
    color: #242424;

    .row {
      display: flex;

      > div {
        display: flex;
        align-items: center;
        width: 100%;
      }
    }

    // Img
    .wdes-domain-img {
      max-width: 100%;
      height: 370px;
      padding-left: 70px;
    }

    // Text
    .wdes-domain-info {
      width: 100%;
      > h2 {
        color: #242424;
        font-family: var(--main-font);
        font-size: 39px;
        font-weight: 700;
        line-height: 1.3em;
        margin: 0 0 36px;
        padding: 0;
      }

      .wdes-input-group {
        display: flex;
        @media screen and (max-width: 767px) {
          flex-flow: column;
          gap: 15px;
        }

        input.form-control {
          height: initial;
          box-shadow: 0 10px 37.2px 2.8px #eee;
          border-radius: 30px;
          font-family: var(--main-font);
          font-size: 14px;
          padding: 18.5px;
          width: 56%;
          @media screen and (max-width: 767px) {
            width: 100%;
          }
          margin-right: 10px;
        }

        span.input-group-btn {
          width: calc(44% - 10px);
          @media screen and (max-width: 767px) {
            width: 100%;
          }
          display: flex;
          justify-content: space-between;

          input {
            width: 100%;
            font-family: var(--main-font);
            font-size: var(--buttons-size);
            font-weight: var(--buttons-weight);
            border-radius: 30px;
            width: 48%;
            transition: all 0.3s;

            &.search {
              background-color: var(--main-clr);
              border: 1px solid var(--main-clr);
            }

            &.transfer {
              background-color: transparent;
              border: 1px solid var(--main-clr);
              color: var(--main-clr);
            }

            &:hover,
            &:focus {
              background-color: #242424;
              border: 1px solid #242424;
              color: #fff;
            }

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

  // Shortcuts
  .home-shortcuts {
    margin: 0;
    background: transparent;
    color: #242424;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    padding: 0;

    li {
      border: 0;
      width: calc(100% / 4 - 25px);
      color: #242424;
      box-shadow: 0 0 25px #eee;
      border-radius: 3px;
      float: none;
      padding: 0;

      a {
        padding: 40px 20px;
      }

      i {
        font-size: 45px;
        color: var(--main-clr);
        margin-bottom: 15px;
      }

      p {
        font-family: var(--main-font);
        font-size: 15px;
        font-weight: 400;
        margin: 0;
        color: #242424;
        text-transform: capitalize;
      }
    }
  }

  // News
  .wdes-tweets-block {
    display: inline-block;
    width: 100%;
    margin: 30px 0 60px;

    > h2 {
      text-align: center;
      font-family: var(--main-font);
      font-size: 33px;
      font-weight: 700;
      margin: 0;
      color: #242424;
      text-transform: capitalize;
    }

    > p {
      text-align: center;
      font-family: var(--main-font);
      font-size: 16px;
      color: var(--text-clr);
      margin: 13px 0 0;
    }

    .wdes-items-blocks {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 45px;

      div.announcement-single {
        margin: 0;
        width: calc(100% / 3 - 20px);
        box-shadow: 0 0 25px #eee;
        border-radius: 3px;
        padding: 40px 20px;

        .wdes-announcement-date {
          color: var(--text-clr);
          font-size: 15px;
          font-family: var(--main-font);
          font-weight: 400;

          i {
            padding-right: 5px;
          }
        }

        h3 {
          margin: 15px 0;

          a {
            font-family: var(--main-font);
            font-size: 19px;
            font-weight: 400;
            line-height: 29px;
            color: #242424;
            transition: all 0.3s;
            text-decoration: none;

            &:hover {
              color: var(--main-clr);
            }
          }
        }

        .fb_iframe_widget {
          overflow: hidden;
          width: 157px;
        }
      }
    }
  }
}

// Footer
section#footer {
  margin: 0;
  padding: 20px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
  color: var(--text-clr);
  font-size: 15px;
  font-family: var(--main-font);

  a.wdes-back-to-top {
    float: right;
    padding-top: 3px;

    i {
      font-size: 22px;
      color: var(--text-clr);
      transition: all 0.3s;
    }

    &:hover {
      i {
        color: var(--main-clr);
      }
    }
  }
}

.wdes-account-page {
  height: 100vh;
  width: 100vw;
  .wdes-wrap-content {
    height: 100%;
    width: 100% !important;
    #main-body {
      height: 100%;
      padding: 0;
      .container {
        height: 100%;
        width: 100%;
        padding: 0;
        .wdes-flex-mob {
          height: 100%;
          padding: 0;
          margin: 0;
          .main-content {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
          }
        }
      }
    }
  }
}

.wdes-wrap-account-page {
  height: 100%;
  width: 100%;
  background: var(--main-clr) url("../img/account-bg.jpg") repeat;
  background-size: cover;
  background-position: bottom;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 456px;
  gap: 48px;
  overflow-y: auto;
  @media (max-width: 1023.8px) {
    gap: 30px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
  }
}

.wdes-wrap-account-page_header {
  grid-area: 1 / 1 / 2 / 2;
  padding: 24px;
  align-self: flex-start;
  .logo {
    display: inline-flex;
  }
  @media (max-width: 1023.8px) {
    align-self: center;
    padding: 0 24px;
    .logo {
      backdrop-filter: blur(10px);
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
    }
  }
  .phox-logo--light {
    display: block;
    height: 40px;
  }
}

.wdes-wrap-account-page_footer {
  grid-area: 2 / 1 / 3 / 2;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 24px 24px 48px;
  order: 3;
  max-width: 800px;
  @media (max-width: 1023.8px) {
    padding: 0;
  }
}

.wdes-announcements-carousel {
  .carousel-inner {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    color: #fff;
    .wdes-account-page-announcement-single {
      font-size: 14px;
      padding: 30px;
      text-decoration: none;
      color: inherit;
    }
  }
  ol.carousel-indicators {
    position: static;
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top: 20px;
    li {
      background-color: rgba(255, 255, 255, 0.5);
      border: 0;
      width: 12px;
      height: 12px;
      &.active {
        width: 25px;
        background-color: rgba(255, 255, 255, 0.8);
      }
    }
  }
}

.wdes-account-page-announcement-single_date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  opacity: 0.9;
}

.wdes-account-page-announcement-single_title {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  color: inherit;
  margin: 14px 0 7px;
  line-height: 36px;
}

.wdes-account-page-announcement-single_description {
  font-size: 14px;
  opacity: 0.9;
  width: 70%;
  line-height: 22px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wdes-account-page-announcement-single_btn {
  background-color: #fff;
  margin-top: 20px;
  color: #242424;
  &:hover {
    color: var(--main-clr);
  }
}

.wdes-wrap-account-page_main {
  grid-area: 1 / 2 / 3 / 3;
  display: flex;
  flex-direction: column;
  order: 2;
  max-width: 500px;
  z-index: 2;
  height: calc(100vh - 48px);
  @media screen and (max-width: 1023.8px) {
    max-width: 100%;
    height: 100% !important;
  }
}

.has-header .wdes-wrap-account-page_main {
  height: calc(100vh - 69px - 48px);
}

.has-footer .wdes-wrap-account-page_main {
  height: calc(100vh - 76px - 48px);
}

.has-header-footer .wdes-wrap-account-page_main {
  height: calc(100vh - 69px - 76px - 48px);
}

.wdes-wrap-account-page_main_article {
  background-color: #fff;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.wdes-wrap-account-page_main-article_heading {
  margin-bottom: 40px;
  .header-lined {
    margin: 0;
    text-align: center;
    h1 {
      margin: 0;
      font-size: 25px;
      font-weight: 500;
      color: #242424;
    }
    small {
      color: var(--text-clr);
      font-size: 13px;
      margin: 10px 0 0;
    }
  }
}

.wdes-wrap-account-page_main-article_form {
  overflow-y: auto;
  max-height: calc(100% - 150px);
  margin-bottom: 30px;
  &#registration {
    padding-bottom: 0;
  }
  &#registration .field,
  &#registration .form-control {
    border-color: #eee;
    color: var(--text-clr);
    height: auto;
    border-radius: var(--radius);
    font-size: 14px;
    &:hover,
    &:focus {
      border-color: var(--main-clr);
    }
  }
  .form-group {
    margin-bottom: 20px;
    label {
      font-weight: 500 !important;
      color: var(--text-clr) !important;
    }
  }
  .wdes-btn-forget {
    margin-left: auto;
    font-size: 12px;
  }
  .wdes-wrap-account-page_main-article_form_action {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 15px;
  }
  &#registration .sub-heading,
  .sub-heading {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: auto;
    margin: 0 0 20px 0;
    padding: 0;
    border: 0;
    &.mt-3 {
      margin-top: 30px;
    }
    &::before,
    &::after {
      content: "";
      height: 1px;
      -webkit-box-flex: 1;
      flex-grow: 1;
      border-radius: var(--radius, 4px);
      background: linear-gradient(
        90deg,
        var(--domain-btn) 0%,
        transparent 99.17%
      );
    }
    &::before {
      margin-right: 1rem;
      transform: rotate(-180deg);
    }
    &::after {
      margin-left: 1rem;
    }
    span {
      position: static;
      font-size: 14px;
      color: #242424;
      font-weight: 600;
      padding: 0;
    }
  }
  &#registration {
    .flag-container {
      width: 100%;
    }
    .intl-tel-input.separate-dial-code .selected-flag {
      background-color: transparent;
    }
    .intl-tel-input .country-list {
      max-width: 100%;
      box-shadow: none;
      border: 1px solid #eee;
      border-radius: var(--radius);
      margin-top: 5px;
    }
  }
}

.wdes-wrap-account-page_main-article_form_actions {
  margin-top: auto;
  .wdes-register {
    color: var(--text-clr);
    a {
      color: inherit;
    }
    &:hover {
      color: #242424;
    }
  }
}

.wdes-wrap-account-page_main-article_form_actions_language {
  background-color: transparent;
  border: 1px solid var(--main-clr);
  color: var(--main-clr);
  border-radius: var(--radius);
  padding: 9px 15px;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
  span {
    font-size: 13px;
  }
  &[aria-expanded="true"] {
    span {
      transform: rotate(180deg);
    }
  }
}

.wdes-wrap-account-page_main-article_form_actions_language_menu {
  right: 0;
  bottom: calc(100% + 10px);
  left: initial;
  top: initial;
  max-height: 50vh;
  overflow-y: auto;
}

.marketing-email-optin {
  > p {
    font-size: 13px;
    color: var(--text-clr);
    margin: 0 0 10px 0;
    line-height: 22px;
  }
}

.tospanel {
  padding-left: 20px;
}

.wdes-reset-password-text {
  color: var(--text-clr);
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 22px;
}

// ClientArea
// Sidebar
.sidebar,
.cart-sidebar {
  .panel {
    border: 0;
    box-shadow: none;
    margin-bottom: 40px;
    border-radius: var(--radius);
    &:last-child {
      margin-bottom: 0;
    }

    .list-group-item {
      padding: 7px 0;
    }

    > .panel-heading {
      background-color: transparent;
      padding: 0;

      .panel-title {
        font-family: var(--main-font);
        font-size: var(--panel-heading-size);
        font-weight: var(--panel-heading-weight);
        line-height: 26px;
        color: #242424;
      }
    }

    .panel-body,
    .list-group {
      padding: 15px 0;
      font-family: var(--main-font);
      font-size: var(--description-size);
      font-weight: var(--description-weight);
      color: var(--text-clr);
      line-height: 24px;

      strong {
        color: #242424;
      }

      em {
        font-style: normal;
      }

      a.list-group-item {
        padding: 0;
        border: 0 !important;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--main-clr);

        &:last-child {
          margin-bottom: 0;
        }

        i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
          float: none;
          line-height: 24px;
          font-size: 13px;
          color: var(--main-clr);
          padding-right: 17px;
        }

        &:hover {
          background-color: transparent;
          color: #242424;
        }

        &.active {
          background-color: var(--domain-btn);
          border-radius: var(--radius);
          padding: 7px 15px !important;
        }
      }
    }

    > .panel-footer {
      background-color: transparent;
      border-top: 0;
      padding: 0;

      a.btn {
        border: 0;
        box-shadow: none;
        width: initial;
        font-family: var(--main-font);
        font-weight: var(--buttons-weight);
        color: var(--main-clr) !important;
        text-decoration: none;
        background-color: var(--btn-bg) !important;
        padding: 6px 17px;
        border-radius: 2px;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border-radius: var(--radius);
        max-width: 100%;
        &:hover,
        &:focus {
          background-color: var(--main-clr) !important;
          color: #fff !important;
        }
      }
    }
    // User Info
    &[menuitemname="Client Details"] {
      border: 1px solid #eee;
      padding: 25px 20px;
      .panel-title {
        display: none;
      }
      .panel-body {
        padding-top: 0;
        margin-bottom: 10px;

        img {
          border-radius: 50%;
          height: 70px;
          width: 70px;
          margin-bottom: 10px;
          border: 1px solid #eee;
        }
        strong {
          font-size: 18px;
          font-weight: 400;
          margin-bottom: 0px;
          display: block;
          word-wrap: break-word;
        }
      }
    }
    // Hide Store Panels
    &.mc-panel-promo {
      display: none;
    }
    // Filter Panels
    &.view-filter-btns {
      .list-group-item {
        .sidebar-menu-item-icon {
          display: none;
        }
        span:not(.badge) {
          color: var(--text-clr);
        }
        .badge {
          margin-left: auto;
          order: 3;
          width: 30px;
          height: 30px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          padding: 0;
          min-width: auto;
        }
        &:hover {
          * {
            color: var(--main-clr) !important;
          }
        }
      }
    }
  }
}

// Content
@media (max-width: 767px) {
  .tiles .tile:nth-child(1),
  .tiles .tile:nth-child(2) {
    border-bottom: 1px solid #eee;
  }

  .tiles .tile:nth-child(2) {
    border: 1px solid #eee;
  }
}

.tiles {
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;

  .tile {
    padding: 30px 10px;
    background-color: transparent;
    border-right: 0;
    border: 1px solid #eee;
    border-radius: var(--radius);
    width: calc(100% / 4 - 15px);
    text-align: center;
    position: relative;
    transition: all 0.3s;

    &:hover {
      background-color: transparent;
      border-color: var(--main-clr);
    }

    &:last-child {
      border: 1px solid #eee;

      &:hover {
        background-color: transparent;
        border-color: var(--main-clr);
      }
    }

    .icon {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 18px;
      line-height: 1;
      color: var(--main-clr);
    }

    .stat {
      margin-top: 0;
      font-size: 50px;
      line-height: 1;
      font-family: var(--main-font);
      color: var(--main-clr);
      font-weight: 400;
      margin-bottom: 11px;
    }

    .title {
      text-transform: capitalize;
      font-size: 16px;
      font-family: var(--main-font);
      font-weight: 400;
      color: #242424;
    }
  }
}

// Panels
.client-home-panels {
  .panel {
    font-size: 14px;
    font-family: var(--main-font);
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: var(--radius);

    > .panel-heading {
      background-color: var(--head-clr);
      border-bottom: 1px solid #eee;
      font-weight: 400;
      border-radius: 0;
      padding: 16px;

      .panel-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--main-font);
        font-size: var(--panel-heading-size);
        font-weight: var(--panel-heading-weight);
        line-height: 26px;
        color: #242424;

        > i {
          color: var(--text-clr);
        }
      }
    }

    .panel-body {
      p {
        padding: 15px;
        margin: 0;
        color: var(--text-clr);
        font-size: var(--description-size);
        font-weight: var(--description-weight);
        line-height: 25px;
      }
    }

    > .list-group {
      border: 0;
      max-height: 212px;

      .list-group-item {
        padding: 15px;
        font-size: var(--description-size);
        font-weight: var(--description-weight);
        transition: all 0.3s;

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

        &:last-child {
          border-bottom: 0 !important;
        }

        .label {
          float: right;
        }
      }
    }

    a.list-group-item:focus,
    a.list-group-item:hover,
    button.list-group-item:focus,
    button.list-group-item:hover {
      color: #242424;
      background-color: var(--btn-bg);
    }

    .panel-footer {
      display: none;
    }

    &#servicesPanel {
      > .list-group {
        .list-group-item {
          .btn-default {
            outline: none;
            font-size: 13px;
            padding: 7px 13px;

            &:hover,
            &:focus,
            &:active {
              color: var(--main-clr);
              background-color: #fff;
              border-color: var(--main-clr);
            }
          }

          .label {
            float: none;
          }
        }
      }
    }

    &[menuitemname="SitebuilderLogin"],
    &[menuitemname="SitelockLogin"],
    &[menuitemname="ThreesixtymonitoringLogin"],
    &[menuitemname="WeeblyLogin"] {
      display: none;
    }
  }

  div[menuitemname="Register a New Domain"] {
    padding: 56px 40px;
    text-align: center;

    > .panel-heading {
      background-color: transparent;
      border-bottom: 0;
      padding: 0;
      margin-bottom: 30px;

      .panel-title {
        font-size: 24px;
        justify-content: center;
        text-align: center;
        font-weight: 400;

        i {
          display: none;
        }
      }
    }

    .input-group {
      display: inline-block;
      margin: 0;
    }

    input.form-control {
      background-color: #f6f7f8;
      border-radius: var(--radius);
      color: var(--text-clr);
      font-family: var(--main-font);
      font-size: 14px;
      width: 100%;
      padding: 13px 20px;
      text-align: center;
      margin-bottom: 10px;

      &:hover,
      &:focus {
        outline: none;
        box-shadow: none;
        z-index: inherit;
        border-color: var(--main-clr);
      }
    }

    input[type="submit"] {
      border: 0;
      margin-left: 0;
      font-family: var(--main-font);
      font-size: 15px;
      padding: 12px 11px;
      color: #fff;
      width: 100%;
      border-radius: var(--radius) !important;

      &:focus {
        outline: none;
      }
    }

    .input-group-append {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
    }

    input.btn.btn-success {
      background-color: var(--domain-btn) !important;
      color: var(--main-clr) !important;
    }

    input.btn.btn-default {
      background-color: var(--main-clr);
      &:hover {
        background-color: #242424 !important;
        color: #fff !important;
      }
    }
  }

  div[menuitemname="Active Products/Services"] {
    .div-service-item {
      gap: 15px;
    }
    .div-service-name {
      order: 1;
      margin: 0;
      span {
        font-weight: 500;
      }
      .text-domain {
        font-weight: 400;
        color: var(--text-clr);
        margin-top: 5px;
        display: block;
      }
    }
    .div-service-status {
      order: 3;
      width: auto !important;
      .label {
        display: inline-flex;
      }
    }
    .div-service-buttons {
      order: 2;
      gap: 10px;
      display: flex;
      .btn-group-secondary {
        display: flex;
        align-items: center;
        gap: 3px;
        .btn-custom-action {
          border-radius: var(--radius) !important;
        }
        .dropdown-toggle {
          padding: 14.5px 10px !important;
          border-radius: var(--radius) !important;
        }
      }
    }
  }
}

// Table Pages
.view-filter-btns {
  .list-group-item .badge {
    background-color: #f8f8f8;
    color: var(--text-clr);
  }
}

.panel-sidebar.view-filter-btns .list-group-item.active,
.panel-sidebar.view-filter-btns .list-group-item.active:focus,
.panel-sidebar.view-filter-btns .list-group-item.active:hover {
  background-color: transparent;
}

.panel-sidebar a.list-group-item.active i,
.panel-sidebar a.list-group-item.active:focus i,
.panel-sidebar a.list-group-item.active:hover i {
  color: var(--main-clr);
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  background-color: var(--main-clr);
  color: #fff;
}

.dataTables_wrapper .dataTables_info {
  background-color: var(--head-clr);
  border: 1px solid #eee;
  color: var(--text-clr);
  border-radius: var(--radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dataTables_wrapper table.table-list {
  margin: 0 !important;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.dataTables_wrapper .dataTables_filter label .form-control {
  border: 1px solid #eee;
  box-shadow: none;
}

div.dataTables_wrapper div.dataTables_info {
  padding: 21px 15px !important;
}

.dataTables_wrapper .dataTables_length {
  background-color: var(--head-clr);
  border: 1px solid #eee;
  color: var(--text-clr);
  font-size: 14px;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

div.dataTables_wrapper div.dataTables_length label {
  padding: 15px;
  margin: 0;
  font-size: 13px;
}

.dataTables_wrapper .dataTables_length label .form-control {
  width: 50px;
  height: 30px;
  border-radius: var(--radius);
  margin: 0 3px;
}

.dataTables_wrapper table.table-list thead th {
  border: 0 !important;
  background-color: #fff !important;
  color: var(--text-clr);
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 13px;
  text-align: left;
  padding: 15px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  position: relative !important;
  display: inline-flex !important;
  top: 3px !important;
  left: 0;
  margin-left: 10px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc_disabled:after {
  color: var(--main-clr);
}

div.dataTables_wrapper div.dataTables_paginate {
  margin: 16px 15px 0 0;
  padding: 0;
  @media screen and (max-width: 767px) {
    display: flex;
    justify-content: center;
    align-items: center;
    float: none;
    border: 1px solid #eee;
    border-radius: 4px;
    margin: 10px 0;
    padding: 6px 1px;
  }
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  li {
    a {
      background-color: #fff;
      border: 1px solid #eee;
      font-size: 13px;
      color: var(--text-clr);
      padding: 0;
      margin: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: var(--radius);
    }
    &.active {
      a {
        background-color: var(--domain-btn);
        color: var(--main-clr);
      }
    }
    &.previous,
    &.next {
      a {
        background-color: transparent;
        width: auto;
        height: auto;
        border: 0;
      }
    }
    &.previous {
      margin-right: 5px;
    }
    &.next {
      margin-left: 5px;
    }
  }
}

.table-list > tbody > tr > td {
  background-color: #fff !important;
  color: var(--text-clr);
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s;
  padding: 18px 15px;
  text-align: left;

  a {
    color: var(--text-clr);
    font-size: 13px;
  }

  .status {
    border-radius: var(--radius);
    width: 100%;
  }
}

.table-list > tbody > tr {
  &:hover {
    td {
      background-color: var(--btn-bg) !important;
    }
  }
}

.dataTables_wrapper .dataTables_length label .form-control {
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: none;

  &:focus {
    outline: none;
    box-shadow: none;
  }
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: var(--main-clr);
  border-color: var(--main-clr);
}

.status {
  border: 1px solid #eee;
  border-radius: 2px;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-top: 1px solid #eee;
  font-weight: 400;
}

div.product-details {
  margin-bottom: 30px;
}

.product-details > .row {
  display: flex;
  @media screen and (max-width: 767px) {
    flex-flow: column;
    gap: 20px;
  }
  > div {
    width: 100%;
  }
}

.wdes-phox-main-heading {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
}

.wdes-phox-main-description {
  margin: 10px 0 30px;
  color: var(--text-clr);
  font-size: 14px;
  line-height: 24px;
  a {
    color: var(--main-clr);
    text-decoration: none;
  }
}

a {
  color: var(--main-clr);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  &:hover {
    text-decoration: none;
    color: #242424;
  }
}

.d-block {
  display: block;
}

.mt-0-5 {
  margin-top: 5px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 40px;
}

// Product Page
.product-status {
  background-color: var(--domain-btn);
  color: var(--main-clr);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.product-actions-wrapper {
  width: 100%;
  .col-xs-12 {
    padding: 0;
  }
}

div.product-details div.product-icon {
  margin: auto 0;
  padding: 0 15px;
  background-color: transparent;
  border-radius: 0;
  font-size: initial;
  line-height: initial;
  @media screen and (max-width: 767px) {
    padding: 50px 15px;
  }
  > i {
    font-size: 60px;
    color: inherit;
  }

  h3 {
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 23px;
    color: inherit;
    margin: 20px 0 0;
  }

  .product-status-text {
    text-align: center;
    background-color: #fff;
    display: inline-table;
    margin-top: 19px;
    border-radius: var(--radius);
    font-family: var(--main-font);
    font-size: 15px;
    text-transform: capitalize;
    color: var(--main-clr);
    padding: 7px 20px;
  }
}

.product-actions-wrapper {
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: var(--main-clr);
    border: 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
    padding: 12px 0;
    &:hover,
    &:focus {
      background-color: var(--main-clr);
      color: var(--domain-btn);
    }
  }
}

.wdes-product-btn {
  border-radius: 0;
  font-family: var(--main-font);
  font-size: 14px;
  background-color: transparent;
  border: 0;
  border-top: 1px solid #867ffa;
  padding: 10px;
  transition: all 0.3s;
  text-align: center;

  &:hover,
  &:focus {
    background-color: transparent;
    border: 0;
    border-top: 1px solid #867ffa;
  }
}

.wdes-product-info {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 25px 20px;
  font-family: var(--main-font);
  font-size: 15px;
  color: var(--text-clr);
}

.wdes-item-info {
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }

  h4 {
    color: var(--text-clr);
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 5px 0;
    strong {
      font-weight: 400;
    }
  }

  span {
    color: #242424;
    font-size: 16px;
  }
}

.wdes-tabs-overview {
  ul.nav-tabs {
    background-color: var(--head-clr);
    border-radius: var(--radius) var(--radius) 0 0;
    padding-left: 30px;
    padding-right: 30px;
    border-color: #eee;

    > li {
      margin-right: 20px;

      &:last-child {
        margin-right: 0;
      }

      > a {
        font-family: var(--main-font);
        font-size: 15px;
        font-weight: 400;
        color: var(--text-clr);
        border: 0;
        border-bottom: 3px solid transparent;
        padding-left: 0;
        padding-right: 0;
        padding-top: 15px;
        padding-bottom: 15px;
      }
    }
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:focus,
  .nav-tabs > li.active > a:hover {
    border: 0;
    color: #555;
    background-color: transparent;
    border-bottom: 3px solid var(--main-clr);
    padding-left: 0;
    padding-right: 0;
    color: var(--main-clr);
  }

  .nav > li > a:focus,
  .nav > li > a:hover {
    background-color: transparent;
  }
}

div.product-details-tab-container {
  margin: 0;
  padding: 30px 15px;
  border: 1px solid #eee;
  border-top: 0;
  background-color: white;
  font-family: var(--main-font);
  font-size: 14px;
  color: var(--text-clr);
  border-radius: 0 0 var(--radius) var(--radius);

  .row {
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;

    &:last-child {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 0;
    }

    strong {
      font-weight: 400;
      color: var(--text-clr);
      font-size: 14px;
    }

    div {
      color: #242424;
    }
  }
}

.panel-sidebar a.list-group-item.active,
.panel-sidebar a.list-group-item.active:focus,
.panel-sidebar a.list-group-item.active:hover {
  background-color: transparent;
  color: var(--main-clr);
}

.form-control,
textarea,
.field {
  padding: 11px 12px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: none;
  color: var(--text-clr);
  font-size: 14px;
  height: auto;
  transition: all 0.3s ease-in-out;
  &:hover,
  &:focus {
    border-color: var(--main-clr);
    outline: none;
    box-shadow: none;
  }
}

select.form-control {
  height: 45px;
}

textarea#cancellationreason {
  margin: 0;
  padding: 15px;
}

// Prorduct Addons
.wdes-addon-item {
  font-family: var(--main-font);

  .panel {
    background-color: #fff;
    border: 1px solid #eee !important;
    box-shadow: none;

    .panel-heading {
      background-color: var(--head-clr);
      color: #242424;
      font-size: 15px;
      border-bottom: 1px solid #eee;
      font-weight: 500;
      padding: 18px 15px;

      .pull-right {
        font-size: 13px;
      }
    }

    .panel-body {
      color: var(--text-clr);
      padding: 18px 15px;
    }

    .panel-footer {
      display: none;
    }
  }
}

.wdes-product-domain-details {
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 30px;
  color: var(--text-clr);
  font-family: var(--main-font);
  margin-top: 20px;
}

.wdes-passpay {
  table {
    font-family: var(--main-font);
    font-size: 15px;
    color: var(--text-clr);
  }

  tr.masspay-invoice-detail {
    border-bottom: 1px solid #eee;

    td {
      font-size: 14px;
    }
  }

  td {
    background-color: #fff !important;
    border-top: 0 !important;
  }

  .bg-info strong {
    color: var(--main-clr);
  }

  .masspay-total {
    td {
      background-color: var(--head-clr) !important;
      border: 1px solid #eee;
    }
  }
}

.ticket-number {
  font-size: 13px;
  font-style: normal;
}

div[menuitemname="Ticket Information"] {
  button.btn.btn-success.btn-sm.btn-block {
    background-color: var(--main-clr);
    border: 1px solid var(--main-clr);
    color: #fff;
    font-family: var(--main-font);
    font-size: 14px;
  }
}

div[menuitemname="CC Recipients"] {
  .panel-footer {
    margin-top: 15px;

    #inputAddCcEmail {
      &:focus {
        outline: none;
        box-shadow: none;
      }
    }
  }
}

.wdes-phox-announcement-block {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: all 0.3s;

  &:hover,
  &:focus {
    border: 1px solid var(--main-clr);
  }

  &:last-child {
    margin-bottom: 0;
  }
  .announcement-single {
    margin: 0;
    padding: 30px;
    .date {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--text-clr);
      font-size: 13px;
      margin-bottom: 14px;
    }
    .title {
      color: var(--main-clr);
      font-size: 20px;
      font-weight: 400;
      text-decoration: none;
      margin: 0 0 10px;
    }
    .description {
      font-size: 14px;
      line-height: 24px;
      color: var(--text-clr);
      margin: 0 0 20px 0;
      color: var(--text-clr);
    }
  }
  a.admin-inline-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    background-color: var(--head-clr);
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

i.icon-rss {
  padding-right: 0 !important;
}

.wdes-box-content {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 20px;
  display: inline-block;
  width: 100%;
  margin: 20px 0;
  font-family: var(--main-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-clr);
  line-height: 26px;

  a {
    color: var(--main-clr);
  }

  .wdes-data {
    color: var(--text-clr);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
  }
  .wdes-box-content-text {
    color: var(--text-clr);
    font-size: 17px;
    line-height: 30px;
    p {
      color: inherit !important;
      font-size: inherit !important;
      line-height: inherit !important;
    }
  }
}

.wdes-form-kb {
  margin-bottom: 35px;
}

#inputKnowledgebaseSearch,
#btnKnowledgebaseSearch,
#inputDownloadsSearch,
#btnDownloadsSearch {
  font-size: 14px;
}

.wdes-main-title {
  font-size: 17px;
  margin: 20px 0;
  font-weight: 600;
}

.main-color {
  color: var(--main-clr) !important;
}

.controls {
  display: flex;
  flex-flow: column;
  gap: 0;
}

.kbcategories {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 20px;
  margin-left: 0;
  margin-right: 0;
  &::before {
    display: none;
  }
}

.wdes-kb-item {
  background-color: #fff;
  width: calc(100% / 3 - 15px);
  border: 1px solid #eee;
  padding: 25px 20px;
  border-radius: var(--radius);
  transition: all 0.3s;

  &:hover,
  &:focus {
    border: 1px solid var(--main-clr);
  }

  .wdes-title-kb {
    color: #242424;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    i {
      color: var(--main-clr);
      font-size: 25px;
    }
  }

  p {
    font-size: 13px;
    color: var(--text-clr);
    margin: 15px 0 0;
  }

  a.admin-inline-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    background-color: var(--head-clr);
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

a.admin-inline-edit {
  color: var(--text-clr);
  float: right;
  font-family: var(--main-font);
  font-size: 13px;
}

.kbarticles {
  .wdes-kb-article-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 20px;
    font-family: var(--main-font);
    font-size: 14px;
    color: var(--text-clr);
    transition: all 0.3s;
    margin-bottom: 20px;
    position: relative;

    p {
      margin: 0;
    }

    &:hover,
    &:focus {
      border: 1px solid var(--main-clr);
    }

    a.wdes-title {
      color: var(--main-clr);
    }

    a.admin-inline-edit {
      position: absolute;
      top: 10px;
      right: 10px;
      margin: 0;
      background-color: var(--head-clr);
      border: 1px solid #eee;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .wdes-title {
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 15px;
      margin-bottom: 10px;
    }
  }
}

.kb-article-details {
  color: var(--text-clr);
  font-size: 14px;
  font-weight: 400;
  li {
    display: flex;
    align-items: center;
    gap: 5px;
    i {
      color: var(--main-clr);
    }
  }
}

div[menuitemname="Support Knowledgebase Tag Cloud"] {
  a {
    background-color: var(--btn-bg);
    color: var(--main-clr);
    font-family: var(--main-font);
    font-size: 14px !important;
    padding: 3px 10px;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 5px;
    float: left;
    margin-right: 5px;

    &:hover,
    &:focus {
      background-color: var(--main-clr);
      color: #fff;
    }
  }
}

a.btn.btn-link.btn-print {
  float: right;
  font-size: 22px;
  padding: 0;
}

.kb-article-content {
  font-family: var(--main-font);
  font-size: 15px;
  color: var(--text-clr);
  line-height: 26px;
}

.kb-rate-article {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #fff;
  font-size: 15px;
  line-height: initial;
  font-weight: 400;
  color: var(--text-clr);
  border: 1px solid #eee;
  padding: 20px;
  font-family: var(--main-font);
  border-radius: var(--radius);
}

.wdes-kb-form-articles {
  display: flex;
  align-items: center;
  color: var(--text-clr);
  font-size: 14px;

  .wdes-btns {
    margin-left: auto;

    button {
      font-family: var(--main-font);
      font-size: 14px;
      padding: 9px 17px;
      background-color: var(--btn-bg);
      border-radius: var(--radius);
      text-decoration: none;
    }
  }
}

.wdes-main-description {
  font-family: var(--main-font);
  font-size: 15px;
  color: var(--text-clr);
  line-height: 27px;
  margin: 0 0 30px 0;
}

div#autoAnswerSuggestions {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  box-shadow: none;
  padding: 20px;

  h3 {
    margin: 0 0 10px;
    font-family: var(--main-font);
    font-size: 18px;
  }

  p {
    font-family: var(--main-font);
    font-size: 15px;
    color: var(--text-clr);
    line-height: 27px;

    a {
      color: var(--text-clr);
      transition: all 0.3s;
      font-size: 15px;

      &:hover {
        color: var(--main-clr);
      }
    }
  }
}

// Network Status
.wdes-ns-panel {
  font-size: 14px;
  border: 1px solid #eee;
  font-family: var(--main-font);
  color: var(--text-clr);
  box-shadow: none;

  .panel-heading {
    background-color: var(--head-clr);
    border: 0;
    color: inherit;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;

    .wdes-priority {
      margin-left: auto;
    }
  }
}

// Affiliate
.wdes-affiliates-blocks {
  .tile {
    width: calc(100% / 3 - 15px);
  }
}

.wdes-table-affiliate {
  margin: 20px 0;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
  font-family: var(--main-font);
  color: var(--text-clr);

  tr {
    border-bottom: 1px solid #eee;
  }

  td:first-child {
    margin: 0;
    background-color: var(--head-clr);
    color: #242424;
    padding: 13px;
    font-size: 16px;
    border-radius: 0;
  }

  td:nth-child(2) {
    background-color: #fff;
    border-radius: 0;
    border: 0;
    padding: 13px;
    font-size: 15px;
  }
}

.wdes-page-affiliates {
  h2 {
    font-family: var(--main-font);
    color: #242424;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0;
  }
}

.wdes-checks-email {
  label {
    margin-bottom: 15px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}

.marketing-email-optin {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.wdes-table {
  background-color: #fff;
  border-radius: var(--radius);
  font-family: var(--main-font);
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
  thead {
    border: 1px solid #eee !important;
    th {
      background-color: var(--head-clr);
      padding: 14px !important;
      color: var(--text-clr);
      font-size: 14px;
      font-weight: 500;
      border-bottom: 0 !important;
    }
  }
  tbody {
    border: 1px solid #eee;
    tr {
      td {
        padding: 14px;
        color: var(--text-clr);
        font-size: 14px;
        font-weight: 400;
      }
    }
  }
}

.well {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 20px;
  font-family: var(--main-font);
  font-size: 14px;
  color: var(--text-clr);
}

.hide-desktop {
  display: none;
}

.domainchecker-homepage-captcha {
  text-align: left;
  margin-top: 10px;
  color: var(--text-clr);
  font-family: var(--main-font);
}

#default-captcha-domainchecker #inputCaptcha {
  width: 100px;
  border-radius: 4px;
  background-color: #f8f8f8;
  border: 1px solid #eee;
}

.lighter-icon-weight i,
.dropdown > a > i {
  font-weight: 400;
}

.wdes-phox-block {
  background-color: var(--head-clr);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 25px;
}

.wdes-phox-actions {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.wdes-btn-transparent {
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none;
  color: var(--text-clr);
  transition: all 0.3s ease-in-out;
  &:hover,
  &:focus,
  &:active {
    color: var(--main-clr);
    outline: none;
    box-shadow: none !important;
  }
}

.wdes-btn-action {
  font-size: 30px;
}

.wdes-domain-item-slug {
  display: flex;
  align-items: center;
  gap: 5px;
  img {
    height: 15px;
  }
}

.wdes-hidden-table-col {
  display: none;
}

.wdes-table-col-width {
  width: 80px !important;
}

.wdes-link-main {
  color: var(--main-clr) !important;
}

.wdes-phox-block-domain-lists {
  > .row {
    margin-bottom: 20px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}

.wdes-phox-block-domain-actions-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  li {
    margin-bottom: 10px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}

.wdes-phox-block-domain-addon-block {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: var(--text-clr);

  i {
    font-size: 40px;
    color: var(--main-clr);
    margin-bottom: 15px;
  }
  strong {
    font-size: 17px;
    font-weight: 500;
  }
  .btn {
    margin-top: 20px;
  }
}

div[menuitemname="My Invoices Summary"] {
  background-color: var(--head-clr);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
  padding-top: 5px;
  .panel-heading {
    display: none;
  }
}

.wdes-phox-table-mass-payment-head {
  padding: 12px 15px !important;
  background-color: var(--domain-btn);
  color: var(--main-clr);
  font-size: 14px;
  font-weight: 400;
  strong {
    font-weight: 400;
  }
}

.masspay-invoice-detail {
  td {
    padding: 12px 15px !important;
    font-size: 13px !important;
    color: var(--text-clr);
  }
}

.wdes-phox-profile-picture {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  &.wdes-phox-profile-picture--staff {
    img {
      width: 70%;
      height: 70%;
    }
  }
}

// View Ticket
.ticket-reply {
  margin: 30px 0;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-clr);
  overflow: hidden;
  &.staff {
    border-color: var(--main-clr);
  }

  // Heading
  .wdes-phox-ticket-heading {
    display: flex;
    align-items: flex-end;
    background-color: var(--head-clr);
    border-bottom: 1px solid #eee;
    padding: 20px;

    .user {
      background-color: transparent !important;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0;

      .name {
        display: flex;
        align-items: flex-start;
        flex-flow: column;
        color: #242424;
        font-size: 15px;
        font-weight: 600;
        gap: 3px;
      }
    }
    .date {
      margin-left: auto;
      padding: 0;
      font-size: 13px;
      color: var(--text-clr);
    }
  }

  // Message
  .message {
    padding: 20px;
    p {
      font-size: 16px;
      color: var(--text-clr);
      font-weight: 400;
      line-height: 29px;
    }
    .rating {
      padding: 0;
      .star {
        margin-left: 0;
      }
    }
    .rating-done {
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      .rated {
        font-size: 13px;
        font-weight: 400;
        margin-right: 10px;
      }
    }
    .star {
      margin-left: 2px;
      color: var(--text-clr);
      font-size: 13px;
      &::before {
        color: inherit;
      }
      &.active {
        &::before {
          color: var(--warning-dark);
        }
      }
    }
  }
  .attachments {
    background-color: var(--head-clr);
    padding: 20px;
    font-size: 13px;
    border-top: 1px solid #eee;

    ul {
      margin: 5px 0 0;
      padding: 0;
      list-style: none;
      li {
        display: flex;
        align-items: center;
        gap: 5px;
        a {
          color: var(--text-clr);
        }
      }
    }
  }
}

.wdes-view-ticket {
  overflow: hidden;
  .panel-heading {
    background-color: var(--head-clr);
    border: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    .collapse-icon {
      margin-left: auto;
      color: var(--text-clr);
      font-size: 16px;
    }
    .panel-title {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: var(--main-clr);
      font-weight: 600;
    }
  }
  .panel-body {
    padding: 20px;
    border-top: 1px solid #eee;
  }
}

.requestor-type-owner {
  background-color: var(--success-lighter-v2);
  border-color: var(--success-lighter-v2);
  color: var(--success-dark);
}
.requestor-type-operator {
  background-color: var(--info-lighter-v2);
  border-color: var(--info-lighter-v2);
  color: var(--info-dark);
}

.md-editor {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  &:active {
    border-color: var(--main-clr);
  }
  .md-header {
    .btn-default {
      padding: 15px 10px;
      border: 0;
      color: var(--text-clr);
    }
  }
  .md-footer {
    background-color: var(--head-clr);
    .markdown-editor-status {
      text-align: left;
      color: var(--text-clr);
    }
  }
}

.md-editor > .md-preview,
.md-editor > textarea.markdown-editor {
  border-top-color: #eee !important;
  border-bottom-color: #eee !important;
}

div[menuitemname="Ticket Information"],
div[menuitemname="Attachments"],
div[menuitemname="Recent Tickets"] {
  .list-group {
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 0 !important;
    margin: 20px 0;
    overflow: hidden;
    .list-group-item {
      padding: 20px;
      &:last-child {
        border-bottom: 0;
      }
    }
  }
  .panel-footer {
    padding: 0 15px !important;
  }
}

.sidebar div[menuitemname="Recent Tickets"] {
  .list-group {
    .list-group-item {
      border-bottom: 1px solid #eee !important;
      margin-bottom: 0 !important;
      padding: 15px !important;
      &:last-child {
        border-bottom: 0 !important;
      }
    }
  }
  .recent-ticket {
    width: 100%;
    .pull-right {
      color: var(--text-clr);
      float: none !important;
      margin-right: 8px;
    }
  }
}

.sidebar div[menuitemname="Attachments"] {
  .list-group {
    a.list-group-item {
      margin-bottom: 0;
      padding: 15px !important;
      border-bottom: 1px solid #eee !important;
      display: flex !important;
      align-items: flex-start !important;
      gap: 5px !important;
      font-size: 12px;

      &::before {
        content: "\f02b";
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        position: relative;
        top: 1px;
      }
      &:last-child {
        border-bottom: 0 !important;
      }
    }
  }
}

.wdes-phox-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  .btn-group {
    display: flex;
    .btn {
      font-size: 13px;
      color: var(--text-clr);
    }
  }
}

.kb-search {
  background-color: var(--head-clr);
  border: 1px solid #eee;
  padding: 10px;
  border-radius: var(--radius);
}

.list-group-item--download {
  display: flex;
  flex-flow: column;
  font-size: 14px;
  color: var(--text-clr) !important;
  padding: 15px;
}

.twofa-module {
  border-color: #eee;
}

.twofa-module.active {
  border-color: var(--main-clr);
}

// cPanel Module
@import "./components/cpanel";

// Layouts
@import "./components/layouts";

// Store
@import "./components/dashboard/store";

.cart-sidebar div[menuitemname="Choose Currency"] {
  .panel-body {
    background-color: transparent;
    padding: 25px 0 0;
    border: 0;
  }
}

@media screen and (max-width: 767px) {
  .flex-flow-column-mobile {
    flex-flow: column;
  }
}

#payMethodList {
  tbody {
    tr td {
      vertical-align: middle;
      color: var(--text-clr);
    }
  }
}
