/*------------------------------------------------------------------
[Master Stylesheet]

Project:    Vivo Admin Dashboard
Version:    1.0
Last change:  05/03/2022
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of Contents]

1. Importing Sass Variables
2. Importing Web Fonts
  2.1 Lato Font
  2.2 Rubik Mono One Font
3. Body CSS
4. Loading CSS
5. Re Usable Styles
  5.1 Anchor Reset
  5.2 HR
  5.3 Unorder List
  5.4 Headings
  5.5 Images
  5.6 Background Colors
    5.7 Border Colors
  5.9 Text Colors
6. Layout CSS
  6.1 Page Wrapper
  6.2 Sidebar Wrapper
  6.3 Main Container
  6.4 Page Header
    6.5 Welcome Note
  6.6 Search Container
  6.7 Leads Dropdown
    6.8 Header Ations
  6.9 Header Profile Actions
  6.10 Breadcrumb Container
  6.11 Content Wrapper
  6.12 App Footer
7. Country Dropdown
8. Components/Widgets
  8.1 Button Icon
  8.2 Custom Button Group
  8.3 Custom Icon Group
  8.4 Custom Badge Group
  8.5 Chart Heights
  8.6 Card Heights
  8.7 Number Stats
    8.8 Notifications Container
  8.9 Stats Tiles
  8.10 Reports Summary
    8.11 Day Selection
    8.12 Activity Container
    8.13 Transactions Container
    8.14 Task List
    8.15 User Messages
    8.16 Info Stats
    8.17 Income Stats
    8.18 Tickets Container
    8.19 Task Stats
    8.20 Meetings Container
    8.21 Nav Tabs
    8.21 Stacked Images
    8.22 Orders
    8.23 Logs
    8.24 Global Slaes
    8.25 Social Tile
    8.26 Databar Container
    8.27 Weather widget
    8.28 Ratings
    8.29 Product Cards
    8.30 Product Cards
    8.31 Product Checkout List
    8.32 Edit Customer Status
    8.33 Add Product
    8.34 Create Invoice Wrapper
    8.35 Invoice List
    8.36 Create Invoice
    8.37 Form Actions Footer
    8.38 Icons Container
    8.39 Sales Stats
    8.40 Monthly Stats
    8.41 Chart Notify
    8.42 Vertical line
9. Plugins
  9.1 Overlay Scroll
  9.2 DropZone
  9.3 Credit Card
  9.4 jVector Maps
  9.5 Apex Graphs
10. Pages
  10.1 Login
  10.2 Maintenance Screen
  10.3 Contacts
    10.4 Pricing Plan
    10.5 Account Settings
    10.6 Error Page
11. Bootstrap Overwrite CSS
  11.1 Badge
  11.2 Placeholder
  11.3 Accordion
  11.4 Alerts
  11.5 Tabs
  11.6 Cards
  11.7 Buttons
    11.8 Button Primary
    11.9 Button Secondary
    11.10 Button Info
    11.11 Button Danger
    11.12 Button Warning
    11.13 Button Success
    11.14 Button Light
    11.15 Button Dark
    11.16 Button White
    11.17 Dropdown Menu
    11.18 List Group
    11.19 Carousel
    11.20 Form Controls
    11.21 File Upload
    11.22 Checkbox and Radio
    11.23 Modal
    11.24 Tables
    11.25 Pagination
    11.26 Progress
    11.27 Spinners
    11.28 Off Canvas
    11.29 Off Canvas
    11.30 Row Gutters


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

# Lato - Main Font
# Rubik Mono One Font - Additional Font
-------------------------------------------------------------------*/
/************************************************
  ************************************************
        1. Importing Sass Variables
  ************************************************
************************************************/
/************************************************
  ************************************************
        2. Importing Web Fonts
  ************************************************
************************************************/
@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik Mono One';
  src: url("../fonts/rubik-mono/RubikMonoOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-style: normal;
  font-display: swap;
}

/************************************************
  ************************************************
          3. Body CSS
  ************************************************
************************************************/
html, body {
  height: 100%;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  font: 400 .9rem 'Lato', sans-serif;
  color: #13181e;
  min-height: 100%;
  position: relative;
  background: #F3F2F7;
}

body:before {
  content: '';
  position: absolute;
  left: -25%;
  top: 0;
  bottom: 0;
  opacity: 0.6;
  width: 70%;
  background: url(../img/circle.svg);
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  body:before {
    background: none;
  }
}

/************************************************
  ************************************************
          4. Loading CSS
  ************************************************
************************************************/
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#loading-wrapper .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -30px;
  width: 80px;
  height: 60px;
}

#loading-wrapper .spinner > div {
  background-color: #1395ba;
  height: 100%;
  width: 9px;
  border-radius: 10px;
  display: inline-block;
  -webkit-animation: linedelay 1.1s infinite ease-in-out;
  animation: linedelay 1.1s infinite ease-in-out;
}

#loading-wrapper .spinner .line2 {
  background-color: #5ca793;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#loading-wrapper .spinner .line3 {
  background-color: #a2b86c;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#loading-wrapper .spinner .line4 {
  background-color: #ebc844;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

#loading-wrapper .spinner .line5 {
  background-color: #ecaa38;
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

#loading-wrapper .spinner .line6 {
  background-color: #ef8b2c;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

@-webkit-keyframes linedelay {
  0%, 50%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  30% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes linedelay {
  0%, 50%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  30% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/************************************************
  ************************************************
        5. Re Usable Styles
  ************************************************
************************************************/
/************* 5.1 Anchor Reset *************/
a {
  color: #13181e;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/************* 5.2 HR *************/
hr {
  background: #e1e1e1;
  opacity: 1;
}

/************* 5.3 Unorder List *************/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.custom {
  margin: 20px 0 0 20px;
}

ul.custom li {
  line-height: 180%;
}

/************* 5.4 Headings *************/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  margin-bottom: .8rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: .4rem;
}

h5 {
  font-size: 1rem;
  margin-bottom: .3rem;
}

h6 {
  font-size: .925rem;
  margin-bottom: .2rem;
}

p {
  margin-bottom: .2rem;
  font-size: .875rem;
  line-height: 180%;
}

/************* 5.5 Images *************/
img {
  border-radius: 3px;
}

/************* 5.6 Background Colors *************/
.shade-white, .modal .modal-content {
  background: #ffffff;
}

.shade-primary {
  background: #0f59c9;
}

.shade-secondary {
  background: #41464b;
}

.shade-yellow, .header-actions > li .user-settings .avatar .status.away {
  background: #dda50e;
}

.shade-red, .page-header .toggle-sidebar:hover, .page-header .toggle-sidebar-fullscreen:hover, .page-header .sidebar-togglescreen:hover, .header-actions > li .user-settings .avatar .status.busy {
  background: #EB3333;
}

.shade-green, .page-header .toggle-sidebar, .page-header .toggle-sidebar-fullscreen, .page-header .sidebar-togglescreen, .header-actions > li .user-settings .avatar .status.online {
  background: #149865;
}

.shade-blue, .login-box .login-form .btn .icon, .page-item.active .page-link {
  background: #435EEF;
}

.shade-light {
  background: #dbe1e9;
}

.shade-dark {
  background: #9ba2ab;
}

/************* 5.7 Border Colors *************/
.shade-bdr-white {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.shade-bdr-primary {
  border: 1px solid #0f59c9;
  color: #0f59c9;
}

.shade-bdr-secondary {
  border: 1px solid #41464b;
  color: #41464b;
}

.shade-bdr-yellow {
  border: 1px solid #dda50e;
  color: #dda50e;
}

.shade-bdr-red {
  border: 1px solid #EB3333;
  color: #EB3333;
}

.shade-bdr-green {
  border: 1px solid #149865;
  color: #149865;
}

.shade-bdr-blue {
  border: 1px solid #435EEF;
  color: #435EEF;
}

.shade-bdr-light {
  border: 1px solid #dbe1e9;
  color: #dbe1e9;
}

.shade-bdr-dark {
  border: 1px solid #9ba2ab;
  color: #9ba2ab;
}

/************* 5.8 Text Colors *************/
.text-primary {
  color: #0f59c9 !important;
}

.text-secondary {
  color: #41464b !important;
}

.text-light {
  color: #dbe1e9 !important;
}

.text-dark {
  color: #9ba2ab !important;
}

.text-red {
  color: #EB3333 !important;
}

.text-green {
  color: #149865 !important;
}

.text-yellow {
  color: #dda50e !important;
}

.text-blue {
  /*color: #435EEF !important;*/
  color: #F57533 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000000 !important;
}

.text-muted {
  color: rgba(0, 0, 0, 0.5) !important;
}

/************************************************
  ************************************************
          6. Layout CSS
  ************************************************
************************************************/
/************* 6.1 Page Wrapper *************/
.page-wrapper {
  padding: 10px;
  position: relative;
}

.page-wrapper.fullscreen .sidebar-wrapper {
  left: -280px;
}

.page-wrapper.fullscreen .main-container {
  padding-left: 0px;
}

.page-wrapper.togglescreen .sidebar-wrapper {
  left: -280px;
}

.page-wrapper.togglescreen .main-container {
  padding-left: 0px;
}

@media (max-width: 576px) {
  .page-wrapper {
    padding: 0;
  }
}

/************* 6.2 Sidebar Wrapper *************/
.sidebar-wrapper {
  width: 230px;
  /*width: 210px;*/
  padding: 0;
  height: calc(100vh - 20px);
  border-radius: 10px 31px 31px 10px;
  background: #ffffff;
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 999;
  -webkit-transition: left .3s ease, width .3s ease;
  transition: left .3s ease, width .3s ease;
  /************* Sidebar Brand *************/
  /************* Sidebar Icon Animation *************/
  /************* Sidebar Menu *************/
}

.sidebar-wrapper .sidebar-brand {
  margin: 0;
}

.sidebar-wrapper .sidebar-brand .logo {
  padding: 2rem 1.5rem 0rem 1.5rem;
  min-height: 85px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar-wrapper .sidebar-brand .logo img {
  max-width: 150px;
  max-height: 70px;
}

@-webkit-keyframes iconUpDown {
  0%, 100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

@keyframes iconUpDown {
  0%, 100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

.sidebar-wrapper .sidebar-menu {
  padding: 20px 0;
  height: calc(100vh - 120px);
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  /*display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;*/
  position: relative;
 /* padding: 20px 15px 20px 15px;*/
 padding: 17px 8px 10px 15px;
  color: #272727;
  font-size: .925rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.sidebar-wrapper .sidebar-menu ul li a i {
  margin-bottom: 7px;
  font-size: 1.7rem;
  text-shadow: none;
  color: #13181e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50px;
}

.sidebar-wrapper .sidebar-menu ul li a .menu-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-menu ul li a:hover {
  color: #696969;
  background-color: rgba(0, 0, 0, 0.02);
}

.sidebar-wrapper .sidebar-menu ul li a:hover i {
  -webkit-animation: iconUpDown 1s linear infinite;
          animation: iconUpDown 1s linear infinite;
}

.sidebar-wrapper .sidebar-menu ul li.active-page-link {
  position: relative;
}

.sidebar-wrapper .sidebar-menu ul li.active-page-link a {
  color: #435EEF;
}

.sidebar-wrapper .sidebar-menu ul li.active-page-link a i {
  color: #435EEF;
  border-radius: 50px;
}

.sidebar-wrapper .sidebar-menu ul li.active a i {
  color: #435EEF;
  border-radius: 50px;
}

.sidebar-wrapper .sidebar-menu ul li.active a.current-page {
  position: relative;
  color: #435EEF;
}

.sidebar-wrapper .sidebar-menu ul li.active a.current-page:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #435EEF !important;
}

.sidebar-wrapper .sidebar-menu ul li.active .sidebar-submenu {
  display: block;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  font-family: 'bootstrap-icons' !important;
  font-weight: 700;
  font-size: 1rem;
  content: "\f282";
  display: inline-block;
  position: absolute;
  /*right: 65px;*/
  right: 12px;
  top: 21px;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px 7px 10px 7px;
  margin: 0 8px;
  border-radius: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a:hover {
  color: #696969;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  right: 12px;
  /*right: 65px;*/
}

.sidebar-wrapper.dark {
  background-color: #2f313a;
}

.sidebar-wrapper.dark .sidebar-menu ul li a {
  color: #ffffff;
}

.sidebar-wrapper.dark .sidebar-menu ul li a i {
  color: #ffffff;
}

.sidebar-wrapper.dark .sidebar-menu ul li a:hover {
  background-color: #3a3d48;
  color: #ffffff;
}

.sidebar-wrapper.dark .sidebar-menu ul li a:hover i {
  color: #ffffff;
}

.sidebar-wrapper.dark .sidebar-menu ul li.active a.current-page {
  background-color: #3a3d48;
  color: #ffffff;
}

.sidebar-wrapper.dark .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 0;
}

.sidebar-wrapper.dark .sidebar-menu .sidebar-dropdown .sidebar-submenu ul li a:hover {
  color: #ffffff;
}

@media (max-width: 576px) {
  .sidebar-wrapper {
    background-color: #ffffff;
    border-radius: 10px 90px 90px 10px;
  }
}

/************* 6.3 Main Container *************/
.main-container {
  border-radius: 10px;
  -webkit-transition: padding-left .3s ease;
  transition: padding-left .3s ease;
 /* padding: 0 0 0 230px;*/
  padding: 0 0 0 250px;
  height: calc(100vh - 20px);
}

@media screen and (max-width: 1024px) {
  /************* Page Wrapper *************/
  .page-wrapper {
    /************* Main Container *************/
  }
  .page-wrapper .sidebar-wrapper {
    left: -280px;
  }
  .page-wrapper.toggled .sidebar-wrapper {
    left: 10px;
  }
  .page-wrapper .main-container {
    padding-left: 0px;
  }
}

@media screen and (min-width: 1024px) {
  /************* Page Wrapper fullscreen *************/
  .page-wrapper.toggled-fullscreen .sidebar-wrapper {
    left: 10px;
  }
  .page-wrapper.toggled-fullscreen .main-container {
    padding-left: 230px;
  }
}

@media screen and (min-width: 1024px) {
  /************* Page Wrapper fullscreen *************/
  .page-wrapper.toggled-togglescreen .sidebar-wrapper {
    left: 10px;
  }
  .page-wrapper.toggled-togglescreen .main-container {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .main-container {
    height: calc(100vh);
  }
}

/************* 6.4 Page Header *************/
.page-header {
  padding: 10px 14px 20px 14px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-header .toggle-sidebar {
  border-radius: 30px;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page-header .toggle-sidebar i {
  color: #ffffff;
  font-size: 1.4rem;
}

.page-header .toggle-sidebar-fullscreen {
  border-radius: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  min-width: 40px;
  margin: 0 10px 0 0;
  height: 40px;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page-header .toggle-sidebar-fullscreen i {
  color: #ffffff;
  font-size: 1.4rem;
}

.page-header .sidebar-togglescreen {
  border-radius: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  min-width: 40px;
  margin: 0 10px 0 0;
  height: 40px;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.page-header .sidebar-togglescreen i {
  color: #ffffff;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .page-header .toggle-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-header .toggle-sidebar-fullscreen {
    display: none;
  }
  .page-header .sidebar-togglescreen {
    display: none;
  }
}

/************* 6.5 Welcome Note *************/
.welcome-note {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

.welcome-note span {
  color: #435EEF;
}

/************* 6.6 Search Container *************/
.search-container {
  margin: 0;
  padding: 0;
}

.search-container .input-group {
  position: relative;
}

.search-container .input-group .form-control {
  background: #ffffff;
  border: 0;
  border-radius: 30px !important;
  min-width: 240px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.search-container .input-group .form-control:focus {
  outline: none !important;
  border: 0;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.15);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.15);
}

.search-container .input-group .form-control:focus .btn i {
  color: #EB3333;
}

.search-container .input-group .btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  z-index: 10;
}

.search-container .input-group .btn i {
  color: #13181e;
}

.search-container .input-group .btn:hover i {
  color: #EB3333;
}

@media screen and (max-width: 767px) {
  .search-container .input-group .form-control {
    min-width: 180px;
  }
}

/************* 6.7 Leads Dropdown *************/
.leads {
  margin: 0 0 0 1.5rem;
  background-color: #ffffff;
  border-radius: 30px;
  padding: .375rem 1.25rem;
  position: relative;
  min-height: 40px;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.leads .lead-details .count {
  color: #149865;
  font-weight: 700;
  margin: 0 2px;
}

.leads span.lead-icon {
  position: relative;
}

.leads span.lead-icon i {
  color: #dda50e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  margin: 0 0 0 5px;
}

.leads span.lead-icon .dot {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 7px;
  height: 7px;
  border-radius: 30px;
  background: #149865;
}

.leads:hover {
  outline: none !important;
  border: 0;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.15);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.15);
}

@media screen and (max-width: 1280px) {
  .leads {
    padding: .375rem 1rem;
  }
  .leads .lead-details {
    display: none;
  }
  .leads .lead-icon i {
    margin: 0;
  }
}

/************* 6.8 Header Ations *************/
.header-actions-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: .725rem;
}

.header-actions > li > a {
  padding: 1rem .725rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-actions > li > a > i {
  font-size: 1.5rem;
  color: #13181e;
}

.header-actions > li > a img.flag-img {
  width: 24px;
  height: 24px;
  border-radius: 50px;
}

.header-actions > li .user-settings {
  padding: 0 0 0 .725rem;
  color: #13181e;
}

.header-actions > li .user-settings .avatar {
  position: relative;
  margin: 0;
  width: 48px;
  height: 48px;
}

.header-actions > li .user-settings .avatar > img {
  width: 48px;
  height: 48px;
  border-radius: 50px;
}

.header-actions > li .user-settings .avatar .status {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
}

.header-actions > li .user-settings span.user-name {
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  max-width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-actions > li:hover > a i, .header-actions > li:focus > a i {
  color: #13181e;
}

.header-actions > li:hover .dropdown-menu, .header-actions > li:focus .dropdown-menu {
  margin-top: 0;
  display: block;
}

@media (max-width: 576px) {
  .header-actions {
    margin-left: 0;
  }
  .header-actions > li > a.user-settings span.user-name {
    display: none;
  }
}

/************* 6.9 Header Profile Actions *************/
.header-profile-actions {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-profile-actions a {
  padding: 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .925rem;
}

.header-profile-actions a:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #435EEF;
}

/************* 6.10 Breadcrumb Container *************/
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb .breadcrumb-item {
  color: #13181e;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb .breadcrumb-item i {
  font-size: 2rem;
  margin-right: 15px;
  color: #435EEF;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #13181e;
  font-family: 'bootstrap-icons' !important;
  content: '\f285';
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

.breadcrumb .breadcrumb-item a {
  color: #13181e;
}

.breadcrumb .breadcrumb-active {
  color: #13181e;
}

@media screen and (max-width: 1024px) {
  .breadcrumb {
    margin-left: 15px;
  }
  .breadcrumb .breadcrumb-item i {
    font-size: 1.4rem;
    margin-right: 5px;
  }
  .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-right: auto;
  }
}

/************* 6.11 Content Wrapper *************/
.content-wrapper-scroll {
  padding: 0;
}

.content-wrapper {
  padding: 0 14px 0 14px;
  height: calc(100vh - 150px);
  overflow: auto;
}

@media (max-width: 576px) {
  .content-wrapper {
    height: calc(100vh - 180px);
    padding: 0 15px 0 15px;
  }
}

/************* 6.12 App Footer *************/
.app-footer {
  font-size: .7rem;
  margin: 0;
  padding: 15px 14px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.app-footer span {
  background-color: #ffffff;
  padding: 8px 30px;
  border-radius: 100px 100px 30px 30px;
}

@media (max-width: 576px) {
  .app-footer {
    padding: 15px 15px 0 15px;
  }
}

/************************************************
  ************************************************
        7. Country Dropdown
  ************************************************
************************************************/
.country-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.country-container a {
  margin: 10px 0 10px 0;
}

.country-container a img {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.country-container a:hover img {
  opacity: 0.6;
}

/************************************************
  ************************************************
        8. Components/Widgets
  ************************************************
************************************************/
/************* 8.1 Button Icon *************/
.btn-icon {
  padding: .5rem .5rem !important;
}

.btn-icon i {
  margin: 0 !important;
}

/************* 8.2 Custom Button Group *************/
.custom-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.custom-btn-group.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.custom-btn-group.flex-end .btn {
  margin: .25rem 0 .25rem .25rem;
}

.custom-btn-group .btn {
  margin: .25rem;
}

/************* 8.3 Custom Icon Group *************/
.custom-icon-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.custom-icon-group.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.custom-icon-group .btn {
  margin: .2rem;
}

.custom-icon-group .btn i {
  margin: 0;
}

/************* 8.4 Custom Icon Group *************/
.custom-link-group a {
  margin: 0 1rem;
}

/************* 8.4 Custom Badge Group *************/
.custom-badge-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.custom-badge-group.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.custom-badge-group .badge {
  margin: .25rem;
}

/************* 8.5 Chart Heights *************/
.chart-height {
  position: relative;
  height: 250px;
}

.chart-height-md {
  position: relative;
  height: 220px;
}

.chart-height-sm {
  position: relative;
  height: 180px;
}

.chart-height-xl {
  position: relative;
  height: 300px;
}

.chart-height-xxl {
  position: relative;
  height: 420px;
}

.auto-align-graph .apexcharts-canvas {
  margin: 0 auto;
}

/************* 8.6 Card Heights *************/
.card-183 {
  min-height: 183px;
}

.card-320 {
  min-height: 320px;
}

.card-370 {
  min-height: 370px;
}

.card-390 {
  min-height: 390px;
}

.card-420 {
  min-height: 420px;
}

.card-450 {
  min-height: 450px;
}

.card-500 {
  min-height: 500px;
}

/************* 8.7 Number Stats *************/
.num-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.num-stats h3 {
  margin: 0 0 5px 0;
  font-weight: 700;
  line-height: 100%;
  color: #435EEF;
}

.num-stats h6 {
  font-size: .85rem;
  opacity: 0.7;
  line-height: 100%;
  font-weight: 400;
}

/************* 8.8 Notifications Container *************/
.num-stats2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.num-stats2 .num-icon {
  height: 75px;
  width: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 7px 0;
  border-radius: 50px;
}

.num-stats2 .num-icon i {
  color: #ffffff;
  font-size: 1.8rem;
}

.num-stats2 .num-details h5 {
  margin: 0 0 5px 0;
  font-weight: normal;
}

.num-stats2 .num-details h3 {
  margin: 0;
}

/************* 8.9 Stats Tiles *************/
.stats-tile {
  padding: 1.5rem 1.5rem;
  margin: 0 0 24px 0;
  border-radius: 8px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.stats-tile .sale-icon {
  height: 42px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  text-align: center;
  border-radius: 50px;
}

.stats-tile .sale-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.stats-tile .sale-icon-bdr {
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #435EEF;
}

.stats-tile .sale-icon-bdr i {
  font-size: 1.8rem;
  color: #435EEF;
}

.stats-tile .sale-icon-bdr.green {
  border: 2px solid #149865;
}

.stats-tile .sale-icon-bdr.green i {
  color: #149865;
}

.stats-tile .sale-details h3 {
  margin: 0;
}

.stats-tile .sale-details h5 {
  margin: 0 0 10px 0;
}

.stats-tile .sale-details p {
  margin: 0;
}

.stats-tile .sale-details p.growth {
  margin: 5px 0 0 0;
}

.stats-tile .sale-graph {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -15px;
}

.stats-tile.justify-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.stats-tile.justify-center .sale-icon {
  margin: 0 0 20px 0;
}

.stats-tile2-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stats-tile2 {
  padding: 1rem .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.stats-tile2 .sale-icon {
  margin-right: 15px;
}

.stats-tile2 .sale-icon i {
  font-size: 2rem;
}

.stats-tile2 .sale-details h5 {
  margin: 0 0 3px 0;
  color: #6c7788;
  font-weight: 400;
}

.stats-tile2 .sale-details p {
  margin: 0;
  font-weight: 600;
}

/******** 8.10 Reports Summary ********/
.reports-summary {
  position: relative;
  padding: 1.25rem 1rem;
}

.reports-summary .reports-summary-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 1.5rem 0;
}

.reports-summary .reports-summary-block h5 {
  margin: 0;
}

.reports-summary .reports-summary-block h6 {
  margin: 0 0 10px 0;
  font-weight: 400;
  color: #6c7788;
}

/******** 8.11 Day Selection ********/
.graph-day-selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.graph-day-selection .btn {
  font-size: .875rem;
  padding: .2rem .8rem;
  border: 0;
  background: transparent;
  border-radius: 30px;
}

.graph-day-selection .btn.active {
 /* background: #149865;*/
 background:#006C43;
  color: #ffffff;
}

.graph-day-selection a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #435EEF;
  font-size: .825rem;
  font-weight: 600;
  padding: .2rem .8rem;
  line-height: 1.5;
  background: #149865;
  border-radius: 30px;
}

.graph-day-selection a:hover {
  color: #435EEF;
}

.graph-day-selection a.reportrange {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #435EEF;
  font-weight: 600;
}

.graph-day-selection a.reportrange span.range-text {
  margin: 0 5px 0 5px;
}

/************* 8.12 Activity Container *************/
.activity-container {
  margin: 30px 0 0 0;
}

.activity-container .activity-block {
  margin: 0 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.activity-container .activity-block:before {
  content: '';
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.activity-container .activity-block .activity-user {
  margin: 0 20px 0 0;
  z-index: 1;
}

.activity-container .activity-block .activity-user img {
  border-radius: 100px;
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.activity-container .activity-block .activity-details h4 {
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #000000;
  font-size: 1rem;
}

.activity-container .activity-block .activity-details h5 {
  margin: 0 0 3px 0;
  font-weight: normal;
}

.activity-container .activity-block .activity-details p {
  margin: 0 0 5px 0;
  color: #6c7788;
}

.activity-container .activity-block .activity-details span.badge {
  margin: 0;
  padding: 7px 10px;
  min-width: 80px;
}

.activity-container .activity-block:last-child {
  margin: 0;
}

/************* 8.13 Transactions Container *************/
.transactions-container {
  margin: 30px 0 0 0;
}

.transactions-container .transaction-block {
  margin: 0 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.transactions-container .transaction-block .transaction-icon {
  margin: 0 20px 0 0;
  z-index: 1;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.transactions-container .transaction-block .transaction-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.transactions-container .transaction-block .transaction-details h4 {
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #000000;
  font-size: 1rem;
}

.transactions-container .transaction-block .transaction-details p {
  margin: 0;
  line-height: 100%;
  color: #6c7788;
}

.transactions-container .transaction-block .transaction-amount {
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 700;
}

.transactions-container .transaction-block:last-child {
  margin: 0;
}

/************* 8.14 Task List *************/
.task-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0;
  margin: 20px 0 10px 0;
}

.task-list-container .task-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.task-list-container .task-list-item .task-icon {
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
  margin-right: 10px;
}

.task-list-container .task-list-item .task-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.task-list-container .task-list-item .task-info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.task-list-container .task-list-item .task-info h5.task-title {
  margin: 0;
  font-weight: 700;
}

.task-list-container .task-list-item .task-info p.amount-spend {
  font-size: .925rem;
  margin: 0;
  color: #6c7788;
}

/************* 8.15 User Messages *************/
ul.user-messages {
  margin: 30px 0 0 0;
}

ul.user-messages li {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.user-messages li .customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 30px;
}

ul.user-messages li .delivery-details {
  margin-left: 20px;
}

ul.user-messages li .delivery-details .badge {
  margin: 0 0 15px 0;
}

ul.user-messages li .delivery-details h5 {
  margin: 0 0 5px 0;
}

ul.user-messages li .delivery-details p {
  margin: 0;
  line-height: 160%;
  color: #6c7788;
}

/************* 8.16 Info Stats *************/
.info-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0 1rem 0;
}

.info-stats i {
  margin: 0 0 .7rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.info-stats img.stats-icon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  margin: 0 0 .7rem 0;
}

.info-stats h5 {
  color: #6c7788;
  font-weight: 400;
}

.info-stats h3 {
  margin: 0;
  font-weight: 700;
  color: #435EEF;
}

/************* 8.17 Income Stats *************/
.income-stats-container {
  margin: 30px 0 0 0;
}

.income-stats-container .income-stats {
  margin: 0 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.income-stats-container .income-stats .income-graph {
  width: 100px;
  height: 100px;
  margin: 0 .5rem 0 0;
}

.income-stats-container .income-stats .income-graph .circliful {
  margin: 0;
}

.income-stats-container .income-stats .income-info h3 {
  margin: 0;
  font-weight: 600;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.income-stats-container .income-stats .income-info h3 i {
  font-size: 1.3rem;
  margin-left: .3rem;
}

.income-stats-container .income-stats .income-info p {
  color: #6c7788;
  margin: 0;
}

.income-stats-container .income-stats .income-high-low {
  margin: 0 0 0 auto;
  color: #6c7788;
  font-weight: 700;
}

.income-stats-container .income-stats .income-high-low .bi {
  font-size: 1.2rem;
}

/************* 8.18 Tickets Container *************/
.tickets-container {
  margin: 30px 0 0 0;
}

.tickets-container li {
  margin: 0 0 20px 0;
  padding-bottom: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tickets-container li img.avatar {
  border-radius: 30px;
  width: 60px;
  height: 60px;
  margin: 0 20px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tickets-container li .ticket-details {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tickets-container li .ticket-details h4 {
  margin: 0 0 7px 0;
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
}

.tickets-container li .ticket-details h5 {
  margin: 0 0 7px 0;
  font-weight: normal;
  color: #6c7788;
  line-height: 150%;
}

.tickets-container li .ticket-details p.ticket-time {
  margin: 0;
  font-weight: normal;
  color: #6c7788;
}

.tickets-container li .ticket-status {
  margin-left: auto;
}

.tickets-container li .ticket-status .badge {
  min-width: 80px;
}

/************* 8.19 Task Stats *************/
.task-stats-container {
  border-radius: 8px;
  background: #ffffff;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.task-stats-container .task-stats .task-title {
  font-size: 1.2rem;
  margin: 3px 0;
  font-weight: 400;
  color: #6c7788;
  line-height: 150%;
}

.task-stats-container .task-stats .task-count {
  font-size: 1.8rem;
  font-weight: 700;
  color: #13181e;
}

.task-stats-container .task-stats-graph {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/************* 8.20 Meetings Container *************/
.meetings-container {
  margin: 0;
}

.meetings-container li {
  margin: 0 0 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #F3F2F7;
}

.meetings-container li img.avatar {
  border-radius: 30px;
  width: 60px;
  height: 60px;
  margin: 0 15px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.meetings-container li .meeting-details {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.meetings-container li .meeting-details h6 {
  margin: 0 0 .5rem 0;
  font-size: 1rem;
}

.meetings-container li .meeting-details .meeting-time {
  font-size: .875rem;
  color: #6c7788;
}

.meetings-container li .meeting-more {
  margin-left: auto;
}

.meetings-container li .meeting-more i {
  font-size: 1.8rem;
}

.meetings-container li:last-child {
  margin: 0;
}

/************* 8.21 Nav Tabs *************/
.custom-tabs-container .nav-tabs {
  margin: 0 -20px;
  border-bottom: 1px solid #e1e1e1;
}

.custom-tabs-container .nav-tabs .nav-link {
  padding: .8rem 1.2rem;
  border-radius: 5px 5px 0 0;
  color: #6c7788;
}

.custom-tabs-container .nav-tabs .nav-link.active {
  border-color: transparent #e1e1e1 #ffffff;
  -webkit-box-shadow: 0 -3px 0 0 #e1e1e1;
          box-shadow: 0 -3px 0 0 #e1e1e1;
  color: #13181e;
}

.custom-tabs-container .nav-tabs .nav-link .badge {
  border-radius: 30px;
  margin-left: 5px;
  height: 22px;
  line-height: 22px;
  padding: 0 12px;
}

.custom-tabs-container .nav-tabs .nav-link i {
  font-size: 1.3rem;
  margin-right: 7px;
  vertical-align: middle;
}

.custom-tabs-container .nav-tabs .nav-item:first-child {
  margin-left: 20px;
}

.custom-tabs-container .tab-content {
  padding: 1.5rem 0 0 0;
}

/************* 8.21 Stacked Images *************/
.stacked-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stacked-images img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  margin-right: -10px;
  margin-right: -10px;
  border: 2px solid #ffffff;
  letter-spacing: .03rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.stacked-images img.sm {
  width: 36px;
  height: 36px;
}

.stacked-images .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  margin-right: -10px;
  margin-right: -10px;
  border: 2px solid #ffffff;
  background: #435EEF;
  letter-spacing: .03rem;
  font-weight: 700;
  font-size: .9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.stacked-images .plus.sm {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

/************* 8.22 Orders *************/
ul.recent-orders {
  margin-top: 20px;
}

ul.recent-orders li {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

ul.recent-orders li .order-img {
  position: relative;
}

ul.recent-orders li .order-img img {
  height: 90px;
  border-radius: 8px;
}

ul.recent-orders li .order-img .badge {
  position: absolute;
  bottom: 10px;
  left: 0px;
}

ul.recent-orders li .order-details {
  margin-left: 15px;
}

ul.recent-orders li .order-details h5.order-title {
  margin: 0 0 7px 0;
}

ul.recent-orders li .order-details p.order-desc {
  line-height: 150%;
  color: #6c7788;
}

ul.recent-orders li .order-details p.order-revenue {
  color: #6c7788;
}

ul.recent-orders li .order-details p.order-revenue span {
  color: #435EEF;
}

/************* 8.23 Logs *************/
.logs {
  margin: 0;
}

.logs .log-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 12px 0;
}

.logs .log-list .log-dot {
  width: 18px;
  height: 18px;
  background: #435EEF;
  border-radius: 30px;
  margin: 0 12px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logs .log-list .log-dot.green {
  background: #149865;
}

.logs .log-list .log-dot.red {
  background: #EB3333;
}

.logs .log-list .log-dot.yellow {
  background: #dda50e;
}

.logs .log-list .log-title {
  font-size: 1rem;
}

.logs .log-list .log-time {
  margin: 0 0 0 auto;
  color: #6c7788;
}

/************* 8.24 Global Slaes *************/
.global-sales {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.global-sales h3 {
  margin: 0 0 15px 0;
}

.global-sales h3 .icon {
  font-size: 3.5rem;
  color: #149865;
  margin: 0 10px 0 0;
}

.global-sales p {
  font-size: 1rem;
}

/************* 8.25 Social Tile *************/
.social-tile {
  padding: 3rem 1rem;
  margin: 0 0 24px 0;
  border-radius: 8px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.social-tile .social-icon {
  height: 140px;
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  text-align: center;
  border-radius: 100px;
  background-color: #e6eaff;
}

.social-tile .social-icon i {
  font-size: 2.5rem;
  color: #435EEF;
}

.social-tile .social-details h1 {
  margin: 15px 0 15px 0;
  font-weight: 300;
  color: #6c7788;
}

.social-tile .social-details h5 {
  margin: 0 0 20px 0;
}

.social-tile .social-details p.growth {
  margin: 0;
  padding: 3px 15px;
  border-radius: 30px;
}

.social-tile .social-details p.growth.high {
  background-color: #edfff9;
  color: #149865;
}

.social-tile .social-details p.growth.low {
  background-color: #fdeded;
  color: #EB3333;
}

/************* 8.26 Databar Container *************/
.databar-container {
  margin: 0;
}

.databar-container .databar-header {
  margin: 10px 0 10px 0;
}

.databar-container .databar-header img {
  width: 30px;
  height: 30px;
  margin: 0 0 15px 0;
}

.databar-container .databar-header h4 {
  font-weight: 400;
}

.databar-container .databar-body {
  margin: 0;
}

/************* 8.27 Weather widget *************/
.weather-widget {
  margin-bottom: 24px;
  background-position: bottom center;
  color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
}

.weather-widget.rainy {
  background: url("../img/vivo-rainy.jpg") no-repeat;
  background-size: cover;
}

.weather-widget.sunny {
  background: url("../img/vivo-sunny.jpg") no-repeat;
  background-size: cover;
}

.weather-widget.cloudy {
  background: url("../img/vivo-cloudy.jpg") no-repeat;
  background-size: cover;
}

.weather-widget h2 {
  margin: 0 0 10px 0;
}

.weather-widget h4 {
  margin: 0 0 10px 0;
}

.weather-widget h6 {
  margin: 0 0 10px 0;
}

@media screen and (max-width: 1280px) {
  .weather-widget {
    padding: 1.5rem 1rem;
  }
}

/******** 8.28 Ratings ********/
.rating-block {
  width: 70px !important;
  line-height: 100%;
}

.rating-block img {
  width: 17px;
  height: 17px;
}

/******** 8.29 Product Cards ********/
.product-card {
  background: #ffffff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.product-card .product-card-body {
  padding: 1rem 1rem;
  position: relative;
}

.product-card .product-card-body .product-title {
  margin-bottom: .7rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}

.product-card .product-card-body .product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: .9rem;
}

.product-card .product-card-body .product-price .disount-price {
  color: #13181e;
  margin-right: 7px;
}

.product-card .product-card-body .product-price .actucal-price {
  color: #6c7788;
  margin-right: 7px;
  text-decoration: line-through;
}

.product-card .product-card-body .product-price .off-price {
  color: #149865;
}

.product-card .product-card-body .product-rating {
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-card .product-card-body .product-rating .rating-stars {
  width: 120px !important;
  line-height: 100%;
}

.product-card .product-card-body .product-rating .rating-stars img {
  width: 18px;
  height: 18px;
}

.product-card .product-card-body .product-rating .total-ratings {
  font-size: .9rem;
  color: #6c7788;
}

.product-card .product-card-body .product-description {
  min-height: 50px;
  font-size: .9rem;
  margin: 0 0 10px 0;
  color: #6c7788;
  line-height: 150%;
}

.product-card .product-card-body .product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-card .product-card-body .product-actions .btn {
  margin-right: 5px;
}

.product-card .product-card-img-top {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

/******** 8.30 Product Cards ********/
.product-added-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-added-card .product-added-card-body {
  padding: 1rem;
  position: relative;
}

.product-added-card .product-added-card-body .product-added-title {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 100%;
}

.product-added-card .product-added-card-body .product-added-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #149865;
}

.product-added-card .product-added-card-body .product-added-description {
  font-size: .9rem;
  margin: 0 0 20px 0;
  color: #6c7788;
  line-height: 150%;
}

.product-added-card .product-added-card-body .product-added-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-added-card .product-added-card-body .product-added-actions .btn {
  margin-right: 5px;
}

.product-added-card .product-added-img {
  border-radius: 5px;
  max-height: 200px;
  margin: 0 10px 0 0;
}

.sub-total-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #e1e1e1;
  margin-top: 10px;
  padding-top: 20px;
}

.sub-total-container .total {
  margin: 0 0 20px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

/******** 8.31 Product Checkout List ********/
.product-list-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 1rem;
}

.product-list-card h5 {
  margin: 0 0 20px 0;
}

.product-list-card .product-list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.product-list-card .product-list-block .product-list-img {
  border-radius: 5px;
  max-height: 70px;
  margin: 0 10px 0 0;
}

.product-list-card .product-list-block .product-list-details .product-list-title {
  margin-bottom: 10px;
  font-size: .9rem;
  line-height: 100%;
}

.product-list-card .product-list-block .product-list-details .product-list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.2rem;
  line-height: 100%;
  margin: 0;
  font-weight: 700;
  color: #149865;
}

.product-list-card .product-list-block:last-child {
  margin: 0;
}

/******** 8.32 Edit Customer Status ********/
.customer-card {
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.customer-card h6 {
  font-size: .85rem;
  margin: 0 0 8px 0;
  font-weight: normal;
}

.customer-card h5 {
  font-size: .9rem;
  margin: 0;
  color: #6c7788;
}

/******** 8.33 Add Product ********/
.card-border {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 0 24px 0;
}

.card-border .card-border-title {
  font-size: 1.1rem;
  margin: 0 0 30px 0;
  font-weight: bold;
  color: #13181e;
}

.card-border .card-border-body {
  padding: 0;
}

/******** 8.34 Create Invoice Wrapper ********/
.create-invoice-wrapper {
  background: #fdf1e3;
  padding: 15px;
  margin: 0 0 15px 0;
  border-radius: 8px;
}

/******** 8.35 Invoice List ********/
.invoice-table td {
  vertical-align: middle;
}

.invoice-table .customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.invoice-table .customer img.user-avatar {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 100px;
}

.invoice-table .customer .name {
  font-size: .9rem;
  margin: 0 0 5px 0;
}

.invoice-table .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.invoice-table .details h5 {
  margin: 0 0 5px 0;
  font-weight: 300;
}

.invoice-table .details h6 {
  font-weight: 300;
}

.invoice-table .badge {
  padding: 10px 10px;
  border-radius: 20px;
  min-width: 80px;
}

/******** 8.36 Create Invoice ********/
.invoice-container {
  padding: 0;
}

.invoice-container .invoice-header .invoice-logo {
  margin: .8rem 0 1rem 0;
  display: inline-block;
}

.invoice-container .invoice-header .invoice-logo img {
  width: 50px;
  height: 50px;
}

.invoice-container .invoice-header address {
  font-size: .9rem;
  color: #13181e;
  margin: 0;
  text-align: right;
  line-height: 180%;
}

.invoice-container .invoice-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 .5rem 0;
  padding: 1rem;
  line-height: 180%;
  background: #fdf1e3;
}

.invoice-container .invoice-details .invoice-num {
  text-align: right;
  margin-left: auto;
  font-size: .8rem;
}

.invoice-container .invoice-body {
  padding: 3rem 0;
}

.invoice-container .invoice-footer {
  text-align: center;
  font-size: .7rem;
}

.invoice-container .invoice-footer span {
  display: inline-block;
  background: #ffffff;
  padding: 3px 10px;
  border-radius: 30px;
}

/******** 8.37 Form Actions Footer ********/
.form-actions-footer {
  background: #edf0f5;
  border-radius: 5px;
  padding: 15px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.form-actions-footer .btn {
  margin: 0 0 0 10px;
}

.form-section-title {
  background: #edf0f5;
  border-radius: 5px;
  padding: 15px;
  margin: 10px 0 15px 0;
  font-size: 1rem;
  font-weight: 600;
}

/******** 8.38 Icons Container ********/
.icons-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 100px;
  -webkit-column-gap: 15px;
          column-gap: 15px;
  row-gap: 1em;
  text-align: center;
}

.icons-container .icon {
  border-radius: 5px;
  background: #F3F2F7;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icons-container .icon i {
  font-size: 2rem;
}

.icons-container .icon:hover {
  background: #edebf3;
}

/******** 8.39 Sales Stats ********/
.sales-stats-container {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 1rem;
}

ul.sales-stats li {
  margin-bottom: 15px;
}

ul.sales-stats li p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.sales-stats li p span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.sales-stats li p span i {
  font-size: 16px;
  margin-right: 10px;
}

ul.sales-stats li p span small {
  margin-left: 10px;
}

/******** 8.40 Monthly Stats ********/
.monthly-stats {
  text-align: center;
}

.monthly-stats h5 {
  margin: 15px 20px 35px 20px;
  line-height: 150%;
  font-weight: 400;
}

.monthly-stats .avg-block {
  margin-bottom: 35px;
}

.monthly-stats .avg-block h3.avg-total {
  margin: 0;
}

.monthly-stats .avg-block h6.avg-label {
  font-weight: 400;
  margin: 0;
  color: #6c7788;
}

/******** 8.41 Chart Notify ********/
.chart-notify {
  position: absolute;
  z-index: 100;
}

.chart-notify.tr {
  top: 20px;
  right: 20px;
}

.chart-notify.tl {
  top: 20px;
  left: 20px;
}

.chart-notify.bl {
  bottom: 20px;
  left: 20px;
}

.chart-notify.br {
  bottom: 20px;
  right: 20px;
}

.chart-notify a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  width: 40px;
  height: 40px;
}

.chart-notify a i {
  font-size: 1.2rem;
  color: #ffffff;
}

/******** 8.42 Vertical line ********/
.vs, .or {
  margin: auto;
  width: 0;
  text-align: center;
  position: relative;
}

.vs:before, .or:before {
  position: absolute;
  background: #e1e1e1;
  width: 1px;
  height: 150px;
  content: "";
  top: 50%;
  left: 0;
  margin-top: -75px;
}

.vs:after, .or:after {
  position: absolute;
  content: "vs";
  border-radius: 100px;
  width: 36px;
  height: 36px;
  background: #435EEF;
  top: 50%;
  left: 0;
  margin-left: -18px;
  margin-top: -18px;
  color: #ffffff;
  line-height: 36px;
  text-align: center;
}

.or:after {
  content: "or";
}

/************************************************
  ************************************************
          9. Plugins
  ************************************************
************************************************/
/******** 9.1 Overlay Scroll ********/
.sidebarMenuScroll {
  height: 100%;
}

.scroll370 {
  height: 370px;
}

.scroll300 {
  height: 300px;
}

.scroll250 {
  height: 250px;
}

.scroll240 {
  height: 240px;
}

.scroll206 {
  height: 206px;
}

/******** 9.2 DropZone ********/
#dropzone {
  margin: 0;
  min-width: 240px;
}

.dropzone {
  border: 2px dashed #c3cbd6 !important;
  border-radius: 6px;
  background: #ffffff !important;
  min-height: 250px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropzone .dz-message {
  font-weight: 700;
  text-align: center;
  margin: 0 auto !important;
}

.dropzone .dz-message .note {
  font-size: .9rem;
  display: block;
  margin-top: 1rem;
  color: #13181e !important;
}

.dropzone .dz-message .dz-button {
  background: transparent;
  color: #13181e !important;
  font-size: 1.5rem !important;
  border: 0;
}

#dropzone-sm .dropzone {
  min-height: 120px !important;
}

#dropzone-sm .dropzone .dz-button {
  font-size: 1rem !important;
}

/******** 9.3 Credit Card ********/
#creditCardType {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#creditCardType .credit-card {
  margin: 5px 5px 0 0;
  display: inline-block;
}

#creditCardType .credit-card img {
  max-width: 36px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

#creditCardType .credit-card.highlight img {
  -webkit-filter: grayscale(10%);
          filter: grayscale(10%);
}

/******** 9.4 jVector Maps ********/
.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.jvectormap-tip {
  position: absolute;
  display: none;
  border-radius: 0px;
  background: #000000;
  color: #ffffff;
  font-size: .75rem;
  padding: 6px 12px;
}

@-webkit-keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.jvectormap-marker {
  opacity: 0;
  -webkit-animation: showHideDot 1.5s ease-in-out infinite;
  animation: showHideDot 1.5s ease-in-out infinite;
}

/******** 9.5 Apex Graphs ********/
.apex-hide-lines .apexcharts-xaxis {
  display: none;
}

.apex-hide-lines .apexcharts-grid {
  display: none;
}

.apex-dark-legend .apexcharts-legend-text {
  color: #13181e !important;
}

.apex-dark-legend .apexcharts-xaxis-label {
  fill: #13181e !important;
}

/************************************************
  ************************************************
            10. Pages
  ************************************************
************************************************/
/************* 10.1 Login *************/
.login-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.login-box {
  padding: 30px 20px 30px 20px;
  margin: auto;
  width: 420px;
  min-height: 320px;
  border-radius: 6px;
  position: relative;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
  background: #ffffff;
}

.login-box .login-form .login-logo {
  margin: 0 0 10px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.login-box .login-form .login-logo img {
  width: 70px;
  height: 70px;
}

.login-box .login-form .login-welcome {
  font-size: 1rem;
  line-height: 24px;
  margin: 0 0 30px 0;
}

.login-box .login-form .login-form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 15px 0;
}

.login-box .login-form .btn {
  border-radius: 50px;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
  border: 1px solid #e1e1e1;
  padding: 3px 15px 3px 3px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: .875rem;
  margin-left: 10px;
}

.login-box .login-form .btn .icon {
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 7px 0 0;
}

.login-box .login-form .btn .icon i {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.login-box .login-form .btn img.login-icon {
  width: 30px;
  height: 30px;
  margin: 0 5px 0 0;
}

.login-box .login-form a.btn-link {
  font-size: .875rem;
  color: #435EEF;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 4px 3px 4px 3px;
}

.login-box .login-form .additional-link {
  font-size: .875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6c7788;
}

.login-box .login-form .additional-link a {
  color: #435EEF;
  border-bottom: 1px dashed;
  text-transform: uppercase;
  margin-left: 10px;
}

.login-box .login-form .login-form-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
}

@media (max-width: 576px) {
  .login-box {
    padding: 30px 20px 30px 20px;
    width: auto;
  }
}

/******** 10.2 Maintenance Screen ********/
.maintenance-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
}

.maintenance-page::before {
  content: '';
  background: none;
}

.maintenance-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-align: center;
  color: #435EEF;
  position: relative;
  z-index: 100;
}

.maintenance-message .message-title-block {
  padding: 20px;
  border: 3px solid #435EEF;
  margin-bottom: 20px;
  border-radius: 10px;
}

.maintenance-message h1 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  line-height: 100%;
  font-weight: 700;
}

.maintenance-message h4 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 400;
}

.maintenance-message p {
  font-size: .85rem;
  margin: 0;
  line-height: 160%;
}

.maintenance-message .btn {
  padding: .7rem 1.8rem;
}

@media screen and (max-width: 768px) {
  .maintenance-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .maintenance-message p {
    text-align: center;
  }
}

/************* 10.3 Contacts *************/
.contact-card {
  padding: 2rem 1rem;
  position: relative;
  text-align: center;
}

.contact-card a.edit-contact-card {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  border-radius: 50px;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-card a.edit-contact-card i {
  font-size: 1.2rem;
  color: #435EEF;
}

.contact-card a.edit-contact-card:hover {
  width: 50px;
  height: 50px;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.contact-card .contact-avatar {
  border-radius: 50px;
  max-width: 90px;
  margin-bottom: 10px;
}

.contact-card h5 {
  margin-bottom: 10px;
}

/************* 10.4 Pricing Plan *************/
.pricing-plan {
  margin: 0 0 1.5rem 0;
  width: 100%;
  position: relative;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
}

.pricing-plan .pricing-header {
  padding: 20px 0 0 0;
}

.pricing-plan .pricing-header .pricing-title {
  font-size: 1.2rem;
  padding: 1rem 0 0 0;
  text-transform: uppercase;
  font-weight: 100;
  margin: 0;
  text-shadow: 0 30px 10px rgba(0, 0, 0, 0.15);
}

.pricing-plan .pricing-header .pricing-cost {
  padding: 1rem 0 0 0;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 30px 10px rgba(0, 0, 0, 0.15);
}

.pricing-plan .pricing-header .pricing-save {
  padding: .8rem 0;
  font-size: 1rem;
  font-weight: 400;
}

.pricing-plan .pricing-features {
  padding: 20px 0;
  margin: 0;
}

.pricing-plan .pricing-features li {
  padding: 12px 15px 12px 15px;
  font-size: .9rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  line-height: 100%;
}

.pricing-plan .pricing-footer {
  border-radius: 0 0 3px 3px;
  text-align: center;
  padding: 1rem 0 2rem 0;
}

@media (max-width: 767px) {
  .pricing-plan-container {
    height: auto;
  }
  .pricing-plan .pricing-header {
    text-align: center;
  }
  .pricing-plan .pricing-header i {
    display: block;
    float: none;
    margin-bottom: 1.5rem;
  }
}

/************* 10.5 Account Settings *************/
.change-img-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 20px 15px 0;
  border-radius: 6px;
  max-height: 120px;
}

.account-settings-block {
  border-left: 1px solid #e1e1e1;
  margin-bottom: 20px;
  height: 100%;
  padding: 0 0 0 1rem;
}

.account-settings-block .settings-block {
  margin-bottom: 1rem;
}

.account-settings-block .settings-block .settings-block-title {
  margin: 0 0 .7rem 0;
  font-size: 1rem;
  font-weight: 400;
}

.account-settings-block .settings-block .settings-block-body {
  padding: 0;
}

.account-settings-block .settings-block .settings-block-body .form-check {
  margin: 0;
  min-height: 1.1rem;
}

@media (max-width: 992px) {
  .account-settings-block {
    border-left: 0;
    padding: 0;
  }
}

.pricing-change-plan {
  margin: 0 0 1rem 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pricing-change-plan a {
  padding: 4rem 1rem 1rem 1rem;
  border-radius: 6px;
  min-width: 90px;
  max-width: 90px;
  min-height: 100px;
  margin: 0 10px 10px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
}

.pricing-change-plan a > h5 {
  font-size: 1.4rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.pricing-change-plan a > h6 {
  font-size: .9rem;
  margin: 0;
  font-weight: 400;
}

.pricing-change-plan a.active-plan:after {
  font-family: "bootstrap-icons" !important;
  font-weight: bold;
  content: '\f26b';
  background: url();
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -15px;
  font-size: 2rem;
}

/************* 10.6 Error Page *************/
.error-page {
  background: #EB3333;
}

.error-page::before {
  background: none;
}

.error-screen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #ffffff;
  height: 100%;
}

.error-screen h1 {
  font-family: Rubik Mono One;
  font-size: 15rem;
  margin: 0;
  line-height: 100%;
}

.error-screen h5 {
  margin-bottom: 2rem;
  line-height: 180%;
  font-weight: 300;
}

.error-screen .btn {
  padding: .7rem 1.8rem;
  border-radius: 50px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
}

.error-screen .btn:hover {
  color: #000000;
  background: #ffffff;
  border: 2px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .error-screen h1 {
    font-size: 8rem;
  }
}

/************* 10.7 Profile Page *************/
.profile-header {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}

.profile-header h1 {
  font-weight: 300;
  color: #0f59c9;
  font-size: 1.8rem;
  margin: 0 auto 1rem auto;
}

.profile-header .profile-header-content {
  border-radius: 4px;
  background: #9ba2ab;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1.5rem 1.5rem;
  padding: 1rem 1.5rem 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.profile-header .profile-header-content .profile-header-tiles {
  width: 100%;
  margin-right: 1rem;
  z-index: 100;
}

.profile-header .profile-header-content .profile-header-tiles .profile-tile {
  background-color: #ffffff;
  border-radius: 4px;
  padding: .6rem;
  margin: .2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.profile-header .profile-header-content .profile-header-tiles .profile-tile > .icon {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  margin: 0 .6rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #435EEF;
}

.profile-header .profile-header-content .profile-header-tiles .profile-tile > .icon i {
  font-size: 1rem;
  color: #ffffff;
  text-shadow: none;
}

.profile-header .profile-header-content .profile-header-tiles .profile-tile h6 {
  margin: 0;
  line-height: 150%;
  font-weight: 400;
  font-size: .8rem;
  color: #6c7788;
}

.profile-header .profile-header-content .profile-header-tiles .profile-tile h6 span {
  font-weight: 600;
  color: #13181e;
}

.profile-header .profile-header-content .profile-avatar-tile {
  background-color: #ffffff;
  border-radius: 4px;
  padding: .7rem;
  margin: -60px 0 0 auto;
  z-index: 100;
}

.profile-header .profile-header-content .profile-avatar-tile img {
  border-radius: 4px;
  width: 180px;
}

@media screen and (max-width: 768px) {
  .profile-header .profile-header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .profile-header .profile-header-content .profile-header-tiles {
    margin-right: 0;
  }
  .profile-header .profile-header-content .profile-avatar-tile {
    margin: 20px 0;
  }
}

/******** 10.8 Create Offer ********/
.create-offer-container .form-control {
  margin: 0 0 .3rem 0;
  max-height: 69px;
}

.create-offer-container .share-thoughts-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.create-offer-container .share-thoughts-footer .btn {
  max-height: 32px;
  padding: 0.35rem .75rem;
}

.create-offer-container .share-thoughts-footer .share-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.create-offer-container .share-thoughts-footer .share-icons a {
  width: 32px;
  height: 32px;
  margin: 0 .3rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #dbe1e9;
  border-radius: 3px;
}

.create-offer-container .share-thoughts-footer .share-icons a i {
  color: #13181e;
  font-size: .9rem;
}

/******** 10.9 Award Tile ********/
.award-tile {
  padding: 1.5rem 1rem 1rem 1rem;
  margin: 0 0 20px 0;
  border-radius: 4px;
  min-height: 182px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1.5rem 1.5rem;
}

.award-tile .award-icon {
  margin: 0 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.award-tile .award-icon i {
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 15px;
}

.award-tile h3 {
  margin: 0 0 .5rem 0;
  line-height: 100%;
  font-size: 1.6rem;
}

.award-tile h4 {
  margin: 0;
  font-size: .75rem;
}

/******** 10.10 Top Rated Items ********/
.top-items-container .top-item-img {
  max-height: 180px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-items-container .top-item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-items-container .top-item-details h6 {
  margin: 15px 0 10px 0;
  color: #6c7788;
}

.top-items-container .top-item-details .rating-block {
  margin: 0 auto 10px auto;
  width: 124px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-items-container .top-item-details .rating-block img {
  width: 16px;
  height: 16px;
}

.top-items-container .top-item-details .rating-block .rating-count {
  font-size: 14px;
  margin: 0 0 0 3px;
  font-weight: 300;
  color: #6c7788;
}

/******** 10.11 Polls ********/
.polls-container p {
  color: #6c7788;
  font-size: .75rem;
  margin: 0 0 1rem 0;
}

.polls-container .poll-block {
  margin: 0 0 1.5rem 0;
}

.polls-container .poll-block .poll-block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

.polls-container .poll-block .poll-block-header .score {
  font-size: .65rem;
}

.polls-container .poll-block .progress .progress-bar {
  font-size: .65rem;
}

/******** 10.12 Timeline Activity ********/
.timeline-activity {
  margin: 0;
}

.timeline-activity .activity-log {
  padding-left: 1.8rem;
  padding-bottom: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.timeline-activity .activity-log:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  background: #0f59c9;
  border: 3px solid #dbe1e9;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  z-index: 1;
}

.timeline-activity .activity-log:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  border-left: 1px dashed #e1e1e1;
  height: 100%;
  width: 1px;
}

.timeline-activity .activity-log .log-name {
  font-weight: 600;
}

.timeline-activity .activity-log .log-details {
  font-size: .875rem;
  color: #6c7788;
}

.timeline-activity .activity-log .log-time {
  color: #6c7788;
  margin-left: .5rem;
}

.timeline-activity .activity-log:last-child {
  padding-bottom: 0;
}

/******** 10.13 Chat Widget ********/
.chats {
  position: relative;
  padding: 0;
}

.chats li {
  margin-bottom: 25px;
}

.chats li.chats-left, .chats li.chats-right {
  position: relative;
}

.chats li img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.chats li .chats-avatar {
  float: left;
}

.chats li.chats-right > .chats-avatar {
  float: right;
}

.chats li .chats-name {
  font-size: .875rem;
  text-align: center;
  margin-top: 5px;
  color: #6c7788;
}

.chats li .chats-hour {
  margin: 0 0 0 70px;
  padding: 2px;
  margin-bottom: 20px;
  font-size: .65rem;
}

.chats li .chats-hour > span {
  font-size: .825rem;
  color: #149865;
}

.chats li .chats-text {
  margin: 0 0 0 70px;
  padding: 15px;
  border-radius: 20px;
  background-color: #dbe1e9;
  left: 15px;
  line-height: 170%;
}

.chats li .chats-text:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 28px;
  left: 52px;
  border: 10px solid;
  border-color: transparent #dbe1e9 transparent transparent;
}

.chats li.chats-right > .chats-text {
  text-align: right;
  right: 16px;
  margin: 0 70px 0 0;
  background-color: #dbe1e9;
}

.chats li.chats-right > .chats-text:before {
  left: auto;
  right: 52px;
  border-color: transparent transparent transparent #dbe1e9;
}

.chats li.chats-right > .chats-hour {
  text-align: right;
  margin: 0 70px 0 0;
}

/******** 10.14 Customer Rating ********/
ul.customer-rating li {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

ul.customer-rating li .customer {
  margin-right: 10px;
}

ul.customer-rating li .customer img {
  width: 48px;
  height: 48px;
  border-radius: 30px;
}

ul.customer-rating li .customer-review .stars {
  margin: 10px 0 15px 0;
  width: 100%;
}

ul.customer-rating li .customer-review .stars img {
  width: 12px;
  height: 12px;
}

ul.customer-rating li .customer-review h5 {
  margin: 0 0 9px 0;
  font-size: .875rem;
}

ul.customer-rating li .customer-review h6.by {
  margin: 0 0 10px 0;
  font-size: .8rem;
  font-weight: 400;
}

ul.customer-rating li .customer-review h6.by a {
  color: #6c7788;
}

ul.customer-rating li .customer-review p {
  margin: 0 0 5px 0;
  line-height: 150%;
  color: #6c7788;
}

ul.customer-rating li:last-child {
  margin-bottom: 0px;
}

/************************************************
  ************************************************
        11. Bootstrap Overwrite CSS
  ************************************************
************************************************/
/************* 11.1 Badge *************/
.badge {
  font-weight: 400;
  font-size: .75rem;
  border-radius: 2px;
}

/************* 11.2 Placeholder *************/
.placeholder {
  background-color: rgba(0, 0, 0, 0.3);
}

.placeholder.light {
  background-color: rgba(255, 255, 255, 0.4);
}

/************* 11.3 Accordion *************/
.accordion {
  background: #ffffff;
}

.accordion .accordion-item {
  background-color: #ffffff;
}

.accordion .accordion-button {
  background-color: transparent;
}

.accordion .accordion-button::after {
  background-image: none;
  font-family: "bootstrap-icons" !important;
  font-weight: bold;
  font-size: 1rem;
  content: "\f282";
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  font-family: "bootstrap-icons" !important;
  font-weight: bold;
  font-size: 1rem;
  content: "\f286";
}

.accordion .accordion-button:not(.collapsed) {
  background-color: #435EEF;
  color: #ffffff;
}

.accordion .accordion-body {
  line-height: 150%;
}

/************* 11.4 Alerts *************/
.alert .alert-icon {
  font-size: 1.2rem;
  margin: 0 10px 0 0;
  line-height: 100%;
  vertical-align: middle;
}

.alert.alert-dismissible .btn-close {
  padding: 1.1rem 1rem;
}

.alert.alert-primary {
  color: #0f59c9;
  background: #e0ecff;
  border-color: #b6c6df;
}

.alert.alert-secondary {
  color: #41464b;
  background: #f0f4fd;
  border-color: #d0d6e3;
}

.alert.alert-success {
  color: #149865;
  background: #e6fff5;
  border-color: #aee3ce;
}

.alert.alert-warning {
  color: #dda50e;
  background: #fff5db;
  border-color: #e7d6a7;
}

.alert.alert-danger {
  color: #EB3333;
  background: #fde2e2;
  border-color: #fca9a9;
}

.alert.alert-info {
  color: #435EEF;
  background: #e6eaff;
  border-color: #aab8ff;
}

.alert.alert-light {
  color: #13181e;
  background: #dbe1e9;
  border-color: #aeb8c4;
}

.alert.alert-dark {
  color: #ffffff;
  background: #9ba2ab;
  border-color: #757c85;
}

.alert-fixed {
  position: fixed;
  right: 45px;
  top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.alert-fixed i {
  font-size: 3rem;
  margin: 0 10px 0 0;
}

/************* 11.5 Tabs *************/
.nav-tabs .nav-link {
  margin-bottom: -2px;
}

/************* 11.6 Cards *************/
.card {
  border: 0;
  border-radius: 8px;
  position: relative;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.card .card-header {
  padding: 1rem 1.25rem 0 1.25rem;
  background: transparent;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card .card-header .card-title {
  font-size: 1.2rem;
  margin: 0;
  color: #13181e;
  font-weight: 600;
  line-height: 150%;
}

.card .card-body {
  padding: 1rem 1.25rem;
}

.card .card-body .card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 150%;
  color: #13181e;
}

.card .card-body.h-170 {
  min-height: 170px;
}

.card .card-body.h-250 {
  min-height: 250px;
}

.card .card-body.h-300 {
  min-height: 300px;
}

.card .card-loading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 8px;
  cursor: wait;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.3);
}

.card .card-footer {
  padding: 1rem 1.25rem 1rem 1.25rem;
  background: transparent;
  border-top: 1px solid #e1e1e1;
}

.card.border-primary {
  border: 1px solid #0f59c9;
}

.card.border-secondary {
  border: 1px solid #41464b;
}

.card.border-red {
  border: 1px solid #EB3333;
}

.card.border-green {
  border: 1px solid #149865;
}

.card.border-blue {
  border: 1px solid #435EEF;
}

.card.border-yellow {
  border: 1px solid #dda50e;
}

.card-img, .card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-img, .card-img-bottom {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

/************* 11.7 Buttons *************/
button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:focus:not(:focus-visible) {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  border-radius: 4px;
  border: 0;
  font-size: .9rem;
  font-weight: 400;
  padding: .5rem 1.25rem;
}

.btn i {
  font-size: 1.3rem;
  margin: 0 3px 0 0;
  line-height: 100%;
  vertical-align: middle;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn-lg {
  padding: .9rem 1.75rem;
  font-size: 1rem;
}

/************* 11.8 Button Primary *************/
.btn-primary {
  color: #ffffff;
  background: #0f59c9;
  border: 1px solid #0f59c9;
}

.btn-primary:hover {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-primary.dropdown-toggle.show,
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-primary.dropdown-toggle.show:focus,
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-primary:disabled, .btn-primary.disabled,
fieldset:disabled .btn-primary {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #1d70ee;
  background: #357ff0;
}

.btn-outline-primary {
  color: #0f59c9;
  border: 1px solid #0f59c9;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-outline-primary.dropdown-toggle.show,
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-outline-primary.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus {
  color: #ffffff;
  background: #0545a5;
  border: 1px solid #0545a5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(5, 69, 165, 0.2);
}

.btn-outline-primary:disabled, .btn-outline-primary.disabled,
fieldset:disabled .btn-outline-primary {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #1d70ee;
  background: #357ff0;
}

/************* 11.9 Button Secondary *************/
.btn-secondary {
  color: #ffffff;
  background: #41464b;
  border: 1px solid #41464b;
}

.btn-secondary:hover {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-secondary.dropdown-toggle.show,
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-secondary.dropdown-toggle.show:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-secondary:disabled, .btn-secondary.disabled,
fieldset:disabled .btn-secondary {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #596066;
  background: #656c74;
}

.btn-outline-secondary {
  color: #41464b;
  border: 1px solid #41464b;
}

.btn-outline-secondary:hover {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
}

.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-outline-secondary.dropdown-toggle.show,
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus {
  color: #ffffff;
  background: #282b2e;
  border: 1px solid #282b2e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
          box-shadow: 0 0 0 0.2rem rgba(40, 43, 46, 0.2);
}

.btn-outline-secondary:disabled, .btn-outline-secondary.disabled,
fieldset:disabled .btn-outline-secondary {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #596066;
  background: #656c74;
}

/************* 11.10 Button Info *************/
.btn-info {
  color: #ffffff;
  background: #435EEF;
  border: 1px solid #435EEF;
}

.btn-info:hover {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
}

.btn-check:focus + .btn-info, .btn-info:focus {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-info.dropdown-toggle.show,
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info, .btn-info:active, .btn-info.active {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-info.dropdown-toggle.show:focus,
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-info:disabled, .btn-info.disabled,
fieldset:disabled .btn-info {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #7286f3;
  background: #8a9af5;
}

.btn-outline-info {
  color: #435EEF;
  border: 1px solid #435EEF;
}

.btn-outline-info:hover {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
}

.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-outline-info.dropdown-toggle.show,
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-outline-info.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus {
  color: #ffffff;
  background: #2f49dd;
  border: 1px solid #2f49dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(45, 74, 237, 0.25);
}

.btn-outline-info:disabled, .btn-outline-info.disabled,
fieldset:disabled .btn-outline-info {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #7286f3;
  background: #8a9af5;
}

/************* 11.11 Button Danger *************/
.btn-danger {
  color: #ffffff;
  background: #EB3333;
  border: 1px solid #EB3333;
}

.btn-danger:hover {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
}

.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-danger.dropdown-toggle.show,
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-danger.dropdown-toggle.show:focus,
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-danger:disabled, .btn-danger.disabled,
fieldset:disabled .btn-danger {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #f06161;
  background: #f27979;
}

.btn-outline-danger {
  color: #EB3333;
  border: 1px solid #EB3333;
}

.btn-outline-danger:hover {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
}

.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-outline-danger.dropdown-toggle.show,
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-outline-danger.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus {
  color: #ffffff;
  background: #cf2323;
  border: 1px solid #cf2323;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(218, 8, 0, 0.3);
}

.btn-outline-danger:disabled, .btn-outline-danger.disabled,
fieldset:disabled .btn-outline-danger {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #f06161;
  background: #f27979;
}

/************* 11.12 Button Warning *************/
.btn-warning {
  color: #ffffff;
  background: #dda50e;
  border: 1px solid #dda50e;
}

.btn-warning:hover {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
}

.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-warning.dropdown-toggle.show,
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-warning.dropdown-toggle.show:focus,
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-warning:disabled, .btn-warning.disabled,
fieldset:disabled .btn-warning {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #f2bc2c;
  background: #f3c444;
}

.btn-outline-warning {
  color: #dda50e;
  border: 1px solid #dda50e;
}

.btn-outline-warning:hover {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
}

.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-outline-warning.dropdown-toggle.show,
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-outline-warning.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus {
  color: #ffffff;
  background: #c29007;
  border: 1px solid #c29007;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(197, 147, 11, 0.3);
}

.btn-outline-warning:disabled, .btn-outline-warning.disabled,
fieldset:disabled .btn-outline-warning {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #f2bc2c;
  background: #f3c444;
}

/************* 11.13 Button Success *************/
.btn-success {
  color: #ffffff;
  background: #149865;
  border: 1px solid #149865;
}

.btn-success:hover {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
}

.btn-check:focus + .btn-success, .btn-success:focus {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-success.dropdown-toggle.show,
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success, .btn-success:active, .btn-success.active {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-success.dropdown-toggle.show:focus,
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-success:disabled, .btn-success.disabled,
fieldset:disabled .btn-success {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #1ac583;
  background: #1ddc92;
}

.btn-outline-success {
  color: #149865;
  border: 1px solid #149865;
}

.btn-outline-success:hover {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
}

.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-outline-success.dropdown-toggle.show,
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-outline-success.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus {
  color: #ffffff;
  background: #0a8154;
  border: 1px solid #0a8154;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(18, 129, 86, 0.3);
}

.btn-outline-success:disabled, .btn-outline-success.disabled,
fieldset:disabled .btn-outline-success {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #1ac583;
  background: #1ddc92;
}

/************* 11.14 Button Light *************/
.btn-light {
  color: #000000;
  background: #dbe1e9;
  border: 1px solid #dbe1e9;
}

.btn-light:hover {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
}

.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-light.dropdown-toggle.show,
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light, .btn-light:active, .btn-light.active {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-light.dropdown-toggle.show:focus,
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-light:disabled, .btn-light.disabled,
fieldset:disabled .btn-light {
  pointer-events: none;
  color: #000000;
  border: 1px solid #a7afb9;
  background: #fbfbfc;
}

.btn-outline-light {
  color: #000000;
  border: 1px solid #dbe1e9;
}

.btn-outline-light:hover {
  color: #ffffff;
  background: #a7afb9;
  border: 1px solid #a7afb9;
}

.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-outline-light.dropdown-toggle.show,
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-outline-light.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus {
  color: #000000;
  background: #a7afb9;
  border: 1px solid #a7afb9;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(204, 212, 223, 0.3);
}

.btn-outline-light:disabled, .btn-outline-light.disabled,
fieldset:disabled .btn-outline-light {
  pointer-events: none;
  color: #000000;
  border: 1px solid #ebeef3;
  background: #fbfbfc;
}

/************* 11.15 Button Dark *************/
.btn-dark {
  color: #ffffff;
  background: #9ba2ab;
  border: 1px solid #9ba2ab;
}

.btn-dark:hover {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
}

.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-dark.dropdown-toggle.show,
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-dark.dropdown-toggle.show:focus,
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-dark:disabled, .btn-dark.disabled,
fieldset:disabled .btn-dark {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #b7bcc2;
  background: #c5c9ce;
}

.btn-outline-dark {
  color: #000000;
  border: 1px solid #9ba2ab;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
}

.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-outline-dark.dropdown-toggle.show,
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-outline-dark.dropdown-toggle.show:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus {
  color: #ffffff;
  background: #646b74;
  border: 1px solid #646b74;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(140, 149, 159, 0.3);
}

.btn-outline-dark:disabled, .btn-outline-dark.disabled,
fieldset:disabled .btn-outline-dark {
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #b7bcc2;
  background: #c5c9ce;
}

/************* 11.16 Button White *************/
.btn-white {
  color: #000000;
  background: #ffffff;
}

.btn-white:hover {
  color: #000000;
  border: 1px solid #e6e6e6;
  background: #f2f2f2;
}

.btn-check:focus + .btn-white, .btn-white:focus {
  color: #000000;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
}

.btn-white.dropdown-toggle.show,
.btn-check:checked + .btn-white,
.btn-check:active + .btn-white, .btn-white:active, .btn-white.active {
  color: #000000;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
}

.btn-white.dropdown-toggle.show:focus,
.btn-check:checked + .btn-white:focus,
.btn-check:active + .btn-white:focus, .btn-white:active:focus, .btn-white.active:focus {
  color: #000000;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
          box-shadow: 0 0 0 0.2rem rgba(138, 157, 177, 0.3);
}

.btn-white:disabled, .btn-white.disabled,
fieldset:disabled .btn-white {
  pointer-events: none;
  color: #000000;
  border: 1px solid #e6e6e6;
  background: #f2f2f2;
}

/************* 11.17 Dropdown Menu *************/
.dropdown-menu {
  background-color: #ffffff;
  border: 0;
  border-radius: 8px;
  width: 12rem;
  -webkit-box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
          box-shadow: 0 10px 10px rgba(0, 10, 10, 0.1);
}

.dropdown-menu:before {
  position: absolute;
  top: -9px;
  left: 12px;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #ffffff;
}

.dropdown-menu.dropdown-menu-end {
  right: 0;
}

.dropdown-menu.dropdown-menu-end:before {
  right: 15px;
  left: auto;
  top: -9px;
}

.dropdown-menu.mini {
  width: 46px;
  min-width: auto;
}

.dropdown-menu.sm {
  width: 15rem;
  min-width: auto;
}

.dropdown-menu.md {
  width: 20rem;
}

.dropdown-menu.lrg {
  width: 24rem;
}

.dropdown-menu .dropdown-item {
  padding: .5rem 1rem .5rem 1rem;
  line-height: 100%;
  position: relative;
  color: #13181e;
}

.dropdown-menu .dropdown-item:hover {
  background: #eeeeee;
}

.dropdown-menu .dropdown-item:first-child {
  border-radius: 0px;
}

.dropdown-menu .dropdown-item:last-child {
  border-radius: 0px;
}

.dropdown-menu .dropdown-item.active-page {
  background: #e6e6e6;
  pointer-events: none;
  cursor: not-allowed;
}

.dropdown-menu .dropdown-divider {
  border-top: 1px solid #eeeeee;
}

.dropdown-menu .dropdown-menu-header {
  padding: .7rem 1rem;
  margin-bottom: .5rem;
  background: #eeeeee;
  color: #13181e;
  font-size: .925rem;
  font-weight: bold;
}

.dropdown-menu.white-dropdown {
  background-color: #ffffff;
}

.dropdown-menu.white-dropdown:before {
  border-bottom: 9px solid #ffffff;
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.dropdown-toggle.sub-nav-link::after {
  float: right;
  margin: .15rem 0 0 0;
  border-right: 0;
  border-left: 5px solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/************* 11.18 List Group *************/
.list-group .list-group-item {
  padding: .75rem 1rem;
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.list-group .list-group-item + .list-group-item {
  border-top-width: 0;
}

/************* 11.19 Carousel *************/
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 4rem;
  height: 4rem;
}

/******** 11.20 Form Controls ********/
.form-label {
  margin-bottom: .5rem;
  font-size: .9rem;
  color: #8d9092;
}

.form-control {
  border: 1px solid #c3cbd6;
  border-radius: 4px;
  color: #232629;
  font-size: .9rem;
  min-height: 40px;
  background-color: #ffffff;
}

.form-control:hover {
  border: 1px solid #9ba5b3;
}

.form-control:focus {
  border-color: #9ba5b3;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px;
  outline: 0 !important;
  outline-color: #9ba5b3 !important;
}

.form-control:disabled {
  opacity: .7;
}

.form-select {
  border: 1px solid #c3cbd6;
  border-radius: 4px;
  color: #232629;
  font-size: .9rem;
  min-height: 40px;
  background-color: #ffffff;
}

.form-select:hover {
  border: 1px solid #9ba5b3;
}

.form-select:focus {
  border-color: #9ba5b3;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px;
  outline: auto !important;
  outline-color: #9ba5b3 !important;
}

.form-select:disabled {
  opacity: .7;
}

.col-form-label {
  padding-top: calc(.595rem + 1px);
  padding-bottom: calc(.595rem + 1px);
  min-height: 40px;
}

.input-group-text {
  border: 1px solid #c3cbd6;
  background: #ffffff;
  border-radius: 4px;
  font-size: 1rem;
  min-height: 40px;
  margin: 0;
}

.input-group-text i {
  color: #232629;
}

.input-group .btn {
  border-radius: 4px;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  font-size: 1rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #149865;
  -webkit-text-fill-color: #232629;
  -webkit-box-shadow: 0 0 0px 100px white inset !important;
          box-shadow: 0 0 0px 100px white inset !important;
}

/******** 11.21 File Upload ********/
.form-control::-webkit-file-upload-button {
  background: #ffffff;
  font-size: 1rem;
  min-height: 40px;
  margin: -1rem 1rem -1rem -.75rem;
  color: #13181e;
  line-height: 40px;
}

/******** 11.22 Checkbox and Radio ********/
.form-check {
  margin: 0 1rem 0 0;
  min-height: 2rem;
}

.form-check .form-check-label {
  font-weight: 400;
  font-size: .9rem;
  margin: 5px 0 0 10px;
  color: #232629;
}

.form-check .form-check-input {
  border-color: #c3cbd6;
  background-color: #ffffff;
}

.form-check .form-check-input:checked {
  background-color: #435EEF;
  border-color: #435EEF;
}

.form-check .form-check-input:disabled ~ .form-check-label, .form-check .form-check-input [disabled] ~ .form-check-label {
  opacity: 0.7;
}

.form-check .form-check-input[type=checkbox] {
  border-radius: 2px;
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin-top: .15em;
  min-height: auto;
  padding: 0;
}

.form-check .form-check-input[type=radio] {
  border-radius: 50px;
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin-top: .15em;
  min-height: auto;
  padding: 0;
}

.form-check.form-switch {
  min-height: 1.5rem;
  margin: 0 0 10px 0;
}

.form-check.form-switch .form-check-label {
  margin: 0;
}

.form-check.form-switch .form-check-input {
  border-radius: 30px;
  width: 2em !important;
  height: 1em !important;
}

/******** 11.23 Modal ********/
.modal .modal-content {
  border-radius: 10px;
  border: 0;
}

.modal .modal-header {
  color: #000000;
  border: 0;
  padding: 1rem 1.2rem;
  border-radius: 10px 10px 0 0;
}

.modal .modal-header .btn-close {
  background: url(../img/cancel.svg) center/1em auto no-repeat;
}

.modal .modal-body {
  padding: 1.2rem;
}

.modal .modal-footer {
  border-top: 1px solid #ced9e6;
  padding: .5rem 1.2rem;
}

.modal-backdrop.show {
  opacity: 0.7;
}

/******** 11.24 Tables ********/
.table {
  color: #242424;
  font-size: .85rem;
}

.table .flag-img {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}

.table .flag-img-lg {
  width: 24px;
  height: 24px;
  margin: 0 7px 0 0;
}

.table > thead td, .table > thead th {
  font-weight: bold;
  font-size: .925rem;
}

.table.v-middle {
  vertical-align: middle;
}

.table .user-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table .user-details img {
  width: 60px;
  height: 60px;
  margin: 0 10px 0 0;
  border-radius: 50px;
}

.table .badge.min-70 {
  min-width: 70px;
}

.table .badge.min-90 {
  min-width: 90px;
}

.table .td-status i {
  font-size: 1.5rem;
  vertical-align: middle;
  margin: 0 5px 0 0;
}

.table .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table .actions a {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  margin: 3px;
  border: 1px solid #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.table .media-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table .media-box img.media-avatar {
  height: 60px;
  margin: 0 15px 0 0;
}

.table .media-box img.media-avatar-lg {
  height: 90px;
  margin: 0 15px 0 0;
}

.table .media-box .media-box-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.table .media-box .media-box-body p {
  color: #13181e;
  padding: 5px 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: #242424;
}

.table > :not(:first-child) {
  border-top: 3px solid #ededed;
}

/******** 11.25 Pagination ********/
.page-item.disabled .page-link {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid #e1e1e1;
  color: #13181e;
}

.page-item .page-link {
  padding: .594rem 1.25rem;
  font-size: .9rem;
}

.page-item .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-item:first-child .page-link {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-item.active .page-link {
  border: 1px solid #435EEF;
}

.page-link {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #e1e1e1;
  color: #13181e;
}

.page-link:hover, .page-link:focus {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid 1px solid #e1e1e1;
  color: #13181e;
}

/******** 11.26 Progress ********/
.progress {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.progress.thin {
  height: 3px;
}

.progress.small {
  height: 5px;
}

.progress.medium {
  height: 8px;
}

.progress.lg {
  height: 10px;
}

/******** 11.27 Spinners ********/
.spinner-w1 {
  width: 1rem;
  height: 1rem;
}

.spinner-w2 {
  width: 2rem;
  height: 2rem;
}

.spinner-w3 {
  width: 3rem;
  height: 3rem;
}

.spinner-w5 {
  width: 5rem;
  height: 5rem;
}

/******** 11.28 Off Canvas ********/
.offcanvas-start {
  border-right: 0;
}

.offcanvas-end {
  border-left: 0;
}

.offcanvas-bottom {
  border-top: 0;
}

.offcanvas-top {
  border-bottom: 0;
}

/******** 11.29 Off Canvas ********/
.popover {
  border: 1px solid #e1e1e1;
}

.popover-header {
  background: #F3F2F7;
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 15px;
  font-weight: 600;
}

/************* 11.30 Row Gutters *************/
.gutters {
  margin-right: -10px;
  margin-left: -10px;
}

.gutters > .col,
.gutters > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
/*# sourceMappingURL=main.css.map */