/**======================================================================
=========================================================================
Template Name: Datta Able Admin Template
Author: Codedthemes
supports: https://codedthemes.support-hub.io/
File: style.css
=========================================================================
=========================================================================
  == Table of Contents==
	- Generic classes
		-	Margin, Padding, Font class, text align, position, floating, overflow, background class, text color, display class, boarder class
	- Theme Elements
		-	Accordion, Button, tabs, typography, buttons, box shadow, Lable & Badges, Alert, Pagination, Breadcumb, Cards, Collapse,
        -   Carousel, Grid, Progress, Model, tooltip, popover, Datepicker, Gridstack, lightbox, notification, Nestable, pnotify, rating,
        -   Rangeslider, Slider, Syntax Highlighter, Tour, Treeview, Toolbar, Session Timeout, Session idle Timeout, offline, Animation
    - Forms
        -   Forms Elements, Advance Form Control, Validation, Masking, Wizard, Picker, Select
	- Pages
		-   Chat, authentication, Maintenance, Maps, Landingpage messages, task, Todo, Notes, Charts, Icons, Gallery, Editors,
        -   Invoice, Full Calender, File Upload,
=================================================================================
=================================================================================== */
/*
    description Of variables for build for theme layouts
        1) menu-caption-color
            List of color for sidebar menu caption

        2) brand-background
            List of color for logo background

        3) header-dark-background
            List of color for Dark Header

        4) header-light-background
            List of color for light Header

        5) menu-dark-background
            List of color for Dark sidebar menu

        6) menu-light-background
            List of color for light sidebar menu

        7) menu-active-color
            List of color for Active item highliter

        8) menu-icon-color
            List of color for sidebar menu items icon colors
*/
/**  =====================
     Google Font
==========================  **/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");
@import url("../plugins/bootstrap/css/bootstrap.min.css");
@import url("../fonts/feather/css/feather.css");
@import url("../plugins/jquery-scrollbar/css/jquery.scrollbar.min.css");
@import url("../fonts/datta/datta-icon.css");

/* @font-face {
  font-family: 'Amazon Ember';
  src: url('../fonts/amazon/AmazonEmber-Regular.woff2') format('woff2'),
    url('../fonts/amazon/AmazonEmber-Regular.woff') format('woff'),
    url('../fonts/amazon/AmazonEmber-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Amazon Ember';
  src: url('../fonts/amazon/AmazonEmber-Bold.woff2') format('woff2'),
    url('../fonts/amazon/AmazonEmber-Bold.woff') format('woff'),
    url('../fonts/amazon/AmazonEmber-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
} */

/**  =====================
      Custom css start
==========================  **/
 

body {
  font-size: 16px;
  color: #6E84A3;
  font-weight: 400;
  background: #F9FBFD;
  position: relative;
}

.fs_15 {
  font-size: 15px;
}

*:focus {
  outline: none;
}

a:hover {
  outline: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
  font-weight: 400;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 14px;
}

strong {
  font-weight: 400;
}

.img-radius {
  border-radius: 50%;
}

.page-header-title+.breadcrumb {
  background: transparent;
  padding: 0;
}

.page-header-title+.breadcrumb>.breadcrumb-item a {
  color: #888;
}

.page-header-title+.breadcrumb>.breadcrumb-item:last-child a {
  color: #111;
  font-weight: 600;
}

.theme-bg {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.theme-bg2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

/* ==========  card css start  =========== */
.anim-rotate {
  -webkit-animation: anim-rotate 1s linear infinite;
  animation: anim-rotate 1s linear infinite;
}

@-webkit-keyframes anim-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes anim-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.anim-close-card {
  -webkit-animation: anim-close-card 1.4s linear;
  animation: anim-close-card 1.4s linear;
}

@-webkit-keyframes anim-close-card {
  100% {
    opacity: 0.3;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes anim-close-card {
  100% {
    opacity: 0.3;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

p.text-muted {
  font-size: 13px;
}

.card {
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  border: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.card .card-header {
  background-color: transparent;
  border-bottom: 1px solid #f1f1f1;
  padding: 12px 25px;
  position: relative;
}

.card .card-header h5 {
  margin-bottom: 0;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
  line-height: 1.1;
  position: relative;
}

.card .card-header h5:after {
  content: "";
  background-color: #04a9f5;
  position: absolute;
  left: -25px;
  top: 0;
  width: 4px;
  height: 20px;
}

.card .card-header.borderless {
  border-bottom: none;
}

.card .card-header.borderless h5:after {
  display: none;
}

.card .card-header .card-header-right {
  right: 10px;
  top: 10px;
  display: inline-block;
  float: right;
  padding: 0;
  position: absolute;
}

.refresh-btn {
  border: 0 solid #44546F;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.refresh-btn2 {
  padding: 8px;
}

.refresh-btn:hover {
  background: #ECEFF2;
  /* border: 1px solid #ECEFF2; */
}

.refresh-btn:focus svg {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: 1;
}

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 575px) {
  .card .card-header .card-header-right {
    display: none;
  }
}

.card .card-header .card-header-right .dropdown-menu {
  margin-top: 0;
}

.card .card-header .card-header-right .dropdown-menu li a {
  font-size: 14px;
  text-transform: capitalize;
}

.card .card-header .card-header-right .btn.dropdown-toggle {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888;
}

.card .card-header .card-header-right .btn.dropdown-toggle i {
  margin-right: 0;
}

.card .card-header .card-header-right .btn.dropdown-toggle:after {
  display: none;
}

.card .card-header .card-header-right .btn.dropdown-toggle:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.card .card-footer {
  border-top: 1px solid #f1f1f1;
  background: transparent;
  padding: 25px;
}

.card .card-block,
.card .card-body {
  padding: 5px 10px;
}

.card.card-load {
  position: relative;
  overflow: hidden;
}

.card.card-load .card-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
}

.card.card-load .card-loader i {
  margin: 0 auto;
  color: #04a9f5;
  font-size: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card.full-card {
  z-index: 99999;
  border-radius: 0;
}

/* ==========  scrollbar End  =========== */
.scroll-y {
  z-index: 1027;
}

/* ==========  scrollbar End  ===========
 ==========  card css End  ===========
 ================================    Dropdown Start  ===================== */
.dropdown-menu {
  padding: 20px 0;
  margin-top: 15px;
  -webkit-box-shadow: 0 1px 10px 0 rgba(69, 90, 100, 0.2);
  box-shadow: 0 1px 10px 0 rgba(69, 90, 100, 0.2);
  border: none;
}

.dropdown-menu.show:before {
  content: "\63";
  font-family: "pct";
  position: absolute;
  left: 15px;
  top: -5px;
  z-index: 1001;
  font-size: 40px;
  line-height: 0;
  color: #fff;
  text-shadow: 0 -2px 2px rgba(69, 90, 100, 0.12);
}

.dropdown-menu.show.dropdown-menu-right:before {
  left: auto;
  right: 5px;
}

.dropdown-menu[x-placement="top-start"] {
  margin-bottom: 15px;
  margin-top: 0;
}

.dropdown-menu[x-placement="top-start"].show:before {
  content: "\64";
  bottom: -5px;
  top: auto;
  text-shadow: 0 2px 2px rgba(69, 90, 100, 0.12);
}

.dropdown-menu>li {
  padding-left: 15px;
  padding-right: 15px;
}

.dropdown-menu>li>a {
  padding: 5px;
  color: #888;
}

.dropdown-menu>li>a i {
  font-size: 15px;
  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;
  margin-right: 10px;
}

.dropdown-menu>li.active,
.dropdown-menu>li:active,
.dropdown-menu>li:focus,
.dropdown-menu>li:hover {
  background: rgba(4, 169, 245, 0.1);
}

.dropdown-menu>li.active>a,
.dropdown-menu>li:active>a,
.dropdown-menu>li:focus>a,
.dropdown-menu>li:hover>a {
  background: transparent;
}

/* ================================    Dropdown End  ===================== */
@media (min-width: 1600px) {
  .container {
    max-width: 1540px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}

/* ========================================================
 ===============     document      ======================
 ========================================================

 Grid examples
*/
.bd-example-row {
  background: #f4f7fa;
  padding: 15px;
  margin-bottom: 15px;
}

.bd-example-row .row>[class^="col-"],
.bd-example-row .row>.col {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.2);
}

.bd-example-row .row+.row {
  margin-top: 1rem;
}

.bd-example-row .flex-items-bottom,
.bd-example-row .flex-items-middle,
.bd-example-row .flex-items-top {
  min-height: 6rem;
  background-color: rgba(255, 0, 0, 0.1);
}

.bd-example-row-flex-cols .row {
  min-height: 10rem;
  background-color: rgba(255, 0, 0, 0.1);
}

/* Docs examples */
.bd-example {
  position: relative;
  padding: 1rem;
  margin: 1rem;
  border: solid #ddd;
  border-width: 0.2rem 0 0;
}

@media only screen and (max-height: 575px) {
  .bd-example {
    padding: 1.5rem;
    margin-right: 0;
    margin-left: 0;
    border-width: 0.2rem;
  }
}

/* Example modals */
.modal {
  z-index: 1072;
}

.modal .popover,
.modal .tooltip {
  z-index: 1073;
}

.modal-backdrop {
  z-index: 0;
  background: transparent;
}

.bd-example-modal {
  background-color: #fafafa;
}

.bd-example-modal .modal {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  display: block;
}

.bd-example-modal .modal-dialog {
  left: auto;
  margin-right: auto;
  margin-left: auto;
}

/* Example tabbable tabs */
.bd-example-tabs .nav-tabs {
  margin-bottom: 1rem;
}

/* Code snippets */
.highlight {
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #f3f2fb;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

@media only screen and (max-height: 575px) {
  .highlight {
    padding: 1.5rem;
  }
}

.bd-content .highlight {
  margin-right: 15px;
  margin-left: 15px;
}

@media only screen and (max-height: 575px) {
  .bd-content .highlight {
    margin-right: 0;
    margin-left: 0;
  }
}

.highlight pre {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
}

.highlight pre code {
  font-size: inherit;
  color: #333;
}

/* =======================================================================
 ===============     Ui kit copy model style      ====================== */
/* Code examples */
.datta-example {
  position: relative;
}

.datta-example .datta-example-btns {
  position: absolute;
  right: 30px;
  top: -10px;
  opacity: 0;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.datta-example .datta-example-btns .datta-example-btn {
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  background: #04a9f5;
  color: #fff;
  padding: 0.1875rem 0.3125rem;
  border-radius: 2px;
  white-space: nowrap;
  font-size: 11px;
  margin: 0 4px;
}

.datta-example .datta-example-btns .datta-example-btn.copy::before {
  content: "COPY";
}

.datta-example .datta-example-btns .datta-example-btn.copied {
  background: #1de9b6 !important;
  color: #fff !important;
}

.datta-example .datta-example-btns .datta-example-btn.copied::before {
  content: "COPIED!";
}

.datta-example:hover .datta-example-btns {
  top: -21px;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}

/* Modal */
.datta-example-modal {
  position: fixed;
  z-index: 1099;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #282c34;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.datta-example-modal-opened {
  overflow: hidden !important;
}

.datta-example-modal-opened .datta-example-modal {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.datta-example-modal-content {
  max-width: 100vw;
  margin: auto;
  padding: 50px;
  height: 100vh;
  overflow: auto;
}

.datta-example-modal-content>pre {
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.datta-example-modal-content>pre>code {
  padding: 0;
  background: none;
  font-size: 16px;
}

.md-datta-example-modal-copy {
  display: block;
  position: fixed;
  top: 90px;
  right: 30px;
  margin-right: 8px;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 10px 15px;
  background: #04a9f5;
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  white-space: nowrap;
}

.md-datta-example-modal-copy:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
}

.md-datta-example-modal-copy.copied::before {
  content: "Copied to Clipboard Successfully ! . . .";
  position: absolute;
  display: block;
  right: 100%;
  margin-right: 10px;
  font-size: 14px;
  background: #1de9b6;
  line-height: 24px;
  height: 24px;
  border-radius: 3px;
  padding: 0 6px;
  top: 50%;
  margin-top: -12px;
}

.datta-example-modal-close {
  display: block;
  position: fixed;
  top: 10px;
  right: 52px;
  color: #fff;
  opacity: 0.2;
  font-size: 3rem;
  font-weight: 100;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.datta-example-modal-close:hover {
  color: #fff;
  opacity: 0.9;
}

/* Code */
.cui-bottom-spacer {
  height: 12rem;
}

/* editor style for model */
.hljs {
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-formula,
.hljs-keyword {
  color: #c678dd;
}

.hljs-deletion,
.hljs-name,
.hljs-section,
.hljs-selector-tag,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-addition,
.hljs-attribute,
.hljs-meta-string,
.hljs-regexp,
.hljs-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-number,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-template-variable,
.hljs-type,
.hljs-variable {
  color: #d19a66;
}

.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-symbol,
.hljs-title {
  color: #61aeee;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}

/* ================================    md animated mode start   ===================== */
.md-show.md-effect-12~.md-overlay {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

/* ================================    md animated mode End   ===================== */
/* ================================    range slider Start  ===================== */
.tooltip.in {
  opacity: 0.9;
}

.tooltip .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* ================================    range slider End  ===================== */
/* ================================    owl-carousel slider Start  ===================== */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  padding: 3px 9px;
}

/* ================================    owl-carousel slider End  ===================== */
/* ================================    Bootstrap tags input Start  ===================== */
.bootstrap-tagsinput {
  padding: 10px 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 2px;
  background: #f0f3f6;
}

.bootstrap-tagsinput .tag {
  padding: 5px 12px;
  border-radius: 2px;
  line-height: 37px;
  margin-top: 5px;
  margin-right: 5px;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-right: -5px;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "\e8f6";
  padding: 0 2px;
  font-family: 'feather' !important;
}

/* ================================    Bootstrap tags input End  ===================== */
/* ================================    Multi-Select Start  ===================== */
.ms-container {
  width: 100%;
}

/* ================================    Multi-Select End  ===================== */
/* ================================    Blockquote Start  ===================== */
.blockquote {
  border-left: 0.25rem solid #eaeaea;
  padding: 0.5rem 1rem;
}

.blockquote.text-right {
  border-left: none;
  border-right: 0.25rem solid #eaeaea;
}

/* ================================    Blockquote End  ===================== */
/* ================================    animation start  ===================== */
.card .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  border: 5px solid #fff;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

/* ================================    animation End  ===================== */
/* ================================    browser  warning  Start  ===================== */
.ie-warning {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000000;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  padding: 50px 0;
}

.ie-warning p {
  font-size: 17px;
}

.ie-warning h1 {
  color: #fff;
}

.ie-warning .iew-container {
  min-width: 1024px;
  width: 100%;
  height: 200px;
  background: #fff;
  margin: 50px 0;
}

.ie-warning .iew-download {
  list-style: none;
  padding: 30px 0;
  margin: 0 auto;
  width: 720px;
}

.ie-warning .iew-download>li {
  float: left;
  vertical-align: top;
}

.ie-warning .iew-download>li>a {
  display: block;
  color: #000;
  width: 140px;
  font-size: 15px;
  padding: 15px 0;
}

.ie-warning .iew-download>li>a>div {
  margin-top: 10px;
}

.ie-warning .iew-download>li>a:hover {
  background-color: #eee;
}

/* ================================    browser  warning  End  ===================== */
/* material icon for material datetime picker */
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/materialicons/v41/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2") format("woff2");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* material icon for material datetime picker */
/**  =====================
      Generic-class css start
========================== **/
/*====== Padding , Margin css starts ======*/
.p-0 {
  padding: 0px;
}

.p-t-0 {
  padding-top: 0px;
}

.p-b-0 {
  padding-bottom: 0px;
}

.p-l-0 {
  padding-left: 0px;
}

.p-r-0 {
  padding-right: 0px;
}

.m-0 {
  margin: 0px;
}

.m-t-0 {
  margin-top: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.m-r-0 {
  margin-right: 0px;
}

.p-5 {
  padding: 5px;
}

.p-t-5 {
  padding-top: 5px;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-l-5 {
  padding-left: 5px;
}

.p-r-5 {
  padding-right: 5px;
}

.m-5 {
  margin: 5px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.p-10 {
  padding: 10px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-r-10 {
  padding-right: 10px;
}

.m-10 {
  margin: 10px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.p-15 {
  padding: 15px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-r-15 {
  padding-right: 15px;
}

.m-15 {
  margin: 15px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-r-15 {
  margin-right: 15px;
}

.p-20 {
  padding: 20px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-r-20 {
  padding-right: 20px;
}

.m-20 {
  margin: 20px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.p-25 {
  padding: 25px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-l-25 {
  padding-left: 25px;
}

.p-r-25 {
  padding-right: 25px;
}

.m-25 {
  margin: 25px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.p-30 {
  padding: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-r-30 {
  padding-right: 30px;
}

.m-30 {
  margin: 30px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.p-35 {
  padding: 35px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-l-35 {
  padding-left: 35px;
}

.p-r-35 {
  padding-right: 35px;
}

.m-35 {
  margin: 35px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-l-35 {
  margin-left: 35px;
}

.m-r-35 {
  margin-right: 35px;
}

.p-40 {
  padding: 40px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-l-40 {
  padding-left: 40px;
}

.p-r-40 {
  padding-right: 40px;
}

.m-40 {
  margin: 40px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-r-40 {
  margin-right: 40px;
}

.p-45 {
  padding: 45px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-l-45 {
  padding-left: 45px;
}

.p-r-45 {
  padding-right: 45px;
}

.m-45 {
  margin: 45px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-l-45 {
  margin-left: 45px;
}

.m-r-45 {
  margin-right: 45px;
}

.p-50 {
  padding: 50px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-l-50 {
  padding-left: 50px;
}

.p-r-50 {
  padding-right: 50px;
}

.m-50 {
  margin: 50px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

/*====== Padding , Margin css ends ======*/
/*====== text-color, background color css starts ======*/
.bg-c-blue {
  background: #04a9f5;
}

.text-c-blue {
  color: #04a9f5;
}

.bg-c-red {
  background: #f44236;
}

.text-c-red {
  color: #f44236;
}

.bg-c-green {
  background: #1de9b6;
}

.text-c-green {
  color: #1de9b6;
}

.bg-c-yellow {
  background: #f4c22b;
}

.text-c-yellow {
  color: #f4c22b;
}

.bg-c-purple {
  background: #a389d4;
}

.text-c-purple {
  color: #a389d4;
}

/*====== text-color css ends ======*/
/*====== Card top border css starts ======*/
.card-border-c-blue {
  border-top: 4px solid #04a9f5;
}

.card-border-c-red {
  border-top: 4px solid #f44236;
}

.card-border-c-green {
  border-top: 4px solid #1de9b6;
}

.card-border-c-yellow {
  border-top: 4px solid #f4c22b;
}

.card-border-c-purple {
  border-top: 4px solid #a389d4;
}

/*====== Card top border ends ======*/
/*====== Font-size css starts ======*/
.f-10 {
  font-size: 10px;
}

.f-12 {
  font-size: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
}

.f-20 {
  font-size: 20px;
}

.f-22 {
  font-size: 22px;
}

.f-24 {
  font-size: 24px;
}

.f-26 {
  font-size: 26px;
}

.f-28 {
  font-size: 28px;
}

.f-30 {
  font-size: 30px;
}

.f-32 {
  font-size: 32px;
}

.f-34 {
  font-size: 34px;
}

.f-36 {
  font-size: 36px;
}

.f-38 {
  font-size: 38px;
}

.f-40 {
  font-size: 40px;
}

.f-42 {
  font-size: 42px;
}

.f-44 {
  font-size: 44px;
}

.f-46 {
  font-size: 46px;
}

.f-48 {
  font-size: 48px;
}

.f-50 {
  font-size: 50px;
}

.f-52 {
  font-size: 52px;
}

.f-54 {
  font-size: 54px;
}

.f-56 {
  font-size: 56px;
}

.f-58 {
  font-size: 58px;
}

.f-60 {
  font-size: 60px;
}

.f-62 {
  font-size: 62px;
}

.f-64 {
  font-size: 64px;
}

.f-66 {
  font-size: 66px;
}

.f-68 {
  font-size: 68px;
}

.f-70 {
  font-size: 70px;
}

.f-72 {
  font-size: 72px;
}

.f-74 {
  font-size: 74px;
}

.f-76 {
  font-size: 76px;
}

.f-78 {
  font-size: 78px;
}

.f-80 {
  font-size: 80px;
}

/*====== Font-size css ends ======*/
/*====== Font-weight css starts ======*/
.f-w-100 {
  font-weight: 100;
}

.f-w-200 {
  font-weight: 200;
}

.f-w-300 {
  font-weight: 300;
}

.f-w-400 {
  font-weight: 400;
}

.f-w-500 {
  font-weight: 500;
}

.f-w-600 {
  font-weight: 600;
}

.f-w-700 {
  font-weight: 700;
}

.f-w-800 {
  font-weight: 800;
}

.f-w-900 {
  font-weight: 900;
}

/*====== Font-weight css ends ======*/
/* new logo start */
.b-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.b-brand .b-bg {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  border-radius: 10px;
  width: 35px;
  height: 35px;
  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;
}

.b-brand .b-bg i {
  color: #fff;
}

.b-brand .b-title {
  margin-left: 10px;
  font-weight: 100;
  color: #fff;
  font-size: 18px;
}

.navbar-collapsed .b-brand .b-title {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-collapsed .mobile-menu {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-collapsed:hover .b-brand .b-title {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.navbar-collapsed:hover .mobile-menu {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

/* new logo End  */
/* Pre-loader css start */
.loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1035;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.loader-bg .loader-track {
  position: relative;
  height: 3px;
  display: block;
  width: 100%;
  overflow: hidden;
}

.loader-bg .loader-track .loader-fill:after,
.loader-bg .loader-track .loader-fill:before {
  content: '';
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
}

.loader-bg .loader-track .loader-fill:before {
  -webkit-animation: mbar 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: mbar 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.loader-bg .loader-track .loader-fill:after {
  -webkit-animation: m_s 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: m_s 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes mbar {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -35%;
  }
}

@keyframes mbar {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -35%;
  }
}

@-webkit-keyframes m_s {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes m_s {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

/* Pre-loader css end */
/* header css start */
.pcoded-header {
  z-index: 1028;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 70px;
  padding: 0;
  position: relative;
  top: 0;
  background: transparent;
  color: #3f4d67;
  width: calc(100% - 264px);
  margin-left: 264px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-header .m-header {
  display: none;
}

.pcoded-header .m-header .logo-dark,
.pcoded-header .m-header .logo-thumb {
  display: none;
}

.pcoded-header .input-group {
  background: transparent;
}

.pcoded-header .input-group .input-group-text {
  margin-right: 0;
}

.pcoded-header .input-group {
  background: transparent;
}

.pcoded-header .input-group .input-group-text,
.pcoded-header a,
.pcoded-header dropdown-toggle {
  color: #3f4d67;
}

.pcoded-header .input-group .input-group-text:hover,
.pcoded-header a:hover,
.pcoded-header dropdown-toggle:hover {
  color: #04a9f5;
}

.pcoded-header #mobile-header {
  display: none;
}

.pcoded-header .navbar-nav {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.pcoded-header .navbar-nav>li {
  line-height: 70px;
  display: inline-block;
  padding: 0 12px;
}

.pcoded-header .navbar-nav>li .nav-link {
  padding: 0;
}

.pcoded-header .navbar-nav>li:first-child {
  padding-left: 25px;
}

.pcoded-header .navbar-nav>li:last-child {
  padding-right: 40px;
}

.pcoded-header .mr-auto .dropdown-menu {
  margin-left: -20px;
}

.pcoded-header .ml-auto {
  float: right;
}

.pcoded-header .ml-auto .dropdown-menu {
  margin-right: -20px;
}

.pcoded-header .main-search .input-group {
  border-radius: 20px;
  padding: 0;
}

.pcoded-header .main-search .input-group .form-control,
.pcoded-header .main-search .input-group .input-group-text {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.pcoded-header .main-search .input-group .search-close {
  display: none;
}

.pcoded-header .main-search .input-group .search-btn {
  border-radius: 50%;
  padding: 0;
  background: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-header .main-search .input-group .form-control {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 0;
  font-size: 14px;
}

.pcoded-header .main-search .input-group .form-control:active,
.pcoded-header .main-search .input-group .form-control:focus,
.pcoded-header .main-search .input-group .form-control:hover,
.pcoded-header .main-search .input-group .search-btn:active,
.pcoded-header .main-search .input-group .search-btn:focus,
.pcoded-header .main-search .input-group .search-btn:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-header .main-search.open .input-group {
  background: #fff;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0 6px 12px -5px rgba(65, 76, 78, 0.08);
  box-shadow: 0 6px 12px -5px rgba(65, 76, 78, 0.08);
  padding: 5px 5px 5px 20px;
}

.pcoded-header .main-search.open .input-group .search-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pcoded-header .main-search.open .input-group .search-btn {
  padding: 5px;
  margin-left: 5px;
  background: #04a9f5;
  border-color: #04a9f5;
}

.pcoded-header .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header .main-search.open .input-group .form-control {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 0;
}

.pcoded-header .main-search.open .input-group .form-control:active,
.pcoded-header .main-search.open .input-group .form-control:focus,
.pcoded-header .main-search.open .input-group .form-control:hover,
.pcoded-header .main-search.open .input-group .search-btn:active,
.pcoded-header .main-search.open .input-group .search-btn:focus,
.pcoded-header .main-search.open .input-group .search-btn:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-header .dropdown .dropdown-toggle {
  line-height: 70px;
  display: inline-block;
  padding-right: 15px;
}

.pcoded-header .dropdown .dropdown-toggle:after {
  content: "\e842";
  font-family: 'feather';
  font-size: 15px;
  border: none;
  position: absolute;
  top: 0;
  right: 15px;
}

.pcoded-header .dropdown .dropdown-menu {
  position: absolute;
  border: none;
  margin-top: -6px;
  min-width: 290px;
}

.pcoded-header .dropdown .dropdown-menu.show:before {
  display: none;
}

.pcoded-header .dropdown .dropdown-menu li {
  line-height: 1.2;
}

.pcoded-header .dropdown .dropdown-menu li a {
  padding: 10px;
  font-size: 14px;
}

.pcoded-header .dropdown .dropdown-menu li.active a,
.pcoded-header .dropdown .dropdown-menu li:active a,
.pcoded-header .dropdown .dropdown-menu li:focus a,
.pcoded-header .dropdown .dropdown-menu li:hover a {
  color: #888;
}

.pcoded-header .dropdown.show:before {
  content: "\63";
  font-family: "pct";
  position: absolute;
  left: -5px;
  top: 60px;
  z-index: 1001;
  font-size: 40px;
  line-height: 0;
  color: #fff;
  text-shadow: 0 -2px 2px rgba(65, 76, 78, 0.12);
}

.pcoded-header .dropdown .notification {
  width: 350px;
  padding: 0;
  line-height: 1.4;
  overflow: hidden;
}

.pcoded-header .dropdown .notification .noti-head {
  border-bottom: 1px solid #f1f1f1;
  padding: 15px 20px;
}

.pcoded-header .dropdown .notification .noti-head a {
  text-decoration: underline;
  font-size: 13px;
}

.pcoded-header .dropdown .notification .noti-body {
  padding: 0;
}

.pcoded-header .dropdown .notification .noti-body img {
  width: 40px;
  margin-right: 20px;
}

.pcoded-header .dropdown .notification .noti-body li {
  padding: 15px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-header .dropdown .notification .noti-body li.n-title {
  padding-bottom: 0;
}

.pcoded-header .dropdown .notification .noti-body li.n-title p {
  margin-bottom: 5px;
}

.pcoded-header .dropdown .notification .noti-body li.notification:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-header .dropdown .notification .noti-body li p {
  margin-bottom: 5px;
  font-size: 13px;
}

.pcoded-header .dropdown .notification .noti-body li p strong {
  color: #222;
}

.pcoded-header .dropdown .notification .noti-body li .n-time {
  font-size: 80%;
  float: right;
}

.pcoded-header .dropdown .notification .noti-footer {
  border-top: 1px solid #f1f1f1;
  padding: 15px 20px;
  text-align: center;
}

.pcoded-header .dropdown .notification .noti-footer a {
  text-decoration: underline;
  font-size: 13px;
}

.pcoded-header .dropdown .notification ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.pcoded-header .dropdown .notification ul li {
  padding: 20px 15px;
}

.pcoded-header .dropdown .profile-notification {
  padding: 0;
  line-height: 1.4;
  overflow: hidden;
}

.pcoded-header .dropdown .profile-notification .pro-head {
  color: #fff;
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 15px;
  position: relative;
  background: #04a9f5;
}

.pcoded-header .dropdown .profile-notification .pro-head img {
  width: 40px;
  margin-right: 10px;
}

.pcoded-header .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
  padding-right: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  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;
}

.pcoded-header .dropdown .profile-notification .pro-body {
  padding: 20px 0;
  margin-bottom: 0;
  list-style: none;
}

.pcoded-header .dropdown .profile-notification .pro-body li a {
  color: #888;
  font-size: 14px;
  padding: 10px 20px;
}

.pcoded-header .dropdown .profile-notification .pro-body li a i {
  margin-right: 10px;
}

.pcoded-header .dropdown .profile-notification .pro-body li.active,
.pcoded-header .dropdown .profile-notification .pro-body li:active,
.pcoded-header .dropdown .profile-notification .pro-body li:focus,
.pcoded-header .dropdown .profile-notification .pro-body li:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-header .dropdown .profile-notification .pro-body li.active>a,
.pcoded-header .dropdown .profile-notification .pro-body li:active>a,
.pcoded-header .dropdown .profile-notification .pro-body li:focus>a,
.pcoded-header .dropdown .profile-notification .pro-body li:hover>a {
  background: transparent;
}

.pcoded-header .dropdown.drp-user.show:before {
  color: #04a9f5;
}

/* header css end */
/* menu[ vartical ] css start */
.mobile-menu {
  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: 37px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
}

.mobile-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 2.8px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2px;
}

.mobile-menu span:after,
.mobile-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  height: 2.8px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2px;
}

.mobile-menu span:after {
  top: 5px;
  width: 70%;
}

.mobile-menu span:before {
  top: -5px;
  width: 40%;
}

.mobile-menu.on span {
  background-color: transparent;
}

.mobile-menu.on span:after,
.mobile-menu.on span:before {
  height: 2px;
  width: 100%;
}

.mobile-menu.on span:before {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu.on span:after {
  -webkit-transform: rotate(-45deg) translate(3px, -3px);
  transform: rotate(-45deg) translate(3px, -3px);
}

.navbar-brand {
  background: #ffffff;
  border-right: 1px solid #E3EBF6;
  box-shadow: 0px 4px 55px rgba(0, 0, 0, 0.05);
}

.pcoded-header:before,
.pcoded-main-container:before {
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar {
  display: block;
  z-index: 1029;
  position: fixed;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 1px 0 20px 0 #ffffff;
  box-shadow: 1px 0 20px 0 #ffffff;
  width: 264px;
  height: 100vh;
  top: 0;
  background: #ffffff;
  color: #a9b7d0;
  border-right: 1px solid #E3EBF6;
  box-shadow: 0px 4px 55px rgba(0, 0, 0, 0.05);
}

.pcoded-navbar ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.pcoded-navbar .scroll-div.navbar-content {
  height: calc(100vh - 70px);
}

.pcoded-navbar .header-logo {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: left;
  height: 70px;
  text-align: center;
  width: 264px;
  margin-right: 0;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar .header-logo .logo-dark {
  display: none;
}

.pcoded-navbar .header-logo .logo-thumb {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
  position: absolute;
  -webkit-transition: unset;
  transition: unset;
}

.pcoded-navbar .header-logo+.scroll-div {
  float: left;
  display: inline-block;
}

.pcoded-navbar .mobile-menu {
  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: 37px;
  height: 70px;
  position: absolute;
  right: 10px;
  top: 0;
  padding: 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar .mobile-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 2.8px;
  background-color: #a9b7d0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2px;
}

.pcoded-navbar .mobile-menu span:after,
.pcoded-navbar .mobile-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  height: 2.8px;
  background-color: #a9b7d0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2px;
}

.pcoded-navbar .mobile-menu span:after {
  top: 5px;
  width: 70%;
}

.pcoded-navbar .mobile-menu span:before {
  top: -5px;
  width: 40%;
}

.pcoded-navbar .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar .mobile-menu.on span:after,
.pcoded-navbar .mobile-menu.on span:before {
  height: 2px;
  width: 100%;
}

.pcoded-navbar .mobile-menu.on span:before {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.pcoded-navbar .mobile-menu.on span:after {
  -webkit-transform: rotate(-45deg) translate(3px, -3px);
  transform: rotate(-45deg) translate(3px, -3px);
}

.pcoded-navbar .pcoded-badge {
  font-size: 75%;
  position: absolute;
  right: 30px;
  top: 12px;
  padding: 2px 7px;
  border-radius: 2px;
}

.pcoded-navbar .pcoded-inner-navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pcoded-navbar .pcoded-inner-navbar li {
  position: relative;
  margin-bottom: 20px;
}

.pcoded-navbar .pcoded-inner-navbar li>a {
  text-align: left;
  padding: 7px 15px;
  margin: 5px 0 0;
  display: block;
  border-radius: 0;
  position: relative;
}

.pcoded-navbar .pcoded-inner-navbar li>a .pcoded-mtext {
  position: relative;
}

.pcoded-navbar .pcoded-inner-navbar li>a>.pcoded-micon {
  font-size: 1rem;
  /* padding: 4px 7px; */
  padding: 0;
  margin-right: 7px;
  border-radius: 4px;
  width: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  text-align: center;
}

.pcoded-navbar .pcoded-inner-navbar li>a>.pcoded-micon+.pcoded-mtext {
  position: absolute;
  top: 11px;
}

.pcoded-navbar .pcoded-inner-navbar li>a>.pcoded-micon svg {
  position: relative;
  top: 2px;
  left: 4px;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu>a:after {
  /* content: "\e844"; */
  content: "";
  font-family: 'feather';
  font-size: 15px;
  border: none;
  position: absolute;
  top: 11px;
  right: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 20px;
  height: 20px;
  background: url(/static/assets/images/icons/down-arrow.png)no-repeat scroll center center;
  background-size: 18px;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li {
  margin-bottom: 5px;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu.pcoded-trigger>a:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu {
  display: none;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu.pcoded-trigger.active>.pcoded-submenu {
  display: block;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu.pcoded-trigger.active>a {
  position: relative;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a {
  text-align: left;
  padding: 7px 7px 7px 60px;
  margin: 0;
  display: block;
}

/* .pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li > a:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 35px;
  width: 5px;
  height: 5px;
} */
.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li .pcoded-submenu>li>a {
  padding: 7px 7px 7px 80px;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li .pcoded-submenu>li>a:before {
  left: 55px;
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-menu-caption {
  font-size: 10px;
  font-weight: 600;
  padding: 25px 20px 5px;
  text-transform: uppercase;
  position: relative;
}

.pcoded-navbar .pcoded-inner-navbar li.disabled>a {
  cursor: default;
  opacity: 0.5;
}

.pcoded-navbar .pcoded-submenu {
  background: #F5F7FA;
  padding: 15px 0;
  font-size: 15px;
  columns: #7E8896;
}

.pcoded-navbar a {
  color: #a9b7d0;
}

.pcoded-navbar .navbar-content,
.pcoded-navbar .navbar-wrapper {
  width: 100%;
  height: 100%;
}

.pcoded-navbar.navbar-collapsed {
  width: 85px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar.navbar-collapsed .header-logo {
  width: 80px;
  height: auto;
}

.pcoded-navbar.navbar-collapsed .header-logo span {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: unset;
  transition: unset;
}

.pcoded-navbar.navbar-collapsed .header-logo .logo-thumb {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 1;
  left: calc((80px / 2) - 20px);
}

.pcoded-navbar.navbar-collapsed .header-logo .mobile-menu {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
}

.pcoded-navbar.navbar-collapsed .navbar-content.ps {
  overflow: visible;
}

.pcoded-navbar.navbar-collapsed .pcoded-menu-caption {
  position: relative;
  width: 100%;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
}

.pcoded-navbar.navbar-collapsed .pcoded-menu-caption>label {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar.navbar-collapsed .pcoded-menu-caption:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li {
  cursor: pointer;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li>a {
  z-index: -1;
  padding: 7px 25px;
  color: #7E8896;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li>a>.pcoded-mtext {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-hasmenu>a:after {
  right: 12px;
  opacity: 0;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-hasmenu>a:after {
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu {
  display: none;
  padding: 0 0 20px;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(calc(80px / 2) - 3px);
  width: 2px;
  height: calc(100% - 5px);
  background: rgba(169, 183, 208, 0.1);
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a {
  color: transparent;
  white-space: nowrap;
  font-size: 15px;
}

.pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu .pcoded-submenu li a:before {
  opacity: 0;
}

.pcoded-navbar.navbar-collapsed~.pcoded-header {
  width: calc(100% - 80px);
}

.pcoded-navbar.navbar-collapsed~.pcoded-header,
.pcoded-navbar.navbar-collapsed~.pcoded-main-container {
  margin-left: 80px;
}

.pcoded-navbar.navbar-collapsed .pcoded-badge {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.pcoded-navbar.navbar-collapsed:hover {
  width: 264px !important;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-badge {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed:hover .header-logo {
  width: 264px;
}

.pcoded-navbar.navbar-collapsed:hover .header-logo span {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed:hover .header-logo .logo-thumb {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
}

.pcoded-navbar.navbar-collapsed:hover .header-logo .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 10px;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-menu-caption>label {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-menu-caption:after {
  background: transparent;
}

.pcoded-navbar.navbar-collapsed:hover .mobile-menu {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li>a>.pcoded-mtext {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li>a>.pcoded-mtext:after {
  opacity: 1;
  visibility: visible;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-hasmenu>a:after {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a:after {
  -webkit-transform: rotateX(0deg) rotate(180deg);
  transform: rotateX(0deg) rotate(180deg);
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after {
  display: none;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a {
  color: inherit;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a:hover {
  font-weight: 500;
}

.pcoded-navbar.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu .pcoded-submenu li a:before {
  opacity: 1;
}

.pcoded-navbar .pcoded-menu-caption {
  color: #e8edf7;
}

.pcoded-navbar .pcoded-inner-navbar li.active>a,
.pcoded-navbar .pcoded-inner-navbar li:focus>a,
.pcoded-navbar .pcoded-inner-navbar li:hover>a {
  color: #2B384B;
}

.pcoded-navbar .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #2B384B;
}

.pcoded-navbar .pcoded-inner-navbar>li.active:after,
.pcoded-navbar .pcoded-inner-navbar>li.pcoded-trigger:after {
  content: "";
  background-color: #2B384B;
  z-index: 1027;
  position: absolute;
  left: 0;
  top: 5px;
  width: 3px;
  height: calc(100% - 5px);
}

.pcoded-navbar .pcoded-inner-navbar>li.active>a,
.pcoded-navbar .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #F5F7FA;

}

.pcoded-navbar .pcoded-inner-navbar>.pcoded-menu-caption.active:after,
.pcoded-navbar .pcoded-inner-navbar>.pcoded-menu-caption.pcoded-trigger:after {
  display: none;
}

.pcoded-navbar.mob-open~.pcoded-header,
.pcoded-navbar.mob-open~.pcoded-main-container,
.pcoded-navbar.navbar-collapsed:hover~.pcoded-header,
.pcoded-navbar.navbar-collapsed:hover~.pcoded-main-container {
  margin-left: 80px;
}

.pcoded-navbar.mob-open~.pcoded-header:before,
.pcoded-navbar.mob-open~.pcoded-main-container:before,
.pcoded-navbar.navbar-collapsed:hover~.pcoded-header:before,
.pcoded-navbar.navbar-collapsed:hover~.pcoded-main-container:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* menu [ vartical ] css end */
/* menu[ horizontal ] css start */
.pcoded-navbar.theme-horizontal {
  display: block;
  height: 70px;
  width: 100%;
  z-index: 1023;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: fixed;
  top: 70px;
}

.pcoded-navbar.theme-horizontal .pcoded-badge {
  display: none;
}

.pcoded-navbar.theme-horizontal.top-nav-collapse {
  top: -70px;
}

.pcoded-navbar.theme-horizontal.default,
.pcoded-navbar.theme-horizontal.default.top-nav-collapse {
  top: 70px;
}

.pcoded-navbar.theme-horizontal .header-logo {
  display: none;
}

.pcoded-navbar.theme-horizontal .sidenav-horizontal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-menu-caption {
  display: none;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li {
  display: inline-block;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li>a {
  margin: 0;
  padding: 8px 15px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li>a>.pcoded-mtext {
  position: relative;
  top: 0;
  margin-right: 5px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li>a:after {
  position: relative;
  top: 0;
  right: 0;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li:last-child>a {
  margin-right: 70px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.active a,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger a,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li:hover a {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background: transparent;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  content: "\6d";
  position: absolute;
  bottom: -34px;
  left: 0;
  font-family: "pct";
  z-index: 1001;
  font-size: 50px;
  line-height: 1;
  padding-left: calc(50% - 25px);
  color: #3f4d67;
  text-shadow: 0 3px 4px rgba(69, 90, 100, 0.05);
  width: 100%;
  height: 40px;
  -webkit-transform: scaleX(1.2);
  transform: scaleX(1.2);
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>.pcoded-submenu,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>.pcoded-submenu {
  margin-top: 30px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger:after {
  content: "";
  background-color: #1dc4e9;
  z-index: 1027;
  position: absolute;
  left: 19px;
  top: auto;
  bottom: 5px;
  width: 23px;
  height: 2px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.edge>.pcoded-submenu {
  left: auto;
  right: 0;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu {
  position: relative;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  position: absolute;
  min-width: 250px;
  display: block;
  z-index: 1;
  top: 100%;
  list-style: outside none none;
  margin: 0;
  border-radius: 4px;
  padding: 15px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18);
  box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18);
  background: #fff;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu a {
  color: #3f4d67;
  padding: 10px 20px 10px 30px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu a:before {
  left: 5px;
  top: 19px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu li.active>a,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu li.pcoded-trigger>a,
.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu li:hover>a {
  color: #04a9f5;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-submenu {
  position: absolute;
  min-width: 250px;
  z-index: 1;
  left: calc(100% + 10px);
  top: -10px;
  margin: 0 0 0 20px;
  border-radius: 4px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-submenu:before {
  content: "\6a";
  position: absolute;
  top: 8px;
  left: -31px;
  font-family: "pct";
  z-index: 1001;
  font-size: 50px;
  line-height: 1;
  color: #fff;
  width: 40px;
  height: 100%;
  text-shadow: -8px 0 13px rgba(62, 57, 107, 0.08);
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-submenu a {
  color: #3f4d67;
  padding: 10px 20px 10px 30px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-submenu a:before {
  left: 5px;
  top: 19px;
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-hasmenu.edge .pcoded-submenu {
  left: auto;
  margin: 0 20px 0 0;
  right: calc(100% + 10px);
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu .pcoded-submenu .pcoded-hasmenu.edge .pcoded-submenu:before {
  content: '\6b';
  left: auto;
  right: -21px;
  text-shadow: 8px 0 13px rgba(62, 57, 107, 0.08);
}

.pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu.pcoded-trigger>.pcoded-submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.pcoded-navbar.theme-horizontal .navbar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pcoded-navbar.theme-horizontal~.pcoded-header {
  position: fixed;
  top: 0;
  margin-left: 0;
  width: 100%;
}

.pcoded-navbar.theme-horizontal~.pcoded-header .b-title {
  color: #3f4d67;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*='header-'] .b-title {
  color: #fff;
}

.pcoded-navbar.theme-horizontal~.pcoded-header .m-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 15px;
}

.pcoded-navbar.theme-horizontal~.pcoded-header .m-header .logo-main,
.pcoded-navbar.theme-horizontal~.pcoded-header .m-header .logo-thumb {
  display: none;
}

.pcoded-navbar.theme-horizontal~.pcoded-header .m-header .logo-dark {
  display: inline-block;
}

.pcoded-navbar.theme-horizontal~.pcoded-header .mobile-menu {
  display: none;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .m-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 15px;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .m-header .logo-dark,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .m-header .logo-thumb {
  display: none;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .m-header .logo-main {
  display: inline-block;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu {
  color: #888;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu a {
  color: #888;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li>a {
  color: #888;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li.active,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:active,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:focus,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li.active>a,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:active>a,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:focus>a,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] a,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] a:hover,
.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] dropdown-toggle:hover {
  color: #fff;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown .notification .noti-body li.notification:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #04a9f5;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-navbar.theme-horizontal~.pcoded-header[class*="header-"] .dropdown.drp-user.show:before {
  color: #04a9f5;
}

.pcoded-navbar.theme-horizontal~.pcoded-main-container {
  margin-top: 140px;
  margin-left: 0;
}

/* menu [ horizontal ] css end */
/* main content start */
.pcoded-content {
  position: relative;
  display: block;
  padding: 22px 50px 36px;
  z-index: 0;
}

.pcoded-main-container {
  position: relative;
  margin: 0 auto;
  display: block;
  clear: both;
  float: unset;
  right: 0;
  margin-left: 264px;
  min-height: 100vh;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

@media only screen and (max-width:1700px) {
  .pcoded-content {
    padding: 36px 50px;
  }
}

@media only screen and (max-width:1360px) {
  .pcoded-content {
    padding: 30px 15px;
  }

  .fx-monitor-page .table thead th,
  .fx-monitor-page .table tbody td {
    padding: .2rem 1rem !important;
  }
}

/* main content end*/
/* ==========================    Rsponsive Menu  start   ====================== */
@media only screen and (max-width: 991px) {
  .pcoded-header {
    background: #3f4d67;
    color: #fff;
  }

  .pcoded-header .input-group-text,
  .pcoded-header a,
  .pcoded-header dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header .input-group-text:hover,
  .pcoded-header a:hover,
  .pcoded-header dropdown-toggle:hover {
    color: #04a9f5;
  }

  .pcoded-header #mobile-header {
    display: none;
    right: 20px;
  }

  .pcoded-header>.collapse:not(.show) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  }

  .pcoded-header .dropdown-menu,
  .pcoded-header .dropdown-menu a,
  .pcoded-header .search-close .input-group-text {
    color: #3f4d67;
  }

  .pcoded-header .m-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 70px;
  }

  .pcoded-header .m-header .b-brand {
    margin-left: 20px;
  }

  .pcoded-header .m-header .mobile-menu {
    right: 20px;
  }

  .pcoded-header .full-screen {
    display: none;
  }

  .pcoded-header .navbar-nav>li:last-child {
    padding-right: 60px;
  }

  .pcoded-navbar {
    margin-left: -264px;
    position: absolute;
    height: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .pcoded-navbar .scroll-div.navbar-content {
    height: 100%;
  }

  .pcoded-navbar~.pcoded-header,
  .pcoded-navbar~.pcoded-main-container {
    margin-left: 0;
  }

  .pcoded-navbar~.pcoded-header {
    width: 100%;
  }

  .pcoded-navbar .navbar-brand {
    display: none;
  }

  .pcoded-navbar.mob-open {
    margin-left: 0;
  }

  .pcoded-navbar.mob-open~.pcoded-header,
  .pcoded-navbar.mob-open~.pcoded-main-container {
    margin-left: 0;
  }
}

@media only screen and (max-width: 575px) {
  .pcoded-header .navbar-nav>li:first-child {
    padding-left: 0;
  }

  .pcoded-header .navbar-nav>li:last-child {
    padding-right: 20px;
  }

  .pcoded-header .navbar-nav.mr-auto li {
    display: none;
  }

  .pcoded-header .navbar-nav.mr-auto li.nav-item:not(.dropdown) {
    display: block;
    padding-right: 0;
  }

  .pcoded-header .navbar-nav.mr-auto li.nav-item:not(.dropdown) .search-close {
    display: none;
  }

  .pcoded-header .dropdown.show {
    position: static;
  }

  .pcoded-header .dropdown.show a:after {
    display: none;
  }

  .pcoded-header .dropdown.show:before {
    display: none;
  }

  .pcoded-header .dropdown .notification {
    width: 100%;
  }

  .pcoded-header .dropdown .dropdown-menu {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }

  .header-chat.open,
  .header-user-list.open {
    width: 280px;
  }

  .pcoded-content {
    padding: 30px 15px;
  }

  .card {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .pcoded-navbar .header-logo {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed .header-logo img {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed .pcoded-menu-caption>label {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li>a>.pcoded-mtext {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-hasmenu>a:after {
    -webkit-transition: none;
    transition: none;
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }

  .pcoded-navbar.navbar-collapsed .pcoded-badge {
    -webkit-transition: none;
    transition: none;
  }

  .pcoded-navbar.navbar-collapsed:hover .pcoded-badge {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

/* responsive horizontal menu */
@media only screen and (max-width: 992px) {
  .pcoded-navbar.theme-horizontal {
    margin-left: 0;
  }

  .pcoded-navbar.theme-horizontal~.pcoded-header .b-title {
    color: #fff;
  }

  .pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu.pcoded-trigger>.pcoded-submenu .pcoded-trigger>.pcoded-submenu,
  .pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu.pcoded-trigger>.pcoded-submenu .pcoded-trigger.edge>.pcoded-submenu {
    position: relative;
    left: 0;
    min-width: 100%;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu.pcoded-trigger>.pcoded-submenu .pcoded-trigger>.pcoded-submenu:before,
  .pcoded-navbar.theme-horizontal .pcoded-inner-navbar .pcoded-hasmenu.pcoded-trigger>.pcoded-submenu .pcoded-trigger.edge>.pcoded-submenu:before {
    display: none;
  }
}

/* ==========================    Rsponsive Menu  end   ====================== */
/* ******************************************************************************* */
/* * Horizontal */
.theme-horizontal .sidenav-horizontal-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  width: 0;
}

.sidenav:not(.sidenav-no-animation) .theme-horizontal .sidenav-horizontal-wrapper .sidenav-inner {
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}

.theme-horizontal .sidenav-horizontal-next,
.theme-horizontal .sidenav-horizontal-prev {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 2.25rem;
  background-color: #3f4d67;
  z-index: 9;
}

.theme-horizontal .sidenav-horizontal-next::after,
.theme-horizontal .sidenav-horizontal-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid;
  border-top: 0;
}

.theme-horizontal .sidenav-horizontal-next.disabled,
.theme-horizontal .sidenav-horizontal-prev.disabled {
  cursor: default !important;
  opacity: 0;
}

.theme-horizontal .sidenav-horizontal-prev::after {
  border-right: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.theme-horizontal .sidenav-horizontal-next::after {
  border-left: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@-webkit-keyframes sidenavDropdownShow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes sidenavDropdownShow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.menu-styler {
  z-index: 1029;
  position: relative;
  color: #888;
}

.menu-styler h5,
.menu-styler h6 {
  color: #111;
  font-weight: 400;
}

.menu-styler hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-styler .style-toggler>a {
  position: fixed;
  right: 0;
  top: 30vh;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-styler .style-toggler>a:before {
  content: "\62";
  top: 0;
  font-size: 120px;
  position: absolute;
  right: -45px;
  font-family: "pct";
  z-index: 1001;
  line-height: 0;
  color: #04a9f5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-shadow: 1px 0 8px rgba(4, 169, 245, 0.9), 6px 0 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -44px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu-styler .style-toggler>a:after {
  content: "\e8c3";
  top: -7px;
  font-size: 18px;
  position: absolute;
  right: 4px;
  font-family: "feather";
  z-index: 1029;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-animation: anim-rotate 1.5s linear infinite;
  animation: anim-rotate 1.5s linear infinite;
}

@media all and (-ms-high-contrast: none) {
  .menu-styler .style-toggler>a:after {
    line-height: 0.5;
  }
}

.menu-styler.open .style-toggler>a {
  right: 400px;
}

.menu-styler.open .style-toggler>a:after {
  content: "\e847";
  top: -7px;
  font-size: 18px;
  -webkit-animation: anim-rotate 0s linear infinite;
  animation: anim-rotate 0s linear infinite;
}

.menu-styler.open .style-block {
  right: 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.menu-styler .style-block {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 1030;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 25px 20px 20px;
}

.menu-styler .mst-scroll {
  height: calc(100vh - 175px);
  background-color: rgba(4, 169, 245, 0.03);
  padding: 0 15px;
}

.menu-styler label {
  margin-bottom: 3px;
}

.menu-styler .switch input[type=checkbox]+.cr {
  top: 8px;
}

.menu-styler .radio input[type=radio]+.cr {
  margin-right: 10px;
}

.menu-styler .radio input[type=radio]+.cr:after,
.menu-styler .radio input[type=radio]+.cr:before {
  margin-right: 3px;
}

.menu-styler h6 {
  position: relative;
  margin: 10px 0 15px;
}

.menu-styler h6:after {
  content: "";
  background-color: #04a9f5;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
}

.menu-styler .nav-pills {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.menu-styler .nav-pills li {
  width: calc(100% / 3);
}

.menu-styler .tab-content {
  padding: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(4, 169, 245, 0.03);
  border-top: 2px solid #04a9f5;
}

@media only screen and (max-width: 992px) {
  .menu-styler {
    display: none;
  }
}

.lay-customizer .theme-color,
.theme-color {
  display: block;
  position: relative;
  padding: 5px 5px 0;
  margin-bottom: 10px;
}

.lay-customizer .theme-color>a,
.theme-color>a {
  position: relative;
  width: 45px;
  height: 30px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 8px;
  background: #f4f7fa;
  overflow: hidden;
  -webkit-box-shadow: 0.4px 0.9px 3px 0 rgba(0, 0, 0, 0.33);
  box-shadow: 0.4px 0.9px 3px 0 rgba(0, 0, 0, 0.33);
}

.lay-customizer .theme-color>a span,
.theme-color>a span {
  width: 100%;
  position: absolute;
}

.lay-customizer .theme-color>a span:after,
.lay-customizer .theme-color>a span:before,
.theme-color>a span:after,
.theme-color>a span:before {
  content: "";
  height: 100%;
  position: absolute;
}

.lay-customizer .theme-color>a span:before,
.theme-color>a span:before {
  width: 30%;
  left: 0;
  background: #3f4d67;
}

.lay-customizer .theme-color>a span:after,
.theme-color>a span:after {
  width: 70%;
  right: 0;
  background: #f4f7fa;
}

.lay-customizer .theme-color>a>span:nth-child(1),
.theme-color>a>span:nth-child(1) {
  height: 30%;
  top: 0;
}

.lay-customizer .theme-color>a>span:nth-child(2),
.theme-color>a>span:nth-child(2) {
  height: 75%;
  bottom: 0;
}

.lay-customizer .theme-color>a.active,
.theme-color>a.active {
  -webkit-box-shadow: 0 0 0 3px #04a9f5;
  box-shadow: 0 0 0 3px #04a9f5;
}

.lay-customizer .theme-color>a.active:before,
.theme-color>a.active:before {
  content: "\e8dc";
  top: -1px;
  font-size: 20px;
  position: absolute;
  left: 12px;
  font-family: "feather";
  z-index: 1001;
  color: #04a9f5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-shadow: 0 1px 3px rgba(4, 169, 245, 0.9), 0 3px 8px rgba(0, 0, 0, 0.1);
}

.lay-customizer .theme-color>a.active:after,
.theme-color>a.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

.lay-customizer .theme-color>a[data-value="menu-light"] span:before,
.theme-color>a[data-value="menu-light"] span:before {
  background: #fff;
}

.lay-customizer .theme-color>a[data-value="dark"] span:after,
.theme-color>a[data-value="dark"] span:after {
  background: #101011;
}

.lay-customizer .theme-color>a[data-value="reset"],
.theme-color>a[data-value="reset"] {
  background: #f44236;
  color: #fff;
  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;
  top: -10px;
  width: 135px;
}

.lay-customizer .theme-color.small>a,
.theme-color.small>a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.lay-customizer .theme-color.small>a:before,
.theme-color.small>a:before {
  font-size: 15px;
  left: 5px;
  top: 1px;
}

.lay-customizer .theme-color.small>a>span,
.theme-color.small>a>span {
  display: none;
}

.lay-customizer .theme-color.header-color>a[data-value="header-blue"]>span:nth-child(1):after,
.theme-color.header-color>a[data-value="header-blue"]>span:nth-child(1):after {
  background: #04a9f5;
}

.lay-customizer .theme-color.header-color.small>a[data-value="header-blue"],
.theme-color.header-color.small>a[data-value="header-blue"] {
  background: #04a9f5;
}

.lay-customizer .theme-color.header-color>a[data-value="header-red"]>span:nth-child(1):after,
.theme-color.header-color>a[data-value="header-red"]>span:nth-child(1):after {
  background: #ff5252;
}

.lay-customizer .theme-color.header-color.small>a[data-value="header-red"],
.theme-color.header-color.small>a[data-value="header-red"] {
  background: #ff5252;
}

.lay-customizer .theme-color.header-color>a[data-value="header-purple"]>span:nth-child(1):after,
.theme-color.header-color>a[data-value="header-purple"]>span:nth-child(1):after {
  background: #9575CD;
}

.lay-customizer .theme-color.header-color.small>a[data-value="header-purple"],
.theme-color.header-color.small>a[data-value="header-purple"] {
  background: #9575CD;
}

.lay-customizer .theme-color.header-color>a[data-value="header-lightblue"]>span:nth-child(1):after,
.theme-color.header-color>a[data-value="header-lightblue"]>span:nth-child(1):after {
  background: #23b7e5;
}

.lay-customizer .theme-color.header-color.small>a[data-value="header-lightblue"],
.theme-color.header-color.small>a[data-value="header-lightblue"] {
  background: #23b7e5;
}

.lay-customizer .theme-color.header-color>a[data-value="header-dark"]>span:nth-child(1):after,
.theme-color.header-color>a[data-value="header-dark"]>span:nth-child(1):after {
  background: #323437;
}

.lay-customizer .theme-color.header-color.small>a[data-value="header-dark"],
.theme-color.header-color.small>a[data-value="header-dark"] {
  background: #323437;
}

.lay-customizer .theme-color.navbar-color>a[data-value="navbar-blue"]>span:before,
.theme-color.navbar-color>a[data-value="navbar-blue"]>span:before {
  background: #04a9f5;
}

.lay-customizer .theme-color.navbar-color>a[data-value="navbar-red"]>span:before,
.theme-color.navbar-color>a[data-value="navbar-red"]>span:before {
  background: #ff5252;
}

.lay-customizer .theme-color.navbar-color>a[data-value="navbar-purple"]>span:before,
.theme-color.navbar-color>a[data-value="navbar-purple"]>span:before {
  background: #9575CD;
}

.lay-customizer .theme-color.navbar-color>a[data-value="navbar-lightblue"]>span:before,
.theme-color.navbar-color>a[data-value="navbar-lightblue"]>span:before {
  background: #23b7e5;
}

.lay-customizer .theme-color.navbar-color>a[data-value="navbar-dark"]>span:before,
.theme-color.navbar-color>a[data-value="navbar-dark"]>span:before {
  background: #323437;
}

.lay-customizer .theme-color.brand-color>a[data-value="brand-blue"]>span:nth-child(1):before,
.theme-color.brand-color>a[data-value="brand-blue"]>span:nth-child(1):before {
  background: #04a9f5;
}

.lay-customizer .theme-color.brand-color.small>a[data-value="brand-blue"],
.theme-color.brand-color.small>a[data-value="brand-blue"] {
  background: #04a9f5;
}

.lay-customizer .theme-color.brand-color>a[data-value="brand-red"]>span:nth-child(1):before,
.theme-color.brand-color>a[data-value="brand-red"]>span:nth-child(1):before {
  background: #ff5252;
}

.lay-customizer .theme-color.brand-color.small>a[data-value="brand-red"],
.theme-color.brand-color.small>a[data-value="brand-red"] {
  background: #ff5252;
}

.lay-customizer .theme-color.brand-color>a[data-value="brand-purple"]>span:nth-child(1):before,
.theme-color.brand-color>a[data-value="brand-purple"]>span:nth-child(1):before {
  background: #9575CD;
}

.lay-customizer .theme-color.brand-color.small>a[data-value="brand-purple"],
.theme-color.brand-color.small>a[data-value="brand-purple"] {
  background: #9575CD;
}

.lay-customizer .theme-color.brand-color>a[data-value="brand-lightblue"]>span:nth-child(1):before,
.theme-color.brand-color>a[data-value="brand-lightblue"]>span:nth-child(1):before {
  background: #23b7e5;
}

.lay-customizer .theme-color.brand-color.small>a[data-value="brand-lightblue"],
.theme-color.brand-color.small>a[data-value="brand-lightblue"] {
  background: #23b7e5;
}

.lay-customizer .theme-color.brand-color>a[data-value="brand-dark"]>span:nth-child(1):before,
.theme-color.brand-color>a[data-value="brand-dark"]>span:nth-child(1):before {
  background: #323437;
}

.lay-customizer .theme-color.brand-color.small>a[data-value="brand-dark"],
.theme-color.brand-color.small>a[data-value="brand-dark"] {
  background: #323437;
}

.lay-customizer .theme-color.active-color>a[data-value="active-default"],
.theme-color.active-color>a[data-value="active-default"] {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.lay-customizer .theme-color.active-color>a[data-value="active-blue"],
.theme-color.active-color>a[data-value="active-blue"] {
  background: #04a9f5;
}

.lay-customizer .theme-color.active-color>a[data-value="active-red"],
.theme-color.active-color>a[data-value="active-red"] {
  background: #ff5252;
}

.lay-customizer .theme-color.active-color>a[data-value="active-purple"],
.theme-color.active-color>a[data-value="active-purple"] {
  background: #9575CD;
}

.lay-customizer .theme-color.active-color>a[data-value="active-lightblue"],
.theme-color.active-color>a[data-value="active-lightblue"] {
  background: #23b7e5;
}

.lay-customizer .theme-color.active-color>a[data-value="active-dark"],
.theme-color.active-color>a[data-value="active-dark"] {
  background: #323437;
}

.lay-customizer .theme-color.title-color>a[data-value="title-default"],
.theme-color.title-color>a[data-value="title-default"] {
  background: #fff;
}

.lay-customizer .theme-color.title-color>a[data-value="title-blue"],
.theme-color.title-color>a[data-value="title-blue"] {
  background: #04a9f5;
}

.lay-customizer .theme-color.title-color>a[data-value="title-red"],
.theme-color.title-color>a[data-value="title-red"] {
  background: #ff5252;
}

.lay-customizer .theme-color.title-color>a[data-value="title-purple"],
.theme-color.title-color>a[data-value="title-purple"] {
  background: #9575CD;
}

.lay-customizer .theme-color.title-color>a[data-value="title-lightblue"],
.theme-color.title-color>a[data-value="title-lightblue"] {
  background: #23b7e5;
}

.lay-customizer .theme-color.title-color>a[data-value="title-dark"],
.theme-color.title-color>a[data-value="title-dark"] {
  background: #323437;
}

.lay-customizer .theme-color.navbar-images>a,
.theme-color.navbar-images>a {
  height: 90px;
  background-size: cover;
  background-position: center center;
}

.lay-customizer .theme-color.navbar-images>a span,
.theme-color.navbar-images>a span {
  display: none;
}

.lay-customizer .theme-color.navbar-images>a.active:before,
.theme-color.navbar-images>a.active:before {
  top: 35px;
  content: "\e87c";
}

.lay-customizer .theme-color.navbar-images>a[data-value="navbar-image-1"],
.theme-color.navbar-images>a[data-value="navbar-image-1"] {
  background-image: url("../images/nav-bg/navbar-img-1.jpg");
}

.lay-customizer .theme-color.navbar-images>a[data-value="navbar-image-2"],
.theme-color.navbar-images>a[data-value="navbar-image-2"] {
  background-image: url("../images/nav-bg/navbar-img-2.jpg");
}

.lay-customizer .theme-color.navbar-images>a[data-value="navbar-image-3"],
.theme-color.navbar-images>a[data-value="navbar-image-3"] {
  background-image: url("../images/nav-bg/navbar-img-3.jpg");
}

.lay-customizer .theme-color.navbar-images>a[data-value="navbar-image-4"],
.theme-color.navbar-images>a[data-value="navbar-image-4"] {
  background-image: url("../images/nav-bg/navbar-img-4.jpg");
}

.lay-customizer .theme-color.navbar-images>a[data-value="navbar-image-5"],
.theme-color.navbar-images>a[data-value="navbar-image-5"] {
  background-image: url("../images/nav-bg/navbar-img-5.jpg");
}

.lay-customizer .theme-color.bg-images>a,
.theme-color.bg-images>a {
  width: 95px;
  height: 80px;
  border-radius: 2px;
  background-size: cover;
  background-position: center center;
}

.lay-customizer .theme-color.bg-images>a span,
.theme-color.bg-images>a span {
  display: none;
}

.lay-customizer .theme-color.bg-images>a.active:before,
.theme-color.bg-images>a.active:before {
  top: 35px;
  content: "\e87c";
}

.lay-customizer .theme-color.prelayout-color>a,
.theme-color.prelayout-color>a {
  margin-bottom: 5px;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l2"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l2"]>span:nth-child(1):before {
  background: #3f4d67;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l2"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l2"]>span:nth-child(2):before {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l2-2"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l2-2"]>span:nth-child(1):before {
  background: #3f4d67;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l2-2"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l2-2"]>span:nth-child(2):before {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l3"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l3"]>span:nth-child(1):before {
  background: #3f4d67;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l3"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l3"]>span:nth-child(2):before {
  background: #04a9f5;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l4"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l4"]>span:nth-child(1):before {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l4"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l4"]>span:nth-child(2):before {
  background: #212224;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l4-2"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l4-2"]>span:nth-child(1):before {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l4-2"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l4-2"]>span:nth-child(2):before {
  background: #212224;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1),
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1) {
  height: 40%;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1):after,
.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1):after,
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(1):before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #04a9f5), color-stop(0%, #fff));
  background: linear-gradient(#04a9f5 50%, #fff 0%);
  -webkit-box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
  box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
  z-index: 1;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2),
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2) {
  height: 60%;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2):after,
.lay-customizer .theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2):after,
.theme-color.prelayout-color>a[data-value="l5-h"]>span:nth-child(2):before {
  background: #f4f7fa;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(1):after,
.lay-customizer .theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(1):after,
.theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(1):before {
  background: #23b7e5;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l-lite"]>span:nth-child(2):before {
  background: #fff;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1),
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1) {
  height: 50%;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1):after,
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1):after {
  background: #23b7e5;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(1):before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #23b7e5), color-stop(0%, #fff));
  background: linear-gradient(#23b7e5 50%, #fff 0%);
  z-index: 1;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2),
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2) {
  height: 50%;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2):after,
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2):after {
  background: #f4f7fa;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l6"]>span:nth-child(2):before {
  background: #fff;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(1):after,
.theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(1):after {
  background: #23b7e5;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(1):before,
.theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(1):before {
  background: #23b7e5;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(2):after,
.theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(2):after {
  background: #f4f7fa;
}

.lay-customizer .theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(2):before,
.theme-color.prelayout-color>a[data-value="l8"]>span:nth-child(2):before {
  background: linear-gradient(#fff 0px, #fff 5px, rgba(35, 183, 229, 0.5) 5px, rgba(35, 183, 229, 0.5) 5px, rgba(35, 183, 229, 0.5) 8px, #fff 8px, #fff);
}

/* ===================================================================================
 ==========================    Diffrent Layout Styles Start     ====================
 ===================================================================================
 ====== [ light menu style start ] ======== */
.pcoded-navbar.menu-light {
  background-color: #fff;
  color: #3f4d67;
  -webkit-box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
  box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
}

.pcoded-navbar.menu-light .header-logo {
  background-color: #3f4d67;
}

.pcoded-navbar.menu-light .header-logo .logo-dark {
  display: none;
}

.pcoded-navbar.menu-light .header-logo .logo-main {
  display: block;
}

.pcoded-navbar.menu-light .sidenav-horizontal-next,
.pcoded-navbar.menu-light .sidenav-horizontal-prev {
  background: #fff;
}

.pcoded-navbar.menu-light .mobile-menu span {
  background-color: #a9b7d0;
}

.pcoded-navbar.menu-light .mobile-menu span:after,
.pcoded-navbar.menu-light .mobile-menu span:before {
  background-color: #a9b7d0;
}

.pcoded-navbar.menu-light .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.menu-light .pcoded-submenu {
  background: #fbfbfb;
}

.pcoded-navbar.menu-light a {
  color: #3f4d67;
}

.pcoded-navbar.menu-light.navbar-collapsed .pcoded-menu-caption:after {
  background: rgba(0, 0, 0, 0.1);
}

.pcoded-navbar.menu-light.navbar-collapsed:hover .pcoded-menu-caption:after {
  background: transparent;
}

.pcoded-navbar.menu-light .pcoded-menu-caption {
  color: #3f4d67;
}

.pcoded-navbar.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.menu-light.theme-horizontal .pcoded-inner-navbar>li.active a,
.pcoded-navbar.menu-light.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger a,
.pcoded-navbar.menu-light.theme-horizontal .pcoded-inner-navbar>li:hover a {
  color: #3f4d67;
  background: transparent;
}

.pcoded-navbar.menu-light.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.menu-light.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #fff;
}

/* ====== [ light menu style end ] ======== */
/* ====== [ Menu icon start ] ======== */
.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(1)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(2)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(3)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(4)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(5)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(6)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(7)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(8)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(9)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(10)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(11)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(12)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(13)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(14)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(15)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(16)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(17)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(18)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(19)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(20)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(21)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(22)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(23)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(24)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(25)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(26)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(27)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(28)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(29)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(30)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(31)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(32)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(33)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(34)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(35)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(36)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(37)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(38)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(39)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(40)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(41)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(42)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(43)>a>.pcoded-micon {
  color: #04a9f5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(44)>a>.pcoded-micon {
  color: #ff5252;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(45)>a>.pcoded-micon {
  color: #01a9ac;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(46)>a>.pcoded-micon {
  color: #9575CD;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(47)>a>.pcoded-micon {
  color: #23b7e5;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li:nth-child(48)>a>.pcoded-micon {
  color: #f4c22b;
}

.pcoded-navbar.icon-colored .pcoded-inner-navbar>li.active>a>.pcoded-micon,
.pcoded-navbar.icon-colored .pcoded-inner-navbar>li.pcoded-trigger>a>.pcoded-micon {
  color: #fff;
}

.pcoded-navbar.icon-colored.menu-light .pcoded-inner-navbar>li.active>a>.pcoded-micon,
.pcoded-navbar.icon-colored.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a>.pcoded-micon {
  color: #3f4d67;
}

/* ====== [ Menu icon end ] ======== */
/* ====== [ Header color start ] ======== */
.theme-horizontal~.pcoded-header {
  background: #fff;
  -webkit-box-shadow: 0 1px 20px 0 rgba(63, 77, 103, 0.15);
  box-shadow: 0 1px 20px 0 rgba(63, 77, 103, 0.15);
}

@media only screen and (max-width: 991px) {
  .theme-horizontal~.pcoded-header {
    background: #3f4d67;
  }

  .theme-horizontal~.pcoded-header .horizontal-dasktop {
    display: none;
  }

  .theme-horizontal~.pcoded-header .horizontal-mobile {
    display: inline-block;
  }
}

@media only screen and (max-width: 992px) {
  .theme-horizontal-dis~.pcoded-header .horizontal-dasktop {
    display: none;
  }

  .theme-horizontal-dis~.pcoded-header .horizontal-mobile {
    display: inline-block;
  }
}

.pcoded-header[class*="header-"] {
  -webkit-box-shadow: 0 3px 10px 0 rgba(65, 72, 78, 0.02);
  box-shadow: 0 3px 10px 0 rgba(65, 72, 78, 0.02);
}

.pcoded-header.header-blue {
  background: #04a9f5;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-blue .profile-notification li>a {
  color: #888;
}

.pcoded-header.header-blue .profile-notification li.active,
.pcoded-header.header-blue .profile-notification li:active,
.pcoded-header.header-blue .profile-notification li:focus,
.pcoded-header.header-blue .profile-notification li:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-header.header-blue .profile-notification li.active>a,
.pcoded-header.header-blue .profile-notification li:active>a,
.pcoded-header.header-blue .profile-notification li:focus>a,
.pcoded-header.header-blue .profile-notification li:hover>a {
  background: transparent;
}

.pcoded-header.header-blue .dropdown-menu {
  color: #888;
}

.pcoded-header.header-blue .dropdown-menu a {
  color: #888;
}

.pcoded-header.header-blue .dropdown-menu>li>a {
  color: #888;
}

.pcoded-header.header-blue .dropdown-menu>li.active,
.pcoded-header.header-blue .dropdown-menu>li:active,
.pcoded-header.header-blue .dropdown-menu>li:focus,
.pcoded-header.header-blue .dropdown-menu>li:hover {
  background: rgba(4, 169, 245, 0.1);
  color: #888;
}

.pcoded-header.header-blue .dropdown-menu>li.active>a,
.pcoded-header.header-blue .dropdown-menu>li:active>a,
.pcoded-header.header-blue .dropdown-menu>li:focus>a,
.pcoded-header.header-blue .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-header.header-blue .input-group .input-group-text,
.pcoded-header.header-blue a,
.pcoded-header.header-blue dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-blue .input-group .input-group-text:hover,
.pcoded-header.header-blue a:hover,
.pcoded-header.header-blue dropdown-toggle:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .pcoded-header.header-blue .input-group .input-group-text,
  .pcoded-header.header-blue a,
  .pcoded-header.header-blue dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header.header-blue .input-group .input-group-text:hover,
  .pcoded-header.header-blue a:hover,
  .pcoded-header.header-blue dropdown-toggle:hover {
    color: #2c3547;
  }
}

.pcoded-header.header-blue .main-search .search-close>.input-group-text {
  color: #04a9f5;
}

.pcoded-header.header-blue .main-search.open .input-group .search-btn {
  background: #04a9f5;
  border-color: #04a9f5;
}

.pcoded-header.header-blue .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header.header-blue .dropdown .notification .noti-body li.notification:hover {
  background: rgba(4, 169, 245, 0.1);
}

.pcoded-header.header-blue .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #04a9f5;
}

.pcoded-header.header-blue .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-header.header-blue .dropdown.drp-user.show:before {
  color: #04a9f5;
}

.pcoded-header.header-blue .b-bg {
  background: #fff;
}

.pcoded-header.header-blue .b-bg i {
  color: #04a9f5;
  background-image: #04a9f5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
}

.pcoded-header.header-red {
  background: #ff5252;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-red .profile-notification li>a {
  color: #888;
}

.pcoded-header.header-red .profile-notification li.active,
.pcoded-header.header-red .profile-notification li:active,
.pcoded-header.header-red .profile-notification li:focus,
.pcoded-header.header-red .profile-notification li:hover {
  background: rgba(255, 82, 82, 0.1);
}

.pcoded-header.header-red .profile-notification li.active>a,
.pcoded-header.header-red .profile-notification li:active>a,
.pcoded-header.header-red .profile-notification li:focus>a,
.pcoded-header.header-red .profile-notification li:hover>a {
  background: transparent;
}

.pcoded-header.header-red .dropdown-menu {
  color: #888;
}

.pcoded-header.header-red .dropdown-menu a {
  color: #888;
}

.pcoded-header.header-red .dropdown-menu>li>a {
  color: #888;
}

.pcoded-header.header-red .dropdown-menu>li.active,
.pcoded-header.header-red .dropdown-menu>li:active,
.pcoded-header.header-red .dropdown-menu>li:focus,
.pcoded-header.header-red .dropdown-menu>li:hover {
  background: rgba(255, 82, 82, 0.1);
  color: #888;
}

.pcoded-header.header-red .dropdown-menu>li.active>a,
.pcoded-header.header-red .dropdown-menu>li:active>a,
.pcoded-header.header-red .dropdown-menu>li:focus>a,
.pcoded-header.header-red .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-header.header-red .input-group .input-group-text,
.pcoded-header.header-red a,
.pcoded-header.header-red dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-red .input-group .input-group-text:hover,
.pcoded-header.header-red a:hover,
.pcoded-header.header-red dropdown-toggle:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .pcoded-header.header-red .input-group .input-group-text,
  .pcoded-header.header-red a,
  .pcoded-header.header-red dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header.header-red .input-group .input-group-text:hover,
  .pcoded-header.header-red a:hover,
  .pcoded-header.header-red dropdown-toggle:hover {
    color: #2c3547;
  }
}

.pcoded-header.header-red .main-search .search-close>.input-group-text {
  color: #ff5252;
}

.pcoded-header.header-red .main-search.open .input-group .search-btn {
  background: #ff5252;
  border-color: #ff5252;
}

.pcoded-header.header-red .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header.header-red .dropdown .notification .noti-body li.notification:hover {
  background: rgba(255, 82, 82, 0.1);
}

.pcoded-header.header-red .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #ff5252;
}

.pcoded-header.header-red .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-header.header-red .dropdown.drp-user.show:before {
  color: #ff5252;
}

.pcoded-header.header-red .b-bg {
  background: #fff;
}

.pcoded-header.header-red .b-bg i {
  color: #ff5252;
  background-image: #ff5252;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
}

.pcoded-header.header-purple {
  background: #9575CD;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-purple .profile-notification li>a {
  color: #888;
}

.pcoded-header.header-purple .profile-notification li.active,
.pcoded-header.header-purple .profile-notification li:active,
.pcoded-header.header-purple .profile-notification li:focus,
.pcoded-header.header-purple .profile-notification li:hover {
  background: rgba(149, 117, 205, 0.1);
}

.pcoded-header.header-purple .profile-notification li.active>a,
.pcoded-header.header-purple .profile-notification li:active>a,
.pcoded-header.header-purple .profile-notification li:focus>a,
.pcoded-header.header-purple .profile-notification li:hover>a {
  background: transparent;
}

.pcoded-header.header-purple .dropdown-menu {
  color: #888;
}

.pcoded-header.header-purple .dropdown-menu a {
  color: #888;
}

.pcoded-header.header-purple .dropdown-menu>li>a {
  color: #888;
}

.pcoded-header.header-purple .dropdown-menu>li.active,
.pcoded-header.header-purple .dropdown-menu>li:active,
.pcoded-header.header-purple .dropdown-menu>li:focus,
.pcoded-header.header-purple .dropdown-menu>li:hover {
  background: rgba(149, 117, 205, 0.1);
  color: #888;
}

.pcoded-header.header-purple .dropdown-menu>li.active>a,
.pcoded-header.header-purple .dropdown-menu>li:active>a,
.pcoded-header.header-purple .dropdown-menu>li:focus>a,
.pcoded-header.header-purple .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-header.header-purple .input-group .input-group-text,
.pcoded-header.header-purple a,
.pcoded-header.header-purple dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-purple .input-group .input-group-text:hover,
.pcoded-header.header-purple a:hover,
.pcoded-header.header-purple dropdown-toggle:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .pcoded-header.header-purple .input-group .input-group-text,
  .pcoded-header.header-purple a,
  .pcoded-header.header-purple dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header.header-purple .input-group .input-group-text:hover,
  .pcoded-header.header-purple a:hover,
  .pcoded-header.header-purple dropdown-toggle:hover {
    color: #2c3547;
  }
}

.pcoded-header.header-purple .main-search .search-close>.input-group-text {
  color: #9575CD;
}

.pcoded-header.header-purple .main-search.open .input-group .search-btn {
  background: #9575CD;
  border-color: #9575CD;
}

.pcoded-header.header-purple .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header.header-purple .dropdown .notification .noti-body li.notification:hover {
  background: rgba(149, 117, 205, 0.1);
}

.pcoded-header.header-purple .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #9575CD;
}

.pcoded-header.header-purple .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-header.header-purple .dropdown.drp-user.show:before {
  color: #9575CD;
}

.pcoded-header.header-purple .b-bg {
  background: #fff;
}

.pcoded-header.header-purple .b-bg i {
  color: #9575CD;
  background-image: #9575CD;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
}

.pcoded-header.header-lightblue {
  background: #23b7e5;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-lightblue .profile-notification li>a {
  color: #888;
}

.pcoded-header.header-lightblue .profile-notification li.active,
.pcoded-header.header-lightblue .profile-notification li:active,
.pcoded-header.header-lightblue .profile-notification li:focus,
.pcoded-header.header-lightblue .profile-notification li:hover {
  background: rgba(35, 183, 229, 0.1);
}

.pcoded-header.header-lightblue .profile-notification li.active>a,
.pcoded-header.header-lightblue .profile-notification li:active>a,
.pcoded-header.header-lightblue .profile-notification li:focus>a,
.pcoded-header.header-lightblue .profile-notification li:hover>a {
  background: transparent;
}

.pcoded-header.header-lightblue .dropdown-menu {
  color: #888;
}

.pcoded-header.header-lightblue .dropdown-menu a {
  color: #888;
}

.pcoded-header.header-lightblue .dropdown-menu>li>a {
  color: #888;
}

.pcoded-header.header-lightblue .dropdown-menu>li.active,
.pcoded-header.header-lightblue .dropdown-menu>li:active,
.pcoded-header.header-lightblue .dropdown-menu>li:focus,
.pcoded-header.header-lightblue .dropdown-menu>li:hover {
  background: rgba(35, 183, 229, 0.1);
  color: #888;
}

.pcoded-header.header-lightblue .dropdown-menu>li.active>a,
.pcoded-header.header-lightblue .dropdown-menu>li:active>a,
.pcoded-header.header-lightblue .dropdown-menu>li:focus>a,
.pcoded-header.header-lightblue .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-header.header-lightblue .input-group .input-group-text,
.pcoded-header.header-lightblue a,
.pcoded-header.header-lightblue dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-lightblue .input-group .input-group-text:hover,
.pcoded-header.header-lightblue a:hover,
.pcoded-header.header-lightblue dropdown-toggle:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .pcoded-header.header-lightblue .input-group .input-group-text,
  .pcoded-header.header-lightblue a,
  .pcoded-header.header-lightblue dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header.header-lightblue .input-group .input-group-text:hover,
  .pcoded-header.header-lightblue a:hover,
  .pcoded-header.header-lightblue dropdown-toggle:hover {
    color: #2c3547;
  }
}

.pcoded-header.header-lightblue .main-search .search-close>.input-group-text {
  color: #23b7e5;
}

.pcoded-header.header-lightblue .main-search.open .input-group .search-btn {
  background: #23b7e5;
  border-color: #23b7e5;
}

.pcoded-header.header-lightblue .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header.header-lightblue .dropdown .notification .noti-body li.notification:hover {
  background: rgba(35, 183, 229, 0.1);
}

.pcoded-header.header-lightblue .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #23b7e5;
}

.pcoded-header.header-lightblue .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-header.header-lightblue .dropdown.drp-user.show:before {
  color: #23b7e5;
}

.pcoded-header.header-lightblue .b-bg {
  background: #fff;
}

.pcoded-header.header-lightblue .b-bg i {
  color: #23b7e5;
  background-image: #23b7e5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
}

.pcoded-header.header-dark {
  background: #323437;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-dark .profile-notification li>a {
  color: #888;
}

.pcoded-header.header-dark .profile-notification li.active,
.pcoded-header.header-dark .profile-notification li:active,
.pcoded-header.header-dark .profile-notification li:focus,
.pcoded-header.header-dark .profile-notification li:hover {
  background: rgba(50, 52, 55, 0.1);
}

.pcoded-header.header-dark .profile-notification li.active>a,
.pcoded-header.header-dark .profile-notification li:active>a,
.pcoded-header.header-dark .profile-notification li:focus>a,
.pcoded-header.header-dark .profile-notification li:hover>a {
  background: transparent;
}

.pcoded-header.header-dark .dropdown-menu {
  color: #888;
}

.pcoded-header.header-dark .dropdown-menu a {
  color: #888;
}

.pcoded-header.header-dark .dropdown-menu>li>a {
  color: #888;
}

.pcoded-header.header-dark .dropdown-menu>li.active,
.pcoded-header.header-dark .dropdown-menu>li:active,
.pcoded-header.header-dark .dropdown-menu>li:focus,
.pcoded-header.header-dark .dropdown-menu>li:hover {
  background: rgba(50, 52, 55, 0.1);
  color: #888;
}

.pcoded-header.header-dark .dropdown-menu>li.active>a,
.pcoded-header.header-dark .dropdown-menu>li:active>a,
.pcoded-header.header-dark .dropdown-menu>li:focus>a,
.pcoded-header.header-dark .dropdown-menu>li:hover>a {
  background: transparent;
}

.pcoded-header.header-dark .input-group .input-group-text,
.pcoded-header.header-dark a,
.pcoded-header.header-dark dropdown-toggle {
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-header.header-dark .input-group .input-group-text:hover,
.pcoded-header.header-dark a:hover,
.pcoded-header.header-dark dropdown-toggle:hover {
  color: #fff;
}

@media only screen and (max-width: 991px) {

  .pcoded-header.header-dark .input-group .input-group-text,
  .pcoded-header.header-dark a,
  .pcoded-header.header-dark dropdown-toggle {
    color: #3f4d67;
  }

  .pcoded-header.header-dark .input-group .input-group-text:hover,
  .pcoded-header.header-dark a:hover,
  .pcoded-header.header-dark dropdown-toggle:hover {
    color: #2c3547;
  }
}

.pcoded-header.header-dark .main-search .search-close>.input-group-text {
  color: #323437;
}

.pcoded-header.header-dark .main-search.open .input-group .search-btn {
  background: #323437;
  border-color: #323437;
}

.pcoded-header.header-dark .main-search.open .input-group .search-btn .input-group-text {
  color: #fff;
}

.pcoded-header.header-dark .dropdown .notification .noti-body li.notification:hover {
  background: rgba(50, 52, 55, 0.1);
}

.pcoded-header.header-dark .dropdown .profile-notification .pro-head {
  color: #fff;
  background: #323437;
}

.pcoded-header.header-dark .dropdown .profile-notification .pro-head .dud-logout {
  color: #fff;
}

.pcoded-header.header-dark .dropdown.drp-user.show:before {
  color: #323437;
}

.pcoded-header.header-dark .b-bg {
  background: #fff;
}

.pcoded-header.header-dark .b-bg i {
  color: #323437;
  background-image: #323437;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
}

/* ====== [ Header color end ] ======== */
/* ====== [ Brand color start ] ======== */
.pcoded-navbar[class*="brand-"]:not(.brand-default) .mobile-menu span,
.pcoded-navbar[class*="brand-"]:not(.brand-default) .mobile-menu span:after,
.pcoded-navbar[class*="brand-"]:not(.brand-default) .mobile-menu span:before {
  background: #fff;
}

.pcoded-navbar[class*="brand-"]:not(.brand-default) .mobile-menu.on span {
  background: transparent;
}

.pcoded-navbar[class*="brand-"]:not(.brand-default) .b-bg {
  background: #fff;
}

.pcoded-navbar[class*="brand-"]:not(.brand-default) .b-bg i {
  color: #1de9b6;
  background-image: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pcoded-navbar.brand-blue .header-logo,
.pcoded-navbar[class*="navbar-"].brand-blue .header-logo {
  background: #04a9f5;
}

.pcoded-navbar.brand-blue .header-logo .b-bg,
.pcoded-navbar[class*="navbar-"].brand-blue .header-logo .b-bg {
  background: #fff;
}

.pcoded-navbar.brand-blue .header-logo .b-bg i,
.pcoded-navbar[class*="navbar-"].brand-blue .header-logo .b-bg i {
  color: #04a9f5;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.brand-red .header-logo,
.pcoded-navbar[class*="navbar-"].brand-red .header-logo {
  background: #ff5252;
}

.pcoded-navbar.brand-red .header-logo .b-bg,
.pcoded-navbar[class*="navbar-"].brand-red .header-logo .b-bg {
  background: #fff;
}

.pcoded-navbar.brand-red .header-logo .b-bg i,
.pcoded-navbar[class*="navbar-"].brand-red .header-logo .b-bg i {
  color: #ff5252;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.brand-purple .header-logo,
.pcoded-navbar[class*="navbar-"].brand-purple .header-logo {
  background: #9575CD;
}

.pcoded-navbar.brand-purple .header-logo .b-bg,
.pcoded-navbar[class*="navbar-"].brand-purple .header-logo .b-bg {
  background: #fff;
}

.pcoded-navbar.brand-purple .header-logo .b-bg i,
.pcoded-navbar[class*="navbar-"].brand-purple .header-logo .b-bg i {
  color: #9575CD;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.brand-lightblue .header-logo,
.pcoded-navbar[class*="navbar-"].brand-lightblue .header-logo {
  background: #23b7e5;
}

.pcoded-navbar.brand-lightblue .header-logo .b-bg,
.pcoded-navbar[class*="navbar-"].brand-lightblue .header-logo .b-bg {
  background: #fff;
}

.pcoded-navbar.brand-lightblue .header-logo .b-bg i,
.pcoded-navbar[class*="navbar-"].brand-lightblue .header-logo .b-bg i {
  color: #23b7e5;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.brand-dark .header-logo,
.pcoded-navbar[class*="navbar-"].brand-dark .header-logo {
  background: #323437;
}

.pcoded-navbar.brand-dark .header-logo .b-bg,
.pcoded-navbar[class*="navbar-"].brand-dark .header-logo .b-bg {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.pcoded-navbar.brand-dark .header-logo .b-bg i,
.pcoded-navbar[class*="navbar-"].brand-dark .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.brand-default .header-logo,
.pcoded-navbar[class*="navbar-"].brand-default .header-logo {
  background: #3f4d67;
}

/* ====== [ Brand color end ] ======== */
/* ====== [ Menu color start ] ======== */
.pcoded-navbar.navbar-blue {
  background: #04a9f5;
}

.pcoded-navbar.navbar-blue .mobile-menu span {
  background-color: #fff;
}

.pcoded-navbar.navbar-blue .mobile-menu span:after,
.pcoded-navbar.navbar-blue .mobile-menu span:before {
  background-color: #fff;
}

.pcoded-navbar.navbar-blue .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.navbar-blue .header-logo .b-bg {
  background: #04a9f5;
}

.pcoded-navbar.navbar-blue .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.navbar-blue .navbar-brand,
.pcoded-navbar.navbar-blue .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar.navbar-blue .pcoded-menu-caption {
  color: #fff;
}

.pcoded-navbar.navbar-blue .pcoded-inner-navbar li a {
  color: #fff;
}

.pcoded-navbar.navbar-blue .pcoded-inner-navbar li.active>a,
.pcoded-navbar.navbar-blue .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.navbar-blue .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.navbar-blue .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.navbar-blue .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.navbar-blue .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.navbar-blue .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.navbar-blue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-navbar.navbar-blue.theme-horizontal .sidenav-horizontal-next,
.pcoded-navbar.navbar-blue.theme-horizontal .sidenav-horizontal-prev {
  background: #04a9f5;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.navbar-blue.theme-horizontal .sidenav-horizontal-next:hover,
.pcoded-navbar.navbar-blue.theme-horizontal .sidenav-horizontal-prev:hover {
  color: #fff;
}

.pcoded-navbar.navbar-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.navbar-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #04a9f5;
}

.pcoded-navbar.navbar-red {
  background: #ff5252;
}

.pcoded-navbar.navbar-red .mobile-menu span {
  background-color: #fff;
}

.pcoded-navbar.navbar-red .mobile-menu span:after,
.pcoded-navbar.navbar-red .mobile-menu span:before {
  background-color: #fff;
}

.pcoded-navbar.navbar-red .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.navbar-red .header-logo .b-bg {
  background: #ff5252;
}

.pcoded-navbar.navbar-red .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.navbar-red .navbar-brand,
.pcoded-navbar.navbar-red .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar.navbar-red .pcoded-menu-caption {
  color: #fff;
}

.pcoded-navbar.navbar-red .pcoded-inner-navbar li a {
  color: #fff;
}

.pcoded-navbar.navbar-red .pcoded-inner-navbar li.active>a,
.pcoded-navbar.navbar-red .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.navbar-red .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.navbar-red .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.navbar-red .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.navbar-red .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.navbar-red .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.navbar-red .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-navbar.navbar-red.theme-horizontal .sidenav-horizontal-next,
.pcoded-navbar.navbar-red.theme-horizontal .sidenav-horizontal-prev {
  background: #ff5252;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.navbar-red.theme-horizontal .sidenav-horizontal-next:hover,
.pcoded-navbar.navbar-red.theme-horizontal .sidenav-horizontal-prev:hover {
  color: #fff;
}

.pcoded-navbar.navbar-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.navbar-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #ff5252;
}

.pcoded-navbar.navbar-purple {
  background: #9575CD;
}

.pcoded-navbar.navbar-purple .mobile-menu span {
  background-color: #fff;
}

.pcoded-navbar.navbar-purple .mobile-menu span:after,
.pcoded-navbar.navbar-purple .mobile-menu span:before {
  background-color: #fff;
}

.pcoded-navbar.navbar-purple .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.navbar-purple .header-logo .b-bg {
  background: #9575CD;
}

.pcoded-navbar.navbar-purple .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.navbar-purple .navbar-brand,
.pcoded-navbar.navbar-purple .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar.navbar-purple .pcoded-menu-caption {
  color: #fff;
}

.pcoded-navbar.navbar-purple .pcoded-inner-navbar li a {
  color: #fff;
}

.pcoded-navbar.navbar-purple .pcoded-inner-navbar li.active>a,
.pcoded-navbar.navbar-purple .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.navbar-purple .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.navbar-purple .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.navbar-purple .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.navbar-purple .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.navbar-purple .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.navbar-purple .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-navbar.navbar-purple.theme-horizontal .sidenav-horizontal-next,
.pcoded-navbar.navbar-purple.theme-horizontal .sidenav-horizontal-prev {
  background: #9575CD;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.navbar-purple.theme-horizontal .sidenav-horizontal-next:hover,
.pcoded-navbar.navbar-purple.theme-horizontal .sidenav-horizontal-prev:hover {
  color: #fff;
}

.pcoded-navbar.navbar-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.navbar-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #9575CD;
}

.pcoded-navbar.navbar-lightblue {
  background: #23b7e5;
}

.pcoded-navbar.navbar-lightblue .mobile-menu span {
  background-color: #fff;
}

.pcoded-navbar.navbar-lightblue .mobile-menu span:after,
.pcoded-navbar.navbar-lightblue .mobile-menu span:before {
  background-color: #fff;
}

.pcoded-navbar.navbar-lightblue .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.navbar-lightblue .header-logo .b-bg {
  background: #23b7e5;
}

.pcoded-navbar.navbar-lightblue .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.navbar-lightblue .navbar-brand,
.pcoded-navbar.navbar-lightblue .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar.navbar-lightblue .pcoded-menu-caption {
  color: #fff;
}

.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li a {
  color: #fff;
}

.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li.active>a,
.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.navbar-lightblue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-navbar.navbar-lightblue.theme-horizontal .sidenav-horizontal-next,
.pcoded-navbar.navbar-lightblue.theme-horizontal .sidenav-horizontal-prev {
  background: #23b7e5;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.navbar-lightblue.theme-horizontal .sidenav-horizontal-next:hover,
.pcoded-navbar.navbar-lightblue.theme-horizontal .sidenav-horizontal-prev:hover {
  color: #fff;
}

.pcoded-navbar.navbar-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.navbar-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #23b7e5;
}

.pcoded-navbar.navbar-dark {
  background: #323437;
}

.pcoded-navbar.navbar-dark .mobile-menu span {
  background-color: #fff;
}

.pcoded-navbar.navbar-dark .mobile-menu span:after,
.pcoded-navbar.navbar-dark .mobile-menu span:before {
  background-color: #fff;
}

.pcoded-navbar.navbar-dark .mobile-menu.on span {
  background-color: transparent;
}

.pcoded-navbar.navbar-dark .header-logo .b-bg {
  background: #323437;
}

.pcoded-navbar.navbar-dark .header-logo .b-bg i {
  color: #fff;
  -webkit-text-fill-color: unset;
}

.pcoded-navbar.navbar-dark .navbar-brand,
.pcoded-navbar.navbar-dark .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar.navbar-dark .pcoded-menu-caption {
  color: #fff;
}

.pcoded-navbar.navbar-dark .pcoded-inner-navbar li a {
  color: #fff;
}

.pcoded-navbar.navbar-dark .pcoded-inner-navbar li.active>a,
.pcoded-navbar.navbar-dark .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.navbar-dark .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.navbar-dark .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.navbar-dark .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.navbar-dark .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.navbar-dark .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.navbar-dark .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pcoded-navbar.navbar-dark.theme-horizontal .sidenav-horizontal-next,
.pcoded-navbar.navbar-dark.theme-horizontal .sidenav-horizontal-prev {
  background: #323437;
  color: rgba(255, 255, 255, 0.8);
}

.pcoded-navbar.navbar-dark.theme-horizontal .sidenav-horizontal-next:hover,
.pcoded-navbar.navbar-dark.theme-horizontal .sidenav-horizontal-prev:hover {
  color: #fff;
}

.pcoded-navbar.navbar-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active:before,
.pcoded-navbar.navbar-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger:before {
  color: #323437;
}

.pcoded-navbar[class*='navbar-'] .pcoded-inner-navbar>li.active:after,
.pcoded-navbar[class*='navbar-'] .pcoded-navbar .pcoded-inner-navbar>li.pcoded-trigger:after {
  background: rgba(0, 0, 0, 0.35);
}

/* ====== [ Menu color end ] ======== */
/* ====== [ Active Color start ] ======== */
.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #3ebfea;
}

.pcoded-navbar.active-blue[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #04a9f5;
}

.pcoded-navbar.active-blue .pcoded-inner-navbar li.active>a,
.pcoded-navbar.active-blue .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.active-blue .pcoded-inner-navbar li:hover>a {
  color: #04a9f5;
}

.pcoded-navbar.active-blue .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.active-blue .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.active-blue .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #04a9f5;
}

.pcoded-navbar.active-blue .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.active-blue .pcoded-inner-navbar>li.pcoded-trigger:after {
  background-color: #04a9f5;
}

.pcoded-navbar.active-blue .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-blue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #333f54;
  color: #fff;
}

.pcoded-navbar.active-blue.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-blue.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li:hover>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu:hover>a {
  background: transparent;
}

.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.active>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li:hover>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.active>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-blue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li:hover>a {
  color: #04a9f5;
}

.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #3ebfea;
}

.pcoded-navbar.active-red[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #ff5252;
}

.pcoded-navbar.active-red .pcoded-inner-navbar li.active>a,
.pcoded-navbar.active-red .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.active-red .pcoded-inner-navbar li:hover>a {
  color: #ff5252;
}

.pcoded-navbar.active-red .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.active-red .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.active-red .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #ff5252;
}

.pcoded-navbar.active-red .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.active-red .pcoded-inner-navbar>li.pcoded-trigger:after {
  background-color: #ff5252;
}

.pcoded-navbar.active-red .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-red .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #333f54;
  color: #fff;
}

.pcoded-navbar.active-red.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-red.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li:hover>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu:hover>a {
  background: transparent;
}

.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.active>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li:hover>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.active>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-red.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li:hover>a {
  color: #ff5252;
}

.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #3ebfea;
}

.pcoded-navbar.active-purple[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #9575CD;
}

.pcoded-navbar.active-purple .pcoded-inner-navbar li.active>a,
.pcoded-navbar.active-purple .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.active-purple .pcoded-inner-navbar li:hover>a {
  color: #9575CD;
}

.pcoded-navbar.active-purple .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.active-purple .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.active-purple .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #9575CD;
}

.pcoded-navbar.active-purple .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.active-purple .pcoded-inner-navbar>li.pcoded-trigger:after {
  background-color: #9575CD;
}

.pcoded-navbar.active-purple .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-purple .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #333f54;
  color: #fff;
}

.pcoded-navbar.active-purple.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-purple.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li:hover>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu:hover>a {
  background: transparent;
}

.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.active>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li:hover>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.active>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-purple.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li:hover>a {
  color: #9575CD;
}

.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #3ebfea;
}

.pcoded-navbar.active-lightblue[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #23b7e5;
}

.pcoded-navbar.active-lightblue .pcoded-inner-navbar li.active>a,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar li:hover>a {
  color: #23b7e5;
}

.pcoded-navbar.active-lightblue .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #23b7e5;
}

.pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.pcoded-trigger:after {
  background-color: #23b7e5;
}

.pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #333f54;
  color: #fff;
}

.pcoded-navbar.active-lightblue.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-lightblue.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li:hover>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu:hover>a {
  background: transparent;
}

.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.active>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li:hover>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.active>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-lightblue.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li:hover>a {
  color: #23b7e5;
}

.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #3ebfea;
}

.pcoded-navbar.active-dark[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li.active>a:before {
  color: #323437;
}

.pcoded-navbar.active-dark .pcoded-inner-navbar li.active>a,
.pcoded-navbar.active-dark .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.active-dark .pcoded-inner-navbar li:hover>a {
  color: #323437;
}

.pcoded-navbar.active-dark .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.active-dark .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.active-dark .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #323437;
}

.pcoded-navbar.active-dark .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.active-dark .pcoded-inner-navbar>li.pcoded-trigger:after {
  background-color: #323437;
}

.pcoded-navbar.active-dark .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-dark .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #333f54;
  color: #fff;
}

.pcoded-navbar.active-dark.menu-light .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-dark.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: #f1f1f1;
  color: #111;
}

.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li:hover>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.active>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu.pcoded-trigger>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu:hover>a {
  background: transparent;
}

.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.active>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li .pcoded-submenu>li:hover>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.active>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li.pcoded-trigger>a,
.pcoded-navbar.active-dark.theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu .pcoded-submenu>li:hover>a {
  color: #323437;
}

/* ====== [ Active Color end ] ======== */
/* ====== [ menu static start ] ======== */
.pcoded-navbar.menupos-static {
  position: absolute;
  height: auto;
  min-height: 100%;
}

.pcoded-navbar.menupos-static .navbar-wrapper,
.pcoded-navbar.menupos-static .scroll-div.navbar-content {
  height: auto;
  min-height: 100vh;
}

/* ====== [ menu static end ] ======== */
/* ====== [Boxc start ] ======== */
body.box-layout {
  position: static;
}

body.box-layout .pcoded-header {
  position: relative;
}

body.box-layout .pcoded-header.headerpos-fixed~.pcoded-main-container {
  padding-top: 0;
}

body.box-layout .pcoded-navbar.theme-horizontal~.pcoded-header {
  position: relative;
}

@media only screen and (max-width: 992px) {
  body.box-layout {
    position: relative;
  }

  body.box-layout.container {
    padding: 0;
  }
}

/* ====== [ Box end ] ======== */
/* ====== [ Header Fixed start ] ======== */
.pcoded-header.headerpos-fixed {
  position: fixed;
  top: 0;
}

.pcoded-header.headerpos-fixed~.pcoded-main-container {
  padding-top: 70px;
}

@media only screen and (max-width: 991px) {
  .pcoded-header.headerpos-fixed~.pcoded-main-container {
    padding-top: 140px;
  }
}

/* ====== [Header Fixed  end ] ======== */
/* ====== [ Dropdown icon start ] ======== */
.pcoded-navbar.drp-icon-style2 .pcoded-inner-navbar li.pcoded-hasmenu>a:after {
  content: "\e847";
}

.pcoded-navbar.drp-icon-style3 .pcoded-inner-navbar li.pcoded-hasmenu>a:after {
  content: "\e8b1";
}

.pcoded-navbar.drp-icon-style3 .pcoded-inner-navbar li.pcoded-hasmenu.pcoded-trigger>a:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ====== [ Dropdown icon end ] =================== */
/* ====== [ Menu Item icon start ] ================ */
.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after {
  background: rgba(169, 183, 208, 0.05);
}

.pcoded-navbar[class*="menu-item-icon-style"] .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  font-family: 'feather';
  font-style: normal;
  padding-right: 4px;
  font-size: 13px;
  position: absolute;
  left: 35px;
  top: 10px;
  opacity: 1;
  visibility: visible;
  background: transparent;
}

.pcoded-navbar[class*="menu-item-icon-style"].theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu>.pcoded-submenu>li>a:before {
  left: 5px;
}

.pcoded-navbar[class*="menu-item-icon-style"].theme-horizontal .pcoded-inner-navbar>li.pcoded-hasmenu>.pcoded-submenu>li>.pcoded-submenu>li>a:before {
  top: 12px;
}

.pcoded-navbar.menu-item-icon-style2 .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  content: "\e897";
}

.pcoded-navbar.menu-item-icon-style3 .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  content: "\e83f";
}

.pcoded-navbar.menu-item-icon-style4 .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  content: "\e856";
}

.pcoded-navbar.menu-item-icon-style5 .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  content: "\e847";
}

.pcoded-navbar.menu-item-icon-style6 .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li>a:before {
  content: "\e844";
}

/* ====== [ Menu Item icon end ] ================== */
/* ====== [ Menu background images start ] ======== */
.pcoded-navbar[class*="navbar-image"] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.pcoded-navbar[class*="navbar-image"] .navbar-brand,
.pcoded-navbar[class*="navbar-image"] .pcoded-submenu {
  background: transparent;
}

.pcoded-navbar[class*="navbar-image"] .pcoded-inner-navbar>li.active>a,
.pcoded-navbar[class*="navbar-image"] .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(51, 63, 84, 0.4);
}

.pcoded-navbar[class*="navbar-image"]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
}

.pcoded-navbar.navbar-image-1 {
  background-image: url("../images/nav-bg/navbar-img-1.jpg");
}

.pcoded-navbar.navbar-image-2 {
  background-image: url("../images/nav-bg/navbar-img-2.jpg");
}

.pcoded-navbar.navbar-image-3 {
  background-image: url("../images/nav-bg/navbar-img-3.jpg");
}

.pcoded-navbar.navbar-image-4 {
  background-image: url("../images/nav-bg/navbar-img-4.jpg");
}

.pcoded-navbar.navbar-image-5 {
  background-image: url("../images/nav-bg/navbar-img-5.jpg");
}

/* ====== [ Menu background images end ] ========== */
/* ====== [ Menu title color start ] ============== */
.pcoded-navbar.title-blue .pcoded-inner-navbar .pcoded-menu-caption {
  color: #04a9f5;
}

.pcoded-navbar.title-red .pcoded-inner-navbar .pcoded-menu-caption {
  color: #ff5252;
}

.pcoded-navbar.title-purple .pcoded-inner-navbar .pcoded-menu-caption {
  color: #9575CD;
}

.pcoded-navbar.title-lightblue .pcoded-inner-navbar .pcoded-menu-caption {
  color: #23b7e5;
}

.pcoded-navbar.title-dark .pcoded-inner-navbar .pcoded-menu-caption {
  color: #323437;
}

/* ====== [ Menu title color end ] ================ */
/* ====== [ Hide Caption start ] ============== */
.pcoded-navbar.caption-hide .pcoded-menu-caption {
  display: none;
}

/* ====== [ Hide Caption end ] ================ */
/* ==========================    Diffrent Layout Styles end     ====================== */
/* temp SCSS for document */
.doc-img>a {
  position: relative;
  width: 130px;
  height: 80px;
  display: inline-block;
  border: 3px solid #fff;
  margin-right: 5px;
  background: #f4f7fa;
  overflow: hidden;
}

.doc-img>a span {
  width: 100%;
  position: absolute;
}

.doc-img>a span:after,
.doc-img>a span:before {
  content: "";
  height: 100%;
  position: absolute;
}

.doc-img>a span:before {
  width: 30%;
  left: 0;
  background: #3f4d67;
}

.doc-img>a span:after {
  width: 70%;
  right: 0;
  background: #f4f7fa;
}

.doc-img>a>span:nth-child(1) {
  height: 20%;
  top: 0;
}

.doc-img>a>span:nth-child(2) {
  height: 80%;
  bottom: 0;
}

.doc-img>a.active {
  border-color: #04a9f5;
}

.doc-img>a.active:before {
  content: "\e83f";
  top: -4px;
  font-size: 20px;
  position: absolute;
  left: 10px;
  font-family: "feather";
  z-index: 1001;
  color: #04a9f5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-shadow: 0 3px 8px rgba(4, 169, 245, 0.9), 0 3px 8px rgba(0, 0, 0, 0.1);
}

.doc-img>a.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
}

.doc-img>a[data-value="menu-light"] span:before {
  background: #fff;
}

.doc-img>a[data-value="dark"] span:after {
  background: #101011;
}

.doc-img.navbar-color>a[data-value="navbar-blue"]>span:before {
  background: #04a9f5;
}

.doc-img.navbar-color>a[data-value="navbar-red"]>span:before {
  background: #ff5252;
}

.doc-img.navbar-color>a[data-value="navbar-purple"]>span:before {
  background: #9575CD;
}

.doc-img.navbar-color>a[data-value="navbar-lightblue"]>span:before {
  background: #23b7e5;
}

.doc-img.navbar-color>a[data-value="navbar-dark"]>span:before {
  background: #323437;
}

.doc-img.header-color>a[data-value="header-blue"]>span:nth-child(1):after {
  background: #04a9f5;
}

.doc-img.header-color>a[data-value="header-red"]>span:nth-child(1):after {
  background: #ff5252;
}

.doc-img.header-color>a[data-value="header-purple"]>span:nth-child(1):after {
  background: #9575CD;
}

.doc-img.header-color>a[data-value="header-lightblue"]>span:nth-child(1):after {
  background: #23b7e5;
}

.doc-img.header-color>a[data-value="header-dark"]>span:nth-child(1):after {
  background: #323437;
}

.doc-img.brand-color>a[data-value="brand-blue"]>span:nth-child(1):before {
  background: #04a9f5;
}

.doc-img.brand-color>a[data-value="brand-red"]>span:nth-child(1):before {
  background: #ff5252;
}

.doc-img.brand-color>a[data-value="brand-purple"]>span:nth-child(1):before {
  background: #9575CD;
}

.doc-img.brand-color>a[data-value="brand-lightblue"]>span:nth-child(1):before {
  background: #23b7e5;
}

.doc-img.brand-color>a[data-value="brand-dark"]>span:nth-child(1):before {
  background: #323437;
}

.doc-img.active-color>a[data-value="active-default"] {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.doc-img.active-color>a[data-value="active-blue"] {
  background: #04a9f5;
}

.doc-img.active-color>a[data-value="active-red"] {
  background: #ff5252;
}

.doc-img.active-color>a[data-value="active-purple"] {
  background: #9575CD;
}

.doc-img.active-color>a[data-value="active-lightblue"] {
  background: #23b7e5;
}

.doc-img.active-color>a[data-value="active-dark"] {
  background: #323437;
}

.doc-img.title-color>a[data-value="title-default"] {
  background: #fff;
}

.doc-img.title-color>a[data-value="title-blue"] {
  background: #04a9f5;
}

.doc-img.title-color>a[data-value="title-red"] {
  background: #ff5252;
}

.doc-img.title-color>a[data-value="title-purple"] {
  background: #9575CD;
}

.doc-img.title-color>a[data-value="title-lightblue"] {
  background: #23b7e5;
}

.doc-img.title-color>a[data-value="title-dark"] {
  background: #323437;
}

.doc-img.navbar-images>a {
  height: 130px;
  background-size: 37px;
  background-position: left top;
}

.doc-img.navbar-images>a span:before {
  background: transparent;
}

.doc-img.navbar-images>a[data-value="navbar-image-1"] {
  background-image: url("../images/nav-bg/navbar-img-1.jpg");
}

.doc-img.navbar-images>a[data-value="navbar-image-2"] {
  background-image: url("../images/nav-bg/navbar-img-2.jpg");
}

.doc-img.navbar-images>a[data-value="navbar-image-3"] {
  background-image: url("../images/nav-bg/navbar-img-3.jpg");
}

.doc-img.navbar-images>a[data-value="navbar-image-4"] {
  background-image: url("../images/nav-bg/navbar-img-4.jpg");
}

.doc-img.navbar-images>a[data-value="navbar-image-5"] {
  background-image: url("../images/nav-bg/navbar-img-5.jpg");
}

.doc-img.navbar-images>a[data-value="navbar-image-6"] {
  background-image: url("../images/nav-bg/navbar-img-6.jpg");
}

.nav-link.active.h-blue {
  background: #04a9f5 !important;
}

.nav-link.active.h-red {
  background: #ff5252 !important;
}

.nav-link.active.h-purple {
  background: #9575CD !important;
}

.nav-link.active.h-lightblue {
  background: #23b7e5 !important;
}

.nav-link.active.h-dark {
  background: #323437 !important;
}

@media all and (-ms-high-contrast: none) {
  .pcoded-header .dropdown.show::before {
    line-height: 0.1;
  }

  .pcoded-header .navbar-nav>li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .pcoded-header .navbar-nav>li.dropdown {
    display: inline-block;
  }

  .dropdown-menu.show::before {
    top: -2px;
  }

  .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu::after {
    left: 40px;
  }
}

/* ===================================================================================================
 ==========================    Diffrent types of NAvbar Layout Styles end     ======================
 =================================================================================================== */
.pcoded-navbar.layout-2 a,
.pcoded-navbar.layout-2-2 a,
.pcoded-navbar.layout-3 a,
.pcoded-navbar.layout-4 a,
.pcoded-navbar.layout-4-2 a {
  color: rgba(255, 255, 255, 0.85);
}

.pcoded-navbar.layout-2 .pcoded-submenu,
.pcoded-navbar.layout-2-2 .pcoded-submenu,
.pcoded-navbar.layout-3 .pcoded-submenu,
.pcoded-navbar.layout-4 .pcoded-submenu,
.pcoded-navbar.layout-4-2 .pcoded-submenu {
  background-color: rgba(0, 0, 0, 0.05);
}

.pcoded-navbar.layout-2 .pcoded-submenu .pcoded-submenu,
.pcoded-navbar.layout-2-2 .pcoded-submenu .pcoded-submenu,
.pcoded-navbar.layout-3 .pcoded-submenu .pcoded-submenu,
.pcoded-navbar.layout-4 .pcoded-submenu .pcoded-submenu,
.pcoded-navbar.layout-4-2 .pcoded-submenu .pcoded-submenu {
  background-color: transparent;
}

.pcoded-navbar.layout-2.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after,
.pcoded-navbar.layout-2-2.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after,
.pcoded-navbar.layout-3.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after,
.pcoded-navbar.layout-4.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after,
.pcoded-navbar.layout-4-2.navbar-collapsed .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu:after {
  display: none;
}

.pcoded-navbar.layout-2.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a,
.pcoded-navbar.layout-2-2.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a,
.pcoded-navbar.layout-3.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a,
.pcoded-navbar.layout-4.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a,
.pcoded-navbar.layout-4-2.navbar-collapsed:hover .pcoded-inner-navbar>li.pcoded-trigger .pcoded-submenu li a {
  color: rgba(255, 255, 255, 0.85);
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar .pcoded-menu-caption,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar .pcoded-menu-caption,
.pcoded-navbar.layout-3 .pcoded-inner-navbar .pcoded-menu-caption,
.pcoded-navbar.layout-4 .pcoded-inner-navbar .pcoded-menu-caption,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar .pcoded-menu-caption {
  display: none;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li>a {
  padding: 20px 15px;
  margin-top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li>a .pcoded-badge,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li>a .pcoded-badge,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li>a .pcoded-badge,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li>a .pcoded-badge,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li>a .pcoded-badge {
  top: 25px;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext {
  top: 25px;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li.pcoded-hasmenu>a:after,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li.pcoded-hasmenu>a:after,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li.pcoded-hasmenu>a:after,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.pcoded-hasmenu>a:after,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.pcoded-hasmenu>a:after {
  top: 25px;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.layout-2 .pcoded-inner-navbar>li.pcoded-trigger:after,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li.pcoded-trigger:after,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li.pcoded-trigger:after,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.pcoded-trigger:after,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.active:after,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.pcoded-trigger:after {
  display: none;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-2 .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.pcoded-trigger>a {
  background-color: rgba(0, 0, 0, 0.08);
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar li.active>a,
.pcoded-navbar.layout-2 .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.layout-2 .pcoded-inner-navbar li:hover>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li.active>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li:hover>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li.active>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li:hover>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li.active>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li:hover>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li.active>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li:focus>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li:hover>a {
  color: #fff;
}

.pcoded-navbar.layout-2 .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.layout-2 .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.layout-2 .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.layout-2-2 .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.layout-3 .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.layout-4 .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li .pcoded-submenu>li.active>a:before,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li .pcoded-submenu>li:focus>a:before,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar li .pcoded-submenu>li:hover>a:before {
  background: #fff;
}

.pcoded-navbar.layout-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(253Deg), color-stop(0, #1de9b6), color-stop(70%, #1dc4e9));
  background: linear-gradient(253Deg, #1de9b6 0, #1dc4e9 70%);
}

.pcoded-navbar.layout-2-2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.pcoded-navbar.layout-2-2 .navbar-brand .b-brand .b-bg {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.pcoded-navbar.layout-3 {
  background: #04a9f5;
}

.pcoded-navbar.layout-4,
.pcoded-navbar.layout-4-2 {
  background: #212224;
}

.pcoded-navbar.layout-4 a,
.pcoded-navbar.layout-4-2 a {
  color: rgba(255, 255, 255, 0.5);
}

.pcoded-navbar.layout-4 .pcoded-submenu,
.pcoded-navbar.layout-4-2 .pcoded-submenu {
  background-color: rgba(255, 255, 255, 0.05);
}

.pcoded-navbar.layout-4 .pcoded-submenu .pcoded-submenu,
.pcoded-navbar.layout-4-2 .pcoded-submenu .pcoded-submenu {
  background-color: transparent;
}

.pcoded-navbar.layout-4 .pcoded-inner-navbar>li>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li>a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-4 .pcoded-inner-navbar>li.pcoded-trigger>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.active>a,
.pcoded-navbar.layout-4-2 .pcoded-inner-navbar>li.pcoded-trigger>a {
  background-color: rgba(255, 255, 255, 0.08);
}

.pcoded-navbar.layout-4 .navbar-brand,
.pcoded-navbar.layout-4-2 .navbar-brand {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.pcoded-navbar.layout-4 .navbar-brand .mobile-menu span,
.pcoded-navbar.layout-4 .navbar-brand .mobile-menu span:after,
.pcoded-navbar.layout-4 .navbar-brand .mobile-menu span:before,
.pcoded-navbar.layout-4-2 .navbar-brand .mobile-menu span,
.pcoded-navbar.layout-4-2 .navbar-brand .mobile-menu span:after,
.pcoded-navbar.layout-4-2 .navbar-brand .mobile-menu span:before {
  background: #fff;
}

.pcoded-navbar.layout-4 .navbar-brand .mobile-menu.on span,
.pcoded-navbar.layout-4-2 .navbar-brand .mobile-menu.on span {
  background: transparent;
}

.pcoded-navbar.layout-4 .navbar-brand .b-brand .b-bg,
.pcoded-navbar.layout-4-2 .navbar-brand .b-brand .b-bg {
  background: #fff;
}

.pcoded-navbar.layout-4 .navbar-brand .b-brand .b-bg i,
.pcoded-navbar.layout-4-2 .navbar-brand .b-brand .b-bg i {
  color: #1de9b6;
  background-image: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pcoded-navbar.layout-4-2 .navbar-brand {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.pcoded-navbar.layout-4-2 .navbar-brand .b-brand .b-bg {
  background: #fff;
}

.pcoded-navbar.layout-4-2 .navbar-brand .b-brand .b-bg i {
  color: #1de9b6;
  background-image: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.layout-6 {
  background: #23b7e5;
  background-size: cover;
  background-attachment: fixed;
  background-position: top right;
  position: relative;
  /* for able pro style */
  /* dark navbar */
}

body.layout-6 .page-header-title+.breadcrumb>.breadcrumb-item:last-child a,
body.layout-6 .page-header-title h5,
body.layout-6 .pcoded-header .input-group .input-group-text,
body.layout-6 .pcoded-header .navbar-nav>li>.dropdown>.dropdown-toggle,
body.layout-6 .pcoded-header .navbar-nav>li>.dropdown-toggle,
body.layout-6 .pcoded-header .navbar-nav>li>a {
  color: #fff;
}

body.layout-6 .mobile-menu span,
body.layout-6 .mobile-menu span:after,
body.layout-6 .mobile-menu span:before,
body.layout-6 .pcoded-navbar.menu-light .mobile-menu span,
body.layout-6 .pcoded-navbar.menu-light .mobile-menu span:after,
body.layout-6 .pcoded-navbar.menu-light .mobile-menu span:before {
  background: #fff;
}

body.layout-6 .breadcrumb-item+.breadcrumb-item::before,
body.layout-6 .page-header-title+.breadcrumb>.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

body.layout-6 .pcoded-content {
  background: #f4f7fa;
}

body.layout-6 .navbar-brand,
body.layout-6 .pcoded-header.header-blue,
body.layout-6 .pcoded-navbar,
body.layout-6 .pcoded-navbar.menu-light,
body.layout-6 .pcoded-navbar.menu-light .header-logo {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

body.layout-6 .pcoded-navbar .slimScrollDiv {
  background: #3f4d67;
  border-radius: 0 10px 0 0;
  -webkit-box-shadow: 0 0 20px 0 #3f4d67;
  box-shadow: 0 0 20px 0 #3f4d67;
}

body.layout-6.box-layout .pcoded-navbar .slimScrollDiv {
  border-radius: 10px 10px 0 0;
}

body.layout-6 .main-body {
  min-height: calc(100vh - 200px);
}

body.layout-6 .pcoded-navbar.menu-light .slimScrollDiv {
  background: #fff;
  -webkit-box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
  box-shadow: 7px 0 15px 0 rgba(69, 90, 100, 0.09);
}

body.layout-6 .pcoded-navbar.menu-light .slimScrollDiv .slimScrollBar {
  z-index: 1028 !important;
}

body.layout-6 .pcoded-navbar.mob-open~.pcoded-header:before,
body.layout-6 .pcoded-navbar.mob-open~.pcoded-main-container:before,
body.layout-6 .pcoded-navbar.navbar-collapsed:hover~.pcoded-header:before,
body.layout-6 .pcoded-navbar.navbar-collapsed:hover~.pcoded-main-container:before {
  background: transparent;
}

body.layout-6 .pcoded-navbar.menupos-static .navbar-wrapper,
body.layout-6 .pcoded-navbar.menupos-static .scroll-div.navbar-content {
  position: absolute;
  height: 100%;
}

body.layout-6 .pcoded-navbar.navbar-collapsed:hover .navbar-brand .b-brand {
  display: none;
}

body.layout-6 .pcoded-navbar.navbar-collapsed:hover .navbar-brand .mobile-menu {
  right: auto;
  left: 20px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

body.layout-6 .pcoded-navbar.navbar-collapsed:hover .navbar-brand .mobile-menu span {
  background: transparent;
}

body.layout-6 .pcoded-content {
  margin-top: 200px;
}

body.layout-6 .pcoded-content .pcoded-inner-content {
  margin-top: -200px;
  min-height: calc(100vh + 150px);
}

body.layout-6 .card {
  border-radius: 5px;
}

body.layout-6 .pcoded-navbar .header-logo {
  background: transparent;
}

body.layout-6 .pcoded-navbar.navbar-dark.brand-lightblue .header-logo,
body.layout-6 .pcoded-navbar.navbar-dark[class*="navbar-"].brand-lightblue .header-logo,
body.layout-6 .pcoded-navbar.navbar-dark .header-logo {
  background: transparent;
}

body.layout-6 .pcoded-navbar.navbar-dark .slimScrollDiv {
  background: #323437;
  -webkit-box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 991px) {

  body.layout-6 .pcoded-header .input-group .input-group-text,
  body.layout-6 .pcoded-header .navbar-nav>li>.dropdown>.dropdown-toggle,
  body.layout-6 .pcoded-header .navbar-nav>li>.dropdown-toggle,
  body.layout-6 .pcoded-header .navbar-nav>li>a {
    color: #3f4d67;
  }
}

body.layout-8 .pcoded-header {
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.122);
  box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.122);
}

body.layout-8 .pcoded-navbar.menu-light {
  -webkit-box-shadow: inset -1px 0 0 0 rgba(100, 121, 143, 0.122);
  box-shadow: inset -1px 0 0 0 rgba(100, 121, 143, 0.122);
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-submenu {
  background: transparent;
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li.pcoded-menu-caption:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  height: 1px;
  width: calc(100% - 40px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.122);
  box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.122);
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li.pcoded-menu-caption:first-child:after {
  display: none;
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li>a {
  border-radius: 0 20px 20px 0;
  margin-right: 15px;
  padding: 4px 15px;
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li>a:after {
  top: 8px;
  right: 15px;
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li>a>.pcoded-micon+.pcoded-mtext {
  top: 9px;
}

body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.menu-light .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(35, 183, 229, 0.15);
  color: #23b7e5;
}

body.layout-8 .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li>a {
  margin-right: 8px;
}

body.layout-8 .pcoded-navbar.navbar-collapsed .pcoded-inner-navbar>li>a:after {
  top: 8px;
  right: 15px;
}

body.layout-8 .pcoded-navbar.active-blue .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.active-blue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(4, 169, 245, 0.15);
  color: #04a9f5;
}

body.layout-8 .pcoded-navbar.active-red .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.active-red .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(255, 82, 82, 0.15);
  color: #ff5252;
}

body.layout-8 .pcoded-navbar.active-purple .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.active-purple .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(149, 117, 205, 0.15);
  color: #9575CD;
}

body.layout-8 .pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.active-lightblue .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(35, 183, 229, 0.15);
  color: #23b7e5;
}

body.layout-8 .pcoded-navbar.active-dark .pcoded-inner-navbar>li.active>a,
body.layout-8 .pcoded-navbar.active-dark .pcoded-inner-navbar>li.pcoded-trigger>a {
  background: rgba(50, 52, 55, 0.15);
  color: #323437;
}

body.layout-8 .card {
  -webkit-box-shadow: 0 0px 0 1px rgba(100, 121, 143, 0.122);
  box-shadow: 0 0px 0 1px rgba(100, 121, 143, 0.122);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

body.layout-8 .card:hover {
  -webkit-box-shadow: 0 0px 0 1px rgba(100, 121, 143, 0.122), 0 2px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 0 1px rgba(100, 121, 143, 0.122), 0 2px 1px rgba(0, 0, 0, 0.05);
}

.gradientcolor .btn-round {
  border-radius: 30px;
}

.ChartShadow {
  -webkit-filter: drop-shadow(0px 20px 8px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 20px 8px rgba(0, 0, 0, 0.2));
}

.chart-activity,
.chart-sale,
.chart-statistics,
.device-chart {
  margin: 0 auto;
}

#Statistics-sale .amcharts-cursor-fill {
  -webkit-filter: url(#shadow);
  filter: url(#shadow);
  fill: rgba(255, 255, 255, 0.3);
  stroke-width: 0;
}

.amcharts-zoom-out-bg,
.amcharts-zoom-out-image {
  display: none;
}

/* statistics section */
.card-command .card-icon {
  opacity: 0.5;
}

.mat-drp .btn.dropdown-toggle {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #d8d8d8;
}

.mat-drp .btn.dropdown-toggle:after {
  display: none;
}

.mat-drp .btn.dropdown-toggle:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.table-card .row-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  margin: 0;
}

.table-card .row-table i {
  padding: 50px 20px;
}

.table-card .row-table>[class*=col-] {
  display: table-cell;
  float: none;
  table-layout: fixed;
  vertical-align: middle;
}

.table-card .row-table>[class*=col-] .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rides-bar i.rides-icon {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  border-radius: 50px;
  padding: 15px;
}

.visitor .img-female {
  position: absolute;
  left: 10px;
  bottom: 0;
}

.visitor .img-men {
  position: absolute;
  right: 10px;
  bottom: 0;
}

.profit-bar i {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  border-radius: 50px;
  padding: 13px;
}

.assets-value .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center 103%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.assets-value .card-block {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1199px) {
  .assets-value .bg-img {
    background: none;
  }
}

.chat-sanders .card-header {
  background: linear-gradient(-135deg, #3f4d67 0%, #3f4d67 100%);
}

.chat-sanders .msg {
  margin-bottom: 5px;
  display: inline-block;
  padding: 15px;
  position: relative;
}

.chat-sanders .scroll-wrapper {
  height: 305px;
}

.chat-sanders .received-chat h5 {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
}

.chat-sanders .received-chat .msg {
  background: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.chat-sanders .received-chat .msg:after {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 18px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  border: 6px solid transparent;
  border-bottom-color: #fff;
}

.chat-sanders .send-chat h5 {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
}

.chat-sanders .send-chat .msg {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.chat-sanders .send-chat .msg:after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: 18px;
  -webkit-transform: rotate(450deg);
  transform: rotate(450deg);
  border: 6px solid transparent;
  border-bottom-color: #1de9b6;
}

.chat-sanders .btn {
  background: none;
  opacity: 0.4;
}

.chat-sanders .form-control {
  background: #f4f7fa;
}

.chat-sanders .input-group {
  background: transparent;
}

.widget-menu {
  background: linear-gradient(-135deg, #88d3ce 0%, #6e45e2 100%);
}

.widget-menu .widget-title {
  border-top: 1px solid #676fb9;
}

.widget-menu i {
  opacity: 0.5;
}

.to-do .to-do-button {
  position: absolute;
  bottom: 30px;
  right: 20px;
}

.to-do .to-do-button .btn {
  width: 40px;
  height: 40px;
  float: right;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
  margin: 0;
}

.lazy-dog i {
  opacity: 0.5;
}

.widget-content .widget-lorem .media h5 {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
}

.note-bar .friendlist-box {
  padding: 25px 35px;
  border-top: 1px solid #e3e3e3;
}

.note-bar .friendlist-box:first-child {
  border: 0;
}

.note-bar .friendlist-box h6 {
  display: inline-block;
}

.note-bar .friendlist-box i {
  opacity: 0.2;
  color: #888;
}

.to-do-list h6 {
  display: inline-block;
}

.to-do-list .done-task {
  opacity: 0.7;
}

.to-do-list .done-task>div {
  -webkit-filter: grayscale(0.8);
  filter: grayscale(0.8);
}

.to-do-list .done-task h6,
.to-do-list .done-task p,
.to-do-list .done-task span {
  text-decoration: line-through;
}

.to-do-list .checkbox-fade .check-task {
  display: block;
}

.to-do-list .checkbox-fade .to-content {
  display: inline-block;
}

.to-do-list .checkbox-fade .cr {
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 24px;
  margin-right: 0.5em;
  position: relative;
  width: 24px;
  margin: 0;
  top: 5px;
}

.to-do-list .checkbox-fade .cr .cr-icon {
  color: #fff;
  font-size: 0.8em;
  left: 0;
  line-height: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

.to-do-list .checkbox-fade label input[type=checkbox] {
  display: none;
}

.to-do-list .checkbox-fade label input[type=checkbox]+.cr>.cr-icon {
  -webkit-transform: scale(3) rotateZ(-20deg);
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.to-do-list .checkbox-fade label input[type=checkbox]:checked+.cr>.cr-icon {
  -webkit-transform: scale(1) rotateZ(0deg);
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}

.to-do-list .checkbox-fade label input[type=checkbox]:checked+.cr {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  border: 0;
}

.User-Activity .table td,
.user-list .table td {
  vertical-align: middle;
}

.User-Activity .table thead th,
.user-list .table thead th {
  border: 0;
}

.Application-list .table td,
.code-table .table td {
  vertical-align: middle;
}

.Application-list .table .label,
.code-table .table .label {
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.Application-list thead th,
.code-table thead th {
  border: 0;
}

.Recent-Users .table tr:first-child td,
.User-Lists .table tr:first-child td {
  border-top: 0;
}

.Recent-Users .table td,
.User-Lists .table td {
  vertical-align: middle;
}

.Recent-Users .table .label,
.User-Lists .table .label {
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.social-media .progress {
  background: transparent;
  border-radius: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social-media .progress h5 {
  position: relative;
  top: -2px;
}

.post-emoticon ul {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.post-emoticon li {
  display: inline-block;
}

.post-emoticon i {
  position: relative;
  top: 4px;
}

.visa-top .visa img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.loction-user .row {
  padding: 35px 30px;
}

.loction-user i {
  opacity: 0.5;
}

.loction-user .loction-progress {
  padding: 35px 30px;
}

.loction-user .loction-progress .progress {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10px;
  border-radius: 0;
}

.Design-sprint .design-image,
.dashboard-kit .design-image {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.Design-sprint li,
.dashboard-kit li {
  display: inline-block;
  text-align: center;
  margin-right: 3px;
}

.Design-sprint .btn,
.dashboard-kit .btn {
  border-radius: 50px;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}

.Design-sprint i,
.dashboard-kit i {
  opacity: 0.3;
}

.ux-designer {
  position: relative;
  padding: 35px 30px;
}

.ux-designer .btn {
  border-radius: 50px;
  border: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: -20px;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.task-list {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 30px 0 0;
}

.task-list:after {
  content: "";
  position: absolute;
  background: #ecedef;
  height: 100%;
  width: 2px;
  top: 0;
  left: 30px;
  z-index: 1;
}

.task-list li {
  margin-bottom: 30px;
  padding-left: 55px;
  position: relative;
}

.task-list li:last-child {
  margin-bottom: 0;
}

.task-list li .task-icon {
  position: absolute;
  left: 22px;
  top: 13px;
  border-radius: 50%;
  padding: 2px;
  width: 17px;
  height: 17px;
  z-index: 2;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.project-main {
  padding: 30px 25px;
}

.project-main i {
  opacity: 0.4;
}

.user-chart i {
  opacity: 0.3;
}

.leads-progress .progress,
.progress-gender .progress {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10px;
  border-radius: 0;
}

.user-card .label {
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.Active-visitor .progress {
  height: 7px;
}

.Active-visitor .card-active>div+div {
  border-left: 1px solid #eaeaea;
}

@media screen and (max-width: 767px) {
  .Active-visitor .card-active [class*=col-]:last-child {
    border-left: 0;
    margin-top: 20px;
  }
}

.Invoice-bar .invoice-lable label {
  background: #fff;
  border-radius: 15px;
  padding: 4px 20px;
}

.Invoice-bar i {
  background: rgba(255, 255, 255, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  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;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.Invoice-bar .progress {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 0;
  height: 7px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.location-sale .card-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  text-align: center;
  right: 0;
  left: 0;
  margin: 0 auto;
  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;
}

@media screen and (max-width: 768px) {
  .location-sale .card-icon {
    display: none;
  }
}

.card-Impression i {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  width: 52px;
  height: 52px;
  border-radius: 5px;
  text-align: center;
  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;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.card-Revenue i {
  background: rgba(255, 255, 255, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  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;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card-customer i {
  width: 70px;
  height: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 375px) {
  .card-customer i {
    width: 80px;
    height: 80px;
    font-size: 50px;
  }
}

.ticket-customer i {
  position: absolute;
  opacity: 0.2;
  right: 32px;
  bottom: 30px;
}

.ticket-visitor .progress {
  border-radius: 0;
  height: 13px;
}

.customer-visitor i {
  opacity: 0.2;
  font-size: 118px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card-social:hover i {
  font-size: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card-social .progress {
  height: 6px;
}

.card-social .card-active>div+div {
  border-left: 1px solid #eaeaea;
}

.Online-Order .progress,
.statistial-visit .progress {
  height: 6px;
}

.team-leader .slide {
  margin-bottom: 32px;
}

.team-leader .slide li {
  width: 10px;
  height: 10px;
  background: #e3e3e3;
  margin: 0 6px;
  border-radius: 50px;
}

.team-leader .slide .carousel-indicators {
  bottom: -44px;
}

.team-leader .slide .carousel-indicators .active {
  background: #869791;
}

.affilate-offers .card-icon {
  opacity: 0.5;
}

.affilate-offers .label {
  border-radius: 15px;
  margin: 0;
  padding: 8px 18px;
}

.earning-date .bd-example {
  padding: 0;
  margin: 0;
  border: 0;
}

.earning-date .bd-example .nav-pills {
  background: transparent;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.earning-date .bd-example .nav-pills .nav-link {
  min-width: auto;
  padding: 6px 20px;
  color: #fff;
}

.earning-date .bd-example .nav-pills .nav-link.active {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
}

.earning-date .bd-example .nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  top: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 11px;
}

.earning-date .bd-example .tab-content {
  background: transparent;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sale-view i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  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;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.project-task i {
  opacity: 0.5;
}

.project-task .label {
  border-radius: 15px;
  margin: 0;
  padding: 6px 16px;
}

.project-task .progress {
  height: 6px;
}

.card-event .label {
  border-radius: 15px;
  margin: 0;
  padding: 5px 16px;
}

.card-event i {
  position: absolute;
  bottom: 36px;
  right: 27px;
}

.bitcoin-wallet i {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.5;
}

.summary-box .card-icon {
  opacity: 0.4;
}

.feature-card-box .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  color: #fff;
  margin: 0 auto;
  padding: 10px;
  font-size: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.feature-card-box:hover .feature-icon {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.card .card-block code {
  background-color: #eee;
  margin: 5px;
  display: inline-block;
  border-radius: 3px;
  padding: 0 3px;
}

@media screen and (max-width: 767px) {
  .user-designer [class*=col-]:last-child {
    margin-top: 15px;
  }

  div.dataTables_wrapper div.dataTables_filter label {
    float: none !important;
    text-align: center;
  }
}

.offline-box iframe {
  width: 100%;
  border: 1px solid #ddd;
}

/* ===================== to do page ============================= */
#task-container ul {
  overflow: hidden;
  padding: 0;
}

#task-container li {
  float: left;
  width: 49%;
  overflow: auto;
  height: auto;
  min-height: 10px;
  background: #fff;
  display: inline-block;
  padding: 20px;
  border: 1px solid #ccc;
  color: #666;
  border-top: 5px solid #04a9f5;
  cursor: pointer;
  margin-bottom: 20px;
  margin-right: 2%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

#task-container li:nth-child(2n) {
  margin-right: 0;
}

#task-container li.complete {
  opacity: 1;
  border-top: 9px solid #f44236;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

#task-container li.complete:before {
  background: url("../images/complete.png") no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  content: "";
  width: 55px;
  height: 55px;
  background-size: 100%;
}

#task-container li.complete p {
  text-decoration: line-through;
}

@media screen and (max-width: 580px) {
  #task-container li {
    width: 100%;
  }
}

.new-task .to-do-list .cr {
  float: left;
  top: 0;
  margin-right: 16px;
}

.new-task label input[type=checkbox] {
  display: none;
}

.checkbox-fade .cr {
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  margin-right: 0.5em;
  position: relative;
  width: 24px;
  margin-right: 16px;
  top: 0;
}

.task-panel .to-do-label {
  margin-bottom: 15px;
}

.task-panel .to-do-label:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}

.done-task .captions,
.done-task span {
  color: #919aa3;
  text-decoration: line-through;
}

.to-do-list i {
  color: #ccc;
  font-size: 17px;
  opacity: 0;
}

.to-do-list:hover i {
  opacity: 1;
  -webkit-transition: opacity ease-in 0.3s;
  transition: opacity ease-in 0.3s;
}

.note-card .note-box-aside {
  border-right: 1px solid #ddd;
}

.note-card .Note-header {
  padding: 20px 0;
}

.note-card #Note-pad {
  border: none;
  resize: none;
  background: 0 0;
  padding: 0 20px 0 50px;
  line-height: 35px;
}

.note-card .note-write {
  position: relative;
  background: -webkit-linear-gradient(top, #98dcfa 0%, #e1f5fe 5%) 0 0;
  background-size: 100% 35px;
}

.note-card .note-write:before {
  content: '';
  position: absolute;
  width: 0;
  top: 0;
  left: 32px;
  bottom: 0;
  border-left: 1px solid #4fc3f7;
}

.note-card .note-write:after {
  content: '';
  position: absolute;
  width: 0;
  top: 0;
  left: 34px;
  bottom: 0;
  border-left: 1px solid #4fc3f7;
}

.note-card .Note-delete {
  margin-bottom: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  position: absolute;
  right: 20px;
  color: #fff;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.note-card #Note-list li:hover .Note-delete {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

/* ===================== Gallery page ============================= */
.gallery-masonry .card-columns {
  -webkit-column-count: 4;
  column-count: 4;
}

@media screen and (max-width: 1400px) {
  .gallery-masonry .card-columns {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media screen and (max-width: 992px) {
  .gallery-masonry .card-columns {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media screen and (max-width: 575px) {
  .gallery-masonry .card-columns {
    -webkit-column-count: 1;
    column-count: 1;
  }
}

.job-meta-data i {
  margin-right: 5px;
  color: #04a9f5;
}

/* ===================== Task-list page ============================= */
.task-data img {
  width: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.task-data i {
  color: #111;
}

.task-data .dropdown-toggle:after {
  color: #111;
}

.task-board-left .task-right-header-revision,
.task-board-left .task-right-header-status,
.task-board-left .task-right-header-users {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
}

.task-board-left .taskboard-right-progress,
.task-board-left .taskboard-right-revision,
.task-board-left .taskboard-right-users {
  padding-top: 10px;
}

.task-board-left .taskboard-right-progress .progress {
  height: 9px;
  margin-bottom: 25px;
}

.task-board-left .user-box .media-object {
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.task-board-left .user-box .media-left {
  position: relative;
}

.task-board-left .user-box .btn.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  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;
}

.task-board-left .live-status {
  height: 8px;
  width: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 100%;
  top: 5px;
}

.filter-bar .navbar {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 557px) {
  .filter-bar .navbar .f-text {
    display: block;
    width: 100%;
  }

  .filter-bar .navbar .f-view {
    padding-left: 24px;
  }

  .filter-bar .navbar .f-view span {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.filter-bar .label {
  border-radius: 4px;
  font-size: 13px;
  padding: 3px 7px;
}

.filter-bar .task-detail {
  margin-bottom: 5px;
}

.filter-bar .card-task .task-list-table {
  display: inline-block;
}

.filter-bar .card-task .task-list-table img {
  width: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.filter-bar .card-task .task-list-table i {
  color: #111;
}

.filter-bar .card-task .task-board {
  float: right;
  margin-top: 5px;
}

.filter-bar .card-task .task-board .dropdown {
  display: inline-block;
}

.filter-bar .card-task .task-board .btn {
  padding: 4px 10px;
  font-size: 10px;
  margin: 0;
}

.assign-user img,
.task-comment img {
  width: 45px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ===================== Invoice page ============================= */
.invoice-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.invoice-table.table {
  padding-left: 20px;
}

.invoice-table.table td {
  border: 0;
  padding: 4px 0;
}

.invoive-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.invoive-info h6 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.invoive-info .invoice-order.table {
  padding-left: 0;
}

.invoive-info .invoice-order.table th {
  border: 0;
  padding: 4px 0;
}

.invoive-info .invoice-order.table th:first-child {
  padding-left: 0;
  width: 80px;
}

.invoice-total.table {
  background: #f3f3f3;
  padding: 30px 0;
}

.invoice-total.table th {
  border: 0;
  padding: 4px 0;
  text-align: right;
}

.invoice-total.table td {
  text-align: right;
}

.invoice-total.table tbody {
  padding-right: 20px;
  float: right;
}

.invoice-summary .label {
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 12px;
}

.invoice-list .btn {
  padding: 5px 10px;
  font-size: 12px;
}

.invoice-list .task-list-table {
  display: inline-block;
}

/*  ================ new css =================== */
.datepicker-dropdown {
  padding: 20px;
  color: #fff;
  background: #3f4d67;
  font-size: 14px;
}

.datepicker-dropdown:after {
  border-bottom: 6px solid #3f4d67;
}

.datepicker-dropdown.datepicker-orient-top:after {
  border-top: 6px solid #3f4d67;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active,
.datepicker table tr td.highlighted,
.datepicker table tr td.today,
.datepicker table tr td.day:hover,
.datepicker table tr td.focused,
.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
  background-color: #333f54;
  color: #fff;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.new,
.datepicker table tr td.old {
  color: #ffffff94;
}

.syntax-output {
  border-radius: 0.25rem;
  border: 1px solid #eaeaea;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  padding: 3px 9px !important;
  background-color: #04a9f5;
  color: #fff;
}

.owl-carousel button:focus {
  outline: none;
  color: #fff;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: #04a9f5;
  color: #fff;
}

.counter b {
  font-size: 24px;
}

.tour-mobile .error-block {
  display: none;
}

.message-mobile span {
  font-size: 16px;
}

.message-mobile .task-right-header-status {
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .message-mobile .task-right-header-status {
    display: none;
  }
}

.fullcalendar-card .fc-button {
  background-color: #04a9f5;
  border-color: #fff;
  color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  height: 37px;
  padding: 0 15px;
}

.fullcalendar-card h2 {
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .fullcalendar-card .fc .fc-toolbar>*>* {
    float: none;
  }

  .fullcalendar-card .fc-toolbar .fc-left,
  .fullcalendar-card .fc-toolbar .fc-right,
  .fullcalendar-card .fc-toolbar .fc-center {
    float: none;
    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;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

.ck-content strong {
  font-weight: 600;
}

div.code-toolbar>.toolbar a,
div.code-toolbar>.toolbar button,
div.code-toolbar>.toolbar span {
  padding: 3px 0.9em !important;
  background: #04a9f5 !important;
  color: #fff !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

pre[class*=language-]:after,
pre[class*=language-]:before {
  display: none;
}

@media screen and (max-width: 1199px) {
  .note-card .note-box-aside {
    border: none !important;
  }
}

@media screen and (max-width: 991px) {
  .ch-block {
    display: none;
  }

  .msg-block.dis-chat .taskboard-right-progress {
    display: none;
  }

  .msg-block.dis-chat .ch-block {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .tour-mobile .error-block {
    display: block;
  }

  .tour-mobile .page-wrapper {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .horizontal-mobile {
    display: none;
  }
}

/**  =====================
      Form Componant css start
==========================  **/
.custom-select,
.form-control {
  background: #f4f7fa;
  padding: 5px 8px;
  font-size: 12px;
}

.custom-select:focus,
.form-control:focus {
  background: #f4f7fa;
}

.custom-select::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #aaaeb3;
  opacity: 1;
}

.custom-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #aaaeb3;
}

.custom-select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #aaaeb3;
}

/* input group start */
.input-group {
  background: #f4f7fa;
}

.input-group .input-group-text {
  padding-left: 15px;
  padding-right: 15px;
  background: transparent;
}

.input-group .input-group-text i {
  font-size: 20px;
}

.input-group .custom-file-label {
  margin-bottom: 0;
}

.input-group .btn {
  margin-bottom: 0;
  margin-right: 0;
}

.cust-file-button .custom-file-label {
  height: calc(2.25rem + 8px);
  line-height: 2.5;
}

.cust-file-button .custom-file-label::after {
  padding: 0.775rem 0.75rem;
  height: 2.65rem;
}

.custom-select {
  height: calc(2.25rem + 9px);
}

/* input group End */
/**====== Form Componant css end ======**/
select.form-control:not([size]):not([multiple]) {
  height: calc(2.55rem + 2px);
}

.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),
.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
.input-group-lg>select.form-control:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
  height: calc(3.375rem + 2px);
}

.minicolors .form-control {
  padding: 6px 12px 5px 44px;
}

/* form-select */
.select2-container {
  width: 100% !important;
}

.tt-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  cursor: pointer;
}

.bootstrap-tagsinput {
  width: 100%;
}

/**  =====================
      Radio & Checked css start
==========================  **/
.checkbox {
  padding: 10px 0;
  min-height: auto;
  position: relative;
  margin-right: 5px;
}

.checkbox input[type=checkbox] {
  margin: 0;
  display: none;
  width: 22px;
}

.checkbox input[type=checkbox]+.cr {
  padding-left: 0;
}

.checkbox input[type=checkbox]+.cr:before {
  content: "\e83f";
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #e9eaec;
  border-radius: 3px;
  font-size: 15px;
  font-family: 'feather';
  font-weight: 400;
  line-height: 19px;
  vertical-align: bottom;
  text-align: center;
  background: #ffffff;
  color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.checkbox input[type=checkbox]:checked+.cr:before {
  background: #1dd5d2;
  border-color: #1dd5d2;
  color: #ffffff;
}

.checkbox input[type=checkbox].disabled+.cr,
.checkbox input[type=checkbox]:disabled+.cr {
  opacity: 0.5;
}

.checkbox input[type=checkbox].disabled+.cr:before,
.checkbox input[type=checkbox]:disabled+.cr:before {
  cursor: not-allowed;
}

.checkbox.checkbox-fill input[type=checkbox]+.cr:after {
  content: "";
  width: 22.5px;
  height: 22.5px;
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #e9eaec;
  border-radius: 2px;
  vertical-align: bottom;
  text-align: center;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 8.5px;
  left: 3px;
}

.checkbox.checkbox-fill input[type=checkbox]+.cr:before {
  opacity: 0;
  content: "\e840";
  font-size: 27px;
  background: transparent;
}

.checkbox.checkbox-fill input[type=checkbox]:checked+.cr:after {
  opacity: 0;
}

.checkbox.checkbox-fill input[type=checkbox]:checked+.cr:before {
  opacity: 1;
  background: transparent;
  color: #1dd5d2;
  border-color: transparent;
}

.checkbox.checkbox-primary input[type=checkbox]:checked+.cr:before {
  background: #04a9f5;
  border-color: #04a9f5;
  color: #ffffff;
}

.checkbox.checkbox-fill.checkbox-primary input[type=checkbox]:checked+.cr:before {
  background: transparent;
  color: #04a9f5;
  border-color: transparent;
}

.checkbox.checkbox-danger input[type=checkbox]:checked+.cr:before {
  background: #f44236;
  border-color: #f44236;
  color: #ffffff;
}

.checkbox.checkbox-fill.checkbox-danger input[type=checkbox]:checked+.cr:before {
  background: transparent;
  color: #f44236;
  border-color: transparent;
}

.checkbox.checkbox-success input[type=checkbox]:checked+.cr:before {
  background: #1de9b6;
  border-color: #1de9b6;
  color: #ffffff;
}

.checkbox.checkbox-fill.checkbox-success input[type=checkbox]:checked+.cr:before {
  background: transparent;
  color: #1de9b6;
  border-color: transparent;
}

.checkbox.checkbox-warning input[type=checkbox]:checked+.cr:before {
  background: #f4c22b;
  border-color: #f4c22b;
  color: #ffffff;
}

.checkbox.checkbox-fill.checkbox-warning input[type=checkbox]:checked+.cr:before {
  background: transparent;
  color: #f4c22b;
  border-color: transparent;
}

.checkbox.checkbox-info input[type=checkbox]:checked+.cr:before {
  background: #3ebfea;
  border-color: #3ebfea;
  color: #ffffff;
}

.checkbox.checkbox-fill.checkbox-info input[type=checkbox]:checked+.cr:before {
  background: transparent;
  color: #3ebfea;
  border-color: transparent;
}

.checkbox .cr {
  cursor: pointer;
}

.radio {
  padding: 10px 0;
  min-height: auto;
  position: relative;
  margin-right: 5px;
}

.radio input[type=radio] {
  margin: 0;
  display: none;
  width: 22px;
}

.radio input[type=radio]+.cr {
  padding-left: 0;
}

.radio input[type=radio]+.cr:after,
.radio input[type=radio]+.cr:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: bottom;
  background: #fff;
  color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.radio input[type=radio]+.cr:before {
  width: 22px;
  height: 22px;
  border: 2px solid #e9eaec;
}

.radio input[type=radio]+.cr:after {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 13px;
  left: 5px;
}

.radio input[type=radio]:checked+.cr:before {
  border-color: #1dd5d2;
}

.radio input[type=radio]:checked+.cr:after {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.radio input[type=radio]:disabled+.cr {
  opacity: 0.5;
  cursor: not-allowed;
}

.radio input[type=radio]:disabled+.cr:after,
.radio input[type=radio]:disabled+.cr:before {
  cursor: not-allowed;
}

.radio.radio-fill input[type=radio]+.cr:after {
  width: 18px;
  height: 18px;
  top: 10px;
  left: 2px;
}

.radio.radio-primary input[type=radio]:checked+.cr:before {
  border-color: #04a9f5;
}

.radio.radio-primary input[type=radio]:checked+.cr:after {
  background: #04a9f5;
}

.radio.radio-danger input[type=radio]:checked+.cr:before {
  border-color: #f44236;
}

.radio.radio-danger input[type=radio]:checked+.cr:after {
  background: #f44236;
}

.radio.radio-success input[type=radio]:checked+.cr:before {
  border-color: #1de9b6;
}

.radio.radio-success input[type=radio]:checked+.cr:after {
  background: #1de9b6;
}

.radio.radio-warning input[type=radio]:checked+.cr:before {
  border-color: #f4c22b;
}

.radio.radio-warning input[type=radio]:checked+.cr:after {
  background: #f4c22b;
}

.radio.radio-info input[type=radio]:checked+.cr:before {
  border-color: #3ebfea;
}

.radio.radio-info input[type=radio]:checked+.cr:after {
  background: #3ebfea;
}

.radio .cr {
  cursor: pointer;
}

@-moz-document url-prefix() {
  .radio input[type="radio"]+.cr::after {
    top: 14px;
  }
}

.custom-controls-stacked .radio input[type=radio]+.cr:after {
  top: 15px;
}

/**====== Radio & Checked css end ======**/
/**  =====================
      Label & Badges css start
==========================  **/
.label {
  padding: 4px 10px;
  min-height: auto;
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
}

.label.label-primary {
  background: #04a9f5;
  color: #ffffff;
}

.label.label-danger {
  background: #f44236;
  color: #ffffff;
}

.label.label-success {
  background: #1de9b6;
  color: #ffffff;
}

.label.label-warning {
  background: #f4c22b;
  color: #ffffff;
}

.label.label-info {
  background: #3ebfea;
  color: #ffffff;
}

/**====== Label & Badges css end ======**/
/**  =====================
      Data Tables css start
==========================  **/
.table td,
.table th {
  border-top: 1px solid #eaeaea;
  white-space: nowrap;
  padding: 8px;
}

.table thead th {
  border-bottom: 1px solid #eaeaea;
}

.table tbody+tbody {
  border-top: 2px solid #eaeaea;
}

/* Border versions */
.table-bordered {
  border: 1px solid #eaeaea;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #eaeaea;
}

/* Zebra-striping */
.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: rgba(4, 169, 245, 0.05);
}

/* Hover effect */
.table-hover tbody tr:hover {
  background-color: rgba(4, 169, 245, 0.05);
}

/* Table backgrounds */
.table .thead-dark th {
  color: #fff;
  background-color: #37474f;
  border-color: #222c31;
}

.table-dark {
  color: #fff;
  background-color: #37474f;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #222c31;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: #334249;
}

.table-dark.table-hover tbody tr:hover {
  background-color: #2d3940;
}

/* fixed header position */
table.dataTable.fixedHeader-floating {
  top: 0 !important;
}

@media screen and (max-width: 992px) {
  table.dataTable.fixedHeader-floating {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  .fixedHeader-locked {
    display: none !important;
  }
}

/**  =====================
      Foo-table css start
==========================  **/
.footable .pagination>.active>a,
.footable .pagination>.active>span {
  background-color: #04a9f5;
  border-color: #04a9f5;
}

.footable .pagination>.active>a:focus,
.footable .pagination>.active>a:hover,
.footable .pagination>.active>span:focus,
.footable .pagination>.active>span:hover {
  background-color: #04a9f5;
  border-color: #04a9f5;
}

.footable .pagination>li>a,
.footable .pagination>li>span {
  color: #222;
}

.footable-details.table,
.footable.table {
  margin-bottom: 0;
}

table.footable>tfoot>tr.footable-paging>td>span.label {
  margin-bottom: 0;
}

table.footable-paging-center>tfoot>tr.footable-paging>td {
  padding-bottom: 0;
}

.table-columned>tbody>tr>td {
  border: 0;
  border-left: 1px solid #eaeaea;
}

.table-columned>tbody>tr>th {
  border: 0;
}

/**====== Foo-table css end ======**/
/**====== Data Tables css end ======**/
/**  =====================
      Authentication css start
==========================  **/
.auth-wrapper {
  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;
  overflow: hidden;
  min-width: 100%;
  min-height: 92vh;
}

.auth-wrapper a,
.auth-wrapper p>a {
  color: #111;
  font-weight: 600;
}

.auth-wrapper .btn-auth-gen .btn-icon {
  width: 140px;
  height: 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;
  font-size: 45px;
}

.auth-wrapper .btn-auth-gen .btn-icon small {
  font-size: 15px;
}

.auth-wrapper .input-group {
  background: transparent;
}

.auth-wrapper .card {
  margin-bottom: 0;
}

.auth-wrapper>div {
  z-index: 5;
}

.auth-wrapper .auth-content {
  position: relative;
  width: 390px;
  padding: 15px;
  z-index: 5;
}

.auth-wrapper .auth-content.multyform,
.auth-wrapper .auth-content.subscribe {
  width: 750px;
}

@media only screen and (max-width: 768px) {
  .auth-wrapper {
    max-width: 360px;
  }
}

@media only screen and (max-width: 575px) {
  .auth-wrapper .card .card-body {
    padding: 30px 15px;
  }
}

.auth-wrapper .auth-icon {
  font-size: 30px;
}

.auth-wrapper .auth-icon:before {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-wrapper.offline {
  background-image: none;
}

.auth-wrapper.offline:before {
  display: none;
}

.auth-wrapper .auth-bg .r {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.auth-wrapper .auth-bg .r:first-child {
  top: -100px;
  right: -100px;
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.auth-wrapper .auth-bg .r:last-child {
  left: -100px;
  bottom: -100px;
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.auth-wrapper .auth-bg .r.s {
  width: 20px;
  height: 20px;
}

.auth-wrapper .auth-bg .r.s:nth-child(2) {
  top: 150px;
  right: -150px;
  background: #04a9f5;
}

.auth-wrapper .auth-bg .r.s:nth-child(3) {
  left: -150px;
  bottom: 150px;
  background: #1de9b6;
}

.auth-wrapper .auth-bg .r:nth-child(odd) {
  -webkit-animation: floating 7s infinite;
  animation: floating 7s infinite;
}

.auth-wrapper .auth-bg .r:nth-child(even) {
  -webkit-animation: floating 9s infinite;
  animation: floating 9s infinite;
}

/* image varient start */
.aut-bg-img {
  background-image: url("../images/bg-images/bg4.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.aut-bg-img-side p {
  line-height: 2;
}

.aut-bg-img .custom-select,
.aut-bg-img .form-control,
.aut-bg-img-side .custom-select,
.aut-bg-img-side .form-control {
  background: transparent;
}

.auth-tabs .tab-content {
  overflow: hidden;
  position: relative;
}

.auth-tabs .tab-content .auth-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 150px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

/* image varient start */
@-webkit-keyframes floating {
  from {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

@keyframes floating {
  from {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

/**====== Authentication css end ======**/
/* Button variants
 Easily pump out default styles, as well as :hover, :focus, :active,
 and disabled options for all buttons */
/**  =====================
      Button css start
==========================  **/
.btn-theme,
a.btn-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  border-color: #1de1c2;
  border-radius: 0.25rem;
  padding: 11px 25px;
}

.btn-theme:active,
.btn-theme:focus,
.btn-theme:not(:disabled):not(.disabled):active,
a.btn-theme:active,
a.btn-theme:focus,
a.btn-theme:not(:disabled):not(.disabled):active {
  background-image: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-theme.active,
a.btn-theme.active {
  background-image: #fff !important;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-theme {
  background-image: #fff !important;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-theme:active,
.btn-outline-theme:focus,
.btn-outline-theme:not(:disabled):not(.disabled):active {
  background-image: #fff;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
}

.btn-outline-theme.active {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%) !important;
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
}

.btn-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 25px;
}

.btn-theme2:active,
.btn-theme2:focus,
.btn-theme2:not(:disabled):not(.disabled):active {
  background-image: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-theme2.active {
  background-image: #fff !important;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-theme2 {
  background-image: #fff !important;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-theme2:active,
.btn-outline-theme2:focus,
.btn-outline-theme2:not(:disabled):not(.disabled):active {
  background-image: #fff;
  color: #d6d6d6;
  border: 1px solid #eaeaea;
}

.btn-outline-theme2.active {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%) !important;
  color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
}

.btn {
  padding: 5px 5px;
  border-radius: 0.25rem;
  font-size: 14px;
  margin-bottom: 5px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn>i {
  margin-right: 12px;
}

.btn.btn-icon,
.btn.drp-icon {
  width: 45px;
  height: 45px;
  padding: 10px 12px;
}

.btn.btn-icon>i,
.btn.drp-icon>i {
  margin-right: 0;
}

.btn.drp-icon.dropdown-toggle:after {
  display: none;
}

.btn.drp-icon+.dropdown-menu {
  margin-left: -10px;
}

.btn:active,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-square {
  border-radius: 0;
}

.btn.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

.btn-group .btn {
  margin-bottom: 0;
  margin-right: 0;
}

.shadow-1 {
  -webkit-box-shadow: 0 7px 12px 0 rgba(62, 57, 107, 0.16);
  box-shadow: 0 7px 12px 0 rgba(62, 57, 107, 0.16);
}

.shadow-2 {
  -webkit-box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
  box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
}

.shadow-3 {
  -webkit-box-shadow: 0 14px 24px 0 rgba(62, 57, 107, 0.26);
  box-shadow: 0 14px 24px 0 rgba(62, 57, 107, 0.26);
}

.shadow-4 {
  -webkit-box-shadow: 0 16px 28px 0 rgba(62, 57, 107, 0.3);
  box-shadow: 0 16px 28px 0 rgba(62, 57, 107, 0.3);
}

.shadow-5 {
  -webkit-box-shadow: 0 20px 24px 0 rgba(62, 57, 107, 0.36);
  box-shadow: 0 20px 24px 0 rgba(62, 57, 107, 0.36);
}

/* Alternate buttons */
.btn-primary {
  color: #fff;
  background-color: #2C7BE5;
  border-color: #2C7BE5;
  border-radius: 8px;
}

.btn-primary:hover {
  color: #fff;
  background-color: #038fcf;
  border-color: #0386c3;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #04a9f5;
  border-color: #04a9f5;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0386c3;
  border-color: #037eb6;
}

.btn-secondary {
  color: #fff;
  background-color: #748892;
  border-color: #748892;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #62747d;
  border-color: #5d6e76;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #748892;
  border-color: #748892;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #5d6e76;
  border-color: #57676f;
}

.btn-success {
  color: #fff;
  background-color: #1de9b6;
  border-color: #1de9b6;
}

.btn-success:hover {
  color: #fff;
  background-color: #14cc9e;
  border-color: #13c095;
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #1de9b6;
  border-color: #1de9b6;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #13c095;
  border-color: #12b58c;
}

.btn-info {
  color: #fff;
  background-color: #3ebfea;
  border-color: #3ebfea;
}

.btn-info:hover {
  color: #fff;
  background-color: #1cb4e6;
  border-color: #18acdd;
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #3ebfea;
  border-color: #3ebfea;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #18acdd;
  border-color: #17a3d1;
}

.btn-warning {
  color: #fff;
  background-color: #f4c22b;
  border-color: #f4c22b;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ecb50c;
  border-color: #e0ab0c;
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #fff;
  background-color: #f4c22b;
  border-color: #f4c22b;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #e0ab0c;
  border-color: #d4a20b;
}

.btn-danger {
  color: #fff;
  background-color: #f44236 !important;
  border-color: #f44236 !important;
}

.btn-danger:hover {
  color: #fff;
  background-color: #f22012;
  border-color: #ea1b0d;
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #f44236;
  border-color: #f44236;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ea1b0d;
  border-color: #de190c;
}

.btn-light {
  color: #37474f;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-light:hover {
  color: #37474f;
  background-color: #dfdfdf;
  border-color: #d9d9d9;
}

.btn-light.disabled,
.btn-light:disabled {
  color: #37474f;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
  color: #37474f;
  background-color: #d9d9d9;
  border-color: #d2d2d2;
}

.btn-dark {
  color: #fff;
  background-color: #37474f;
  border-color: #37474f;
}

.btn-dark:hover {
  color: #fff;
  background-color: #273338;
  border-color: #222c31;
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #37474f;
  border-color: #37474f;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #222c31;
  border-color: #1d2529;
}

/* outline buttons */
.btn-outline-primary {
  color: #04a9f5;
  background-color: transparent;
  background-image: none;
  border-color: #04a9f5;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #04a9f5;
  border-color: #04a9f5;
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #04a9f5;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #04a9f5;
  border-color: #04a9f5;
}

.btn-outline-secondary {
  color: #748892;
  background-color: transparent;
  background-image: none;
  border-color: #748892;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #748892;
  border-color: #748892;
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #748892;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #748892;
  border-color: #748892;
}

.btn-outline-success {
  color: #1de9b6;
  background-color: transparent;
  background-image: none;
  border-color: #1de9b6;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #1de9b6;
  border-color: #1de9b6;
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #1de9b6;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #1de9b6;
  border-color: #1de9b6;
}

.btn-outline-info {
  color: #3ebfea;
  background-color: transparent;
  background-image: none;
  border-color: #3ebfea;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #3ebfea;
  border-color: #3ebfea;
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #3ebfea;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #3ebfea;
  border-color: #3ebfea;
}

.btn-outline-warning {
  color: #f4c22b;
  background-color: transparent;
  background-image: none;
  border-color: #f4c22b;
}

.btn-outline-warning:hover {
  color: #fff;
  background-color: #f4c22b;
  border-color: #f4c22b;
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #f4c22b;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #f4c22b;
  border-color: #f4c22b;
}

.btn-outline-danger {
  color: #f44236;
  background-color: transparent;
  background-image: none;
  border-color: #f44236;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #f44236;
  border-color: #f44236;
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #f44236;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #f44236;
  border-color: #f44236;
}

.btn-outline-light {
  color: #f2f2f2;
  background-color: transparent;
  background-image: none;
  border-color: #f2f2f2;
}

.btn-outline-light:hover {
  color: #37474f;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f2f2f2;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
  color: #37474f;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-outline-dark {
  color: #37474f;
  background-color: transparent;
  background-image: none;
  border-color: #37474f;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #37474f;
  border-color: #37474f;
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #37474f;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #37474f;
  border-color: #37474f;
}

/* glow buttons */
.btn-glow-primary {
  -webkit-box-shadow: 0 1px 6px 2px rgba(4, 169, 245, 0.56), 0 6px 11px 2px rgba(4, 169, 245, 0.2);
  box-shadow: 0 1px 6px 2px rgba(4, 169, 245, 0.56), 0 6px 11px 2px rgba(4, 169, 245, 0.2);
}

.btn-glow-primary:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(4, 169, 245, 0.56), 0 4px 9px 2px rgba(4, 169, 245, 0.1);
  box-shadow: 0 1px 4px 2px rgba(4, 169, 245, 0.56), 0 4px 9px 2px rgba(4, 169, 245, 0.1);
}

.btn-glow-primary:not(:disabled):not(.disabled).active,
.btn-glow-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-primary.dropdown-toggle,
.btn-glow-primary.active,
.btn-glow-primary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-secondary {
  -webkit-box-shadow: 0 1px 6px 2px rgba(116, 136, 146, 0.56), 0 6px 11px 2px rgba(116, 136, 146, 0.2);
  box-shadow: 0 1px 6px 2px rgba(116, 136, 146, 0.56), 0 6px 11px 2px rgba(116, 136, 146, 0.2);
}

.btn-glow-secondary:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(116, 136, 146, 0.56), 0 4px 9px 2px rgba(116, 136, 146, 0.1);
  box-shadow: 0 1px 4px 2px rgba(116, 136, 146, 0.56), 0 4px 9px 2px rgba(116, 136, 146, 0.1);
}

.btn-glow-secondary:not(:disabled):not(.disabled).active,
.btn-glow-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-secondary.dropdown-toggle,
.btn-glow-secondary.active,
.btn-glow-secondary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-success {
  -webkit-box-shadow: 0 1px 6px 2px rgba(29, 233, 182, 0.56), 0 6px 11px 2px rgba(29, 233, 182, 0.2);
  box-shadow: 0 1px 6px 2px rgba(29, 233, 182, 0.56), 0 6px 11px 2px rgba(29, 233, 182, 0.2);
}

.btn-glow-success:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(29, 233, 182, 0.56), 0 4px 9px 2px rgba(29, 233, 182, 0.1);
  box-shadow: 0 1px 4px 2px rgba(29, 233, 182, 0.56), 0 4px 9px 2px rgba(29, 233, 182, 0.1);
}

.btn-glow-success:not(:disabled):not(.disabled).active,
.btn-glow-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-success.dropdown-toggle,
.btn-glow-success.active,
.btn-glow-success:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-info {
  -webkit-box-shadow: 0 1px 6px 2px rgba(62, 191, 234, 0.56), 0 6px 11px 2px rgba(62, 191, 234, 0.2);
  box-shadow: 0 1px 6px 2px rgba(62, 191, 234, 0.56), 0 6px 11px 2px rgba(62, 191, 234, 0.2);
}

.btn-glow-info:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(62, 191, 234, 0.56), 0 4px 9px 2px rgba(62, 191, 234, 0.1);
  box-shadow: 0 1px 4px 2px rgba(62, 191, 234, 0.56), 0 4px 9px 2px rgba(62, 191, 234, 0.1);
}

.btn-glow-info:not(:disabled):not(.disabled).active,
.btn-glow-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-info.dropdown-toggle,
.btn-glow-info.active,
.btn-glow-info:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-warning {
  -webkit-box-shadow: 0 1px 6px 2px rgba(244, 194, 43, 0.56), 0 6px 11px 2px rgba(244, 194, 43, 0.2);
  box-shadow: 0 1px 6px 2px rgba(244, 194, 43, 0.56), 0 6px 11px 2px rgba(244, 194, 43, 0.2);
}

.btn-glow-warning:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(244, 194, 43, 0.56), 0 4px 9px 2px rgba(244, 194, 43, 0.1);
  box-shadow: 0 1px 4px 2px rgba(244, 194, 43, 0.56), 0 4px 9px 2px rgba(244, 194, 43, 0.1);
}

.btn-glow-warning:not(:disabled):not(.disabled).active,
.btn-glow-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-warning.dropdown-toggle,
.btn-glow-warning.active,
.btn-glow-warning:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-danger {
  -webkit-box-shadow: 0 1px 6px 2px rgba(244, 66, 54, 0.56), 0 6px 11px 2px rgba(244, 66, 54, 0.2);
  box-shadow: 0 1px 6px 2px rgba(244, 66, 54, 0.56), 0 6px 11px 2px rgba(244, 66, 54, 0.2);
}

.btn-glow-danger:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(244, 66, 54, 0.56), 0 4px 9px 2px rgba(244, 66, 54, 0.1);
  box-shadow: 0 1px 4px 2px rgba(244, 66, 54, 0.56), 0 4px 9px 2px rgba(244, 66, 54, 0.1);
}

.btn-glow-danger:not(:disabled):not(.disabled).active,
.btn-glow-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-danger.dropdown-toggle,
.btn-glow-danger.active,
.btn-glow-danger:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-light {
  -webkit-box-shadow: 0 1px 6px 2px rgba(242, 242, 242, 0.56), 0 6px 11px 2px rgba(242, 242, 242, 0.2);
  box-shadow: 0 1px 6px 2px rgba(242, 242, 242, 0.56), 0 6px 11px 2px rgba(242, 242, 242, 0.2);
}

.btn-glow-light:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(242, 242, 242, 0.56), 0 4px 9px 2px rgba(242, 242, 242, 0.1);
  box-shadow: 0 1px 4px 2px rgba(242, 242, 242, 0.56), 0 4px 9px 2px rgba(242, 242, 242, 0.1);
}

.btn-glow-light:not(:disabled):not(.disabled).active,
.btn-glow-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-light.dropdown-toggle,
.btn-glow-light.active,
.btn-glow-light:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-glow-dark {
  -webkit-box-shadow: 0 1px 6px 2px rgba(55, 71, 79, 0.56), 0 6px 11px 2px rgba(55, 71, 79, 0.2);
  box-shadow: 0 1px 6px 2px rgba(55, 71, 79, 0.56), 0 6px 11px 2px rgba(55, 71, 79, 0.2);
}

.btn-glow-dark:hover {
  -webkit-box-shadow: 0 1px 4px 2px rgba(55, 71, 79, 0.56), 0 4px 9px 2px rgba(55, 71, 79, 0.1);
  box-shadow: 0 1px 4px 2px rgba(55, 71, 79, 0.56), 0 4px 9px 2px rgba(55, 71, 79, 0.1);
}

.btn-glow-dark:not(:disabled):not(.disabled).active,
.btn-glow-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-glow-dark.dropdown-toggle,
.btn-glow-dark.active,
.btn-glow-dark:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/**====== Button css end ======**/
.swal-footer {
  text-align: center;
}

/**  =====================
      Alert css start
==========================  **/
/* Base styles */
.alert {
  position: relative;
  padding: 15px 20px;
  border-radius: 0;
}

/* Provide class for links that match alerts */
.alert-link {
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.alert-link:hover {
  text-decoration: underline;
}

.alert-dismissible {
  padding-right: 40px;
}

.alert-dismissible .close {
  padding: 14px 10px;
}

/* Alternate styles
 Generate contextual modifier classes for colorizing the alert. */
.alert-primary {
  color: #1c7aa5;
  border-color: #b9e7fc;
}

.alert-primary hr {
  border-top-color: #a1dffb;
}

.alert-primary .alert-link {
  color: #155a79;
}

.alert-secondary {
  color: #576972;
  border-color: #d8dee0;
}

.alert-secondary hr {
  border-top-color: #cad2d5;
}

.alert-secondary .alert-link {
  color: #414e55;
}

.alert-success {
  color: #299b85;
  border-color: #c0f9eb;
}

.alert-success hr {
  border-top-color: #a9f7e4;
}

.alert-success .alert-link {
  color: #1e7362;
}

.alert-info {
  color: #3b85a0;
  border-color: #c9edf9;
}

.alert-info hr {
  border-top-color: #b2e5f6;
}

.alert-info .alert-link {
  color: #2d667b;
}

.alert-warning {
  color: #99873c;
  border-color: #fceec4;
}

.alert-warning hr {
  border-top-color: #fbe7ac;
}

.alert-warning .alert-link {
  color: #74672e;
}

.alert-danger {
  color: #994442;
  border-color: #fccac7;
}

.alert-danger hr {
  border-top-color: #fbb3af;
}

.alert-danger .alert-link {
  color: #753433;
}

.alert-light {
  color: #98a0a4;
  border-color: #fbfbfb;
}

.alert-light hr {
  border-top-color: #eeeeee;
}

.alert-light .alert-link {
  color: #7d878c;
}

.alert-dark {
  color: #37474f;
  border-color: #c7cbce;
}

.alert-dark hr {
  border-top-color: #b9bec2;
}

.alert-dark .alert-link {
  color: #222c31;
}

/**====== Alert css end ======**/
/**  =====================
      Breadcrumbs & Pagination css start
==========================  **/
/* Breadcrumbs */
.breadcrumb {
  background-color: #f4f7fa;
  border-radius: 0;
}

.breadcrumb-item+.breadcrumb-item {
  color: #04a9f5;
}

.breadcrumb-item+.breadcrumb-item::before {
  /* content: $breadcrumb-divider; */
}

.breadcrumb-item.active {
  color: #111;
}

/* pagination */
.page-item.active .page-link {
  color: #fff;
  background-color: #04a9f5;
  border-color: #04a9f5;
}

/**====== Breadcrumbs & Pagination css end ======**/
/**  =====================
      Progress css start
==========================  **/
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 16px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 16px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  height: 12px;
  font-size: 10px;
  background-color: #f4f7fa;
  border-radius: 0;
  overflow: visible;
}

.progress-bar {
  background-color: #04a9f5;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.progress-bar.progress-c-blue {
  background: #04a9f5;
}

.progress-bar.progress-c-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.progress-bar.progress-c-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.progress-bar.progress-c-red {
  background: #f44236;
}

.progress-bar.progress-c-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.progress-bar.progress-c-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.progress-bar.progress-c-green {
  background: #1de9b6;
}

.progress-bar.progress-c-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.progress-bar.progress-c-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.progress-bar.progress-c-yellow {
  background: #f4c22b;
}

.progress-bar.progress-c-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.progress-bar.progress-c-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

.progress-bar.progress-c-purple {
  background: #a389d4;
}

.progress-bar.progress-c-theme {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.progress-bar.progress-c-theme2 {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

/**====== Progress css end ======**/
/**  =====================
      tooltip css start
==========================  **/
.tooltip.show {
  opacity: 1;
}

.tooltip .arrow {
  position: absolute;
  display: block;
}

.tooltip .arrow::before {
  content: "\6d";
  left: 0;
  font-family: "pct";
  font-size: 20px;
  line-height: 0.3;
  color: #000;
  border: none;
  text-shadow: 0 2px 3px rgba(220, 220, 220, 0.46);
}

.bs-tooltip-right .arrow::before {
  content: "\6a";
  left: -7px;
  top: 2.6px;
  border: none;
  text-shadow: -2px 0 3px rgba(220, 220, 220, 0.46);
}

.bs-tooltip-right .tooltip-inner {
  border-radius: 15px 20px 20px 15px;
}

.bs-tooltip-bottom .arrow::before {
  content: "\6c";
  border: none;
  text-shadow: 0 -2px 3px rgba(220, 220, 220, 0.46);
}

.bs-tooltip-left .arrow::before {
  content: "\6b";
  left: -8px;
  top: 3.6px;
  border: none;
  text-shadow: 2px 0 3px rgba(220, 220, 220, 0.46);
}

.bs-tooltip-left .tooltip-inner {
  border-radius: 20px 15px 15px 20px;
}

.tooltip-inner {
  border-radius: 20px;
  padding: 6px 15px;
  -webkit-box-shadow: 0 0 15px #dcdcdc;
  box-shadow: 0 0 15px #dcdcdc;
}

/**====== tooltip css end ======**/
/**  =====================
      tooltip css start
==========================  **/
.popover {
  top: 0;
  left: 0;
  border: none;
  -webkit-box-shadow: 0 0 15px #dcdcdc;
  box-shadow: 0 0 15px #dcdcdc;
  border-radius: 15px;
}

.popover .arrow::after {
  display: none;
}

.popover .arrow::before {
  content: "\6d";
  top: -1px;
  left: 0;
  font-family: "pct";
  font-size: 20px;
  line-height: 0.3;
  color: #fff;
  border: none;
  text-shadow: 0 2px 3px rgba(220, 220, 220, 0.7);
}

.popover .popover-header {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: transparent;
  border-bottom-color: #f4f7fa;
}

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before {
  content: "\6d";
  text-shadow: 0 2px 3px rgba(220, 220, 220, 0.7);
}

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before {
  content: "\6a";
  left: -4px;
  top: 2.6px;
  border: none;
  text-shadow: -2px 0 3px rgba(220, 220, 220, 0.46);
}

.bs-popover-bottom .arrow:before,
.bs-popover-auto[x-placement^="bottom"] .arrow:before {
  content: "\6c";
  top: 3px;
  border: none;
  text-shadow: 0 -2px 3px rgba(220, 220, 220, 0.46);
}

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before {
  content: "\6b";
  left: -8px;
  top: 3.6px;
  border: none;
  text-shadow: 2px 0 3px rgba(220, 220, 220, 0.46);
}

/**====== tooltip css end ======**/
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 10px 24px;
}

.nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  opacity: 0.7;
}

/* ======================== Tabs =============================== */
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: none;
  color: #888;
}

.nav-tabs .nav-link:hover {
  color: #04a9f5;
}

.nav-tabs .nav-link.disabled {
  opacity: 0.7;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
  color: #111;
  -webkit-box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.05);
}

/* =======================   Pills ================== */
.nav-pills {
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link {
  border-radius: 5px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background: #04a9f5;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

/* ==================== Justified variants ===================*/
.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

/* Tabbable tabs */
/* Hide tabbable panes to start, show them when `.active` */
.tab-content {
  padding: 35px 30px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

@media screen and (max-width: 480px) {
  .modal-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/**  =====================
      Chatting css start
==========================  **/
.header-chat,
.header-user-list {
  height: 100%;
  width: 350px;
  position: fixed;
  top: 0;
  right: -350px;
  border-radius: 0;
  z-index: 1030;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-chat .main-friend-cont,
.header-user-list .main-friend-cont {
  height: calc(100vh - 66px);
}

.header-chat .h-list-header,
.header-user-list .h-list-header {
  padding: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.header-chat .h-list-body,
.header-user-list .h-list-body {
  padding: 20px 0;
}

.header-chat.open,
.header-user-list.open {
  -webkit-box-shadow: 0 1px 10px 0 rgba(69, 90, 100, 0.2);
  box-shadow: 0 1px 10px 0 rgba(69, 90, 100, 0.2);
  right: 0;
}

.header-user-list.open .h-close-text {
  position: absolute;
  top: 111px;
  left: -99px;
}

.header-user-list.open .h-close-text i {
  position: absolute;
  top: 23px;
  left: 73px;
  font-size: 25px;
  z-index: 1003;
  color: #1de9b6;
}

.header-user-list.open .h-close-text:after {
  content: "\61";
  font-family: "pct";
  z-index: 1001;
  font-size: 150px;
  line-height: 0;
  color: #fff;
  position: absolute;
  top: 35px;
  left: 6px;
  text-shadow: -4px 0 7px rgba(69, 90, 100, 0.12);
}

.header-user-list.open.msg-open:after {
  color: rgba(4, 169, 245, 0.1);
}

.h-list-header .form-control:active,
.h-list-header .form-control:focus,
.h-list-header .form-control:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.h-list-body {
  position: relative;
}

.h-list-body .userlist-box {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.h-list-body .userlist-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #f3f4f9;
}

.h-list-body .userlist-box.active {
  background: #e0f5fe;
}

.h-list-body .userlist-box .media-left {
  padding-right: 10px;
}

.h-list-body .userlist-box .media-object {
  width: 50px;
  display: inline-block;
}

.h-list-body .userlist-box .chat-header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.h-list-body .userlist-box .chat-header small {
  margin-top: 5px;
  font-size: 90%;
}

.h-list-body .userlist-box .live-status {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 35px;
  right: 20px;
  border-radius: 100%;
  color: #fff;
  padding: 2px 0;
  text-align: center;
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
}

.header-chat .h-list-header {
  text-align: center;
  position: relative;
}

.header-chat .h-list-header h6 {
  margin: 5px 0;
}

.header-chat .h-list-header .h-back-user-list {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
}

.header-chat .main-chat-cont {
  height: calc(100vh - 166px);
}

.header-chat .h-list-body {
  height: 100%;
  background: #e0f5fe;
}

.header-chat .h-list-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  padding: 20px 15px;
  z-index: 10;
  background: #e0f5fe;
}

.header-chat .h-list-footer .input-group {
  background: #fff;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 7px;
  border-radius: 20px 0 10px 20px;
  width: calc(100% - 40px);
}

.header-chat .h-list-footer .input-group .form-control,
.header-chat .h-list-footer .input-group .input-group-text {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.header-chat .h-list-footer .input-group .btn-send:active,
.header-chat .h-list-footer .input-group .btn-send:focus,
.header-chat .h-list-footer .input-group .btn-send:hover,
.header-chat .h-list-footer .input-group .form-control:active,
.header-chat .h-list-footer .input-group .form-control:focus,
.header-chat .h-list-footer .input-group .form-control:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-chat .h-list-footer .input-group .btn-attach {
  border-radius: 50%;
  padding: 5px;
  margin-right: 5px;
}

.header-chat .h-list-footer .input-group .btn-attach>i {
  margin-right: 0;
}

.header-chat .h-list-footer .input-group .btn-send {
  border-radius: 50%;
  padding: 10px;
  margin-left: 5px;
  position: absolute;
  right: -45px;
  top: 2px;
  z-index: 99;
}

.header-chat .h-list-footer .input-group .btn-send i {
  margin-right: 0;
}

.header-chat .h-list-footer .input-group .btn-send .input-group-text {
  color: #fff;
}

.header-chat .h-list-footer .input-group .form-control {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 0;
}

.header-chat .h-list-footer .input-group:after {
  content: "\67";
  font-family: "pct";
  z-index: 1001;
  font-size: 35px;
  line-height: 0;
  color: #fff;
  position: absolute;
  top: 18px;
  right: -23px;
  text-shadow: 4px 10px 20px rgba(0, 0, 0, 0.1);
}

.h-list-body .chat-messages {
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.h-list-body .chat-messages .photo-table {
  padding-right: 15px;
}

.h-list-body .chat-messages .photo-table img {
  display: inline-block;
  width: 50px;
  margin-bottom: 5px;
}

.h-list-body .chat-messages .chat-menu-content>div,
.h-list-body .chat-messages .chat-menu-reply>div {
  position: relative;
  overflow: visible;
  display: inline-block;
}

.h-list-body .chat-messages .chat-menu-content>div .chat-cont,
.h-list-body .chat-messages .chat-menu-reply>div .chat-cont {
  padding: 15px 20px;
}

.h-list-body .chat-messages .chat-menu-content .chat-time,
.h-list-body .chat-messages .chat-menu-reply .chat-time {
  margin: 9px 8px 0 10px;
}

.h-list-body .chat-messages .chat-menu-reply {
  text-align: right;
}

.h-list-body .chat-messages .chat-menu-reply>div p {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
  margin-right: 25px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.h-list-body .chat-messages .chat-menu-reply>div p:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.h-list-body .chat-messages .chat-menu-reply>div p:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 0;
}

.h-list-body .chat-messages .chat-menu-reply>div:before {
  content: "\66";
  font-family: "pct";
  z-index: 5;
  font-size: 30px;
  line-height: 0;
  color: #fff;
  position: absolute;
  bottom: 19px;
  right: 5px;
  text-shadow: 7px 10px 20px rgba(0, 0, 0, 0.1);
}

.h-list-body .chat-messages .chat-menu-content>div p {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  color: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.h-list-body .chat-messages .chat-menu-content>div p:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
}

.h-list-body .chat-messages .chat-menu-content>div p:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.h-list-body .chat-messages .chat-menu-content>div:before {
  content: "\68";
  font-family: "pct";
  z-index: 1001;
  font-size: 30px;
  line-height: 0;
  color: #1ec9de;
  position: absolute;
  top: 15px;
  left: -20px;
  text-shadow: -4px 4px 10px rgba(0, 0, 0, 0.15);
}

/* massage page start */
.msg-card .msg-user-list {
  height: calc(100vh - 300px);
}

.msg-card .msg-user-chat {
  background: #e0f5fe;
  height: calc(100vh - 330px);
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 5px;
  padding-right: 5px;
}

.msg-card .msg-block>.row>div:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #f1f1f1;
  position: absolute;
  top: 0;
}

.msg-card .msg-block>.row>div:first-child:before {
  right: 0;
}

.msg-card .msg-block>.row>div:last-child:before {
  left: -1px;
}

.main-friend-chat {
  padding-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .msg-card .msg-block>.row>div:before {
    background: none;
  }
}

/* massage page end */
/**====== Chat css end ======**/
/**  =====================
      Prism css start
==========================  **/
pre[class*="language-"] code {
  font-size: 14px;
}

pre[class*="language-"] [class*="language-"],
pre[class*="language-"] .language-markup {
  background-color: transparent;
  display: block;
  padding: 10px 15px;
}

pre.line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre.line-numbers>code {
  position: relative;
}

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em;
  /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.line-numbers-rows>span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows>span:before {
  content: counter(linenumber);
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

div.code-toolbar {
  position: relative;
}

div.code-toolbar>.toolbar {
  position: absolute;
  top: 0.3em;
  right: 0.2em;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

div.code-toolbar:hover>.toolbar {
  opacity: 1;
}

div.code-toolbar>.toolbar .toolbar-item {
  display: inline-block;
}

div.code-toolbar>.toolbar a {
  cursor: pointer;
}

div.code-toolbar>.toolbar button {
  border: 0;
  font: inherit;
  line-height: normal;
  overflow: visible;
}

div.code-toolbar>.toolbar a,
div.code-toolbar>.toolbar button,
div.code-toolbar>.toolbar span {
  color: #bbb;
  font-size: 0.8em;
  padding: 0 0.5em;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
}

div.code-toolbar>.toolbar a:focus,
div.code-toolbar>.toolbar a:hover,
div.code-toolbar>.toolbar button:focus,
div.code-toolbar>.toolbar button:hover,
div.code-toolbar>.toolbar span:focus,
div.code-toolbar>.toolbar span:hover {
  color: inherit;
  text-decoration: none;
}

/**====== Prism css end ======**/
/**  =====================
      Toolbar css start
==========================  **/
.tool-bottom .tool-item:first-child,
.tool-top .tool-item:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.tool-bottom .tool-item:last-child,
.tool-top .tool-item:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.tool-left .tool-item:first-child,
.tool-left .tool-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.tool-left .tool-item:last-child,
.tool-left .tool-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.toolbar-primary .tool-item {
  background: #04a9f5;
}

.toolbar-primary .tool-item.selected,
.toolbar-primary .tool-item:hover {
  background: #0386c3;
}

.toolbar-primary.tool-top .arrow {
  border-color: #04a9f5 transparent transparent;
}

.toolbar-primary.tool-bottom .arrow {
  border-color: transparent transparent #04a9f5;
}

.toolbar-primary.tool-left .arrow {
  border-color: transparent transparent transparent #04a9f5;
}

.toolbar-primary.tool-right .arrow {
  border-color: transparent #04a9f5 transparent transparent;
}

.btn-toolbar-primary.pressed {
  background-color: #04a9f5;
}

.toolbar-warning .tool-item {
  background: #f4c22b;
}

.toolbar-warning .tool-item.selected,
.toolbar-warning .tool-item:hover {
  background: #e0ab0c;
}

.toolbar-warning.tool-top .arrow {
  border-color: #f4c22b transparent transparent;
}

.toolbar-warning.tool-bottom .arrow {
  border-color: transparent transparent #f4c22b;
}

.toolbar-warning.tool-left .arrow {
  border-color: transparent transparent transparent #f4c22b;
}

.toolbar-warning.tool-right .arrow {
  border-color: transparent #f4c22b transparent transparent;
}

.btn-toolbar-warning.pressed {
  background-color: #f4c22b;
}

.toolbar-light .tool-item {
  background: #d6d6d6;
}

.toolbar-light .tool-item.selected,
.toolbar-light .tool-item:hover {
  background: #bdbdbd;
}

.toolbar-light.tool-top .arrow {
  border-color: #d6d6d6 transparent transparent;
}

.toolbar-light.tool-bottom .arrow {
  border-color: transparent transparent #d6d6d6;
}

.toolbar-light.tool-left .arrow {
  border-color: transparent transparent transparent #d6d6d6;
}

.toolbar-light.tool-right .arrow {
  border-color: transparent #d6d6d6 transparent transparent;
}

.btn-toolbar-light.pressed {
  background-color: #d6d6d6;
}

.toolbar-danger .tool-item {
  background: #f44236;
}

.toolbar-danger .tool-item.selected,
.toolbar-danger .tool-item:hover {
  background: #ea1b0d;
}

.toolbar-danger.tool-top .arrow {
  border-color: #f44236 transparent transparent;
}

.toolbar-danger.tool-bottom .arrow {
  border-color: transparent transparent #f44236;
}

.toolbar-danger.tool-left .arrow {
  border-color: transparent transparent transparent #f44236;
}

.toolbar-danger.tool-right .arrow {
  border-color: transparent #f44236 transparent transparent;
}

.btn-toolbar-danger.pressed {
  background-color: #f44236;
}

.toolbar-success .tool-item {
  background: #1de9b6;
}

.toolbar-success .tool-item.selected,
.toolbar-success .tool-item:hover {
  background: #13c095;
}

.toolbar-success.tool-top .arrow {
  border-color: #1de9b6 transparent transparent;
}

.toolbar-success.tool-bottom .arrow {
  border-color: transparent transparent #1de9b6;
}

.toolbar-success.tool-left .arrow {
  border-color: transparent transparent transparent #1de9b6;
}

.toolbar-success.tool-right .arrow {
  border-color: transparent #1de9b6 transparent transparent;
}

.btn-toolbar-success.pressed {
  background-color: #1de9b6;
}

.toolbar-dark .tool-item {
  background: #37474f;
}

.toolbar-dark .tool-item.selected,
.toolbar-dark .tool-item:hover {
  background: #222c31;
}

.toolbar-dark.tool-top .arrow {
  border-color: #37474f transparent transparent;
}

.toolbar-dark.tool-bottom .arrow {
  border-color: transparent transparent #37474f;
}

.toolbar-dark.tool-left .arrow {
  border-color: transparent transparent transparent #37474f;
}

.toolbar-dark.tool-right .arrow {
  border-color: transparent #37474f transparent transparent;
}

.btn-toolbar-dark.pressed {
  background-color: #37474f;
}

.toolbar-info .tool-item {
  background: #3ebfea;
}

.toolbar-info .tool-item.selected,
.toolbar-info .tool-item:hover {
  background: #18acdd;
}

.toolbar-info.tool-top .arrow {
  border-color: #3ebfea transparent transparent;
}

.toolbar-info.tool-bottom .arrow {
  border-color: transparent transparent #3ebfea;
}

.toolbar-info.tool-left .arrow {
  border-color: transparent transparent transparent #3ebfea;
}

.toolbar-info.tool-right .arrow {
  border-color: transparent #3ebfea transparent transparent;
}

.btn-toolbar-info.pressed {
  background-color: #3ebfea;
}

/**====== Toolbar css end ======**/
/**  =====================
      Switches css start
==========================  **/
.switch input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.switch input[type=checkbox]+.cr {
  position: relative;
  display: inline-block;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  height: 20px;
  width: 35px;
  border: 1px solid #e9eaec;
  border-radius: 60px;
  cursor: pointer;
  z-index: 0;
  top: 12px;
}

.switch input[type=checkbox]+.cr:after,
.switch input[type=checkbox]+.cr:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.switch input[type=checkbox]+.cr:before {
  -webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  height: 20px;
  width: 35px;
  border-radius: 30px;
}

.switch input[type=checkbox]+.cr:after {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 0 rgba(0, 0, 0, 0.04), 0 4px 9px rgba(0, 0, 0, 0.13), 0 3px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 0 rgba(0, 0, 0, 0.04), 0 4px 9px rgba(0, 0, 0, 0.13), 0 3px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  background: #f7f7f7;
  height: 19px;
  width: 19px;
  border-radius: 60px;
}

.switch input[type=checkbox]:checked+.cr:before {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%);
  -webkit-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}

.switch input[type=checkbox]:checked+.cr:after {
  left: 16px;
}

.switch input[type=checkbox]:disabled+label {
  opacity: 0.5;
  -webkit-filter: grayscale(0.4);
  filter: grayscale(0.4);
  cursor: not-allowed;
}

.switch.switch-primary input[type=checkbox]:checked+.cr:before {
  background: #04a9f5;
}

.switch.switch-danger input[type=checkbox]:checked+.cr:before {
  background: #f44236;
}

.switch.switch-success input[type=checkbox]:checked+.cr:before {
  background: #1de9b6;
}

.switch.switch-warning input[type=checkbox]:checked+.cr:before {
  background: #f4c22b;
}

.switch.switch-info input[type=checkbox]:checked+.cr:before {
  background: #3ebfea;
}

.switch.switch-alternative input[type=checkbox]:checked+.cr:before {
  background: linear-gradient(-135deg, #899FD4 0%, #A389D4 100%);
}

/**====== Switches css end ======**/
/**  =====================
      wizard css start
==========================  **/
/*  material wizard start */
.wizard-container {
  z-index: 3;
}

.wizard-container .wizard-navigation {
  position: relative;
}

.wizard-card .moving-tab {
  position: absolute;
  text-align: center;
  padding: 16px 12px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  top: -6px;
  left: 0;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 500;
}

.wizard-card[data-color="wizard-primary"] .moving-tab {
  background-color: #04a9f5;
  -webkit-box-shadow: 0 16px 26px -10px rgba(4, 169, 245, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(4, 169, 245, 0.2);
  box-shadow: 0 16px 26px -10px rgba(4, 169, 245, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(4, 169, 245, 0.2);
}

.wizard-card[data-color="wizard-danger"] .moving-tab {
  background-color: #f44236;
  -webkit-box-shadow: 0 16px 26px -10px rgba(244, 66, 54, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 66, 54, 0.2);
  box-shadow: 0 16px 26px -10px rgba(244, 66, 54, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 66, 54, 0.2);
}

.wizard-card[data-color="wizard-success"] .moving-tab {
  background-color: #1de9b6;
  -webkit-box-shadow: 0 16px 26px -10px rgba(29, 233, 182, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(29, 233, 182, 0.2);
  box-shadow: 0 16px 26px -10px rgba(29, 233, 182, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(29, 233, 182, 0.2);
}

.wizard-card[data-color="wizard-warning"] .moving-tab {
  background-color: #f4c22b;
  -webkit-box-shadow: 0 16px 26px -10px rgba(244, 194, 43, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 194, 43, 0.2);
  box-shadow: 0 16px 26px -10px rgba(244, 194, 43, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 194, 43, 0.2);
}

.wizard-card[data-color="wizard-info"] .moving-tab {
  background-color: #3ebfea;
  -webkit-box-shadow: 0 16px 26px -10px rgba(62, 191, 234, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(62, 191, 234, 0.2);
  box-shadow: 0 16px 26px -10px rgba(62, 191, 234, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(62, 191, 234, 0.2);
}

.wizard-card .wizard-footer .checkbox {
  margin-top: 16px;
}

.wizard-card .disabled {
  display: none;
}

.nav-pills>li+li {
  margin-left: 0;
}

.nav-pills>li>a {
  border: 0;
  border-radius: 0;
  line-height: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  color: #555555;
  position: relative;
  display: block;
  padding: 11px 15px;
}

.nav-pills>li.active>a {
  background-color: inherit;
}

.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
  background-color: inherit;
}

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

.nav-pills>li i {
  display: block;
  font-size: 30px;
  padding: 15px 0;
}

/* material wizard end */
/* Smart wizard 4 start */
.sw-theme-default {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sw-theme-default>ul.step-anchor>li a,
.sw-theme-default>ul.step-anchor>li a>h6,
.sw-theme-default>ul.step-anchor>li a:hover {
  color: #eaeaea;
}

.sw-theme-default>ul.step-anchor>li.done a>h6 {
  color: initial;
}

.sw-theme-default>ul.step-anchor>li.active a,
.sw-theme-default>ul.step-anchor>li.active a h6 {
  color: #04a9f5;
}

.sw-theme-default>ul.step-anchor>li>a.nav-link:after {
  background: #04a9f5;
}

.sw-theme-default>ul.step-anchor>li.done>a.nav-link:after {
  background: #eaeaea;
}

.sw-theme-default .step-anchor,
.sw-theme-default .sw-container {
  background: #fff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
}

.sw-theme-default .step-anchor {
  margin-bottom: 30px;
}

.sw-theme-default .step-anchor li>a {
  padding: 15px 25px;
}

.sw-theme-default .sw-container .step-content {
  padding: 35px 30px;
}

.sw-theme-default .sw-toolbar {
  padding: 10px;
  background: transparent;
}

.sw-theme-default .step-content+.sw-toolbar {
  padding-top: 0;
}

.sw-theme-arrows .sw-container,
.sw-theme-circles .sw-container,
.sw-theme-dots .sw-container {
  background: #fff;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
}

.sw-theme-arrows .sw-container .step-content,
.sw-theme-circles .sw-container .step-content,
.sw-theme-dots .sw-container .step-content {
  padding: 35px 30px;
}

.sw-theme-arrows .sw-toolbar-bottom,
.sw-theme-circles .sw-toolbar-bottom,
.sw-theme-dots .sw-toolbar-bottom {
  padding: 10px;
}

.sw-theme-arrows .step-anchor,
.sw-theme-circles .step-anchor,
.sw-theme-dots .step-anchor {
  margin-bottom: 30px;
}

.sw-theme-dots>ul.step-anchor>li>a:after {
  left: 42%;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .sw-theme-dots>ul.step-anchor>li>a:after {
    top: -42px;
    left: -40px;
  }

  .sw-theme-arrows>ul.step-anchor>li>a {
    padding-right: 15px;
  }
}

.sw-vertical-left,
.sw-vertical-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 768px) {

  .sw-vertical-left.sw-main,
  .sw-vertical-right.sw-main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .sw-vertical-left .step-anchor,
  .sw-vertical-right .step-anchor {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 200px;
  }

  .sw-vertical-left .step-anchor li,
  .sw-vertical-right .step-anchor li {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

@media (max-width: 767px) {

  .sw-vertical-left.sw-main,
  .sw-vertical-right.sw-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .sw-vertical-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .sw-vertical-left .sw-done-icon,
  .sw-vertical-left .sw-icon,
  .sw-vertical-left .sw-number {
    left: 2rem;
  }

  .sw-vertical-left .step-anchor {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .sw-vertical-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .sw-vertical-right .sw-done-icon,
  .sw-vertical-right .sw-icon,
  .sw-vertical-right .sw-number {
    right: 2rem;
  }

  .sw-vertical-right .step-anchor {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .sw-vertical-right .step-anchor {
    margin: 30px 0 0;
  }
}

/*  Smart wizard 4 end */
/**====== wizard css end ======**/
/**  =====================
      Chart css start
==========================  **/
.nvtooltip {
  position: fixed !important;
}

.peity-chart+.peity {
  width: 100%;
  height: 250px;
}

/* Radial Chart Start */
.radial-bar {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  margin-bottom: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 80px;
  height: 80px;
  font-size: 18px;
  background-clip: content-box;
}

.radial-bar:after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
  color: #455a64;
  width: 56px;
  height: 56px;
  margin-left: 12px;
  margin-top: 12px;
  line-height: 56px;
  content: attr(data-label);
  background-color: #fff;
  z-index: 55;
}

.radial-bar>img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
  color: #455a64;
  width: 56px;
  height: 56px;
  margin-left: 12px;
  margin-top: 12px;
  line-height: 56px;
}

.radial-bar>img {
  z-index: 102;
}

.radial-bar.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-55 {
  background-image: linear-gradient(288deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-60 {
  background-image: linear-gradient(306deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-65 {
  background-image: linear-gradient(324deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-70 {
  background-image: linear-gradient(342deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-80 {
  background-image: linear-gradient(378deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-85 {
  background-image: linear-gradient(396deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-90 {
  background-image: linear-gradient(414deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-95 {
  background-image: linear-gradient(432deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #04a9f5), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #04a9f5), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #04a9f5), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #04a9f5), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-55 {
  background-image: linear-gradient(288deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-60 {
  background-image: linear-gradient(306deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-65 {
  background-image: linear-gradient(324deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-70 {
  background-image: linear-gradient(342deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #04a9f5), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #04a9f5), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-80 {
  background-image: linear-gradient(378deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-85 {
  background-image: linear-gradient(396deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-90 {
  background-image: linear-gradient(414deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-95 {
  background-image: linear-gradient(432deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-primary.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #04a9f5), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #04a9f5), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #04a9f5 50%, transparent 50%, transparent), linear-gradient(270deg, #04a9f5 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #f44236), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f44236), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #f44236), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f44236), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-55 {
  background-image: linear-gradient(288deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-60 {
  background-image: linear-gradient(306deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-65 {
  background-image: linear-gradient(324deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-70 {
  background-image: linear-gradient(342deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f44236), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f44236), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-80 {
  background-image: linear-gradient(378deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-85 {
  background-image: linear-gradient(396deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-90 {
  background-image: linear-gradient(414deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-95 {
  background-image: linear-gradient(432deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-danger.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #f44236), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f44236), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #f44236 50%, transparent 50%, transparent), linear-gradient(270deg, #f44236 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-55 {
  background-image: linear-gradient(288deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-60 {
  background-image: linear-gradient(306deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-65 {
  background-image: linear-gradient(324deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-70 {
  background-image: linear-gradient(342deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-80 {
  background-image: linear-gradient(378deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-85 {
  background-image: linear-gradient(396deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-90 {
  background-image: linear-gradient(414deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-95 {
  background-image: linear-gradient(432deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-success.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #1de9b6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #1de9b6), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #1de9b6 50%, transparent 50%, transparent), linear-gradient(270deg, #1de9b6 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #f4c22b), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f4c22b), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #f4c22b), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f4c22b), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-55 {
  background-image: linear-gradient(288deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-60 {
  background-image: linear-gradient(306deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-65 {
  background-image: linear-gradient(324deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-70 {
  background-image: linear-gradient(342deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f4c22b), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f4c22b), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-80 {
  background-image: linear-gradient(378deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-85 {
  background-image: linear-gradient(396deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-90 {
  background-image: linear-gradient(414deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-95 {
  background-image: linear-gradient(432deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-warning.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #f4c22b), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #f4c22b), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #f4c22b 50%, transparent 50%, transparent), linear-gradient(270deg, #f4c22b 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-0 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #3ebfea), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(90deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-5 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(108deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-10 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(126deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-15 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(144deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-20 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(162deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-25 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6d6d6), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #3ebfea), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(180deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-30 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(198deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-35 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(216deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-40 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(234deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-45 {
  background-image: linear-gradient(90deg, #d6d6d6 50%, transparent 50%, transparent), linear-gradient(252deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-50 {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #3ebfea), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #3ebfea), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(270deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-55 {
  background-image: linear-gradient(288deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-60 {
  background-image: linear-gradient(306deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-65 {
  background-image: linear-gradient(324deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-70 {
  background-image: linear-gradient(342deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-75 {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #3ebfea), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #3ebfea), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(360deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-80 {
  background-image: linear-gradient(378deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-85 {
  background-image: linear-gradient(396deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-90 {
  background-image: linear-gradient(414deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-95 {
  background-image: linear-gradient(432deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar.radial-bar-info.radial-bar-100 {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #3ebfea), color-stop(50%, transparent), to(transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, #3ebfea), color-stop(50%, #d6d6d6), to(#d6d6d6));
  background-image: linear-gradient(450deg, #3ebfea 50%, transparent 50%, transparent), linear-gradient(270deg, #3ebfea 50%, #d6d6d6 50%, #d6d6d6);
}

.radial-bar-lg {
  width: 100px;
  height: 100px;
  font-size: 20px;
}

.radial-bar-lg>img,
.radial-bar-lg:after {
  width: 70px;
  height: 70px;
  margin-left: 15px;
  margin-top: 15px;
  line-height: 70px;
}

.radial-bar-sm {
  width: 60px;
  height: 60px;
  font-size: 12px;
}

.radial-bar-sm>img,
.radial-bar-sm:after {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  margin-top: 10px;
  line-height: 42px;
}

.radial-bar-xs {
  width: 35px;
  height: 35px;
  font-size: 10px;
}

.radial-bar-xs>img,
.radial-bar-xs:after {
  width: 25px;
  height: 25px;
  margin-left: 5.5px;
  margin-top: 4.5px;
  line-height: 25px;
}

/* Radial Chart End */
/**====== Chart css end ======**/
/**  =====================
      Icon layouts css start
==========================  **/
.i-main .i-block {
  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;
  width: 70px;
  height: 70px;
  margin: 5px;
  border: 1px solid #f1f1f1;
  position: relative;
  cursor: pointer;
}

.i-main .i-block i {
  font-size: 30px;
}

.i-main .i-block label {
  margin-bottom: 0;
  display: none;
}

.i-main .i-block span.ic-badge {
  position: absolute;
  bottom: 0;
  right: 0;
}

.i-main .i-block .flag-icon-background {
  width: 40px;
  height: 40px;
}

/**====== Icon layouts css end ======**/
/**  =====================
      Calendar css start
==========================  **/
.external-events .fc-event {
  color: #fff;
  cursor: move;
  padding: 5px 18px;
  margin-top: 5px;
  background: #04a9f5;
  border-color: #04a9f5;
}

.calendar a:not([href]):not([tabindex]),
.calendar a:not([href]):not([tabindex]):focus,
.calendar a:not([href]):not([tabindex]):hover {
  color: #fff;
}

.calendar .fc-event,
.calendar .fc-event:hover {
  color: #fff;
  cursor: move;
  padding: 5px 18px;
  margin-top: 2px;
  background: #04a9f5;
  border-color: #04a9f5;
}

/**====== Calendar css end ======**/
/**  =====================
      File Upload css start
==========================  **/
.dropzone {
  min-height: 150px;
  border: 1px solid rgba(42, 42, 42, 0.05);
  background: rgba(204, 204, 204, 0.15);
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px 0 rgba(43, 43, 43, 0.1);
  box-shadow: inset 0 0 5px 0 rgba(43, 43, 43, 0.1);
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message {
  cursor: pointer;
}

.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 4em 0;
  color: #888;
  font-size: 18px;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0.5rem;
  min-height: 100px;
  -webkit-box-shadow: 0 13px 6px -8px rgba(0, 0, 0, 0.3), 0 0 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 13px 6px -8px rgba(0, 0, 0, 0.3), 0 0 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 5px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 5px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
  display: block;
  padding: 4px;
  width: 100%;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 5px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 5px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #f44236;
  background: -webkit-gradient(linear, left top, left bottom, from(#f44236), to(#f44236));
  background: linear-gradient(to bottom, #f44236, #f44236);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #f44236;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  padding-right: 12px;
}

.pagination>li {
  display: inline;
  cursor: pointer;
}

.pagination>li>a,
.pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px
}


@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/**====== File Upload css end ======**/


.fixed-button {
  position: fixed;
  bottom: -50px;
  right: 30px;
  opacity: 0;
  z-index: 9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  border-radius: 0.25rem
}

.fixed-button .btn {
  margin: 0;
  background: #79b530;
  border: none;
  border-bottom: 2px solid #5e8d25;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14px
}

.fixed-button .btn:hover {
  background: #79b530;
  border: none;
  border-bottom: 2px solid #5e8d25
}

.fixed-button:hover {
  -webkit-animation: none;
  animation: none
}

.fixed-button.active {
  bottom: 50px;
  opacity: 1
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(121, 181, 48, 0.3);
    box-shadow: 0 0 0 0 rgba(121, 181, 48, 0.3)
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
    box-shadow: 0 0 0 20px rgba(4, 169, 245, 0)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
    box-shadow: 0 0 0 0 rgba(4, 169, 245, 0)
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(121, 181, 48, 0.3);
    box-shadow: 0 0 0 0 rgba(121, 181, 48, 0.3)
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(4, 169, 245, 0);
    box-shadow: 0 0 0 20px rgba(4, 169, 245, 0)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(4, 169, 245, 0);
    box-shadow: 0 0 0 0 rgba(4, 169, 245, 0)
  }
}

/* Gaurav */

img.center-block {
  margin: 40px 0px 0px 60px;
}

.fog-pass {
  float: right;
  color: #1C64F2;
}

.login-user,
.log-pass {
  padding: 10px;
  border: 0;
  outline: 0;
  border-bottom: 0.5px solid #ABC2E1;
  border-radius: 0;
  background: none;
}

i.fa.fa-lock {
  position: absolute;
  padding: 10px;
  right: 0px;
}

.log-submit {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  width: 135px;
  height: 42px;
  background: #1C64F2;
  border-radius: 8px;
  margin-top: 20px;
}

.log-reset {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  width: 135px;
  height: 42px;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 20px;
  color: #000;
  border-color: #f3f3f3;
}

.log-screen {
  width: 60% !important;
}

.spacer {
  margin-top: 65px;
}

.log-banner {
  background-color: #F5F7FA;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.log-sec {
  /* padding: 70px !important; */
  transform: translate(0%, 5%);
  width: 75%;
  margin-top: 20px;
  margin-left: 60px;
}

.fa-lock:before {
  color: #D9D9D9;
}

.logo {
  padding-bottom: 15px;
}

.error {
  color: #E62E2E;
  padding-bottom: 15px;
}

@media only screen and (max-width: 1440px) {
  img.center-block {
    margin: 80px 0px 0px 0px;
  }

  .log-sec {
    /* padding: 70px !important; */
    transform: translate(0%, 5%);
    width: 90%;
    margin-top: 20px;
    margin-left: 12px;
  }

}

@media only screen and (max-width: 575px) {
  .log-screen {
    width: 100% !important;
  }

  .log-banner {
    display: none;
  }

  .log-sec {
    padding: 20px !important;
  }

}

/* Sidebar css start */
.headerLogo {
  padding: 0 14px;
  margin: 5px 0 35px;
}

.headerLogo a {
  padding: 7px 10px !important;
  border-bottom: 1px solid #e3ebf680;
}

.headerLogo .pcoded-micon {
  margin-top: 3px;
}

.headerLogo .pcoded-mtext {
  font-size: 20px;
  line-height: 30px;
  font-weight: 200;
  color: #000;
  margin-left: 2px;
}

/* Sidebar css end */

/*  */
.mobMenuIcon {
  display: none;
}

/* Common css start */
.pagination>li>a,
.pagination>li>span {
  border: none;
}

/* ::-webkit-scrollbar
{
	width: 6px;
	background-color: #d7d7d7;
} */

::-webkit-scrollbar-thumb {
  background-color: #002F36;
}

body::-webkit-scrollbar {
  width: 12px;
}

.pcoded-navbar .slimScrollDiv .slimScrollBar {
  width: 10px !important;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.white-btn {
  height: 55px;
  line-height: 54px;
  padding: 0 22px;
  border: 1px solid #abc2e180;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  color: #6E84A3;
  font-weight: 500;
}

.white-btn:hover,
.white-btn:focus {
  background: #F5F7FA;
  color: #6E84A3;
  border-color: #abc2e180;
}

.blue-btn {
  height: 55px;
  line-height: 54px;
  padding: 0 22px;
  border: 1px solid #abc2e180;
  border-radius: 8px;
  background: #2C7BE5;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.grey-btn {
  height: 55px;
  line-height: 54px;
  padding: 0 22px;
  border: 1px solid #7E8896;
  border-radius: 8px;
  background: #7E8896;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.white-btn-small,
.blue-btn-small,
.grey-btn-small {
  font-size: 16px;
  font-weight: 400;
}

.blue-btn:hover,
.blue-btn:focus,
.grey-btn:hover,
.grey-btn:focus {
  background: #F5F7FA;
  color: #6E84A3;
  border-color: #abc2e180;
}

.blue-btn:hover svg path,
.grey-btn-hover svg path {
  stroke: #6E84A3;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin: 0;
  padding: 10px 0;
}

.setborderCard {
  box-shadow: unset;
  border: 1px solid #abc2e180;
  border-top: none;
}

.addTableUi .table thead th {
  border-top: 1px solid #abc2e180;
  border-bottom: 1px solid #abc2e180;
  font-size: 12px;
  color: #2B384B;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.addTableUi .table thead th,
.addTableUi .table thead td {
  padding: 15px 10px;
}

.addTableUi .table thead {
  background: #F5F7FA;
}

.card.footer_pagination {
  border: 1px solid #abc2e180;
  border-top: none;
}

/* Common Css End */

/* Product Master List Page css start */
.top_header {
  padding-bottom: 11px;
  margin-bottom: 27px;
  border-bottom: 1px solid #E3EBF6;
}

.top_header h5 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
  color: #2B384B;
}

.filterTopbar {
  padding: 15px 5px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border: 1px solid #abc2e180;
  border-bottom: unset;
}

.filterTopbar .white-btn,
.filterTopbar .blue-btn {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 16px;
  font-weight: 400;
}

.filterSearch {
  position: relative;
}

.filterSearch input {
  height: 55px;
  padding-left: 40px;
  background: transparent;
  border: none;
  font-size: 16px;
  line-height: 24px;
}

.filterSearch input:focus {
  outline: none;
  box-shadow: unset;
}

.filterSearch .icon-search,
.filterSearch .icon-calendar {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #6E84A3;
}

.filterSearch input[name=datefilter] {
  background: transparent;
  border: 1px solid #abc2e180;
}

.filterTopbar .sorting_d select {
  height: 55px !important;
  width: 80px;
  padding: 0 20px 0 0;
  text-align: center;
  margin: 0;
  background-image: url(/static/assets/images/icons/down-arrow.png);
  appearance: none;
  background-repeat: no-repeat;
  background-position-x: 91%;
  background-position-y: center;
  background-size: 18px;
  box-shadow: unset;
}

.filterTopbar .sorting_d select:focus {
  background-image: url(/static/assets/images/icons/up-arrow.png);
  background-repeat: no-repeat;
  background-position-x: 91%;
  background-position-y: center;
  background-size: 18px;
}

.filterTopbar .sorting_d select option {
  background: #fff;
}

.filterTopbar .dropdown-toggle::after {
  content: unset;
}

.filterTopbar .dropdown-toggle {
  background-image: url(/static/assets/images/icons/down-arrow.png);
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: center;
  background-size: 18px;
  padding-right: 35px;
}

.filterTopbar .dropdown.open .dropdown-toggle {
  background-image: url(/static/assets/images/icons/up-arrow.png);
}

.filterTopbar .filter_by_d .dropdown-toggle {
  background-position-x: 92%;
}

.filterTopbar .dropdown-menu,
.dropdown-menu {
  background: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgb(67 90 111 / 20%);
  padding: 7px 5px;
  border-radius: 6px;
  border: 1px solid rgb(67 90 111 / 20%);
  width: 100%;
}

.filterTopbar .search_by_country .dropdown-menu {
  height: 288px;
  overflow-y: scroll;
}

.filterTopbar .dropdown-menu li {
  padding: 0;
  border-radius: 6px;
}

.filterTopbar .dropdown-menu li a {
  padding: 8px;
  color: #6E84A3;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #44546F;
}

.filterTopbar .dropdown-menu li:hover,
.filterTopbar .dropdown-menu li:focus {
  background: transparent;
}

.filterTopbar .dropdown-menu li:hover a,
.filterTopbar .dropdown-menu li:focus a {
  background: #5D42FF14;
  color: #644DED;
}

.filterTopbar,
.productsListT,
.footer_pagination {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.productsListT .card {
  box-shadow: unset;
  border: 1px solid #abc2e180;
  border-top: none;
}

.productsListT .table .btn {
  font-size: 12px;
  padding: 7px 12px
}

.productsListT .table tbody td {
  background: #fff;
}

.productsListT .table .countryName span {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.productsListT .table .productNameI span {
  margin-left: 5px;
}

.productsListT thead,
.productsListT thead tr th {
  background: #F5F7FA;
}

.productsListT .table th {
  padding: 15px 8px;
}

.productsListT thead tr th,
.productsListT thead tr th a {
  color: #2B384B;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.productsListT .table tr td {
  color: #6E84A3;
  font-size: 15px;
  height: 60px;
  vertical-align: middle;
}

.productsListT .ASIN_no {
  color: #12263F !important;
}

.editItem {
  text-align: right;
}

.productsListT .table .btn {
  display: inline-block;
}

.productsListT .table th,
.productsListT .table td {
  border-color: #abc2e180;
}

.footer_pagination {
  padding: 15px 5px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

@media only screen and (min-width: 1200px) {

  .productsListT .table th,
  .productsListT .table td {
    margin-top: -1px;
  }

  /* .productsListT thead,
  .productsListT thead tr th{
    background: transparent;
  } */
  .productsListT .table th {
    padding: 0;
  }

  .productsListT thead tr th a {
    background: #F5F7FA;
    display: block;
    padding: 15px 8px;
    /* height:51px; */
  }

  .productsListT .table-responsive {
    padding-left: 595px;
    padding-right: 269px;
  }

  .productsListT .table tr th:nth-of-type(1),
  .productsListT .table tr td:nth-of-type(1) {
    position: absolute;
    left: 0;
    width: 100px;
  }

  .productsListT .table tr th:nth-of-type(1) a,
  .productsListT .table tr td:nth-of-type(1) {
    padding-left: 28px;
  }

  .productsListT .table tr th:nth-of-type(2),
  .productsListT .table tr td:nth-of-type(2) {
    position: absolute;
    left: 100px;
    width: 350px;
  }

  .productsListT .table tr th:nth-of-type(3),
  .productsListT .table tr td:nth-of-type(3) {
    position: absolute;
    left: 450px;
    width: 150px;
  }

  .productsListT .table tr th:nth-of-type(5),
  .productsListT .table tr td:nth-of-type(5) {
    position: absolute;
    right: 139px;
    width: 130px;
    display: flex;
    align-items: center;
  }

  .productsListT .table tr th:last-child,
  .productsListT .table tr td:last-child {
    position: absolute;
    right: 0;
    width: 140px;
  }

  .productsListT .table tr td:nth-of-type(1),
  .productsListT .table tr td:nth-of-type(3) {
    padding-top: 20px;
  }

  .productsListT .table tr td:last-child {
    padding-top: 14px;
  }

  .productsListT .table tr th:nth-of-type(1),
  .productsListT .table tr th:last-child {
    height: 100%;
    border-bottom: none;
    /* z-index:-1; */
  }

  .productsListT .table tr td:nth-of-type(1),
  .productsListT .table tr td:last-child {
    background: #fff;
  }

  .productsListT .table tr th:last-child a {
    padding-left: 30px;
  }

  .productsListT .table .productNameI span {
    display: inline-block;
    position: relative;
    top: 3px;
  }
}

/* Product Master List Page css end */

/* Edit Product Page css start */
.editPage .editProInfo .img_d {
  width: 193px;
}

.editPage .editProInfo .contentD {
  width: calc(100% - 303px);
}

.editPage .editProInfo p {
  color: #808C9F;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.editPage .editProInfo .l_text {
  width: 200px;
  display: inline-block;
  color: #2B384B;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.editPage .editProInfo .r_text {
  width: calc(100% - 200px);
}

.editPage .editProInfo .img_d img {
  width: 100%;
}

.editPage .tab_card,
.editPage .tab-content {
  border-radius: 12px;
  padding: 0;
  box-shadow: unset;
}

.editPage .tab_card {
  padding: 0;
  box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #abc2e180;
}

.EPTabs.nav-tabs .nav-item {
  margin: 0 15px;
}

.EPTabs.nav-tabs .nav-item:first-child {
  margin-left: 0;
}

.EPTabs.nav-tabs .nav-link {
  color: #6E84A3;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #abc2e180;
  border-radius: 8px;
  padding: 0 18px;
  height: 55px;
  line-height: 55px;
  box-shadow: unset;
}

.EPTabs.nav-tabs .nav-link.active {
  background: #F9FBFD;
  box-shadow: unset;
  position: relative;
  bottom: -18px;
  border-bottom: unset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tab__menu_d {
  padding: 17px 22px 17px 48px;
  border-bottom: 1px solid #abc2e180;
}

.pushToUpdate .btn {
  font-size: 16px;
  font-weight: 400;
}

.editPage .user-list .title_div h3 {
  max-width: 1336px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 30px;
  color: #002F36;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #E3EBF6;
  text-indent: 10px;
}

.editPage .user-list {
  padding: 0;
  box-shadow: unset;
}

.editPage .user-list .card-header {
  padding: 42px 20px 20px 48px;
  border-bottom: 1px solid #E3EBF6;
}

.editPage .user-list .card-header h5 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #2B384B;
}

.editPage .user-list .card-header h5:after {
  width: 0px;
}

.editPage .user-list .card-header h5 img {
  margin-left: 13px;
}

.editPage .user-list .card-block {
  padding: 53px 50px 25px 50px;
}

.lI_itemdata {
  margin-bottom: 25px;
  ;
}

.titleNameD {
  color: #2B384B;
}

.editPage .user-list .form-control {
  border: none;
  border-bottom: 1px solid #ABC2E1;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  padding: 0px 30px 9px 13px;
  font-size: 16px;
  height: 80px !important;
  /* max-width:1061px; */
}

.editPage .user-list .infoTab .form-control,
.editPage .user-list .infoTab .setWidthD {
  max-width: 503px;
}

.user-list .col-xl-9 {
  max-width: 1061px !important;
}

.user-list .charLimitText {
  font-size: 12px;
  position: absolute;
  right: 44px;
  bottom: 5px;
  color: #007EF2;
  font-weight: 500;
}

.user-list .charExceeded {
  font-size: 12px;
  position: absolute;
  right: 44px;
  bottom: 0;
  color: #DD3333;
}

.user-list .usedKeyW {
  color: #1C64F2;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  position: absolute;
  right: 22px;
  margin-top: 3px;
}

.user-list .usedKeyW svg {
  margin-left: 5px;
}

.user-list .setError .form-control {
  border-bottom-color: #DD3333;
}

.user-list .bulletCircle {
  border: 3px solid #abc2e180;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: inline-block;
  color: #ABC2E1;
  font-weight: 600;
  font-size: 9px;
  line-height: 13px;
  text-align: center;
  position: absolute;
  top: 3px;
  left: 120px;
}

.editPage .user-list input.form-control,
.editPage .user-list textarea.form-control {
  background-image: url(/static/assets/images/icons/external-link.svg);
  background-repeat: no-repeat;
  background-position: 97% center;
}

.editPage .user-list .form-control:focus {
  outline: none;
  box-shadow: unset;
}

.editPage .user-list input.form-control::placeholder,
.editPage .user-list textarea.form-control::placeholder {
  color: #ABC2E1;
  font-size: 16px;
}

.editPage .user-list .asin_no {
  max-width: 307px;
  position: relative;
  ;
}

.editPage .user-list .asin_no .form-control {
  padding-right: 31px;
}

.editPage .user-list .asin_no img {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

.editPage input.form-control[readonly=readonly] {
  color: #808C9F;
  background: #F8F8F8;
  border-radius: 8px;
  border: 1px solid #ABC2E1;
}

.editPage select.form-control {
  background: url(/static/assets/images/icons/down-arrow.png)no-repeat scroll right center !important;
  background-position-x: 98% !important;
}

.editPage select.form-control[disabled=disabled] {
  border-radius: 8px;
  border: 1px solid #abc2e180;
  color: #6E84A3;
}

.submitResetBtnD {
  padding: 0 20px 50px 48px;
}

.submitResetBtnD .btn {
  height: 42px;
  line-height: 40px;
  padding: 0 37px;
  border-radius: 8px;
  font-size: 15px;
}

.resetBtn {
  background: #12263F;
  border-color: #12263F;
}

#Title_Bullet .titleNameD {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 8px;
}

#Title_Bullet .inputData_d,
#Title_Bullet .col-xl-9 {
  flex: 0 0 100%;
  max-width: 100%;
}

.user-list .TBMainD .col-xl-9 {
  max-width: 100% !important;
}

.user-list .bootstrap-tagsinput {
  background: transparent;
  padding: 0;
}

.user-list .bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: auto;
  max-width: inherit;
}

.user-list .bootstrap-tagsinput .badge {
  border-radius: 5px;
  background: #EBF3FE;
  padding: 3px 7px;
  color: #002F36;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
  margin: 0 3px 5px 0;
}

.user-list .bootstrap-tagsinput .badge [data-role="remove"] {
  margin-left: 6px;
  cursor: pointer;
  background: url(/static/assets/images/icons/close.svg)no-repeat scroll center center;
  background-size: 9px;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.TBMainD .TBRightD {
  width: 285px;
}

.TBMainD .TBLeftD {
  width: calc(100% - 315px);
}

.TBMainD .suggestedKeywordD {
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  padding: 12px;
  min-height: 600px;
}

.user-list .suggestedKeywordD .bootstrap-tagsinput {
  min-height: inherit;
  padding-bottom: 50px;
  position: relative;
}

.user-list .suggestedKeywordD .bootstrap-tagsinput input {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent url(/static/assets/images/icons/right-arrow.svg)no-repeat scroll 98% center;
  background-size: 17px;
  border: none;
  color: #6E84A3;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  padding: 0 10px;
}

.user-list .suggestedKeywordD .bootstrap-tagsinput input::placeholder {
  color: #6E84A3;
}

.suggestedKeywordD h3 {
  color: #6E84A3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.centralEntitiesD {
  /* margin-top: 34px;
  border-top: 1px solid #000000; */
  margin: 0 0 15px;
  padding: 24px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bulletslist_d .centralEntitiesD {
  padding: 10px 0;
  margin: 0 0 22px;
}

/* .centralEntitiesD.focused{
  background:#D3D5D8;
} */
.centralEntitiesD:hover,
.centralEntitiesD:focus {
  /* background: #D3D5D8;   */
  background: #ebeced;
  /* The same background color as your `.focused` class */
}

.centralEntitiesD h5 {
  color: #2B384B;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
}

.centralEntitiesD .CEItemD {
  border-radius: 8px;
  border: 1px solid #BDBDBD;
  /* margin-bottom:35px; */
}

.centralEntitiesD .CEItemD .topCED {
  padding: 15px 18px;
  border-bottom: 1px solid #BDBDBD;
}

.centralEntitiesD .CEItemD .suggestKeword {
  padding: 15px 18px;
  background: #FDFDFD;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.centralEntitiesD .CEItemD h4 {
  color: #002F36;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 5px;
  width: 85px;
  padding-top: 5px;
}

.centralEntitiesD .CEItemD .titleNameD {
  color: #2B384B;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.centralEntitiesD .CEItemD .keywordsUsed {
  color: #7E8896;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 17px;
}

.centralEntitiesD .CEItemD textarea.form-control {
  padding: 0;
  background: transparent;
  color: #7E8896;
  font-family: Inter;
  font-size: 16px;
  border: none;
}

.centralEntitiesD .CEItemD textarea.form-control::placeholder {
  color: #7E8896;
}

.centralEntitiesD .searchTermsCE h3 {
  color: #2B384B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 15px;
}

.centralEntitiesD .searchTermsCE {
  border-bottom: 1px solid #ABC2E1;
  padding-bottom: 15px;
}

.publishOptimizeBtns .white-btn-small {
  border: none;
  background: transparent;
  color: #1C64F2;
  font-weight: 500;
}

.publishOptimizeBtns .btn {
  height: 42px;
  line-height: 42px;
  font-size: 15px;
}

/* .editPage  #Title_Bullet .user-list .form-control,
.editPage  .faqsTabSec .form-control{
  max-width:1061px;
} */
.editPage #Title_Bullet .lI_itemdata {
  margin-bottom: 33px;
}

.addMoreBullets {
  /* padding-left:13px; */
  margin-bottom: 33px;
}

.addMoreBullets span {
  color: #2B384B;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.addMoreBullets span i {
  color: #000;
  font-weight: 700;
  font-size: 19px;
  position: relative;
  top: 1px;
  margin-left: 6px;
}

.deleterAllSelected {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: #2C7BE5;
  font-weight: 600;
  margin-right: 40px;
}

.TF_Image_d {
  margin: 0 -12px;
}

.TF_Image_d .lI_itemdata {
  width: 25%;
  padding: 0 12px;
  margin-bottom: 25px;
}

.TF_Image_d .lI_itemdata .TFImgData {
  box-shadow: 0 4px 19px 0px #abc2e11a;
  border: 1px dotted #abc2e180;
  border-radius: 12px;
  padding: 9px 9px 20px;
  height: 100%;
  position: relative;
}

.TF_Image_d .titleNameD {
  color: #6E84A3;
  font-size: 12px;
  font-weight: 400;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dotted #ABC2E1;
  border-radius: 100%;
  margin: 0 0 5px;
}

.TF_Image_d .image_d {
  /* position: relative; */
  text-align: center;
}

.TF_Image_d .fileInput {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  z-index: 7;
  cursor: pointer;
  left: 0;
  right: 0;
  max-width: 100%;
  bottom: 0;
}

.TF_Image_d .noImgD {
  margin: 0 0 14px;
}

.TF_Image_d .labelText {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #ABC2E1;
  display: block;
}

.TF_Image_d .select_i_d {
  color: #6E84A3;
  margin-top: 7px;
}

.TF_Image_d .img_preview {
  margin: 0 0 12px;
}

.TF_Image_d .img_preview img {
  height: 100px;
  width: auto;
}

.TF_Image_d .custom-button {
  background: transparent;
  padding: 0;
  width: 25px;
  height: 25px;
  border: none;
  min-width: unset;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  text-align: center;
  color: #ABC2E1;
  font-size: 18px;
}

.TF_Image_d .deleteTFImage input[type=checkbox] {
  display: none;
}

.TF_Image_d .deleteTFImage .deleteItem {
  position: absolute;
  top: 12px;
  width: 25px;
  height: 25px;
  right: 12px;
  z-index: 9;
  cursor: pointer;
}

.TF_Image_d .deleteTFImage .checkEnable {
  display: none;
}

.TF_Image_d .deleteTFImage input:checked+.deleteItem .checkEnable {
  display: block;
}

.TF_Image_d .deleteTFImage input:checked+.deleteItem .checkDisabled {
  display: none;
}

.viewPreviewImg {
  position: relative;
  z-index: 9;
}

.tooltip-inner {
  background-color: #26334D !important;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: #26334D !important;
}

.faqsTabSec .titleNameD {
  color: #6E84A3;
  font-size: 12px;
  font-weight: 400;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dotted #ABC2E1;
  border-radius: 100%;
  margin: 20px 0 0;
}

.faqsTabSec .QA_div {
  width: calc(100% - 46px);
}

input.question::placeholder {
  color: #6E84A3 !important;
}

/* EBC Tab css start */
.ebcTabs {
  border-bottom: 1px solid #abc2e180;
}

.ebcTabs .nav-tabs .nav-link {
  color: #6E84A3;
  padding: 20px 0;
}

.ebcTabs .nav-tabs .nav-link.active {
  border-bottom: 3px solid #1C64F2;
  box-shadow: unset;
  color: #2B384B;
}

.ebcTabs .nav-tabs .nav-item {
  margin-left: 25px;
  margin-right: 25px;
}

.premium_banner_d .img_d img {
  width: 100%;
}

.premium_banner_d .info_d {
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
  color: #808C9F;
}

.EBC__Tab .ebc_cardD {
  max-width: 1061px !important;
}

.ebc_cardD .label_d {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  padding: 0 0 0 13px;
  position: relative;
  top: 20px;
  color: #ABC2E1;
}

.ebc_cardD input.form-control::placeholder {
  color: #6E84A3 !important;
}

.editPage .user-list .divKeywords {
  border: 1px solid #E3EBF6;
  border-radius: 8px;
  padding: 16px 18px 0 16px;
}

.editPage .user-list .divKeywords input.form-control {
  padding-left: 0;
  border-bottom: none;
  background: transparent;
}

.editPage .user-list .divKeywords input.form-control::placeholder {
  color: #D8D8D8 !important;
  position: absolute;
  bottom: 12px;
  font-size: 12px;
}

.editPage .divKeywords .keyword {
  display: inline-block;
  background: #F1F4F4;
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 12px;
  color: #A7A7A7;
  margin-right: 3px;
}

.editPage .divKeywords .keyword a {
  color: #000;
}

.editPage .setMobKeywords {
  color: #5C85EE;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 12px;
  cursor: pointer;
}

.ebc_cardD .video_download {
  color: #5C85EE;
}

.paginationTab {
  margin-right: -7px;
}

.paginationTab .nav-item {
  margin: 0 10px;
}

.paginationTab .nav-item .nav-link {
  background: #F3F3F3;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #6E84A3;
  border-radius: 100%;
  padding: 0;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
}

.paginationTab .nav-item .nav-link.active {
  background: #1C64F2;
  color: #fff;
}

.paginationTab .nav-item .paginationArrow {
  font-size: 34px;
  width: 36px;
  height: 36px;
  line-height: 37px;
  color: #007bff;
}

@media (min-width: 576px) {
  .premium_banner_d .col-sm-8 {
    max-width: 64%;
    flex: 0 0 64%;
  }

  .premium_banner_d .col-sm-4 {
    max-width: 36%;
    flex: 0 0 36%;
  }
}

/* EBC Tab css end */

/* Edit Product Page css end */

/* Title Flow Image validation page css start */
.ASINNO {
  color: #2B384B;
}

.filterSearch .tfsearch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 0px;
  padding: 0;
  margin: 0;
  left: 0;
  font-size: 22px;
  color: #6E84A3;
}

.TF_no span {
  color: #6E84A3;
  font-size: 16px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dotted #ABC2E1;
  border-radius: 100%;
  margin: 0 auto;
}

.TFMBFImgD {
  max-width: 270px;
  max-height: 270px;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  border: 1px dotted #ABC2E1;
  position: relative;
}

.TFMBFImgD .m_img {
  width: auto;
  height: 270px;
  margin: 0 auto;
  display: block;
  padding-bottom: 2px;
}

.TFMBFImgD .popupbtn {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 32px;
  height: 32px;
  background: #ffffffcc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2B384B;
  cursor: pointer;
}

.TFMBFImgD .img__d {
  position: relative;
  width: 100%;
}

.TFMBFImgD input[type=checkbox] {
  display: none;
}

.TFMBFImgD .img__d {
  position: relative;
}

.TFMBFImgD .setCheckBtn {
  cursor: pointer;
}

.TFMBFImgD .setCheckBtn:before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: -14px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  background: url(/static/assets/images/icons/radio.png)no-repeat scroll center center;
  background-size: 25px;
}

.TFMBFImgD input:checked+.setCheckBtn:before {
  background: url(/static/assets/images/icons/radio-checked.png)no-repeat scroll center center;
  background-size: 25px;
}

.imgValidateSec .table td {
  padding: 15px;
}

.imgValidateSec .table thead tr:nth-child(2) th {
  background-color: #fff;
}

.imgValidateSec .table .dateTimeD {
  color: #2B384B;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 156%;
  text-transform: uppercase;
}

.imgValidateSec .table .dateTimeD span {
  color: #6E84A3;
}

.imgValidateSec {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.imgValidateSec .table th:nth-child(2),
.imgValidateSec .table td:nth-child(2) {
  border-right: 1px dotted #eaeaea;
}

/* img validation popup start */
.imgValidationPopup {
  background: #000000cc;
}

.imgValidationPopup .modal-dialog {
  max-width: 100%;
  width: 92%;
}

.imgValidationPopup .modal-content {
  background: transparent;
  border: none;
}

.imgValidationPopup .modal-header {
  border-bottom: none;
}

.imgValidationPopup .modal-body {
  padding: 0;
}

.imgValidationPopup .modal-header button {
  padding: 0;
  background: #9A9A9A;
  border-radius: 100%;
  color: #fff;
  width: 26px;
  height: 26px;
  opacity: 1;
}

.imgValidationPopup .title_d {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin: 0 0 18px;
}

.imgValidationPopup .img__d img {
  width: 100%;
}

.imgValidationPopup .TFMBFImgD .m_img {
  height: unset;
  /* border: 1px dotted #ABC2E1; */
  display: block;
  max-height: 500px;
  /* width: auto; */
  width: unset;
  max-width: 100%;
}

.imgValidationPopup .TFMBFImgD {
  max-width: unset;
  max-height: unset;
  width: auto;
  height: auto;
  border: none;
  margin-bottom: 45px;
  background: #fff;
}

.imgValidationPopup .TFMBFImgD .img__d {
  max-width: 500px;
  height: 500px;
}

.imgValidationPopup .TFMBFImgD .setCheckBtn {
  max-width: 500px;
  height: 500px;
  border: 1px dotted #ABC2E1;
}

.imgValidationPopup .TFMBFImgD .setCheckBtn:before {
  top: unset;
  bottom: -45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}

.imgValidationPopup label {
  margin: 0;
}

.checkOnAmazon {
  color: #1C64F2;
}

/* img validation popup end */
/* Title Flow Image Validation page css end */

/* Success popup css start */
.SEPopup .modal-content {
  border-radius: 15px;
  max-width: 445px;
  padding: 35px;
}

.successPopup .modal-content {
  box-shadow: 0 60px 120px 0px #29CC3933;
  background: #fff;
  border-color: #fff;

}

.errorPopup .modal-content {
  box-shadow: 0 60px 120px 0px #E62E2E33;
  background: #fff;
  border-color: #fff;
}

.SEPopup .modal-header {
  border-bottom: none;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 30px;
}

.SEPopup .modal-header h3 {
  font-size: 18px;
  color: #44546F;
  font-weight: 700;
  margin: 0;
}

.SEPopup .modal-header .close {
  color: #fff;
  opacity: 1;
  background: rgb(0 0 0 / 10%);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  font-weight: normal;
  margin: 0;
}

.SEPopup .modal-header .close svg {
  position: relative;
  top: -2px;
}

.SEPopup .modal-body {
  padding: 0;
}

.SEPopup.successPopup .SE_d svg path {
  fill: #03C116;
}

.SEPopup .SE_d h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin: 30px 0;
}

.SEPopup.successPopup .SE_d h3 {
  color: #03C116;
}

.SEPopup.errorPopup .SE_d h3 {
  color: #DD3333;
}

.SEPopup p {
  font-size: 12px;
  line-height: 20px;
  color: #44546F;
  margin: 0;
  font-weight: 300;
}

/* Success popup css end */

/* Waiting popup css start */
.waitingPopup .modal-content {
  border-radius: 0;
}

.waitingPopup .modal-dialog {
  max-width: 830px;
}

.waitingPopup .modal-body {
  padding: 150px 120px;
}

.waitingPopup .img_d {
  /* width:150px; */
  width: 64px;
  margin: 0 auto 40px;
}

.waitingPopup .img_d img {
  width: 100%;
}

.waitingPopup h3 {
  font-size: 18px;
  font-weight: 500;
  color: #2B384B;
  margin: 0 0 10px;
}

.waitingPopup p {
  color: #ABC2E1;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 767px) {
  .waitingPopup .modal-body {
    padding: 60px 50px;
  }
}

/* Waiting popup css end */

/* PDP Request Page css start */
.pdpRequest {
  box-shadow: unset;
  border: 1px solid #abc2e180;
  border-top: none;
}

.pdpRequest table thead th {
  background: #f8f8f8;
  padding: 0;
}

.pdpRequest .setBorderRight {
  border-right: 1px solid #E3EBF6;
}

.pdpRequest .table tr th:nth-of-type(1),
.pdpRequest .table tr td:nth-of-type(1) {
  border-right: 1px solid #ABC2E1;
}

.pdpRequest table thead th a {
  padding: 15px 8px;
  display: block;
  font-weight: 500;
  color: #6E84A3;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.pdpRequest .table tr th:nth-of-type(1) a {
  text-align: left;
  padding-left: 28px;
}

.pdpRequest table thead .action_d {
  background: #A666FF;
  color: #fff;
}

.pdpRequest table thead .action_d a {
  color: #fff;
}

.pdpRequest .table-striped tbody tr:nth-of-type(2n+1) {
  background: #fff;
}

.pdpRequest table td {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  height: 68px;
}

.pdpRequest .proNameD {
  display: flex;
  justify-content: space-between;
}

.pdpRequest .proNameD .img_d {
  width: 50px;
}

.pdpRequest .proNameD .img_d img {
  width: 100%;
}

.pdpRequest .proNameD .proTitle {
  width: calc(100% - 60px);
  display: flex;
  flex-wrap: wrap;
}

.pdpRequest .proNameD .proTitle a {
  color: #6E84A3;
  font-size: 15px;
  margin: 0 0 5px;
  display: block;
  width: 100%;
  text-align: left;
}

.pdpRequest .proNameD .proTitle span {
  display: inline-block;
  background: #F5F7FA;
  font-size: 10px;
  color: #6E84A3;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid #abc2e180;
}

.pdpRequest .proNameD .proTitle span.edit_asin {
  border-radius: 13px;
  border: 1px solid #F94144;
  display: inline-flex;
  align-items: center;
  min-width: 60px;
  color: #6E84A3;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  background: transparent;
  padding: 1px 6px;
  position: relative;
  top: 2px;
}

.pdpRequest .deactivate_d {
  color: #F94144;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1px;
  border-radius: 16px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  padding: 2px 2px 2px;
  line-height: 17px;
  margin-left: 20px;
}

.pdpRequest .deactivate_row,
.pdpRequest .table tr.deactivate_row td:nth-of-type(1) {
  background: #FFF8F8 !important;
}

.pdpRequest .actionTD .dropdown-menu {
  /* box-shadow: 0 0px 12px 0 rgb(0 0 0 / 25%); */
  box-shadow: unset;
  border-radius: 8px;
  padding: 0;
  left: auto;
  right: 0;
  min-width: 240px;
  filter: drop-shadow(0px 4px 55px rgba(0, 0, 0, 0.15));
}

.pdpRequest .actionTD .showRD .dropdown-menu {
  display: block;
}

.pdpRequest .actionTD .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 28px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.pdpRequest .actionTD .dropdown-toggle:after {
  display: none;
}

/* .pdpRequest .table-striped tbody tr:last-child .actionTD .dropdown-menu,
.pdpRequest .table-striped tbody tr:nth-last-child(2) .actionTD .dropdown-menu,
.pdpRequest .table-striped tbody tr:nth-last-child(3) .actionTD .dropdown-menu,
.pdpRequest .table-striped tbody tr:nth-last-child(4) .actionTD .dropdown-menu,
.pdpRequest .table-striped tbody tr:nth-last-child(5) .actionTD .dropdown-menu{
	top: unset;
	bottom: 31px;
}
.pdpRequest .table-striped tbody tr:last-child .actionTD .dropdown-menu:before,
.pdpRequest .table-striped tbody tr:nth-last-child(2) .actionTD .dropdown-menu:before,
.pdpRequest .table-striped tbody tr:nth-last-child(3) .actionTD .dropdown-menu:before,
.pdpRequest .table-striped tbody tr:nth-last-child(4) .actionTD .dropdown-menu:before,
.pdpRequest .table-striped tbody tr:nth-last-child(5) .actionTD .dropdown-menu:before{
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    top:unset;
    bottom:-10px;
} */
.pdpRequest .actionTD .closeReqDrop {
  width: 16px;
  height: 16px;
  background: #4F4F4F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}

.pdpRequest .actionTD .requestdropdown {
  cursor: pointer;
}

.pdpRequest .actionTD .btm_a_info {
  background: #2B384B;
  padding: 14px 15px 10px;
  display: flex;
  flex-wrap: wrap;
}

.pdpRequest .actionTD h5 {
  font-size: 12px;
  line-height: 19px;
  font-weight: 700;
  color: #fff;
  width: 100%;
}

.pdpRequest .actionTD .btm_a_info>div {
  font-size: 12px;
  line-height: 19px;
  color: #fff;
  margin-right: 9px;
}

.pdpRequest .actionTD .btm_a_info input {
  position: relative;
  top: 2px;
}

.pdpRequest .actionTD .top_a_info {
  padding: 15px 15px 9px;
}

.pdpRequest .actionTD .top_a_info p {
  color: #12263F;
  margin: 0 0 2px;
  font-size: 12px;
}

.pdpRequest .actionTD .top_a_info p span {
  color: #6E84A3;
}

.pdpRequest .actionTD .remove_req {
  color: #6E84A3;
  font-size: 12px;
  padding: 15px;
  text-align: right;
}

.pdpRequest .actionTD .remove_req input {
  position: relative;
  top: 2px;
}

.pdpRequest .actionTD.DGStatus .dropdown-menu {
  min-width: unset;
  width: auto;
  padding: 7px 5px;
}

.pdpRequest .DGStatus .dropdown-item {
  font-size: 12px;
  color: #6E84A3;
}

.pdpRequest .TFImgD {
  position: relative;
}

.pdpRequest .TFImgD svg {
  margin-right: 3px;
}

.pdpRequest .TFImgD .dropdownText {
  background: #ABC2E1;
  border-radius: 5px;
  padding: 5px 11px;
  margin-top: 6px;
  position: absolute;
  min-width: 145px;
  max-width: 145px;
  top: 21px;
  display: none;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  z-index: 1;
}

.pdpRequest .TFImgD .dropdownText span {
  white-space: break-spaces;
}

.pdpRequest .TFImgD:hover .dropdownText {
  display: block;
}

.pdpRequest .TFImgD .dropdownText:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ABC2E1 transparent;
}

.pendingCases .PC_title {
  color: #6E84A3;
  font-size: 18px;
  line-height: 27px;
}

.pendingCases .PC_number {
  font-size: 20px;
  font-weight: 500;
  color: #12263F;
  line-height: 30px;
}

.allLogsBtn {
  cursor: pointer;
}

.allLogsMainD .AllLogsPopup {
  background: #F5F7FA;
  width: 100%;
  max-width: 490px;
  position: absolute;
  right: 0;
  left: unset;
  top: 50px;
  box-shadow: -21px 6px 49px #d9e4ef4d;
  display: none;
  z-index: 9;
  bottom: 0;
}

.allLogsMainD.showALPopup .AllLogsPopup {
  display: block;
}

.AllLogsPopup .section_header {
  background: #C7E1FA;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.AllLogsPopup .section_header .title_acl {
  color: #2B384B;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.AllLogsPopup .closeAllLogs svg {
  position: relative;
  top: 2px;
  cursor: pointer;
}

.AllLogsPopup .item__d {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.AllLogsPopup .item__d:last-child {
  margin-bottom: 0;
}

.AllLogsPopup .item__d:last-child .content_d {
  padding-bottom: 0;
  border-bottom: unset;
}

.AllLogsPopup .listAllCases {
  padding: 25px 20px;
  overflow-y: scroll;
  height: calc(100% - 67px);
}

.AllLogsPopup .listAllCases::-webkit-scrollbar {
  width: 4px;
  background-color: #f3f3f3;
}

.AllLogsPopup .listAllCases::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
}

.AllLogsPopup .item__d .no_d {
  width: 23px;
  height: 23px;
  border: 3px solid #6e84a340;
  border-radius: 100%;
  color: #6E84A3;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AllLogsPopup .item__d .content_d {
  width: calc(100% - 33px);
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}

.AllLogsPopup .info {
  color: #2B384B;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  margin: 0 0 3px;
}

.AllLogsPopup .info .titleName {
  color: #6E84A3;
}

.AllLogsPopup .info .IDNo {
  color: #1C64F2;
  font-weight: 700;
}

.AllLogsPopup .info .AsinIDNo {
  border-radius: 6px;
  border: 0.5px solid #ABC2E1;
  padding: 2px 7px;
  margin-left: 3px;
}

/* All Log New Modal css start */
.AllLogModalPopup .modal-dialog {
  max-width: 1024px;
}

.AllLogModalPopup .modal-content {
  border-radius: 0;
  border: unset;
}

.AllLogModalPopup .modal-header {
  background: #C7E1FA;
  border-radius: 0;
  align-items: center;
  padding: 14px 25px;
}

.AllLogModalPopup .modal-header svg {
  position: relative;
  top: 3px;
}

.AllLogModalPopup .modal-title {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.AllLogModalPopup .modal-body {
  padding: 20px 25px;
}

.AllLogModalPopup .top_div {
  margin-bottom: 23px;
  ;
}

.AllLogModalPopup .top_div h3 {
  color: #2B384B;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 8px;
}

.AllLogModalPopup .top_div .asinND {
  color: #2B384B;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 3px;
  border: 0.5px solid #ABC2E1;
  background: #F5F7FA;
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.05);
  padding: 3px 5px;
}

.AllLogModalPopup .middle_div {
  margin: 0 0 13px;
}

.AllLogModalPopup .left_d .itemD {
  margin-right: 30px;
}

.AllLogModalPopup .left_d .lable_d {
  color: #2B384B;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}

.AllLogModalPopup .left_d .lable_d svg {
  position: relative;
  top: 4px;
  margin-right: 7px;
}

.AllLogModalPopup .left_d input[type=checkbox] {
  display: none;
}

.AllLogModalPopup .left_d .checkEnable {
  display: none;
}

.AllLogModalPopup .left_d input:checked+.lable_d .checkDisabled {
  display: none;
}

.AllLogModalPopup .left_d input:checked+.lable_d .checkEnable {
  display: inline-block;
}

.AllLogModalPopup .right_d {
  position: relative;
  width: 280px;
}

.AllLogModalPopup .right_d .dateInput {
  border: 0.5px solid #ABC2E1;
  background: #fff url(/static/assets/images/icons/down-arrow.png)no-repeat scroll right center;
  border-radius: 0px;
  width: 100%;
  background-position-x: 97%;
}

.AllLogModalPopup .right_d .icon-calendar {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #6E84A3;
}

.AllLogModalPopup .table-responsive {
  height: 450px;
  overflow-y: scroll;
}

.AllLogModalPopup .table-responsive::-webkit-scrollbar {
  background-color: transparent;
}

.AllLogModalPopup .table-responsive::-webkit-scrollbar-thumb {
  background-color: rgba(29, 29, 29, 0.50);
}

.AllLogModalPopup .table {
  border: 1px solid #D9D9D9;
  border-radius: 0px;
  margin-bottom: 0;
}

.AllLogModalPopup .table thead {
  background: #F8F8F8;
}

.AllLogModalPopup .table th {
  color: #6E84A3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 8px;
  position: sticky;
  top: -1px;
  background: #F8F8F8;
  text-align: center;
  z-index: 9;
}

.AllLogModalPopup .table td {
  color: #2B384B;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  padding: 8px;
  height: 40px;
  vertical-align: middle;
}

.AllLogModalPopup .table tr th:nth-of-type(1),
.AllLogModalPopup .table tr td:nth-of-type(1) {
  padding-left: 25px;
}

.AllLogModalPopup .table tr th:last-child,
.AllLogModalPopup .table tr td:last-child {
  padding-right: 25px;
}

.AllLogModalPopup .statusD .dropdownText {
  background: #12263F;
  border-radius: 5px;
  padding: 5px 11px;
  margin-top: 6px;
  position: absolute;
  min-width: 127px;
  top: 21px;
  left: -21px;
  display: none;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  z-index: 1;
}

.AllLogModalPopup .statusD .dropdownText:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #12263F transparent;
}

.AllLogModalPopup .statusD:hover .dropdownText {
  display: block;
}

.AllLogModalPopup .statusD>div {
  color: #6E84A3;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

/* All Log New Modal css end */
@media only screen and (min-width: 1200px) {
  .pdpRequest .table tr td:nth-of-type(1) {
    padding-left: 28px;
  }

  .pdpRequest .table {
    margin-bottom: 0;
  }

  .pdpRequest .card-body {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  }

  .pdpRequest .table-responsive {
    padding-left: 497px;
    min-height: 400px;
    overflow-x: unset;
  }

  .pdpRequest .table tr th:nth-of-type(1),
  .pdpRequest .table tr td:nth-of-type(1) {
    position: absolute;
    left: 0;
    width: 497px;
    margin-top: -1px;
    z-index: 1;
  }

  .pdpRequest .table tr td:nth-of-type(1) {
    background: #fff;
  }
}

/* PDP Request Page css end */

/* ASIN View Page css start */
.asinTopBarD .icon-download {
  color: #ABC2E1;
}

.asinTopBarD .nav {
  border: 1px solid #abc2e180;
  border-radius: 8px;
  background: transparent;
  padding: 3px 6px;
}

.asinTopBarD .nav-tabs .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.asinTopBarD .nav-tabs .nav-link {
  color: #9291A5;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
}

.asinTopBarD .nav-tabs .nav-link:hover {
  color: #9291A5;
}

.asinTopBarD .nav-tabs .nav-link.active {
  background: #1E1B39;
  border-radius: 13px;
  color: #FFFFFF;
}

.DWMInnerD::-webkit-scrollbar {
  background-color: #E3EBF6;
}

.DWMInnerD::-webkit-scrollbar-thumb {
  background-color: #1C64F2;
}

.AsinTabContent .tab-content {
  padding: 0;
  background: transparent;
  box-shadow: unset;
}

.DWMInnerD::-webkit-scrollbar {
  height: 13px;
}

.DWMInnerD {
  display: flex;
  overflow-x: scroll;
  padding-bottom: 95px;
}

.DWMInnerD .item_d,
.DWMfixedD .item_d {
  text-align: center;
  min-width: 200px;
  padding-top: 35px;
}

.DWMInnerD .dateD {
  font-size: 12px;
  color: #9291A5;
}

.DWMInnerD .barLine,
.DWMfixedD .barLine {
  position: relative;
  margin: 0 0 14px;
}

.DWMInnerD .barLine:before,
.DWMfixedD .barLine:before {
  position: absolute;
  content: "";
  top: 11px;
  height: 2px;
  width: 100%;
  background: #6E84A3;
  left: 0;
}

.DWMInnerD .barLine .dotD {
  width: 12px;
  height: 12px;
  background: #F94144;
  border-radius: 100%;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.DWMInnerD_1 .status_d .icon_d {
  margin: 0 3px;
}

.DWMInnerD_1 .status_d .tooptipAdd {
  position: relative;
}

.DWMInnerD_1 .status_d .tooptipAdd .dropdownText {
  border-radius: 5px;
  background: #4F4F4F;
  margin-top: 6px;
  position: absolute;
  min-width: 170px;
  top: 21px;
  display: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  z-index: 1;
  padding: 11px 3px;
  color: #fff;
  left: -74px;
}

.DWMInnerD_1 .status_d .tooptipAdd:hover .dropdownText::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #4F4F4F transparent;
}

.DWMInnerD_1 .status_d .tooptipAdd:hover .dropdownText {
  display: block;
}

.DWMInnerD_1 .status_d .tooptipAdd .dropdownText.cartVisiblityDropdown {
  text-align: left;
  padding: 5px 0px 5px 10px;
  font-size: 12px;
}

.DWMInnerD_1 .status_d .tooptipAdd .cartVisiblityDropdown p {
  font-size: 12px;
  padding-right: 10px;
  margin: 0;
  /* color: #F94144; */
  color: #fff;
  text-align: center;
}

.DWMInnerD_1 .status_d .tooptipAdd .cartVisiblityDropdown ol {
  padding: 0 0 0 14px;
  margin: 0;
  max-height: 54px;
  overflow-y: scroll;
}

.DWMfixedD .barLine .dotD {
  padding: 2px;
  border: 3px solid #22D1EE;
  border-radius: 100%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.DWMfixedD .barLine .dotD span {
  width: 14px;
  height: 14px;
  background: #22D1EE;
  border-radius: 100%;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.DWMfixedD .barLine:after {
  position: absolute;
  content: "";
  background-color: #44546F;
  width: 7px;
  height: 7px;
  left: 0;
  top: 9px;
  border-radius: 100%;
  z-index: 3
}

.DWMfixedD .item_d {
  position: relative;
}

.DWMfixedD .yearText {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #3D5AF1;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.DWMfixedD.DWMLast .barLine:after {
  left: unset;
  right: 0;
}

.graphTabSec .nav-tabs {
  margin: 0 -13px;
}

.graphTabSec .nav-item {
  padding: 0 13px;
  margin: 0 0 26px;
  width: 20%;
}

.graphTabSec .nav-tabs .nav-link {
  padding: 0;
  box-shadow: 0px 2px 6px 0px rgba(13, 10, 44, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.graphTabSec .nav-tabs .nav-link.active {
  box-shadow: 0px 2px 6px 0px rgba(13, 10, 44, 0.08);
  background: transparent;
}

.graphTabSec .nav-tabs .graphTD {
  max-width: 100%;
  max-height: 100%;
  height: 175px;
}

.graphTabSec .highcharts-title {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
  padding-top: 20px !important;
  display: block !important;
  padding-left: 30px !important;
}

.graphTabSec .tab-content {
  padding: 0;
  background-color: transparent;
  box-shadow: unset;
}

.graphTabSec .tab-content .innerDaysTabs .tab-content {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 2px 6px 0px rgba(13, 10, 44, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 14px;
}

.graphTabSec .tab-content .innerGraphChart {
  width: 100%;
}

.graphTabSec .graphTabContent {
  margin: 15px 0 0;
}

.innerDaysTabs .nav {
  border: 1px solid #abc2e180;
  border-radius: 8px;
  background: #F8F8FF;
  padding: 3px 6px;
  position: relative;
  /* margin-bottom: -51px; */
  margin-bottom: 0;
  z-index: 999;
}

.innerDaysTabs .nav .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  margin: 0;
}

.innerDaysTabs .nav .nav-link {
  color: #9291A5;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
}

.innerDaysTabs .nav .nav-link.active {
  background: #1E1B39;
  border-radius: 13px;
  color: #FFFFFF;
}

.innerDaysTabs .tab-content {
  box-shadow: unset;
  padding: unset;
}

.AsinOverviewD table thead th {
  background: #f8f8f8;
  padding: 0;
}

.AsinOverviewD table thead th a {
  padding: 15px 8px;
  display: block;
  font-weight: 600;
  color: #2B384B;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.AsinOverviewD table thead th a img {
  margin-left: 5px;
}

.AsinOverviewD .table tr th:first-child a {
  text-align: left;
  padding-left: 28px;
}

.AsinOverviewD .table tr td:first-child {
  padding-left: 28px;
}

.AsinOverviewD .table th,
.AsinOverviewD .table td {
  vertical-align: middle;
  text-align: center;
}

.AsinOverviewD .card {
  border: 1px solid #abc2e180;
  box-shadow: unset;
  border-top: none;
}

.AsinOverviewD .card-body {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
}

.AsinOverviewD .week_D {
  color: #6E84A3;
  font-size: 15px;
  line-height: 22.5px;
  font-weight: 500;
}

.AsinOverviewD .week_D span {
  font-weight: 400;
  color: #ACACAC;
  display: block;
}

.AsinOverviewD .issue_type .icon_d {
  margin: 0 3px;
}

.AsinOverviewD .issue_type .icon_d svg {
  position: relative;
  top: 4px;
}

.AsinOverviewD .issue_type .icon_d.error {
  padding: 0;
}

.AsinOverviewD .issue_type .icon_d.error svg path {
  fill: #F94144;
}

.AsinOverviewD .form-control.action_description {
  background: transparent;
  border: 1px solid #E3EBF6;
  padding: 7px 14px;
  height: 40px;
  font-size: 16px;
  color: #6E84A3;
  line-height: 24px;
  border-radius: 8px;
}

.AsinOverviewD .form-control.action_description:focus {
  outline: none;
  box-shadow: unset;
}

.AsinOverviewD .dropdown-toggle {
  cursor: pointer;
}

.AsinOverviewD .dropdown-toggle::after {
  display: none;
}

.AsinOverviewD .dropdown.open .dropdown-menu {
  left: unset;
  right: 0;
  top: 33px;
}

.AsinOverviewD .dropdown-menu {
  border-color: #6E84A3;
  padding: 10px 15px;
  filter: drop-shadow(0px 4px 55px rgba(0, 0, 0, 0.05));
  box-shadow: unset;
}

.AsinOverviewD .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #6E84A3 transparent;
}

.AsinOverviewD .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -8.5px;
  right: 18px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.AsinOverviewD .dropdown-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.AsinOverviewD .dropdown-menu ul li {
  font-size: 15px;
  line-height: 22.5px;
  color: #6E84A3;
  font-weight: 500;
  margin: 0 0 4px;
}

.AsinOverviewD .dropdown-menu ul img {
  margin-left: 5px;
}

.AsinOverviewD .bg_d {
  color: #000;
  min-width: 160px;
}

.AsinOverviewD .yellowColor {
  background-color: #F1E784;
}

.AsinOverviewD .greenColor {
  background-color: #74C37C;
}

.AsinOverviewD .orangeColor {
  background-color: #FDD37F;
}

.AsinOverviewD .redColor {
  background-color: #F8726C;
}

.AsinOverviewD .setBgC {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.AsinOverviewD .setTextOnBg {
  position: relative;
  z-index: 9;
}

.AsinOverviewD .setBadge {
  border-radius: 11.5px;
  border: 1px solid #707070;
  background: rgba(255, 255, 255, 0.50);
  padding: 3px 5px;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.healthPerformanceD h3 {
  color: #44546F;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 10px;
}

.healthPerformanceD ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.healthPerformanceD ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin: 0 0 10px;
}

.healthPerformanceD ul li img {
  width: 21px;
  margin-right: 5px;
}

/* ASIN View Page css end */

/* Report Abuse Page css start */
.totalAsinBar {
  margin-bottom: 27px;
}

.totalAsinBar .item_d {
  border-radius: 8px;
  border: 0.5px solid #ABC2E1;
  background: #FFF;
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.05);
  padding: 15px;
  min-height: 114px;
}

.totalAsinBar .item_d h5 {
  color: #6E84A3;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 20px;
}

.totalAsinBar .item_d h5 svg {
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.totalAsinBar .iconTextD {
  color: #12263F;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.totalAsinBar .iconTextD svg {
  position: relative;
  top: 4px;
}

.totalAsinBar .statusList {
  display: flex;
}

.totalAsinBar .statusList .statusItem {
  width: 33.33%;
  padding: 0 30px;
  border-right: 1px solid #E3EBF6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6E84A3;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.totalAsinBar .dotD {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 6px;
}

.totalAsinBar .completeDot {
  background: #6AF278;
}

.totalAsinBar .onGoingDot {
  background: #F0F0F0;
}

.totalAsinBar .cancelledDot {
  background: #FDADDA;
}

.totalAsinBar .reopenedDot {
  background: #2393D9;
}

.totalAsinBar .statusNoD {
  color: #12263F;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.totalAsinBar .statusList .statusItem:first-child {
  padding-left: 0;
}

.totalAsinBar .reopenCasesD .item_d {
  cursor: pointer;
}

.totalAsinBar .reopenCasesD.showSDropdown .item_d {
  background: #2393D9;
}

.totalAsinBar .reopenCasesD.showSDropdown .item_d h5,
.totalAsinBar .reopenCasesD.showSDropdown .iconTextD {
  color: #fff;
}

.totalAsinBar .reopenCasesD.showSDropdown .item_d svg path {
  fill: #fff;
}

.totalAsinBar .reopenCasesD .dropdown-menu {
  border-radius: 8px;
  border: var(--size-0, 0.5px) solid #ABC2E1;
  background: #FFF;
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.05);
  width: 337px;
  right: 0;
  left: unset;
  padding: 15px;
}

.totalAsinBar .reopenCasesD.showSDropdown .dropdown-menu {
  display: block;
}

.totalAsinBar .reopenCasesD .dropdown-menu input {
  margin-right: 13px;
  width: 17px;
  height: 17px;
  position: relative;
  top: 3px;
}

.totalAsinBar .reopenCasesD .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -30.5px;
  left: 121px;
  margin-left: -5px;
  border-width: 15px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.totalAsinBar .reopenCasesD .dropdown-menu label {
  margin: 0;
}

.totalAsinBar .reopenCasesD .RCLists {
  overflow-y: scroll;
  height: 215px;
}

.totalAsinBar .reopenCasesD .RC_item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
}

.totalAsinBar .reopenCasesD .RC_item label {
  width: calc(100% - 33px);
}

.totalAsinBar .reopenCasesD .CN {
  color: #808C9F;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}

.totalAsinBar .reopenCasesD .CI {
  display: block;
  color: #ACACAC;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.totalAsinBar .reopenCasesD .btn.blue-btn {
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
}

.sorting_d .dropdown-menu li a {
  justify-content: flex-start;
  align-items: center;
  color: #6E84A3;
}

.DGtoggleBtn span {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.DGtoggleBtn .btn-toggle {
  padding: 0;
  position: relative;
  border: none;
  width: 50px;
  height: 30px;
  border-radius: 15px;
  /* top: 50%;
  transform: translateY(-50%); */
  cursor: pointer;
  border: 2px solid #6E84A3;
  background: #fff;
}

.DGtoggleBtn .btn-toggle .handle {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #3361FF;
  transition: left 0.25s;
}

.DGtoggleBtn .btn-toggle.active {
  /* background-color: #d7d7d7; */
  /* transition: background-color 0.25s; */
}

.DGtoggleBtn .btn-toggle.active .handle {
  left: 22px;
  transition: left 0.25s;
}

.inspectAsinSec .dropdown-menu {
  width: 290px;
  top: 55px;
  padding: 24px 20px;
  right: 0;
  left: unset;
}

.inspectAsinSec.showInspectDD .dropdown-menu {
  display: block;
}

.inspectAsinSec .dropdown-toggle::after {
  border: none;
}

.inspectAsinSec .form-div {
  position: relative;
  margin-bottom: 20px;
}

.inspectAsinSec .form-div:last-child {
  margin-bottom: 0;
}

.inspectAsinSec label {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: #49454F;
  margin: 0;
  position: absolute;
  top: -9px;
  background: #fff;
  left: 16px;
  padding: 2px;
}

.inspectAsinSec input.form-control {
  height: 56px;
  background: transparent;
  border: 1px solid #ABC2E1;
  border-radius: 4px;
  padding: 10px 16px;
}

.inspectAsinSec .form-control:focus {
  outline: none;
  box-shadow: unset;
}

.inspectAsinSec input::placeholder {
  color: #1D1B20;
}

.inspectAsinSec .blue-btn {
  height: 35px;
  line-height: 33px;
}

.pdpRequest.reportAbuse .table thead th {
  border-bottom: 1px solid #abc2e180;
}

.pdpRequest.reportAbuse .table thead th,
.pdpRequest.reportAbuse .table td {
  border-right: 1px solid #abc2e180;
  border-bottom-color: #abc2e180;
}

.pdpRequest.reportAbuse .table thead th:last-child,
.pdpRequest.reportAbuse .table td:last-child {
  border-right: none;
}

.pdpRequest.reportAbuse table thead th a.action_col {
  background: #A666FF;
  color: #fff;
}

.pdpRequest.reportAbuse table thead th {
  background: #F5F7FA;
}

.pdpRequest.reportAbuse table thead tr:nth-child(2) th {
  background: #F9FBFD;
  color: #7E8896;
}

.pdpRequest.reportAbuse .table tr th:nth-of-type(2) a {
  text-align: left;
}

/* .pdpRequest.reportAbuse .table tr th:nth-of-type(1), 
.pdpRequest.reportAbuse .table tr td:nth-of-type(1){
  border-right:unset;
} */
.pdpRequest.reportAbuse .table tr td:nth-of-type(1) {
  vertical-align: top;
}

.pdpRequest.reportAbuse .table tr th.borderRightUnset,
.pdpRequest.reportAbuse .table tr td.borderRightUnset {
  border-right: none;
}

.pdpRequest.reportAbuse table thead th a {
  font-weight: 600;
  color: #2B384B;
}

.pdpRequest.reportAbuse .proNameD .proTitle {
  display: block;
  text-align: left;
  font-size: 15px;
}

.pdpRequest.reportAbuse .reopenText {
  color: #1C64F2;
}

.reportAbuse .date_d .start_date {
  display: block;
  color: #12263F;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.reportAbuse .date_d .end_date {
  color: #12263F;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  margin-right: 6px;
}

.reportAbuse .date_d strong {
  font-weight: 700;
  color: #2B384B;
  display: block;
  font-size: 12px;
  color: #F3722C;
}

.reportDGStatus {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1px;
  padding: 1px 17px;
  border-radius: 3px;
  display: inline-block;
}

.reportDGStatus.completedStatus {
  background: #6AF278;
}

.reportDGStatus.cancelledStatus {
  background: #FDADDA;
}

.reportDGStatus.onGoingStatus {
  background: #F0F0F0;
}

.reportDGStatus.onDGStatus {
  background: #FEDBEF;
}

.reportAbuse .dgClass {
  width: 60px;
  border: 1px solid #ABC2E1;
  color: #4F4F4F;
  padding: 1px;
}

.reportAbuse .stageNo {
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.reportAbuse .dgSettingD .dropdown-menu {
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  width: 296px;
  right: 0;
  left: unset;
  padding: 22px;
  box-shadow: unset;
  filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.05));
}

.reportAbuse .dgSettingD.showSDropdown .dropdown-menu {
  display: block;
}

.reportAbuse .dgSettingD .dropdown-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #D9D9D9 transparent;
}

.reportAbuse .dgSettingD .dropdown-menu:after {
  content: "";
  position: absolute;
  top: -8.5px;
  right: 18px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.reportAbuse .dgSettingD .top_a_info {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ABC2E1;
  margin: 0 0 27px;
}

.reportAbuse .dgSettingD .top_a_info .img_d {
  width: 88px;
}

.reportAbuse .dgSettingD .top_a_info .img_d img {
  width: 100%;
}

.reportAbuse .dgSettingD .top_a_info .info_d {
  width: calc(100% - 99px);
}

.reportAbuse .dgSettingD .top_a_info h5 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 20px;
}

.reportAbuse .dgSettingD .top_a_info p {
  color: #6E84A3;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 5px;
}

.reportAbuse .dgSettingD .top_a_info .asinNo {
  color: #1C64F2;
  font-weight: 700;
}

.reportAbuse .dgSettingD .top_a_info .dateTimeD {
  color: #2B384B;
}

.reportAbuse .dgSettingD .dateFC {
  background: transparent url(/static/assets/images/icons/down-arrow.png)no-repeat scroll right center;
  background-position-x: 96%;
  border: 1px solid #ABC2E1;
  color: #6E84A3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding-left: 45px;
  height: 56px;
  border-radius: 4px;
  ;
}

.reportAbuse .dgSettingD input.dateFC::placeholder {
  text-align: left;
}

.reportAbuse .dgSettingD .inceptionLabDate .icon-calendar {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #ABC2E1;
}

.reportAbuse .dgSettingD .uploadPDFD {
  margin-bottom: 27px;
}

.reportAbuse .dgSettingD .blue-btn {
  height: 35px;
  line-height: 35px;
}

.reportAbuse .dgSettingD .closebtn {
  color: #6E84A3;
  cursor: pointer;
}

.reportAbuse .settings_d {
  cursor: pointer;
}

.reportAbuse .countryName {
  vertical-align: middle;
}

.reportAbuse .brandN {
  background: #F5F7FA;
  color: #2B384B;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 5px;
}

.reportAbuse .errorEmailDot {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #F7685B;
  border-radius: 100%;
  position: absolute;
  right: 13px;
}

.DGEmailModal .modal-dialog {
  max-width: 1110px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.DGEmailModal .modal-content {
  background: #F5F7FA;
}

.DGEmailModal .modal-header {
  background: #C7E1FA;
  padding: 14px 23px 14px 43px;
  display: flex;
  align-items: center;
}

.DGEmailModal .modal-header .leftD span {
  color: #6E84A3;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.DGEmailModal .modal-header .rightD {
  display: flex;
  align-items: center;
}

.DGEmailModal .modal-header .asinND {
  color: #6E84A3;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 6px;
  border: 0.5px solid #ABC2E1;
  background: #F5F7FA;
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.05);
}

.DGEmailModal .modal-header .close {
  padding: 0;
  margin: 0 0 0 22px;
}

.DGEmailModal .modal-body {
  padding: 25px 43px 70px 43px;
  font-size: 12px;
  color: #6E84A3;
}

.DGEmailModal .modal-body p {
  font-size: 12px;
  color: #6E84A3;
}

.DGEmailModal .modal-body .info_d {
  padding-bottom: 17px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 50px;
}

.DGEmailModal .editDivInfo .info_d_btm {
  width: calc(100% - 100px);
}

.DGEmailModal .editDivInfo .editBtm {
  width: 20px;
}

.DGEmailModal .editDivInfo .btn {
  height: 35px;
  line-height: 33px;
  font-size: 12px;
}

.DGEmailModal.AllViewModal .modal-dialog {
  max-width: 820px;
}

.DGEmailModal.AllViewModal .table thead th,
.DGEmailModal.AllViewModal .table td {
  white-space: unset;
}

.DGEmailModal.AllViewModal .modal-body {
  max-height: 660px;
  height: 100%;
  overflow-y: scroll;
  padding: 35px;
  color: #6E84A3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.DGEmailModal.AllViewModal .modal-body::-webkit-scrollbar {
  background-color: #fff;
}

.DGEmailModal.AllViewModal .modal-body::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
}

.DGEmailModal.AllViewModal .table-responsive::-webkit-scrollbar {
  background-color: #BDBDBD;
}

.DGEmailModal.AllViewModal .table-responsive::-webkit-scrollbar-thumb {
  background-color: #1C64F2;
}

.DGEmailModal.AllViewModal .modal-body .headingPopup {
  color: #6E84A3;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 8px;
}

.DGEmailModal.AllViewModal .modal-body .caseHead {
  margin-bottom: 8px;
}

.DGEmailModal.AllViewModal .modal-body .first_detail,
.DGEmailModal.AllViewModal .btmContent .table b {
  color: #4F4F4F;
}

.DGEmailModal.AllViewModal .modal-body .first_title {
  margin-right: 2px;
}

.DGEmailModal.AllViewModal .middleContent thead th {
  background: #F9FBFD;
}

.DGEmailModal.AllViewModal .table thead th {
  font-weight: 700;
  font-size: 12px;
  font-style: normal;
  padding: 0px;
  position: sticky;
  top: -1px;
  z-index: 1;
}

.DGEmailModal.AllViewModal .table thead th span {
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  padding: 10px;
  display: block;
}

.DGEmailModal.AllViewModal .table td {
  border-top: unset;
  padding: 10px;
}

.DGEmailModal.AllViewModal .table thead th:first-child span,
.DGEmailModal.AllViewModal .table tr td:first-child {
  padding-left: 23px;
}

.DGEmailModal.AllViewModal .table thead th:last-child span,
.DGEmailModal.AllViewModal .table tr td:last-child {
  padding-right: 23px;
}

.DGEmailModal.AllViewModal .table {
  /* border: 1px solid #BDBDBD; */
  background: #F9FBFD;
  margin: 0;
}

.DGEmailModal.AllViewModal .table-responsive {
  height: 183px;
  overflow-y: scroll;
  border: 1px solid #BDBDBD;
  border-top: unset;
}

.DGEmailModal.AllViewModal .btmContent thead th {
  background: #DAE8FB;
}

.DGEmailModal.AllViewModal .btmContent.lastBtmC thead th {
  background: #FFF3F4;
}

.DGEmailModal.AllViewModal .table td a {
  color: #6E84A3;
}

/*  */
.DGEmailModal.AllViewModal .modal-content {
  border-radius: 12px;
}

.DGEmailModal.AllViewModal .modal-header {
  padding: 14px 23px 13px 34px;
}

@media only screen and (min-width: 1200px) {

  .pdpRequest.reportAbuse .table tr th:nth-of-type(1),
  .pdpRequest.reportAbuse .table tr td:nth-of-type(1) {
    position: unset;
    width: auto;

  }

  .pdpRequest.reportAbuse .table-responsive {
    padding-left: 0;
  }
}

/* Report Abuse Page css end */
.sticky-header,
.sticky-header2 {
  transition: top 0.3s;
}

.sticky-header.sticky {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: calc(100% - 180px);
  border-radius: 0;
  border-top: 0;
}

.sticky-header2.sticky {
  position: fixed;
  top: 95px;
  z-index: 1;
  width: calc(100% - 182px);
  border-radius: 0;
  border-top: 0;
  background: #F5F7FA;
  left: 131px;
  right: 50px;
  border-bottom: 1px solid #eaeaea;
  margin: 0 auto;
}

.sticky-header2.sticky th:nth-child(4) {
  left: 595px;
  position: relative;
}

.sticky-header2.sticky th:nth-child(5) {
  background: #F5F7FA;
}

table .sticky-header2.sticky tr th {
  border: 0 !important;
}



/* Sticky Table on scroll css start */
.fixed_TableTop .nav-down .stickyOSFirst {
  position: fixed;
  top: 0;
  left: 254px;
  right: 174px;

  z-index: 9;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: unset;
}

.fixed_TableTop .nav-up .stickyOSFirst.stickyOSSecond {
  position: fixed;
  top: 0;
  left: 254px;
  right: 174px;
  z-index: 9;
  background: #F5F7FA;
  border: 1px solid #abc2e180;
  border-top: unset;
}

.fixed_TableTop .nav-up .stickyOSFirst.stickyOSSecond {
  position: sticky;
  top: 0;
}

.fixed_TableTop .nav-down .stickyOSFirst.stickyOSSecond {
  top: 97px;
  width: -webkit-fill-available;
  background: #F5F7FA;
  border: 1px solid #abc2e180;
  border-top: unset;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fixed_TableTop .nav-down .filterTopbar.stickyOSFirst {
  border-bottom: 1px solid #abc2e180;
}

.fixed_TableTop .stickyOSSecond th {
  border-top: unset;
  border-bottom: unset;
}

@media only screen and (max-width: 1700px) {

  .fixed_TableTop .nav-down .stickyOSFirst,
  .fixed_TableTop .nav-up .stickyOSFirst.stickyOSSecond {
    left: 180px;
    right: 100px;
  }
}

@media only screen and (max-width: 1360px) {

  .fixed_TableTop .nav-down .stickyOSFirst,
  .fixed_TableTop .nav-up .stickyOSFirst.stickyOSSecond {
    left: 130px;
    right: 50px;
  }
}

/* product listing css start */
@media only screen and (min-width: 1200px) {
  .fixed_TableTop .productsListT .table .stickyOSSecond tr th:nth-of-type(4) {
    position: absolute;
    left: 600px;
    right: 247px;
  }

  .fixed_TableTop .productsListT .table .stickyOSSecond tr th:nth-of-type(5) {
    position: absolute;
    right: 139px;
  }

  .fixed_TableTop .productsListT .table th,
  .fixed_TableTop .productsListT .table td {
    margin-top: 0;
  }
}

/* Product listing css end */
/* PDP request page css start */
@media only screen and (min-width: 1200px) {

  .fixed_TableTop .nav-up .pdpRequest .stickyOSFirst.stickyOSSecond,
  .fixed_TableTop .nav-down .pdpRequest .stickyOSFirst.stickyOSSecond,
  .fixed_TableTop .nav-up .AsinOverviewD .stickyOSFirst.stickyOSSecond,
  .fixed_TableTop .nav-down .AsinOverviewD .stickyOSFirst.stickyOSSecond {
    /* position:unset; */
    left: unset;
    right: unset;
    position: sticky;
    top: 0;
  }

  .fixed_TableTop .nav-down .pdpRequest .stickyOSFirst.stickyOSSecond,
  .fixed_TableTop .nav-down .AsinOverviewD .stickyOSFirst.stickyOSSecond {
    top: 97px;
  }

  .fixed_TableTop .pdpRequest .table tr th:nth-of-type(1),
  .fixed_TableTop .pdpRequest .table tr td:nth-of-type(1),
  .fixed_TableTop .AsinOverviewD .table tr td:nth-of-type(1) {
    position: unset;
  }

  .fixed_TableTop .pdpRequest .table-responsive,
  .fixed_TableTop .AsinOverviewD .table-responsive {
    padding-left: 0;
  }

  .fixed_TableTop .AsinOverviewD .table-responsive {
    overflow-x: unset;
  }

  .fixed_TableTop .pdpRequest.reportAbuse .stickyOSFirst.stickyOSSecond tr th {
    border-bottom: unset;
  }

  .fixed_TableTop .pdpRequest.reportAbuse .stickyOSFirst.stickyOSSecond tr th a {
    border-bottom: 1px solid #abc2e180;
    margin-left: -1px;
    margin-right: -1px;
  }
}

/* PDP request page css end */
/* Sticky Table on scroll css end */

/* EBC Image Validate Page css start */
.accordion__card {
  /* border: 1px solid #abc2e180; */
  border-bottom: unset;
}

.accordion__card .accordionTitle {
  background: #F5F7FA;
  color: #2B384B;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 30px 11px;
  position: relative;
  cursor: pointer;
  border-top: 1px solid #abc2e180;
}

.accordion__card:first-child .accordionTitle {
  border-top: unset;
}

.accordion__card .accordionTitle:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #000;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion__card .accordionTitle:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #000;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion__card .accordionTitle[aria-expanded="true"]:after {
  width: 0;
}

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

.accordion__card .MFHeadings {
  background: #FAFCFF;
  border-top: 1px solid #abc2e180;
  border-bottom: 1px solid #abc2e180;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #2B384B;
}

.accordion__card .MFInnerD {
  padding: 35px 30px;
  background: #fff;
}

.accordion__card .TF_no span {
  width: 30px;
  height: 30px;
}

.accordion__card .TFMBFImgD {
  max-width: 400px;
  max-height: unset;
  width: 100%;
  height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.accordion__card .TFMBFImgD .img__d {
  margin: 0;
  margin: 0;
  max-width: inherit;
  max-height: inherit;
  width: inherit;
  height: inherit;
}

.accordion__card .TFMBFImgD .m_img {
  width: 100%;
  max-width: 100%;
  height: unset;
}

.accordion__card .TFMBFImgD .setCheckBtn:before {
  top: 10px;
  right: 10px;
}

.accordion__card .imgName {
  max-width: 400px;
  margin: 8px auto 0;
  font-size: 14px;
  color: #6E84A3;
}

.pageBtmD {
  border-top: 1px solid #abc2e180;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: #fff;
  padding: 18px;
}

.ImgVAccordion .accordion__card:last-child {
  margin-bottom: 35px;
  border-bottom: 1px solid #abc2e180;
}

.ebcPageData {
  border: 1px solid #abc2e180;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: #fff;
}

.imgValidationPopup.ebcImgValid .TFMBFImgD {
  background: transparent;
  margin: 0;
  border: 1px solid #fff;
}

.imgValidationPopup.ebcImgValid .TFMBFImgD .img__d {
  max-width: unset;
  height: auto;
  display: block;
  border: unset;
}

.imgValidationPopup.ebcImgValid .TFMBFImgD .m_img {
  display: block;
  max-height: unset;
  padding: 0;
}

/* EBC Image Validate Page css end */

/*  */
.SFTPaccordion {
  background: #fff;
}

.SFTPaccordion .accordion__card .card-body {
  border-top: 1px solid #abc2e180;
}

/*  */

/* DG Overview Css start */
.searchFilterCom {
  max-width: 586px;
}

.searchFilterCom .filterSearch {
  width: calc(100% - 190px);
  border: 1px solid #ABC2E1;
  border-right-width: 0px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: inset 0 4px 12px 0 #0000000d;
}

.searchFilterCom .filter_by_d {
  width: 190px;
}

.searchFilterCom .filter_by_d .white-btn {
  border: 1px solid #ABC2E1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 57px;
  box-shadow: inset 0 4px 12px 0 #0000000d;
  width: 100%;
}

.searchFilterCom .filter_by_d .white-btn:hover,
.searchFilterCom .filter_by_d .white-btn:focus {
  background-color: transparent;
}

.searchFilterCom .filterSearch input {
  font-size: 16px;
  color: #6E84A3;
}

.searchFilterCom .filterSearch input:focus {
  background: transparent;
}

.pdpRequest.DAVMonitor .table thead tr:nth-child(2) th {
  height: 48px;
}

.DAVMonitor .activity_th {
  background: #E3EBF6;
}

.DAVMonitor .DSRLBg {
  background: #FEFDD3;
}

.pdpRequest.reportAbuse .DSRLBg {
  background: #FEFDD3;
}

.pdpRequest.DAVMonitor table thead th {
  min-width: 80px;
}

.pdpRequest.DAVMonitor .table tr th:nth-of-type(1),
.pdpRequest.DAVMonitor .table tr td:nth-of-type(1) {
  border-right: 1px solid #abc2e180;
}

.pdpRequest.DAVMonitor .proNameD .proTitle span {
  border: 1px solid #ABC2E1;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 6px;
}

.pdpRequest.DAVMonitor .proNameD .proTitle span.edit_asin {
  top: 0;
  border-color: #F94144;
}

.DAVMonitor .daysColor {
  color: #12263F;
}

.DAVMonitor .linkColor {
  color: #1C64F2;
}

.DAVMonitor .EOS_cat {
  font-weight: 700;
  font-size: 15px;
  color: #43AA8B;
}

.pdpRequest.DAVMonitor .table tr.deactivate_row td {
  background: #FFEEEE !important;
}

@media only screen and (min-width: 1200px) {
  .pdpRequest.DAVMonitor .table-responsive {
    padding-left: 1082px;
    overflow-x: scroll;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(1),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(1) {
    position: absolute;
    left: 0;
    width: 113px;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(2),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(2) {
    position: absolute;
    left: 113px;
    width: 117px;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(3),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(3) {
    position: absolute;
    left: 230px;
    width: 486px;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(4),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(4) {
    position: absolute;
    width: 125px !important;
    left: 716px;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(5),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(5) {
    position: absolute;
    width: 125px !important;
    left: 841px;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(6),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(6) {
    position: absolute;
    width: 117px;
    left: 966px;
    box-shadow: 7px 8px 14px 0px #00000017;
  }

  .pdpRequest.DAVMonitor .table tr th:nth-of-type(1),
  .pdpRequest.DAVMonitor .table tr th:nth-of-type(2),
  .pdpRequest.DAVMonitor .table tr th:nth-of-type(3),
  .pdpRequest.DAVMonitor .table tr th:nth-of-type(4),
  .pdpRequest.DAVMonitor .table tr th:nth-of-type(5),
  .pdpRequest.DAVMonitor .table tr th:nth-of-type(6) {
    margin-top: 0;
    height: 50px !important;
  }

  .pdpRequest.DAVMonitor .table tr td:nth-of-type(1),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(2),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(3),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(4),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(5),
  .pdpRequest.DAVMonitor .table tr td:nth-of-type(6) {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdpRequest.DAVMonitor .table tr td:nth-of-type(3) {
    display: block;
  }
}

/* DG Overiew Css end */

/* PDP Overview css start */
.pdpOverviewPage .searchFilterCom .filter_by_d .white-btn {
  background-color: #F0F0F0;
}

.pdpOverviewPage .asin_n_pending {
  font-size: 18px;
  font-weight: 400;
}

.pdpOverviewPage .asin_n_pending b {
  color: #000;
  font-weight: 500;
}

.pdpOverviewPage .pdp_activity a {
  color: #1C64F2;
}

.pdpOverview {
  box-shadow: unset;
  border: 1px solid #abc2e180;
  border-top: none;
}

.pdpOverview .card-body {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
}

.pdpOverview .table {
  margin-bottom: 0;
}

.pdpOverview table thead th {
  height: 50px;
  vertical-align: middle;
  background: #F5F7FA;
  border-right: 1px solid #abc2e180;
  border-bottom: 1px solid #abc2e180;
  padding: 8px 16px;
  font-weight: 600;
}

.pdpOverview table thead th:last-child {
  border-right: none;
}

.pdpOverview table thead tr:nth-child(2) th {
  background: #fff;
}

.pdpOverview table thead tr:nth-child(2) th.activityLog {
  background: #E3EBF6;
}

.pdpOverview table thead th a {
  display: block;
  font-weight: 600;
  color: #2B384B !important;
  font-size: 12px;
  text-transform: uppercase;
}

.pdpOverview table td {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding: 10px;
  border-right: 1px solid #abc2e180;
  border-bottom: 1px solid #abc2e180;
  color: #4F4F4F;
}

.pdpOverview table td b {
  font-weight: 600;
}

.pdpOverview .badge_l {
  border: 1px solid #ABC2E1;
  padding: 2px 7px;
  border-radius: 3px;
  color: #4F4F4F;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
}

.pdpOverview .success_b {
  background: #C1F0C6;
}

.pdpOverview .stage_b {
  background: #ECF4FF;
  color: #4F4F4F;
}

.pdpOverview .failed_b {
  background: #FFD2D3;
  color: #4F4F4F;
}

.pdpOverview .failed_b_glance {
  background: #fbf3f3;
}

.pdpOverview .queued_b {
  background: #e0e0e0;
  color: #44546F;
}

.pdpOverview .wip_b {
  background: #F9C74F;
  color: #44546F;
}

.pdpOverview .mb_6 {
  margin-bottom: 6px;
}

.pdpOverview .mr_7 {
  margin-right: 7px;
}

.pdpOverview .catName {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  color: #43AA8B;
}

.pdpOverview .proNameD .img_d {
  width: 40px;
}

.pdpOverview .proNameD .img_d img {
  width: 100%;
}

.pdpOverview .proNameD .proTitle {
  width: calc(100% - 50px);
}

.pdpOverview .proTitle a {
  color: #6E84A3;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.pdpOverview .proTitle a.ellipsis {
  white-space: initial;
}

.pdpOverview .asinNo {
  background: #F5F7FA;
  border: 1px solid #ABC2E1;
  padding: 1px 3px;
  border-radius: 3px;
  display: inline-block;
}

.pdpOverview .brand_n {
  font-weight: 600;
  font-size: 15px;
  line-height: 23px;
  background: #D2DDE7;
  padding: 3px 10px;
  border-radius: 5px;
}

.pdpOverview .countryName a {
  font-size: 15px;
  line-height: 23px;
  color: #6E84A3;
  padding-left: 5px;
}

.pdpOverview .view_d,
.pdpOverview .view_d a {
  color: #1C64F2;
}

/* PDP Overview Css end */

/* PDP Request Action Page css start */
.pdpOverviewPage .inspectAsinSec .inspectNewAsin {
  margin-right: 0;
}

.pdpOverviewPage .search_by_country .dropdown-toggle {
  text-align: left;
  width: 100%;
  background-image: url(/static/assets/images/icons/down-arrow.png);
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: center;
  background-size: 18px;
  padding-right: 35px;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.pdpOverviewPage .search_by_country .dropdown-menu {
  background: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgb(67 90 111 / 20%);
  padding: 7px 5px;
  border-radius: 6px;
  border: 1px solid rgb(67 90 111 / 20%);
  width: 100%;
  height: 288px;
  overflow-y: scroll;
  display: none;
}

.pdpOverviewPage .search_by_country .dropdown.open .dropdown-menu {
  display: block;
}

.pdpOverviewPage .asinSearchInput input.form-control {
  font-size: 16px;
  line-height: 24px;
  color: #6E84A3;
  font-weight: 400;
  border: 1px solid #abc2e180;
  border-radius: 8px;
  padding: 0 50px 0 22px;
}

.pdpOverviewPage .asinSearchInput input::placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #6E84A3;
}

.pdpOverviewPage .asinSearchInput .icon-search {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #6E84A3;
  font-size: 24px;
}

.pdpOverviewPage .inspectAsinSec .form-div {
  margin: 0 0 14px;
}

.pdpOverviewPage .inspectAsinSec .dropdown-menu {
  width: 377px;
}

.inspectAsinSec .selectReq {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6E84A3;
  margin: 0 0 13px;
}

.inspectAsinSec .selectReqInput label {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #44546F;
  font-weight: 500;
  top: unset;
  left: unset;
  padding-left: 30px;
}

.inspectAsinSec .selectReqInput {
  margin: 0 0 14px;
}

.inspectAsinSec .selectReqInput label:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 28px;
  background: url(/static/assets/images/icons/check-blank.svg) no-repeat scroll center center;
  background-size: 20px;
  border-radius: 0;
}

.inspectAsinSec .selectReqInput input:checked+label:before {
  background: url(/static/assets/images/icons/check.svg) no-repeat scroll center center;
  background-size: 20px;
}

.inspectAsinSec .selectReqInput input[type=checkbox] {
  display: none;
}

.pdpOverviewPage .inspectAsinSec .blue-btn {
  height: 45px;
  line-height: 45px;
}

.pdpOverviewPage .type_th {
  background: #FEFDD3;
}

.pdpRequestAction .pdpOverview table td {
  vertical-align: middle;
}

.pdpRequestAction table thead tr:nth-child(2) th {
  background: #F9FBFD;
}

.pdpRequestAction table .TFTBBg {
  background: #808C9F !important;
  color: #fff;
}

.pdpRequestAction table .TFTBBg a {
  color: #fff !important;
}

.pdpRequestAction table td.TFTBText {
  font-weight: 600;
  color: #2B384B;
}

.pdpRequestAction table .AccordionBody {
  display: none;
}

.pdpRequestAction .pdpOverview table .AccordionBody td {
  vertical-align: top;
  /* width:22.5%; */
  width: 23%
}

.pdpRequestAction .pdpOverview table .AccordionBody td:first-child {
  width: 100px;
}

.pdpRequestAction .accordionTable thead th {
  background: #F9FBFD;
}

.pdpRequestAction .accordionTable tbody {
  background: #ECF1F6;
}

.pdpRequestAction .accordionTable td {
  padding: 15px;
}

.pdpRequestAction .RFSDetails {
  margin: 0 -5px;
}

.pdpRequestAction .RFSDetails .item_d {
  width: 50%;
  padding: 0 5px;
}

.pdpRequestAction .RFSDetails .content_t {
  /* font-size: 15px;
  line-height: 22px; */
  color: #4F4F4F;
  font-weight: 500;
  /* min-height:22px; */
  white-space: normal;
}

.pdpRequestAction .RFSDetails .name_t {
  font-size: 15px;
  line-height: 22px;
}

.pdpRequestAction .RFSDetails .title_t {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6E84A3;
  margin: 0 0 5px;
  min-height: 18px;
}

.pdpRequestAction .RFSDetails .inner_text {
  color: #ACACAC;
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.pdpRequestAction .RFSDetails .info_d>span {
  width: 50%;
}

.pdpRequestAction .RFSDetails .info_d {
  align-items: center;
  margin: 0 0 5px;
}

.pdpRequestAction .RFSDetails.lastD .inner_text {
  /* min-height: 22px;
  margin: 0 0 5px; */
}

.pdpRequestAction .RFSDetails.lastD .content_t {
  margin: 0 0 3px;
}

.pdpRequestAction .RFSDetails.lastD .title_t {
  margin: 0 0 10px;
}

.pdpRequestAction .RFSDetails {
  margin-bottom: 20px;
}

.pdpRequestAction .RFSDetails.setBorderb {
  padding-bottom: 20px;
  border-bottom: 1px solid #abc2e180;
}

.pdpRequestAction .RFSDetails h5 {
  font-size: 12px;
  line-height: 18px;
  color: #2B384B;
  font-weight: 500;
  text-transform: uppercase;
}

.pdpRequestAction .RFSDetails.lastD {
  padding-bottom: 0;
  border-bottom: none;
}

.pdpRequestAction .twoBlocks .l_block {
  width: 66.66%;
  padding-right: 15px;
}

.pdpRequestAction .twoBlocks .r_block {
  width: 33.33%;
  padding-left: 15px;
  border-left: 1px solid #abc2e180;
}

.pdpRequestAction .setColorBlue {
  color: #1C64F2;
}

.pdpRequestAction .badge_l {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.pdpRequestAction .tableFilter {
  padding: 10px;
  background: linear-gradient(90deg, rgba(42, 111, 248, 0.27) -21.59%, rgba(0, 0, 0, 0.0891543) -7.67%, rgba(33, 106, 249, 0) 89.8%);
}

.pdpRequestAction .tableFilter .white-btn {
  color: #6E84A3;
  font-size: 12px;
  height: 31px;
  line-height: 17px;
  padding: 7px 8px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.pdpRequestAction .tableFilter .white-btn:hover,
.pdpRequestAction .tableFilter .white-btn:focus {
  background: #fff;
}

.pdpRequestAction .tableFilter .white-btn svg {
  margin-right: 5px;
}

.pdpRequestAction .tableFilter .pagination_d>div {
  margin: 0 14px;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #6E84A3;
}

.pdpRequestAction .tableFilter .pagination_d .prev {
  color: #2C7BE5;
}

.pdpRequestAction .tableFilter .pagination_d .prev svg {
  margin-right: 20px;
  position: relative;
  top: 2px;
  opacity: 0.5;
}

.pdpRequestAction .tableFilter .pagination_d .next svg {
  margin-left: 20px;
  position: relative;
  top: 2px;
}

.pdpRequestAction .filterSearch {
  width: 100%;
  max-width: 367px;
  border: 1px solid #ABC2E1;
  border-radius: 8px;
  box-shadow: inset 0 4px 12px 0 #0000000d;
}

/* PDP Request Action Page css end */

/* PDP Asin Glance View Page css start*/
.asinGlanceViewPage .top_header {
  margin: 0 0 54px;
}

.switch_toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

.switch_toggle .slider.round {
  border-radius: 100px;
}

.switch_toggle input:checked+.slider {
  background-color: #F94144;
}

.switch_toggle .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch_toggle input:checked+.slider:before {
  background: #fff url(/static/assets/images/icon/toggle-true.svg) no-repeat scroll center center;
  background-size: 12px;
}

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

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

.switch_toggle.statusSwitch input:checked+.slider {
  background-color: #6750A4;
}

.pdpOverview.AGVOverview table thead th,
.pdpOverview.AGVOverview table td {
  border-right: none;
}

.pdpOverview.AGVOverview table thead th.setBorderRight,
.pdpOverview.AGVOverview table td.setBorderRight {
  border-right: 1px solid #abc2e180;
}

.pdpOverview.AGVOverview table td {
  padding: 16px 16px;
}

.pdpOverview.AGVOverview .asinNo,
.pdpOverview.AGVOverview .badge_g {
  background: #F5F7FA;
  border: 1px solid #ABC2E1;
  padding: 1px 3px;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6E84A3;
  margin-bottom: 4px;
}

.pdpOverview.AGVOverview .asinNo {
  padding: 2px 3px 0px;
}

.pdpOverview.AGVOverview .badge_g {
  background: #E2E2E2;
  color: #2B384B;
}

.pdpOverview.AGVOverview .badge_g.dg_alert {
  color: #F94144;
  background: #FFDEDF;
  font-weight: 600;
}

.pdpOverview.AGVOverview .proTitle a {
  color: #2B384B;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  margin: 0 0 2px;
  display: block;
}

.thumb_cursor {
  cursor: pointer;
}

.AGVOverview .countryProductD .badge_g {
  margin-right: 9px;
}

.AGVOverview .tools_d {
  color: #2B384B;
  margin: 4px 5px 0px 0px;
}

.AGVOverview .tools_main_d svg {
  margin: 0 5px;
}

.asinTThreeD {
  margin: 0 0 60px;
}

.asinTThreeD .lastCol_d .img_d img {
  width: 100%;
  display: block;
}

.asinTThreeD .firstCol_d {
  width: 600px;
}

.asinTThreeD .lastCol_d {
  width: calc(100% - 623px);
  padding-top: 6px;
}

.asinTThreeD .lastCol_d select {
  height: 30px;
  padding: 0px 24px 0px 15px;
  text-align: left;
  margin: 0;
  background: #44546F url(/static/assets/images/icons/down-arrow-white.svg) no-repeat scroll right center;
  background-position-x: 90%;
  background-size: 11px;
  appearance: none;
  box-shadow: unset;
  border-radius: 17px;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  font-weight: 600;
  max-width: 100px;
  cursor: pointer;
}

.asinTThreeD .lastCol_d .form_div {
  margin: 5px 6px;
}

.asinTThreeD .lastCol_d .comparebtnD .white-btn {
  height: 41px;
  padding: 0;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asinTThreeD .lastCol_d .nav-tabs .nav-link {
  font-size: 14px;
  height: 30px;
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 10px;
  margin: 0 1px;
  background: #fff;
  min-width: 96px;
  border-radius: 5px;
  border: 1px solid #1E1B39;
  color: #1E1B39;
  margin-left: 12px;
  margin-bottom: 10px;
}

.asinTThreeD .lastCol_d .nav-tabs .nav-link.active {
  background: #1E1B39;
  color: #fff;
}

.asinTThreeD .lastCol_d .action_btn .btn {
  height: 30px;
  line-height: 28px;
  width: 32px;
  text-align: center;
  padding: 0 5px;
}

.asinTThreeD .saleAlert {
  font-size: 18px;
  font-weight: 600;
  color: #1E1B39;
  padding-bottom: 10px;
  border-bottom: 1px solid #D4D4D4;
  margin-top: 14px;
}

.asinTThreeD .two_b_div {
  display: flex;
  margin: 0 -15px;
}

.asinTThreeD .two_b_div .BCC__d {
  padding: 0 15px;
  width: 59%;
}

.asinTThreeD .two_b_div .insights_d {
  padding: 0 15px;
  width: 41%;
}

.asinTThreeD .insights_d h4 {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  color: #2B384B;
  margin: 0 0 20px;
}

.asinTThreeD .insights_d .img_d img {
  width: 100%;
}

.asinTThreeD .progressBarSec {
  margin: 0 0 22px;
}

.asinTThreeD .progressBarSec .item_d {
  margin: 0 0 17px;
  width: calc(50% - 17px);
}

.dg_appeal_activity .progressBarSec .item_d {
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: unset;
  min-height: unset;
  margin: 0 0 10px;
}

.asinTThreeD .progressBarSec .label_d,
.dg_appeal_activity .progressBarSec .label_d {
  font-size: 12px;
  font-weight: 700;
  color: #2B384B;
  line-height: 150%;
  margin: 0 0 3px;
}

.dg_appeal_activity .progressBarSec .label_d {
  display: flex;
  justify-content: space-between;
}

.asinTThreeD .progressBarSec .progress,
.dg_appeal_activity .progressBarSec .progress {
  height: 8px;
  background: #C6D7ED;
  border-radius: 4px;
  width: 100%;
  margin: 0 0 5px;
}

.asinTThreeD .progressBarSec .progress-bar,
.dg_appeal_activity .progressBarSec .progress-bar {
  width: 25%;
  background-color: #147AD6;
  border-radius: 4px;
}

.asinTThreeD .progressBarSec .label_count span,
.dg_appeal_activity .progressBarSec .label_count span {
  text-align: center;
  border-radius: 7px;
  font-size: 12px;
  line-height: 23px;
  height: 20px;
  display: inline-block;
  min-width: 30px;
  color: #000;
  cursor: pointer;
}

.asinTThreeD .alertTotalAsin .dot_d {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #C6D7ED;
  border-radius: 100%;
  margin-right: 5px;
}

.asinTThreeD .alertTotalAsin .dot_d.alertD {
  background: #4A3AFF;
}

.asinTThreeD .alertTotalAsin b {
  font-weight: 500;
  color: #1E1B39;
}

.asinTThreeD .profitRevenueSec {
  margin: 0 0 22px;
}

.asinTThreeD .container11 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: #2B384B;
  width: 100%;
}

.asinTThreeD .container11.market_share {
  min-width: 154px;
}

.asinTThreeD .container11.allContainer {
  width: 100px;
}

.asinTThreeD .container11 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.asinTThreeD .container11 .checkmark11 {
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 25px;
  background: url(/static/assets/images/icons/grey-checkbox.svg) no-repeat scroll left top;
  /* background-position-y: 6px; */
  background-size: 23px;
}

.asinTThreeD .container11 input:checked~.checkmark11 {
  background: url(/static/assets/images/icons/blue-checkbox.svg) no-repeat scroll left top;
  /* background-position-y: 6px; */
  background-size: 23px;
}

.asinTThreeD .metrics_items {
  border: 1px solid #ABC2E1;
  background: #f3fafd;
  border-radius: 8px;
  padding: 10px 15px 15px;
}

.asinTThreeD .metrics_items .trendsRegression {
  background: #E3EBF6;
  padding: 10px 15px 2px;
  margin: 0 -15px 10px;
}

.asinTThreeD .metrics_items .inner_list {
  height: 250px;
  overflow-y: scroll;
}

.asinTThreeD .metrics_items .action_btn .btn {
  background: #1C64F2;
  border: 1px solid #1C64F2;
  border-radius: 8px;
  color: #fff;
  height: 29px;
  line-height: 27px;
  padding: 0 10px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 112px;
}

.asinTThreeD .metrics_items .action_btn .btn:hover,
.asinTThreeD .metrics_items .action_btn .btn:focus {
  color: #1C64F2;
  background: transparent;
}

.asinTThreeD .metrics_items .action_btn .btn:hover svg path,
.asinTThreeD .metrics_items .action_btn .btn:focus svg path {
  fill: #1C64F2;
}

.asinTThreeD .chooseMetricsSec h3 {
  font-size: 20px;
  margin: 0 0 11px;
  color: #2B384B;
}

.asinGlanceViewPage .filterTopbar .dropdown-menu,
.dropdown-menu {
  min-width: 298px;
  max-height: 400px;
  overflow: auto;
}

.asinGlanceViewPage .filterSearch {
  margin-bottom: 10px;
}

.asinGlanceViewPage .filterSearch .icon-search {
  font-size: 24px;
}

.asinGlanceViewPage .filterSearch input:focus {
  background: transparent;
}

.AGVOverview .textColor {
  color: #2B384B;
}

.asinTThreeD .middleCol_d .form_div {
  width: 100%;
}

.asinTThreeD .SelectMetrics .white-btn {
  height: 40px !important;
  line-height: 38px !important;
  width: 100%;
  margin: 0;
  background-image: url(/static/assets/images/icons/down-arrow.png);
  appearance: none;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center;
  background-size: 18px;
  box-shadow: unset;
  border: 1px solid #abc2e1;
  border-radius: 8px;
  padding: 0 30px 0 15px;
  margin: 0 0 15px;
  color: #6E84A3;
  font-size: 16px;
  line-height: 400;
}

.asinTThreeD .SelectMetrics .white-btn.dropdown-toggle::after {
  display: none;
}

.asinTThreeD .SelectMetrics .dropdown11 {
  position: relative;
}

.asinTThreeD .SelectMetrics .dropdown-menu,
.asinTThreeD .SelectMetrics .dropdown-menu11 {
  width: 285px;
  min-width: unset;
  background: #F3F9FD;
  padding: 20px 18px;
  max-height: 350px;
  overflow-y: scroll;
  border-radius: 6px;
  border: 1px solid rgb(67 90 111 / 20%);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  list-style: none;
}

.asinTThreeD .SelectMetrics .active .dropdown-menu,
.asinTThreeD .SelectMetrics .active .dropdown-menu11 {
  display: block;
}

.asinTThreeD .SelectMetrics .dropdown-menu li,
.asinTThreeD .SelectMetrics .dropdown-menu11 li {
  padding: 0;
}

.asinTThreeD .SelectMetrics .dropdown-menu hr,
.asinTThreeD .SelectMetrics .dropdown-menu11 hr {
  margin-left: -18px;
  margin-right: -18px;
}

.asinTThreeD .lastCol_d .graphTab_d {
  position: relative;
}

.asinTThreeD .lastCol_d .graphTab_d .img_d {
  border: 1px solid #abc2e1;
  border-radius: 10px;
}

.asinTThreeD .graphTab_d nav {
  position: absolute;
  right: 24px;
  top: 28px;
  z-index: 9;
}

.asinTThreeD .graphTab_d .trendsRegression {
  position: absolute;
  top: 30px;
  z-index: 9;
  left: 48%;
  transform: translateX(-50%);
}

.asinTThreeD .filterSearch input {
  height: 40px;
}

.asinTThreeD .filterSearch input::placeholder {
  color: #6E84A3;
}

.asinTThreeD .refresh_d .white-btn {
  background: #1C64F2;
  height: 30px;
  width: 32px;
  border-radius: 5px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asinTThreeD .refresh_d .white-btn svg path {
  fill: #fff;
}

.asinTThreeD .filterApplyed {
  font-size: 12px;
  font-weight: 400;
  color: #1C64F2;
  margin: 0 0 10px;
  padding-left: 11px;
}

.asinTThreeD .filterApplyed b {
  font-weight: 600;
}

.AGVOverview .tooltipSpanD {
  position: relative;
  top: 2px;
  margin-left: 4px;
}

.AGVOverview .subjective_text {
  color: #007EF2;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  margin-top: 5px;
}

.AGVOverview .setLightPinkBg {
  background: #FFF0F0;
}

.AGVOverview .setDarkPinkBg {
  background: #FFD2D3;
}

.AGVOverview .setLightGreenBg {
  background: #E0FBFF;
}

.AGVOverview .setLGreenBg {
  background: #D6FCDA;
}

.AGVOverview .user_n {
  display: block;
  font-weight: 600;
}

.AGVOverview .user_d {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #2C7BE5;
}

.AGVOverview .tools_l span {
  margin: 0 4px 10px;
  display: inline-block;
}

.AGVOverview .pro_class {
  font-weight: 500;
}

.AGVOverview .objectives {
  text-align: left;
}

.AGVOverview .alerts_icons span {
  margin: 0 2px;
  position: relative;
}

.AGVOverview .alerts_icons span .tooltip {
  top: unset !important;
  bottom: 25px !important;
  left: -55px !important;
  transform: unset !important;
  min-width: 130px;
}

.AGVOverview .alerts_icons .redAlert svg path {
  fill: #F94144;
}

.AGVOverview .alerts_icons svg {
  margin: 0 10px 6px 0;
}

.AGVOverview .alerts_icons.alerts_icons_head svg {
  position: relative;
  top: 9px;
}

.AGVOverview .alerts_icons .alertLabel {
  color: #2B384B;
  font-weight: 600;
}

.AGVOverview .alerts_icons .customTooltip {
  position: relative;
  ;
}

.AGVOverview .alerts_icons .customTooltip .tooltip {
  top: 24px !important;
  bottom: unset !important;
  left: -50px !important;
  transform: unset !important;
  min-width: 250px;
  visibility: hidden;
  display: none;
  background: #44546F;
  opacity: 1;
  border-radius: 5px;
  color: #fff;
  padding: 5px 5px 10px;
  max-height: 300px;
  /* overflow: hidden; */
}

.AGVOverview .alerts_icons .customTooltip .tooltip .info_d {
  height: 144px;
  overflow-y: scroll;
}

.AGVOverview .alerts_icons .customTooltip:hover .tooltip {
  display: block;
  visibility: visible;
}

.AGVOverview .alerts_icons .customTooltip:hover .tooltip::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 55px;
  /* transform: translateX(-50%); */
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #44546F transparent;
}

.AGVOverview .alerts_icons .tooptipAdd {
  position: relative;
}

.AGVOverview .alerts_icons .tooptipAdd .dropdownText {
  background: #44546F;
  border-radius: 5px;
  padding: 5px 11px;
  margin-top: 6px;
  position: absolute;
  min-width: 145px;
  max-width: 200px;
  top: 18px;
  left: 0;
  display: none;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  z-index: 1;
  border: 1px solid #44546F;
  text-align: left;
  white-space: normal;
  height: 190px;
  overflow-y: scroll;
}

.AGVOverview .alerts_icons .tooptipAdd:hover .dropdownText {
  display: block;
}

.AGVOverview .alerts_icons .tooptipAdd:hover .dropdownText::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 9px;
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #44546F transparent;
}

.AGVOverview .tooptipAdd .dropdownText p {
  margin: 0;
}

.AGVOverview .red_badge {
  background: transparent;
  border: 1px solid #F94144;
  padding: 1px 3px;
  border-radius: 4px;
  display: inline-block;
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #DD3333;
}

.AGVOverview .setSuccess_c {
  color: #03C116;
  min-width: 68px;
}

.AGVOverview .setfailed_c {
  color: #DD3333;
  min-width: 68px;
}

.AGVOverview .text_grey {
  color: #6E84A3;
}

.AGVOverview .redoverText {
  padding: 1px 6px 0;
  /* border: 2px solid red; */
}

.AGVOverview .set_m_h {
  min-height: 185px;
}

/* .AGVOverview .revenue___d .set_m_h{
  min-height:148px;
} */
.AGVOverview .blue_progress {
  background: #F0F0F0;
  width: 30px;
  height: 9px;
  display: inline-block;
  position: relative;
  margin-left: 3px;
}

.AGVOverview .blue_progress .setBlueWidth {
  position: absolute;
  top: 0;
  left: 0;
  background: #2C7BE5;
  display: inline-block;
  z-index: 1;
  height: 100%;
  border-radius: 1px;
}

.AGVOverview .badge_healty {
  border: 1px solid #ABC2E1;
  padding: 2px 7px;
  border-radius: 3px;
  color: #6E84A3;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
  background: #C1F0C6;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}

.AGVOverview .summery_t {
  min-width: 68px;
}

.AGVOverview .setPricePer {
  min-width: 68px;
}

.AGVOverview .overallText {
  border: 1px solid #ABC2E1;
  padding: 1px 8px;
  display: inline-block;
}

.AGVOverview .text_blue {
  color: #589DFF;
  font-size: 10px;
}

.AGVOverview .remove_mw {
  min-width: unset;
}

.AGVOverview .fold__td {
  background: #ECF1F687;
}

.AGVOverview .fold__td>td {
  padding: 0;
}

.AGVOverview .serOverflow_b .OverflowBorder {
  position: relative;
  padding: 2px 11px 2px 0;
}

.AGVOverview .serOverflow_b .OverflowBorder>div,
.AGVOverview .serOverflow_b .OverflowBorder>span {
  position: relative;
  z-index: 9;
}

.AGVOverview .serOverflow_b .OverflowBorder .summery_t {
  font-weight: 700;
  color: #2B384B;
}

.AGVOverview .serOverflow_b .OverflowBorder:before {
  position: absolute;
  content: "";
  width: 100%;
  left: -8px;
  right: 0;
  top: -1px;
  bottom: 0;
  border: 1px solid #ABC2E1;
}

.AGVOverview .graphPercentage {
  display: block;
  font-size: 10px;
  line-height: 15px;
  font-weight: 800;
  color: #03C116;
  margin: 1px 0 0;
}

.AGVOverview .keywords_l>div {
  width: 142px;
  white-space: normal;
  color: #2B384B;
}

.AGVOverview .keywordItem span {
  background: #F3F3F3;
  border-radius: 3px;
  color: #2C7BE5;
  font-weight: 600;
  padding: 3px 4px;
  margin-left: 4px;
}

.AGVOverview .keywordItem span svg {
  position: relative;
  top: 2px;
}

.AGVOverview .marginsCols label {
  color: #6E84A3;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  min-width: 40px;
}

.AGVOverview .marginsCols .per_value {
  border: 1px solid #ABC2E1;
  border-radius: 3px;
}

.AGVOverview .marginsCols .per_value span {
  padding: 4px 0;
}

.AGVOverview .marginsCols .number_val {
  font-weight: 700;
  color: #6B7A99;
  max-width: 35px;
  text-align: center;
  outline: none;
  box-shadow: unset;
  border: 1px solid transparent;
  border-radius: 3px;
}

.AGVOverview .marginsCols .percentage_d {
  background: #E3EBF6;
  min-width: 27px;
  text-align: center;
  color: #6B7A99;
  font-weight: 700;
  border-left: 1px solid #ABC2E1;
}

.AGVOverview .nav.nav-tabs [data-toggle=tab] {
  cursor: pointer;
}

.AGVOverview .classGrd {
  font-weight: 500;
}

.AGVOverview .toggleAccordion {
  position: absolute;
  width: 34px;
  height: 34px;
  right: -9px;
  overflow: hidden;
  top: 7px;
  text-align: center;
  z-index: 1;
  cursor: pointer;
}

.AGVOverview .toggleAccordion.active {
  right: -21px;
}

.AGVOverview .toggleAccordion svg {
  width: 24px;
}

.AGVOverview .toggleAccordion .plusicon {
  display: block;
}

.AGVOverview .toggleAccordion .minusicon {
  display: none;
}

.AGVOverview .toggleAccordion.active .plusicon {
  display: block;
}

.AGVOverview .toggleAccordion.active .minusicon {
  display: block;
}

.AGVOverview .toggleAccordion.toggleAccordion_return {
  right: unset;
  left: -9px;
}

.AGVOverview .toggleAccordion.toggleAccordion_return .minusicon {
  display: block;
}

.AGVOverview .table-responsive::-webkit-scrollbar {
  height: 13px;
  cursor: pointer;
}

.AGVOverview .table-responsive::-webkit-scrollbar {
  cursor: pointer;
}

.AGVOverview .table-responsive::-webkit-scrollbar-thumb {
  cursor: pointer;
}

.AGVOverview .graph__d {
  margin-bottom: 0 !important;
}

.AGVOverview .graph__d .mychart {
  width: 70px !important;
  height: unset !important;
  max-height: 50px;
}

.AGVOverview .graphBadgeD {
  height: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.AGVOverview .graphBadgeD .red_badge {
  margin-right: 5px;
  margin-bottom: 5px;
}

.AGVOverview .table-responsive {
  /* transform: rotateX(180deg); */
  /* height:700px; */
}

.AGVOverview .table-responsive .table {
  /* transform: rotateX(180deg); */
}

.AGVOverview .table-responsive .table .stickyOSFirst {
  position: sticky;
  top: 0;
  z-index: 10;

}

.AGVOverview .tableGross {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ABC2E1;
  margin: 0 0 5px;
}

.AGVOverview .tableGross .TGRow {
  display: flex;
  border-bottom: 1px solid #ABC2E1;
}

.AGVOverview .tableGross .TGRow:last-child {
  border-bottom: none;
}

.AGVOverview .tableGross .TGHeader .cell {
  width: 100%;
}

.AGVOverview .tableGross .cell {
  width: 33.33%;
  min-width: 64px;
  padding: 2px 7px;
  border-right: 1px solid #ABC2E1;
  color: #2B384B;
}

.AGVOverview .tableGross .cell:first-child {
  min-width: 85px;
}

.AGVOverview .tableGross .cell:last-child {
  border-right: none;
}

.AGVOverview .tableGross svg {
  margin-right: 3px;
}

.AGVOverview .orgTooltip {
  position: relative;
}

.AGVOverview .orgTTPopup {
  position: absolute;
  top: 24px;
  border: 1px solid #ABC2E1;
  min-width: 170px;
  background: #fff;
  left: -31px;
  padding: 10px;
  border-radius: 8px;
  display: none;
  z-index: 9;
}

.AGVOverview .orgTooltip:hover .orgTTPopup {
  display: block;
}

.AGVOverview .OrgTable {
  display: flex;
  flex-direction: column;
  border: 1px solid #ABC2E1;
}

.AGVOverview .OrgTable .OTRow.OTHeader {
  background: #D2DDE7;
}

.AGVOverview .OrgTable .OTRow {
  display: flex;
  border-bottom: 1px solid #ABC2E1;
}

.AGVOverview .OrgTable .OTRow:last-child {
  border-bottom: none;
}

.AGVOverview .OrgTable .cell {
  min-width: 50px;
  border-right: 1px solid #ABC2E1;
  padding: 2px 7px 1px;
  font-size: 12px;
  line-height: 19px;
  color: #2B384B;
  font-weight: 400;
}

.AGVOverview .OrgTable .cell:first-child {
  min-width: 108px;
}

.AGVOverview .OrgTable .cell:last-child {
  border-right: none;
}

.AGVOverview .orgTTPopup:after {
  content: '';
  height: 12px;
  width: 12px;
  position: absolute;
  background-color: #fff;
  top: -7px;
  left: 31px;
  border-top: #ABC2E1 solid 1px;
  border-left: #ABC2E1 solid 1px;
  transform: rotate(45deg);
}

.circle_dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  /* background: #FF718B; */
  margin-right: 7px;
}

.AGVOverview .table-responsive::-webkit-scrollbar {
  width: 12px;
}

.pdpOverview.AGVOverview table .fold__td>td {
  padding: 0;
}

.fold__td .nav-tabs {
  background: #E7EDF2;
  padding: 12px 17px 12px;
}

.fold__td .nav-tabs .nav-link:first-child {
  position: sticky;
  left: 17px;
}

.fold__td .nav-tabs .nav-link:last-child {
  position: sticky;
  left: 150px;
}

.fold__td .nav-tabs .nav-link {
  background: transparent;
  color: #000000;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 11px 10px;
  margin: 0 1px;
}

.nav__tab .nav-tabs .minusSVGIcon {
  display: none;
}

.nav__tab .nav-tabs .active .plusSVGIcon {
  display: none;
}

.nav__tab .nav-tabs .active .minusSVGIcon {
  display: block;
}

.nav__tab .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #1e1b39;
  padding: 4px 9px 2px;
  background: transparent;
  border-radius: 3px;
  margin: 0 1px;
}

.nav__tab .nav-tabs .nav-link:focus {
  outline: none;
}

.fold__td .nav-tabs .nav-link.active,
.fold__td .nav-tabs .nav-link:hover {
  background: #1E1B39;
  color: #fff;
  /* border-top-left-radius: 5px;
  border-top-right-radius: 5px; */
  border-radius: 5px;
}

.nav__tab .nav-tabs .nav-link.active,
.nav__tab .nav-tabs .nav-link:hover {
  background: #d2dde7;
}

.fold__td .tab-content {
  background: transparent;
}

.fold__td .tab-content table {
  width: 100%;
}

.fold__td .tab-content thead {
  height: 0px;
  display: none;
}

.AGVOverview .fold__td .tab-content .set_m_h {
  min-height: 120px;
}

/* .fold__td .tab-content thead tr td{
  padding:0;
  height:1px;
} */
.fold__td .switch_toggle.tabSwitchT .slider {
  border: 1px solid #ccc;
  background-color: transparent;
}

.fold__td .switch_toggle.tabSwitchT .slider:before {
  background: #ccc;
  bottom: 3px;
}

.fold__td .switch_toggle.tabSwitchT input:checked+.slider {
  background: #000;
}

.fold__td .switch_toggle.tabSwitchT input:checked+.slider:before {
  background: #fff url(/static/assets/images/icon/toggle-true.svg) no-repeat scroll center center;
  background-size: 12px;
}

.fixed_TableTop .nav-down .asinGlanceViewPage .stickyOSFirst,
.fixed_TableTop .nav-up .AGVOverview .stickyOSFirst.stickyOSSecond,
.fixed_TableTop .nav-down .stickyOSFirst.stickyOSSecond {
  left: 130px;
  right: 50px;
}

/* PDP Asin Glance View Page css end*/

/* Sticky Asin glance view */
.pdpOverview.AGVOverview table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #F5F7FA;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
  border-right: none;
}

.pdpOverview.AGVOverview table thead th:nth-child(2) {
  position: sticky;
  left: 102px;
  z-index: 9;
  background: #F5F7FA;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
  border-right: none;
}

.pdpOverview.AGVOverview table thead th:nth-child(3) {
  position: sticky;
  left: 452px;
  z-index: 9;
  background: #F5F7FA;
  border-right: 1px solid #abc2e180;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
}

.pdpOverview.AGVOverview table td:first-child {
  position: sticky;
  left: 0;
  z-index: 9;
  background: #fff;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
  border-right: none;
}

.pdpOverview.AGVOverview table td:nth-child(2) {
  position: sticky;
  left: 102px;
  z-index: 9;
  background: #fff;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
  border-right: none;
}

.pdpOverview.AGVOverview table td:nth-child(3) {
  position: sticky;
  left: 452px;
  z-index: 9;
  background: #fff;
  border-right: 1px solid #abc2e180;
  /* box-shadow:-1px -1px 1px -1px #000 inset; */
}

.pdpOverview.AGVOverview table th:nth-child(3):after,
.pdpOverview.AGVOverview table td:nth-child(3):after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 0px;
  height: 100%;
  right: 0px;
  box-shadow: 0px 0px 2px 1px #abc2e180;
}

.pdpOverview.AGVOverview table td.noStickyTd {
  position: unset;
  left: unset;
}

.pdpOverview.AGVOverview table .stickyOSFirst tr {
  position: sticky;
  top: 0;
  z-index: 999;
}

.AGVOverview .table-responsive {
  height: 800px;
}

.AGVOverview .table-responsive::-webkit-scrollbar {
  width: 0.3px;
}

.AllLogModalPopup .table-responsive::-webkit-scrollbar {
  background-color: #abc2e180
}

.AllLogModalPopup .table-responsive::-webkit-scrollbar-thumb {
  background-color: #abc2e180;
}

/* .pdpOverview.AGVOverview table .fold.fold__td td:first-child,
.pdpOverview.AGVOverview table .fold.fold__td td:nth-child(2),}
.pdpOverview.AGVOverview table .fold.fold__td td:nth-child(3){
  position:unset;
} */
/* .pdpOverview.AGVOverview table .fold.fold__td td:nth-child(5){
  position: unset;
} */


/* Compare graph  css start */
.compareGraphModal .modal-dialog {
  width: 90% !important;
  max-width: 2200px !important;
  border-radius: 44px;
  overflow: hidden;
  height: 690px;
}

.compareGraphModal .modal-header .close {
  background: #1E1B39;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  position: absolute;
  right: 14px;
  top: 14px;
  opacity: 1;
}

.compareGraphModal .modal-content {
  padding: 35px;
  height: 100%;
}

.compareGraphModal .modal-body {
  padding: 0;
}

.compareGraphModal .asinTThreeD {
  margin: 0;
}

.compareGraphModal .sectionHeader {
  font-size: 20px;
  font-weight: 600;
  color: #1E1B39;
  /* margin-bottom:25px; */
}

.compareGraphModal .asinTThreeD .lastCol_d {
  width: 100%;
}

.compareGraphModal .asinTThreeD .lastCol_d .graphTab_d .img_d {
  border: none;
}

.compareGraphModal .filterApplyed {
  font-size: 12px;
  font-weight: 400;
  color: #1C64F2;
  margin: 0 0 10px;
}

.compareGraphModal .modalTop_d {
  border-bottom: 1px solid #ABC2E1;
  margin-bottom: 17px;
}

.compareGraphModal .modalTop_d .filterSearch {
  margin-right: 80px;
}

.compareGraphModal .modalTop_d .market_share {
  width: 160px;
}

.compareGraphModal .modalTop_d .nav-tabs {
  /* width:calc(100% - 154px); */
}

.compareGraphModal .modalTop_d .asinTThreeD .lastCol_d .nav-tabs .nav-link {
  margin-left: 5px;
}

.compareGraphModal .modalBtm_d .graphTab_d {
  padding: 10px;
  border: 1px solid #ABC2E1;
  border-radius: 20px;
}

/* Compare graph modal css end */

/*  */

/* DG Appeal Page css start */
.dgAppeal_page .totalAsinNo {
  font-size: 18px;
  font-weight: 600;
  color: #6E84A3;
}

.dgAppeal_page .totalAsinNo span {
  font-size: 20px;
  color: #12263F;
  font-weight: 500;
}

.dgAppeal_page .inspectAsinSec .blue-btn {
  line-height: 33px;
}

.dgAppeal_page .totalAsinBar .casesitem {
  display: flex;
  justify-content: space-between;
  margin: 0 0 7px;
  line-height: 150%;
  font-size: 15px;
  color: #44546F;
  font-weight: 500;
}

.dgAppeal_page .totalAsinBar .casesitem:last-child {
  margin-bottom: 0;
}

.dgAppeal_page .totalAsinBar .casesitem span:first-child {
  color: #2076C5;
}

.dgAppeal_page .totalAsinBar .casesitem span:first-child {
  width: calc(100% - 60px);
}

.dgAppeal_page .totalAsinBar .casesitem span:last-child {
  width: 50px;
}

.dgAppeal_page .totalAsinBar .casesitem.main__t span:first-child {
  font-size: 18px;
  color: #6E84A3;
  font-weight: 500;
}

.dgAppeal_page .totalAsinBar .casesitem.main__t span:last-child {
  font-size: 20px;
  font-weight: 500;
  color: #12263F;
}

/* DG Appeal Page css end */

/* Variation List page css start */
.variationListPage .addNewProBtn {
  background: #DFFBE1;
}

.variationListPage .addVarBtn {
  background: #EEFBFD;
}

.variationListPage .deleteVarBtn {
  background: #FFF4F5;
}

.variationListPage .lastRun {
  font-size: 15px;
  font-weight: 400;
}

.variationListPage .lastRun b {
  color: #6E84A3;
}

.variationListPage .lastRun strong {
  color: #2B384B;
}

.variationListPage .top_var_d {
  margin: 0 0 90px;
}

.variationListPage .var_top_left {
  width: 340px;
  -ms-flex: unset;
  flex: unset;
  max-width: unset;
}

.variationListPage .var_top_right {
  width: calc(100% - 390px);
  -ms-flex: unset;
  flex: unset;
  max-width: unset;
}

.variationListPage .var_top_left .two_select_d {
  border: 1px solid #ABC2E1;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 28px;
}

.variationListPage .var_top_left select {
  width: 100%;
  font-size: 16px;
  text-align: left;
  background-image: url(/static/assets/images/icons/down-arrow.png);
  appearance: none;
  background-repeat: no-repeat;
  background-position-x: 91%;
  background-position-y: center;
  background-size: 18px;
  box-shadow: unset;
  margin: 0;
  border-color: transparent;
  border-radius: 0;
}

.variationListPage .var_top_left select:first-child {
  border-bottom: 1px solid #ABC2E1;
}

.variationListPage .var_top_left select:last-child {
  background-color: #F4F8FC;
}

.variationListPage .totalVLD .img_d {
  width: 215px;
}

.variationListPage .totalVLD .matchMissingT {
  width: calc(100% - 225px);
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: #6E84A3;
  margin: 0 0 40px;
}

.variationListPage .matchMissingT b {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.variationListPage .matchMissingT span {
  margin: 23px 0;
  display: block;
}

.variationListPage .matchMissingT .blue {
  color: #147AD6;
}

.variationListPage .matchMissingT .red {
  color: #EC6666;
}

.variationListPage .liveMissText {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #615E83;
  margin: 15px 10px 0;
}

.variationListPage .liveMissText span {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 5px;
  border-radius: 100%;
}

.variationListPage .liveMissText.live span {
  background: #147AD6;
}

.variationListPage .liveMissText.missing span {
  background: #EC6666;
}

.variationListPage .missing_vl_d h5 {
  color: #44546F;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 3px;
}

.variationListPage .missing_vl_d .tags {
  color: #2C7BE5;
}

.variationListPage .totalVLD .inner_d {
  margin: 0 0 30px;
}

.variationListPage .var_top_right .search__d {
  display: flex;
  align-items: center;
}

.variationListPage .var_top_right .search__d input {
  border: none;
  background: transparent;
}

.variationListPage .var_top_right .search__d input::placeholder {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
  color: #6E84A3;
}

.variationListPage .var_top_right .search__d input:focus {
  outline: none;
  box-shadow: unset;
}

.variationListPage .var_top_right .search__d .icon-search {
  font-size: 22px;
}

.variationListPage .var_top_right .nav-tabs .nav-link {
  background: #fff;
  border: 1px solid #6E84A3;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #44546F;
  font-weight: 600;
  padding: 16px;
  min-width: 157px;
  cursor: pointer;
}

.variationListPage .var_top_right .nav-tabs .nav-link:focus {
  outline: none;
}

.variationListPage .var_top_right .nav-tabs .nav-link.active {
  background: #D2DDE7;
  border-bottom: unset;
  box-shadow: unset;
}

.vlTemplate_d .nav-tabs {
  margin-bottom: -1px;
}

.vlTemplate_d .tab-content {
  box-shadow: unset;
}

.vlTemplate_d .tab-pane {
  border: 1px solid #6E84A3;
}

.vlTemplate_d .table-responsive.child_asin_tab thead {
  position: sticky;
  top: 0;
  background: #D2DDE7;
}

.vlTemplate_d .table-responsive {
  height: 541px;
  overflow-y: scroll;
}

.vlTemplate_d .table-responsive.child_asin_tab {
  height: 515px;
  overflow-y: scroll;
}

.vlTemplate_d table {
  margin: 0;
}

.vlTemplate_d table td {
  white-space: unset;
  border-top: 1px solid #6E84A3;
}

.vlTemplate_d .parentNo {
  color: #2B384B;
  font-size: 14px;
}

.vlTemplate_d .blue {
  color: #2076C5;
}

.vlTemplate_d .red {
  color: #F94144;
}

.vlTemplate_d .go_text {
  border: 1px solid #707070;
  background: #22D1EE;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  border-radius: 30px;
  min-width: 58px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1E1E1F;
  margin-top: 16px;
}

.vlTemplate_d .go_text svg {
  margin-left: 5px;
}

.vlTemplate_d .t_th {
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  color: #ABC2E1;
  margin: 0 0 21px;
}

.vlTemplate_d .t_td {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #44546F;
}

.vlTemplate_d .brand_n {
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  color: #2B384B;
  background: #FFCEFF;
  padding: 3px 10px;
  text-transform: uppercase;
  border-radius: 5px;
}

.vlTemplate_d .node_text {
  max-width: 210px;
}

.vlTemplate_d .mnm_text {
  border: 1px solid #6E84A3;
  background: #F2F2F9;
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 1px 3px;
}

.vlTemplate_d .mnm_text .dot_d {
  margin-right: 5px;
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  top: -1px;
  background: #03C116;
}

.vlTemplate_d .mnm_text.nonmatch_text .dot_d {
  background: #F94144;
}

.vlTemplate_d .mnm_text.nonmatch_text {
  background: #FFD2D3;
}

.vlTemplate_d .extra_t {
  font-weight: 400;
}

.vlTemplate_d .remove_t_border td {
  border-top: unset
}

.child_asin_tab .table thead {
  background: #D2DDE7;
}

.child_asin_tab .table thead th {
  border-bottom: 1px solid #eaeaea;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #2B384B;
}

.child_asin_tab .table td {
  vertical-align: middle;
  font-size: 14px;
  color: #2B384B;
  font-weight: 500;
}

.child_asin_tab .back_btn {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #E5E5EF;
  margin: 0 auto;
}

.child_asin_tab .status_d {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  background: #F2F2F9;
  border: 1px solid #DD3333;
  padding: 1px 5px;
  border-radius: 3px;
}

.child_asin_tab .product_details .img_d {
  width: 40px;
  margin-right: 12px;
}

.child_asin_tab .product_details .img_d img {
  max-width: 40px;
}

.child_asin_tab .product_details .pro_title {
  color: #44546F;
}

.child_asin_tab .asin_no {
  color: #707070;
  font-weight: 400;
}

.child_asin_tab .child_asin {
  color: #12263F;
}

.variantOverview {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #abc2e180;
  border-top: none;
}

.variationListPage .sorting_d.categoryDropdown select {
  width: auto;
}

.variantOverview table thead th {
  background: #F5F7FA;
}

.variantOverview table thead th,
.variantOverview table td {
  border: 1px solid #abc2e180;
  padding: 15px 17px;
}

.variantOverview table thead th:first-child,
.variantOverview table td:first-child {
  border-left: none;
}

.variantOverview table thead th:last-child,
.variantOverview table td:last-child {
  border-right: none;
}

.variantOverview table thead th a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #2B384B;
  text-transform: uppercase;
}

.variantOverview table td {
  background: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #6E84A3;
  vertical-align: middle;
}

.variantOverview table .darkColor {
  color: #4F4F4F;
}

.variantOverview table .vl_status {
  color: #44546F;
  border: 1px solid #979797;
  border-radius: 14px;
  background: #DCFCDF;
  padding: 4px 11px;
}

.variantOverview table .vl_status.mismatch {
  background: #FEF4F5;
}

.variantOverview .vl_family {
  font-size: 13px;
  line-height: 19px;
  color: #2B384B;
  font-weight: 600;
  padding: 3px 10px;
  background: #FFDAC6;
  border-radius: 5px;
}

.variantOverview .vl_family.henna {
  background: #D7FFB8;
}

.variantOverview .vl_family.kukka {
  background: #FFCEFF;
}

.variantOverview .vl_family.gyatea {
  background: #BBF5FF;
}

.variantOverview .vl_family.gyaLab {
  background: #EDBEA5;
}

.variantOverview .parSku {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #2C7BE5;
}

.variantOverview .parSku:last-child {
  margin-bottom: 0;
}

.variantOverview .parSku span {
  background: #F0F0F0;
  border-radius: 3px;
  margin-right: 6px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  padding: 3px 10px;
}

.variantOverview .skuNo {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #4F4F4F;
  margin: 0 0 5px;
}

.variantOverview .skuNo span {
  font-weight: 600;
  color: #2C7BE5;
}

.variantOverview .skuItem {
  margin: 0 0 18px;
}

.variantOverview .vl_action_item,
.variantOverview .attr_item {
  font-weight: 500;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  color: #4F4F4F;
}

.variantOverview .vl_action_item .date_d {
  font-size: 12px;
  font-weight: 400;
}

.variantOverview .vl_action_item .date_d span {
  color: #6E84A3;
}

.variantOverview .all__dd select {
  color: #2C7BE5;
  border: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.variantOverview .attr_item span {
  color: #6E84A3;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.variantOverview .no__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  color: #4F4F4F;
}

.variantOverview .missingNoList span {
  width: 49%;
}

.variantOverview .setMin_h {
  min-height: 259px;
}

.variantOverview .actualMissing,
.variantOverview .actualExtra {
  font-size: 12px;
  line-height: 18px;
  color: #22D1EE;
  font-weight: 400;
}

.variantOverview .f_acc_header .badge_vl {
  background: #F0F0F0;
  font-size: 12px;
  line-height: 20px;
  color: #000000;
  padding: 2px 6px 3px;
  border-radius: 3px;
}

.variantOverview .f_acc_header .extraNo {
  font-size: 16px;
  line-height: 24px;
  color: #12263F;
  font-weight: 400;
}

.variantOverview .f_acc_header .extraNo svg {
  position: relative;
  top: 5px;
}

.variantOverview .f_acc_content {
  padding: 8px 0;
  display: none;
}

.variantOverview .f_acc_header {
  cursor: pointer;
}

.variantOverview .f_acc_contaciner {
  margin: 0 0 12px;
}

.variantOverview .f_acc_contaciner.open .f_acc_content {
  display: block;
}

.variantOverview .f_acc_contaciner.open .down_arr svg {
  transform: rotate(180deg);
}

.variantOverview .down_arr {
  padding-left: 5px;
}

.variantOverview table tr.fold {
  display: none;
}

.variantOverview table tr.fold.open {
  display: contents;
}

.variantOverview table tr.fold td {
  background: #EEF5FD;
  border: none;
  vertical-align: top;
}

/* Variation List page css end */


/* New Design DG Appeal Activity page css start */
@font-face {
  font-family: 'AmazonEmber';
  src: url('/static/assets/fonts/amazon/AmazonEmber-Light.eot?#iefix') format('embedded-opentype'),
    url('/static/assets/fonts/amazon/AmazonEmber-Light.woff2') format('woff2'),
    url('/static/assets/fonts/amazon/AmazonEmber-Light.woff') format('woff'),
    url('/static/assets/fonts/amazon/AmazonEmber-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: 'AmazonEmber';
  src: url('/static/assets/fonts/amazon/AmazonEmber-Regular.eot?#iefix') format('embedded-opentype'),
    url('/static/assets/fonts/amazon/AmazonEmber-Regular.woff2') format('woff2'),
    url('/static/assets/fonts/amazon/AmazonEmber-Regular.woff') format('woff'),
    url('/static/assets/fonts/amazon/AmazonEmber-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AmazonEmber';
  src: url('/static/assets/fonts/amazon/AmazonEmber-Medium.eot?#iefix') format('embedded-opentype'),
    url('/static/assets/fonts/amazon/AmazonEmber-Medium.woff2') format('woff2'),
    url('/static/assets/fonts/amazon/AmazonEmber-Medium.woff') format('woff'),
    url('/static/assets/fonts/amazon/AmazonEmber-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AmazonEmber';
  src: url('/static/assets/fonts/amazon/AmazonEmber-Bold.eot?#iefix') format('embedded-opentype'),
    url('/static/assets/fonts/amazon/AmazonEmber-Bold.woff2') format('woff2'),
    url('/static/assets/fonts/amazon/AmazonEmber-Bold.woff') format('woff'),
    url('/static/assets/fonts/amazon/AmazonEmber-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/*  */
.dg_appeal_activity,
.dgAppealLogPopup {
  font-family: 'AmazonEmber';
}

.dg_appeal_activity {
  background: #fff;
}

.fixed_TableTop .nav-down.dg_appeal_activity .pdpRequest .stickyOSFirst.stickyOSSecond,
.fixed_TableTop .nav-down.dg_appeal_activity .pdpRequest .stickyOSFirst.stickyOSSecond {
  top: 0;
}

.dg_appeal_activity .btn.inspectNewAsin {
  height: 60px;
  line-height: unset;
  font-size: 16px;
  text-align: left;
  padding: 8px 20px;
}

.dg_appeal_activity .btn.inspectNewAsin span {
  display: block;
  font-size: 11px;
  line-height: 17px;
  font-weight: 400;
  color: #BDBDBD;
}

.dg_appeal_activity .btn.add_asin_btn {
  border-color: #43AA8B;
}

.dg_appeal_activity .btn.delete_asin_btn {
  border-color: #F94144;
}

.dg_appeal_activity .totalAsinSystem {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #6E84A3;
}

.dg_appeal_activity .totalAsinSystem span {
  color: #12263F;
  padding-left: 4px;
}

.dg_appeal_activity .totalAsinBar .cases__d {
  border: 1px solid #ABC2E1;
  border-radius: 8px;
  padding: 13px 26px;
  background: #fff;
  min-height: 182px;
  box-shadow: 0 4px 18px 0px #F6FBFF inset;
  ;
}

.dg_appeal_activity .totalAsinBar h4 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  color: #12263F;
  margin: 0 0 8px;
}

.dg_appeal_activity .totalAsinBar .user_notice h4 {
  position: sticky;
  top: 0;
  background: #fff;
  padding-top: 13px;
  z-index: 1;
}

.dg_appeal_activity .totalAsinBar .heading_dd h4 {
  margin: 0;
}

.dg_appeal_activity .totalAsinBar .a_content {
  gap: 10px;
  display: flex;
}

.dg_appeal_activity .totalAsinBar .a_content span {
  font-size: 12px;
  color: #333;
  display: flex;
  align-items: center;
}

.dg_appeal_activity .totalAsinBar .a_content .dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: inline-block;
  background: #50EABB;
  margin-right: 4px;
}

.dg_appeal_activity .totalAsinBar .a_content .dot.green {
  background: #50EABB
}

.dg_appeal_activity .totalAsinBar .a_content .dot.red {
  background: #FF8183
}

.dg_appeal_activity .totalAsinBar .a_content .dot.yellow {
  background: #FFDA94
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-3 {
  flex: 0 0 24%;
  max-width: 24%;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-1 {
  flex: 0 0 15%;
  max-width: 15%;
}

.dg_appeal_activity .totalAsinBar .case_item {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 12px;
  font-weight: 400;
  color: #2B384B;
  margin: 0 0 12px;
  min-width: 122px;
}

.dg_appeal_activity .totalAsinBar .case_item b {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #2A2E33;
}

.dg_appeal_activity .totalAsinBar .case_item span {
  padding-left: 15px;
  position: relative;
}

.dg_appeal_activity .totalAsinBar .case_item span:before {
  position: absolute;
  content: "";
  border-radius: 100%;
  top: 3px;
  width: 8px;
  height: 8px;
  left: 0;
}

.dg_appeal_activity .totalAsinBar .case_item span.overdue:before {
  background: #62B2FD;
}

.dg_appeal_activity .totalAsinBar .case_item span.WIProgress:before {
  background: #9BDFC4;
}

.dg_appeal_activity .CE_list .CE_header {
  display: flex;
  border-bottom: 1px solid #ABC2E1;
  padding-bottom: 2px;
}

.dg_appeal_activity .CE_list .CE_header>div {
  flex: 1;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #2C7BE5;
}

.dg_appeal_activity .CE_list .CE_item {
  display: flex;
}

.dg_appeal_activity .CE_list .CE_item>div {
  flex: 1;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #2B384B;
  padding: 3px 0;
}

.dg_appeal_activity .CE_list .CE_item>div:first-child {
  text-align: left;
}

.dg_appeal_activity .inspectAsinSec .dropdown-menu {
  top: 69px;
  box-shadow: 0px 4px 66px 0 #0000001A;
  /* overflow: visible; */
  overflow: unset;
  max-height: unset;
  padding: 0;
  display: none;
}

.dg_appeal_activity .inspectAsinSecInner {
  padding: 20px;
  /* overflow-y: scroll; */
  max-height: inherit;
}

.dg_appeal_activity .inspectAsinSec .form-div:last-child {
  margin-bottom: 20px;
}

.dg_appeal_activity .inspectAsinSec.showInspectDD .dropdown-menu {
  display: block;
}

.dg_appeal_activity .inspectAsinSec .dropdown-menu::before {
  content: '';
  height: 10px;
  width: 10px;
  position: absolute;
  background-color: #fff;
  top: -4px;
  left: 45%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
}

.dg_appeal_activity .inspectAsinSec h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1D1B20;
  margin: 0 0 15px;
}

.dg_appeal_activity .inspectAsinSec .searchAsinLabel {
  border: 1px solid #6E84A3;
  padding: 0 2px;
  box-shadow: 0 4px 4px 0px #0000001A inset;
}

.dg_appeal_activity .inspectAsinSec .searchAsinLabel input {
  width: 84px;
  border: none;
  background: transparent;
  height: 18px;
  font-size: 12px;
  color: #49454F;
  font-weight: normal;
}

.dg_appeal_activity .inspectAsinSec .searchAsinLabel input::placeholder {
  font-size: 12px;
  color: #49454F;
  font-weight: normal;
}

.dg_appeal_activity .inspectAsinSec select {
  background-color: #fff;
  height: 56px !important;
}

.dg_appeal_activity .inspectAsinSec textarea {
  background-color: #fff;
  height: 100px;
  padding-right: 35px;
}

.dg_appeal_activity .inspectAsinSec .cancelBtn {
  font-size: 15px;
  color: #2B384B;
  cursor: pointer;
}

.dg_appeal_activity .inspectAsinSec .dm_asin {
  display: none;
  margin-top: 15px;
}

.dg_appeal_activity .inspectAsinSec .delMultiASIN {
  color: #1C64F2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 11px 0 0;
  cursor: pointer;
}

.dg_appeal_activity .inspectAsinSec .uploadPasteAsin svg {
  position: absolute;
  top: 39px;
  right: 12px;
}

.dg_appeal_activity .filterTopbar .filterSearch {
  display: flex;
  height: 55px;
}

/* .dg_appeal_activity .pdpRequest .table-responsive{
  overflow-x:scroll;
} */
.dg_appeal_activity .pdpRequest .table tbody {
  background: #fff;
}

.dg_appeal_activity .pdpRequest.reportAbuse .table tr td:nth-of-type(1) {
  vertical-align: middle;
}

.dg_appeal_activity .pdpRequest.reportAbuse .table tr:last-child td,
.PDP_activity .pdpRequest.reportAbuse .table tbody tr:nth-last-child(2) td {
  border-bottom: 1px solid #abc2e180;
}

.inspectAsinSec .blue-btn.red-btn {
  background: #F94144;
}

.dg_appeal_activity .totalAsinBar .row {
  margin-left: -7px;
  margin-right: -7px;
}

.dg_appeal_activity .totalAsinBar .row>div {
  padding-left: 7px;
  padding-right: 7px;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-2.expired_col {
  flex: 0 0 22.5%;
  max-width: 22.5%;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-2.caseCol_3 {
  flex: 0 0 32%;
  max-width: 32%;
}

.dg_appeal_activity .totalAsinBar .row>.col-sm-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.dg_appeal_activity .totalAsinBar .item__d img {
  width: 100%;
  max-width: 100%;
}

.dg_appeal_activity .totalAsinBar .user_notice {
  padding: 0 26px 13px;
  height: 278px;
  overflow-y: scroll;
}

.dg_appeal_activity.PDP_activity .totalAsinBar .user_notice {
  height: 250px;
}

.dg_appeal_activity .totalAsinBar .cases__d {
  min-height: 278px;
}

.dg_appeal_activity .totalAsinBar .cases__d.removeBBShadow {
  border: none;
  box-shadow: unset;
}

.dg_appeal_activity .user_notice ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dg_appeal_activity .user_notice ul li {
  color: #0EB9D4;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  padding: 0 0 10px;
  border-bottom: 1px solid #979797;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
}

.dg_appeal_activity .user_notice ul li:last-child {
  border-bottom: none;
}

.dg_appeal_activity .user_notice ul li>span:first-child {
  width: calc(100% - 70px);
}

.dg_appeal_activity .user_notice ul li>span:last-child {
  padding-left: 10px;
  color: #12263F;
  font-size: 18px;
  font-weight: 500;
  min-width: 70px;
  text-align: right;
}

.dg_appeal_activity .user_notice ul li>span:last-child svg {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.dg_appeal_activity .filing_date {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  color: #2B384B;
  text-align: left;
  min-width: 100px;
}

.dg_appeal_activity .filing_date .date___d {
  display: flex;
  margin: 0 0 7px;
  font-size: 14px;
}

.dg_appeal_activity .filing_date .date___d span {
  display: block;
  width: 90px;
}

.dg_appeal_activity .filing_date .b_days {
  min-height: 27px;
  display: block;
}

.dg_appeal_activity .filing_date .days_badge {
  border: 1px solid #AEECD3;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFFFFF;
  background: #AEECD3;
  padding: 2px 13px;
  margin-left: 4px;
  display: inline-block;
  color: #2B384B;
  margin-left: 0;
}

.dg_appeal_activity .filing_date .days_badge.red {
  background: #FFB9D0;
  border-color: #FFB9D0;
}

.dg_appeal_activity .compMainD {
  width: calc(100% - 25px);
  display: flex;
  justify-content: center;
}

.dg_appeal_activity .compMainSvg {
  width: 25px;
  display: inline-flex;
}

.dg_appeal_activity .completion_badge {
  background: #F5E8D7;
  border: 1px solid #F5E8D7;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  padding: 0 10px;
  border-radius: 3px;
  color: #000;
  width: 100%;
  min-width: 106px;
}

.dg_appeal_activity .completion_badge.overdue {
  background: #FFB9D0;
  border-color: #FFB9D0;
}

.dg_appeal_activity .completion_badge.done {
  background: #AEECD3;
  border-color: #AEECD3;
}

.dg_appeal_activity .completion_badge.queue {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

.dg_appeal_activity .countryName {
  font-size: 12px;
  line-height: 18px;
  color: #6E84A3;
  font-weight: 400;
}

.dg_appeal_activity .class__grade {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #2B384B;
}

.dg_appeal_activity .product_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dg_appeal_activity .product_details .pro__left {
  width: 50px;
}

.dg_appeal_activity .product_details .pro__left img {
  width: 100%;
}

.dg_appeal_activity .product_details .pro__right {
  width: calc(100% - 60px);
}

.dg_appeal_activity .product_details .proTitle {
  color: #007bff;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dg_appeal_activity .product_details .pro_badges span {
  line-height: 16px;
  font-size: 10px;
  font-weight: 400;
  color: #7E8896;
  background: transparent;
  padding: 0;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 3px;
  border: none;
  text-transform: uppercase;
}

.dg_appeal_activity .pro_badges span b {
  font-weight: 600;
  ;
}

.dg_appeal_activity .eventStatus .badge_event {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #2B384B;
  padding: 3px 9px;
  border: 1px solid #AEECD3;
  background: #AEECD3;
  border-radius: 5px;
  display: inline-block;
  min-width: 80px;
}

.dg_appeal_activity .eventStatus .badge_event.red {
  border: 1px solid #FFB9D0;
  background: #FFB9D0;
}

.dg_appeal_activity .eventStatus .badge_event.yellow {
  border: 1px solid #F5E8D7;
  background: #F5E8D7;
}

.dg_appeal_activity .eventStatus .stage_no {
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #44546F;
  margin-top: 3px;
}

.dg_appeal_activity .eventStatus .stage_no.red {
  color: #F94144;
}

.dg_appeal_activity .table td.ESPadding {
  padding: 8px 15px;
}

/* .dg_appeal_activity .stages_progress,
.dg_appeal_activity .stages_progress_pdp{
  max-width:300px;
  margin:0 auto;
} */
.dg_appeal_activity .stages_progress .circle_d,
.dg_appeal_activity .stages_progress_pdp .circle_d {
  width: 16px;
  height: 16px;
  background: #E3EBF6;
  border-radius: 100%;
  display: inline-block;
  box-shadow: 0 7px 8px 0px #4A3AFF21;
  margin: 0 2.5px;
  border: 2px solid #fff;
}

.dg_appeal_activity .stages_progress .line_d,
.dg_appeal_activity .stages_progress_pdp .line_d {
  min-width: 60px;
  height: 4px;
  background: #E3EBF6;
  display: inline-block;
  border-radius: 3px;
  margin: 0 2.5px;
  width: 100%;
}

.dg_appeal_activity .stages_progress_pdp .line_d {
  min-width: 40px;
}

.dg_appeal_activity .stages_progress_pdp .d__text {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  color: #7E8896;
  display: block;
  position: absolute;
  bottom: -17px;
  width: 100px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.dg_appeal_activity .stages_progress .circle__text,
.dg_appeal_activity .stages_progress_pdp .circle__text {
  position: relative;
}

.dg_appeal_activity .stages_progress .circle__text.setOpacityZero,
.dg_appeal_activity .stages_progress_pdp .circle__text.setOpacityZero {
  opacity: 0;
}

.dg_appeal_activity .stages_progress .circle__text.setOpacityZero.greyCircle,
.dg_appeal_activity .stages_progress_pdp .circle__text.setOpacityZero.greyCircle {
  opacity: 1;
}

.dg_appeal_activity .stages_progress .greyCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .greyCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .line_d.greyCircle {
  background: #E3EBF6 !important;
}

.dg_appeal_activity .stages_progress .redCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .redCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .line_d.redCircle {
  background: red !important;
}

.dg_appeal_activity .stages_progress .orangeCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .orangeCircle .circle_d,
.dg_appeal_activity .stages_progress_pdp .line_d.orangeCircle {
  background: #FFA500 !important;
}

.dg_appeal_activity .stages_progress_pdp .line_d {
  position: relative;
  top: 6px;
  height: 3px;
}

.dg_appeal_activity .stages_progress.stage_1 span:first-child,
.dg_appeal_activity .stages_progress.stage_2 span:first-child,
.dg_appeal_activity .stages_progress.stage_2 span:nth-child(3),
.dg_appeal_activity .stages_progress.stage_3 span:first-child,
.dg_appeal_activity .stages_progress.stage_3 span:nth-child(3),
.dg_appeal_activity .stages_progress.stage_3 span:nth-child(5),
.dg_appeal_activity .stages_progress.stage_4 span:first-child,
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(3),
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(5),
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(7) {
  background: #5ACCAA;
}

.dg_appeal_activity .stages_progress.stage_2 span:nth-child(2),
.dg_appeal_activity .stages_progress.stage_3 span:nth-child(2),
.dg_appeal_activity .stages_progress.stage_3 span:nth-child(4),
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(2),
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(4),
.dg_appeal_activity .stages_progress.stage_4 span:nth-child(6) {
  background: #FFB1CB;
}

.dg_appeal_activity .stages_progress_pdp.stage_1>span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_2>span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_2>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_3>span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_3>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_3>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_4>span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(7) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_5>span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(7) .circle_d,
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(9) .circle_d

/* .dg_appeal_activity .stages_progress_pdp.US_stage_1 span:first-child .circle_d, */
/* .dg_appeal_activity .stages_progress_pdp.US_stage span:first-child .circle_d,
.dg_appeal_activity .stages_progress_pdp.US_stage > span:nth-child(3) .circle_d */
  {
  background: #5ACCAA;
}

.dg_appeal_activity .stages_progress_pdp.stage_2>span:nth-child(2),
.dg_appeal_activity .stages_progress_pdp.stage_3>span:nth-child(2),
.dg_appeal_activity .stages_progress_pdp.stage_3>span:nth-child(4),
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(2),
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(4),
.dg_appeal_activity .stages_progress_pdp.stage_4>span:nth-child(6),
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(2),
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(4),
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(6),
.dg_appeal_activity .stages_progress_pdp.stage_5>span:nth-child(8)

/* .dg_appeal_activity .stages_progress_pdp.US_stage > span:nth-child(2) */
  {
  background: #FFB1CB;
}

.dg_appeal_activity .stages_progress_pdp.greyStage_2_3_4>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_3_4>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_3_4>span:nth-child(7) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_3>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_3>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_3_4>span:nth-child(5) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_3_4>span:nth-child(7) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_4>span:nth-child(3) .circle_d,
.dg_appeal_activity .stages_progress_pdp.greyStage_2_4>span:nth-child(5) .circle_d {
  background: #E3EBF6 !important;
}

.dg_appeal_activity .stages_progress_pdp.US_stage .line_d,
.dg_appeal_activity .stages_progress_pdp.US_stage_1 .line_d {
  width: calc(100% - 40px);
}

.dg_appeal_activity .subject_badge span {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
  margin: 2px 1px;
  padding: 0px 7px;
  border-radius: 3px;
  /* display:inline-block; */
  display: contents;
}

.dg_appeal_activity .subject_badge {
  min-width: 300px;
}

.dg_appeal_activity .subject_badge span:first-child {
  display: inline-block;
}

.dg_appeal_activity .subject_badge span.yellow {
  background: #FFBB38;
}

.dg_appeal_activity .subject_badge span.blue {
  background: #4086E4;
  color: #fff;
}

.dg_appeal_activity .action_taken {
  position: relative;
  display: inline-block;
  min-width: 40px;
}

.dg_appeal_activity .action_taken input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  display: block;
}

.dg_appeal_activity .action_taken label {
  cursor: pointer;
}

.dg_appeal_activity .action_taken label .yes_check {
  display: none;
}

.dg_appeal_activity .action_taken input:checked~label .no_check {
  display: none;
}

.dg_appeal_activity .action_taken input:checked~label .yes_check {
  display: block;
  position: relative;
  top: -4px;
}

.dg_appeal_activity .log_d {
  cursor: pointer;
}

.dg_appeal_activity .pdpRequest.reportAbuse table thead tr:nth-child(2) th a {
  color: #7E8896;
  text-transform: capitalize;
}

.dg_appeal_activity .stage_th span {
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  text-transform: capitalize;
}

.dg_appeal_activity .event_status_th {
  color: #12263F;
}

.dg_appeal_activity .table td {
  white-space: normal;
}

.dg_appeal_activity .pdpRequest .table tr td:nth-of-type(1) {
  padding-left: 8px;
}

.dg_appeal_activity .pdpRequest.reportAbuse .table thead th {
  vertical-align: middle;
}

.dg_appeal_activity .pdpRequest.reportAbuse .table thead th.stage_th_1,
.dg_appeal_activity .pdpRequest.reportAbuse .table thead th.stage_th_2,
.dg_appeal_activity .pdpRequest.reportAbuse .table thead th.stage_th_3 {
  border-right: none;
}

.dg_appeal_activity .pdpRequest.reportAbuse table thead th a {
  font-weight: 700;
  height: 67px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.dg_appeal_activity .pdpRequest.reportAbuse table thead th a span {
  display: block;
  width: 100%;
}

/* .fixed_TableTop .dg_appeal_activity .pdpRequest.reportAbuse .table thead th.stage_th a{
  border-bottom:none;
} */
.dg_appeal_activity .table .eventStages {
  background: #E3EBF6;
}

.dg_appeal_activity .filterTopbar .col-sm-9>div {
  margin-top: 3px;
  margin-bottom: 3px;
}

.dg_appeal_activity .filterTopbar .col-sm-9>.showbySorting {
  min-width: 150px;
}

@media only screen and (min-width: 1200px) {
  .dg_appeal_activity.dg_aa .totalAsinBar .row>.col-sm-2.un_col {
    flex: 0 0 26%;
    max-width: 26%;
  }

  .dg_appeal_activity.dg_aa .totalAsinBar .row>.col-sm-2.caseCol_3 {
    flex: 0 0 26%;
    max-width: 26%;
  }

  .dg_appeal_activity.PDP_activity .totalAsinBar .row>.col-sm-2 {
    flex: 0 0 23%;
    max-width: 23%;
  }

  .dg_appeal_activity.PDP_activity .totalAsinBar .row>.col-sm-3 {
    flex: 0 0 30.5%;
    max-width: 30.5%;
  }
}

@media only screen and (max-width: 1600px) {
  .dg_appeal_activity .filterTopbar .col-sm-3 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .dg_appeal_activity .filterTopbar .col-sm-9 {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }

  .dg_appeal_activity .filterTopbar .m-r-20 {
    margin-right: 8px;
  }

  .dg_appeal_activity .filterTopbar .white-btn,
  .dg_appeal_activity .filterTopbar .blue-btn {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {

  .fixed_TableTop .dg_appeal_activity.nav-up .stickyOSFirst.stickyOSSecond,
  .fixed_TableTop .dg_appeal_activity.nav-down .stickyOSFirst.stickyOSSecond {
    position: unset;
  }

  .dg_appeal_activity .filing_date {
    min-width: 110px;
  }

  /* .dg_appeal_activity .totalAsinBar .cases__d .img_d{
    min-height: unset;
    min-width: unset;
    width: 100%;
    height: 100%;
    overflow: hidden;
  } */
  .dg_appeal_activity .filterTopbar .m-r-20 {
    margin-right: 8px;
  }

  .dg_appeal_activity .totalAsinBar .cases__d {
    overflow: hidden;
  }

  .dg_appeal_activity .filterTopbar .col-sm-3,
  .dg_appeal_activity .filterTopbar .col-sm-2 {
    margin: 0 0 10px;
  }

  .dg_appeal_activity .filterTopbar .col-sm-2,
  .dg_appeal_activity .filterTopbar .col-sm-3,
  .dg_appeal_activity .filterTopbar .col-sm-9 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .dg_appeal_activity .top_header {
    flex-wrap: wrap;
  }

  .dg_appeal_activity .top_header .col-sm-5,
  .dg_appeal_activity .top_header .col-sm-7 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .dg_appeal_activity .top_header .col-sm-7 {
    justify-content: flex-start !important;
  }

  .dg_appeal_activity .filterTopbar .col-sm-9 {
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }

  .dg_appeal_activity .filterTopbar .col-sm-9>div {
    margin-bottom: 10px;
  }

  .dg_appeal_activity .totalAsinBar .row>.col-sm-3,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2.expired_col,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2.caseCol_3,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {

  .dg_appeal_activity .totalAsinBar .row>.col-sm-3,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2.expired_col,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2.caseCol_3,
  .dg_appeal_activity .totalAsinBar .row>.col-sm-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .dg_appeal_activity .btn.delete_asin_btn {
    margin-right: 0;
  }
}

/* popup start */
.dgAppealLogPopup .modal-dialog {
  max-width: 588px;
}

.dgAppealLogPopup .modal-content {
  border: 1px solid #ABC2E1;
  background: #fff;
  border-radius: 8px;
}

.dgAppealLogPopup .modal-header {
  padding: 20px 25px;
  align-items: center;
  border-bottom: unset;
}

.dgAppealLogPopup .modal-header .leftD {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1D1B20;
}

.dgAppealLogPopup .modal-body {
  padding: 0;
}

.dgAppealLogPopup .modal-body .top_content {
  padding: 0 25px 18px;
  border-bottom: 1px solid #ABC2E1;
}

.dgAppealLogPopup .log_asin_no span {
  font-size: 12px;
  line-height: 17px;
  border: 1px solid #6E84A3;
  border-radius: 3px;
  background: #F5F7FA;
  padding: 0 3px;
  display: inline-block;
  color: #000;
  /* box-shadow: 0px 6px 10px 0 #00000040; */
}

.dgAppealLogPopup .log_asin_no {
  margin: 0 0 10px;
}

.dgAppealLogPopup .top_content .item_d {
  font-size: 12px;
  line-height: 23px;
  font-weight: 600;
  color: #000000;
  display: flex;
}

.dgAppealLogPopup .top_content .item_d span {
  min-width: 100px;
}

.dgAppealLogPopup .top_content .item_d span:last-child {
  font-weight: 500;
  color: #2076C5;
}

.dgAppealLogPopup .modal-body .middle_content {
  padding: 18px 25px 10px;
}

.dgAppealLogPopup .AT_d {
  margin: 0 0 7px;
}

.dgAppealLogPopup .AT_d .AT_text {
  font-size: 12px;
  line-height: 23px;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.dgAppealLogPopup .AT_d .AT_date {
  font-size: 12px;
  line-height: 17px;
  color: #44546F;
}

.dgAppealLogPopup .middle_content .form_data textarea {
  width: 100%;
  display: block;
  height: 80px;
  border: 1px solid #ABC2E1;
  padding: 15px;
  font-size: 12px;
  line-height: 18px
}

.dgAppealLogPopup .middle_content .form_data {
  margin: 0 0 13px;
}

.dgAppealLogPopup .middle_content .action_btn .btn {
  height: 30px;
  line-height:auto;
  font-size: 12px;
}

.dgAppealLogPopup .info_d .date_system {
  font-size: 14px;
  line-height: 23px;
  color: #000000;
  letter-spacing: 0.5px;
  max-width: 350px;
  background: #d8c7c780;
  padding: 0 6px;
}

.dgAppealLogPopup .info_d .createdDate {
  font-size: 12px;
  line-height: 23px;
  font-weight: 400;
  color: #2B384B;
  margin: 5px 6px 0;
}

.dgAppealLogPopup .btm_content {
  padding: 10px 25px;
}

.dgAppealLogPopup .btm_content .info_d {
  font-size: 12px;
  line-height: 23px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px;
}

.dgAppealLogPopup .close {
  opacity: 1;
}

/* dg log popup start */

.dgAppealLogPopup.dgCaseLogoPP .modal-header {
  display: block;
  background: #F5F7FA80;
  padding: 18px 25px 10px;
}

.dgAppealLogPopup.dgCaseLogoPP .btm_content {
  padding: 20px 20px;
}

.dgAppealLogPopup.dgCaseLogoPP .btm_content .info_d {
  padding-bottom: 16px;
  border-bottom: 1px solid #ABC2E1;
  margin-bottom: 20px;
}

.dgAppealLogPopup.dgCaseLogoPP .log_asin_no span {
  color: #000;
}

/* dg log popup end */
.pdpActivityLogPopup .btm_content .info_d {
  color: #2B384B;
}

.pdpActivityLogPopup .btm_content .info_d>div {
  padding-left: 20px;
  position: relative;
}

.pdpActivityLogPopup .btm_content .date_system {
  color: #2B384B;
}

.pdpActivityLogPopup .btm_content .date_system.green {
  background: #50EABB;
}

.pdpActivityLogPopup .btm_content .date_system.red {
  background: #FF8183;
}

.pdpActivityLogPopup .btm_content .date_system.yellow {
  background: #F5E8D7;
}

.pdpActivityLogPopup .btm_content .date_system.grey {
  background: #e0e0e0;
}

.pdpActivityLogPopup .btm_content .date_system:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #ACACAC;
  border-radius: 100%;
  top: 8px;
  left: 8px;
}

.pdpActivityLogPopup .pro_name {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #2B384B;
  margin: 0 0 15px;
}

.pdpActivityLogPopup .pro_name span {
  font-size: 12px;
  line-height: 23px;
  font-weight: 700;
  color: #000000;
  display: block;
  letter-spacing: 0.5px;
}

.pdpActivityLogPopup .type_name {
  font-size: 12px;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
}

.pdpActivityLogPopup .close {
  padding: 0;
}

/* popup end */

/* Actio taken popup start */
.actionTakenModal .modal-content {
  border-radius: 8px;
  border: 1px solid #ABC2E1;
  max-width: 410px;
  font-family: 'AmazonEmber';
}

.actionTakenModal .modal-header {
  padding: 19px 25px 7px;
  border-bottom: none;
}

.actionTakenModal .modal-header .close {
  margin: 0;
  padding: 0;

}

.actionTakenModal .modal-header .leftD {
  font-size: 12px;
  line-height: 23px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.5px;
}

.actionTakenModal .modal-body {
  padding: 0 25px 25px;
}

.actionTakenModal .inner_box {
  border: 1px solid #ABC2E1;
  padding: 10px;
}

.actionTakenModal .date__d {
  color: #44546F;
  font-size: 12px;
  line-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.actionTakenModal .form_data {
  margin: 0 0 12px;
}

.actionTakenModal textarea {
  width: 100%;
  border-color: #f8f8f8;
  height: 80px;
  display: block;
}

.actionTakenModal .action_btn .blue-btn {
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}

/* Action taken popup end */
/* New Design DG Appeal Activity page css end */

/* PDP activity page css start */
.PDP_activity {
  background: #fff;
}

.PDP_activity .filing_date .days_badge {
  margin-left: 0;
}

.PDP_activity .select_priority_d {
  position: relative;
}

.PDP_activity .select_priority_d label {
  cursor: pointer;
}

.PDP_activity .select_priority_d input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  display: block;
}

.PDP_activity .select_priority_d .yes_check {
  display: none;
}

.PDP_activity .select_priority_d input:checked~label .no_check {
  display: none;
}

.PDP_activity .select_priority_d input:checked~label .yes_check {
  display: inline-block;
}

.PDP_activity .type__TF {
  font-size: 14px;
  line-height: 21px;
  color: #2B384B;
  font-weight: 700;
}

.PDP_activity .requested__by {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #2B384B;
}

.PDP_activity .pdpRequest .table tr th:nth-of-type(1) a {
  padding-left: 15px;
}

.PDP_activity .pdpRequest .table tr th:nth-of-type(1),
.PDP_activity .pdpRequest .table tr td:nth-of-type(1) {
  border-right-color: #abc2e180;
}

.PDP_activity table tr.fold {
  display: none;
}

.PDP_activity table tr.fold.open {
  display: table-row;
}

.PDP_activity .fold td {
  background: #F9FBFD !important;
  height: unset;
  padding: 0 !important;
  border-top-color: #7E8896;
}

.PDP_activity .pdpActivity_fold {
  position: relative;
}

.PDP_activity .pdpActivity_fold:before {
  position: absolute;
  content: "";
  height: 59px;
  width: 100%;
  left: 0;
  right: 0;
  background: #ECF1F6;
  z-index: 0;
  /* border-bottom: 1px solid #7E8896; */
}

.PDP_activity .pdpActivity_fold .item__d {
  /* flex:1; */
  width: 25%;
  border-right: none;
  /* border-right:1px solid #ABC2E1; */
  text-align: left;
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
}

/* .PDP_activity .pdpActivity_fold .item__d:last-child{
  border-right:none;
}
.PDP_activity .pdpActivity_fold .item__d.setBorderRight:last-child{
  border-right:1px solid #ABC2E1;
} */
.PDP_activity .pdpActivity_fold .item__d .content__d {
  border-right: 1px dotted #ACACAC;
}

.PDP_activity .pdpActivity_fold .item__d .content_inner {
  width: 100%;
  border-top: 1px dotted #ABC2E1;
  padding-top: 20px;
}

.PDP_activity .pdpActivity_fold .item__d:last-child .content__d {
  border-right: none;
}

.PDP_activity .pdpActivity_fold .item__d.setBorderRight:last-child .content__d {
  border-right: 1px solid #ABC2E1;
}

/* .PDP_activity .pdpActivity_fold .item__d .content__d{
  max-width:400px;
}  */
.PDP_activity .pdpActivity_fold .date_f {
  padding: 20px 15px;
  /* border-bottom:1px solid #7E8896; */
  background: #ECF1F6;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #44546F;
  min-height: 59px;
  display: flex;
  align-items: center;
}

.PDP_activity .pdpActivity_fold .date_f svg {
  margin-right: 10px;
}

.PDP_activity .pdpActivity_fold .content__d {
  padding: 0 20px;
  display: flex;
  height: calc(100% - 59px);
}

.pdpActivity_fold {
  background: #ECF1F6;
}

.pdpActivity_fold .reqFillD {
  width: 60%;
}

.pdpActivity_fold .caseLogs_d {
  width: 40%;
}

.pdpActivity_fold .caseLogs_d .caseInner {
  background: #FFFFFF8C;
  padding: 15px 12px;
  box-shadow: 0 10px 35px 0px #00000008;
  border-radius: 5px;
  margin-left: 5px;
}

/* .pdpActivity_fold .caseLogs_d.setBorderLeft {
  border-left: 1px solid #C6D7ED;
} */
.pdpActivity_fold .rf__item {
  display: flex;
  justify-content: space-between;
}

.pdpActivity_fold .rf__item.set__mt {
  margin-top: 14px;
}

.pdpActivity_fold .rf__item.status__item {
  margin: 18px 0 15px;
}

.pdpActivity_fold .rf__item>div {
  width: 49%;
  margin: 0 0 6px;
}

.pdpActivity_fold .rf__item .rf__item_inner:last-child {
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #44546F;
}

.pdpActivity_fold .rf__item.set__mb>div {
  margin-bottom: 6px;
}

.pdpActivity_fold .rf__item label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #7E8896;
  display: block;
  margin: 0 0 1px;
}

.pdpActivity_fold .rf__item label.validation_title {
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #44546F;
}

.pdpActivity_fold .req_badge {
  border: 1px solid #ABC2E1;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #4F4F4F;
  padding: 2px 14px;
  display: inline-block;
  background: #ECF4FF;
  border-radius: 3px;
}

.pdpActivity_fold .req_badge.queued {
  background: #E0E0E0;
}

.pdpActivity_fold .req_badge.green {
  background: #AEECD3;
  border-color: #AEECD3;
}

.pdpActivity_fold .req_badge.red {
  background: #FFB9D0;
  border-color: #FFB9D0;
}

.pdpActivity_fold .req_badge.grey {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

.pdpActivity_fold .req_badge.yellow {
  background: #F5E8D7;
  border-color: #F5E8D7;
}

.pdpActivity_fold .caseLogs_d h4 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #44546F;
  text-transform: capitalize;
}

.pdpActivity_fold .case__item {
  margin: 0 0 20px;
  border-bottom: 1px dotted #ACACAC;
  padding-bottom: 3px;
}

.pdpActivity_fold .case__item a {
  font-size: 14px;
  line-height: 17px;
  color: #1C64F2;
  font-weight: 700;
}

.pdpActivity_fold .sas_label {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #7E8896;
  margin: 0 0 3px;
}

.pdpActivity_fold .sas_id {
  display: block;
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  color: #1C64F2;
}

.pdpActivity_fold .sas_date {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #ACACAC;
  font-weight: 400;
  padding-left: 10px;
}

.pdpActivity_fold .backFront_r {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6E84A3;
  position: relative;
  cursor: pointer;
}

.pdpActivity_fold .backFront_r:hover .tooltip_d {
  opacity: 1;
  font-size: 10px;
  background: #000;
  color: #fff;
  padding: 1px 5px;
  border-radius: 5px;
  bottom: 21px;
}

.pdpActivity_fold .backFront_r .tooltip_d:after {
  content: '';
  height: 5px;
  width: 5px;
  position: absolute;
  background-color: #000;
  bottom: -3px;
  left: 45%;
  border-top: black solid 2px;
  border-left: black solid 2px;
  transform: rotate(225deg);
}

/* .pdpActivity_fold .validated_by{
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #4F4F4F;
} */
/* .pdpActivity_fold .validated_date{
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #4F4F4F;
} */
/* PDP activity page css end */

/* Edit Product Page css start */
.editPage .middle_pro_d .img_d {
  width: 193px;
}

.editPage .middle_pro_d .info__d {
  width: calc(100% - 300px);
}

.editPage .middle_pro_d .item_d {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
}

.editPage .middle_pro_d .title_d {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #2B384B;
  width: 180px;
}

.editPage .middle_pro_d .desc_d {
  width: calc(100% - 200px);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.editPage .middle_pro_d .desc_d svg {
  position: relative;
  top: 2px;
}

.editPage .middle_pro_d {
  margin: 0 0 40px;
}

.editPage .user-list .card-block.TBTab {
  padding: 0px;
}

.editPage .subtabs li .borderout {
  border-bottom: 5px solid transparent;
  border-radius: 0;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
}

.editPage .subtabs li .borderout.active-tab {
  border-bottom: 5px solid #3361FF;
  background: transparent;
}

.TBTabBlock_d .TBTab_left_d {
  width: calc(100% - 325px);
}

.TBTabBlock_d .TBTab_right_d {
  width: 285px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 10px 12px;
  max-height: 636px;
}

.TBTabBlock_d .TBTab_right_d h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #6E84A3;
  margin: 0 0 9px;
}

.TBTabBlock_d .TBTab_right_d .suggestedKeywordsD input {
  background: transparent url(/static/assets/images/icons/right-arrow.svg) no-repeat scroll 98% center;
  background-size: 17px;
  border: none;
  color: #6E84A3;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  padding: 0 10px;
}

.TBTabBlock_d .TBTab_right_d .suggestedKeywordsD input::placeholder {
  font-size: 12px;
  list-style: 18px;
  font-weight: 400;
  color: #6E84A3;
}

.TBTabBlock_d .suggestedKeywordsD {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 34px);
  flex-wrap: wrap;
}

.editPage .user-list .TBTabBlock_d .form-control {
  max-width: 100%;
  padding-left: 0;
  font-size: 16px;
  line-height: 24px;
  color: #002F36;
  font-weight: 400;
}

.editPage .user-list .TBTabBlock_d textarea::placeholder {
  color: #002F36;
}

.editPage .user-list .TBTabBlock_d .charLimitText {
  right: 22px;
  width: 100%;
  background: #FFFAEA;
  text-align: right;
  bottom: 0;
}

.editPage .TBTabBlock_d .addMoreBullets {
  margin-bottom: 48px;
}

.editPage .pushToUpdate .btn.grey-btn {
  color: #fff;
}

.editPage .pushToUpdate .btn.grey-btn:hover,
.editPage .pushToUpdate .btn.grey-btn:focus {
  color: #7E8896;
}

.editPage .centralEntitiesD .container,
.editPage .bulletslist_d .container {
  max-width: 1360px;
}

.editPage .bulletslist_d .addMoreBullets,
.editPage .bulletslist_d .saveResetBtn,
.editPage .bulletslist_d .addRemoveList_d {
  width: calc(100% - 220px);
}

.editPage .addRemoveList_d a {
  color: #0073BB;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.editPage .addRemoveList_d span {
  padding: 0 10px;
}

.editPage .saveResetBtn {
  /* margin-top:60px; */
}

.editPage .saveResetBtn .blue-btn {
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  background: #3F4A59;
  min-width: 80px;
  text-align: center;
  border-radius: 4px;
  font-family: 'AmazonEmber';
  color: #fff;
  border-color: #3F4A59;
}

.editPage .saveResetBtn .blue-btn:hover,
.editPage .saveResetBtn .blue-btn:focus {
  background: #000;
  color: #fff;
}

.editPage .saveResetBtn .blue-btn.reset_btn {
  background: transparent;
  border-color: #7E8896;
  color: #7E8896;
}

.editPage .bulletslist_d .title_div {
  margin-bottom: 45px;
}

.editPage .centralEntitiesD .top__d {
  margin: 0 0 10px;
}

.editPage .centralEntitiesD .top__d .label_t {
  width: 200px;
  font-size: 16px;
  line-height: 24px;
  color: #002F36;
  font-weight: 500;
}

.editPage .centralEntitiesD .top__d .label_desc {
  width: calc(100% - 220px);
  font-size: 14px;
  line-height: 24px;
  color: #7E8896;
  margin: 0 0;
  /* white-space: nowrap; */
  height: 46px;
  overflow: hidden;
  /* text-overflow: ellipsis; */
}

.editPage .centralEntitiesD .top__d .SensitiveKeyword_d {
  font-size: 14px;
  line-height: 21px;
  color: #DD3333;
  font-weight: 500;
}

.editPage .centralEntitiesD .CEItemD {
  width: calc(100% - 5px);
  border-radius: 5px;
  background: #FFFAEA;
}

.editPage .centralEntitiesD .CEItemD .topCED {
  /* padding: 12px 12px 20px; */
  padding: 0 0 2px;
  position: relative;
  overflow: hidden;
}

.editPage .centralEntitiesD .CEItemD .topCED .topCEDInner {
  /* max-height: 118px; */
  /* overflow-y: scroll; */
}

.editPage .centralEntitiesD .CEItemD .topCED .custom-contenteditable {
  resize: vertical;
  overflow: auto;
  padding: 12px 37px 20px 12px;
  height: 137px;
  max-width: 100%;
  background: #FFFAEA;
}

/* .editPage .centralEntitiesD .CEItemD .topCED .custom-contenteditable::-webkit-scrollbar{
  width:15px;
  border:none;
  background: transparent;
} */
.editPage .centralEntitiesD .CEItemD .topCED .custom-contenteditable::-webkit-scrollbar-thumb {
  background: #C1C1C1;
}

.editPage .centralEntitiesD .CEItemD .topCED .custom-contenteditable::-webkit-resizer {
  border: none;
  background: #FFFAEA url(/static/assets/images/resize.svg)no-repeat scroll center center;
  background-size: 20px;
  width: 15px;
  height: 15px;
}

.checkalignment .false_mark svg {
  width: 18px;
  height: 18px;
}

.checkalignment p {
  font-size: 12px;
  margin: 0px;
}

.CEItemD:focus-within,
.CEItemD:focus-within .topCED,
.CEItemD:focus-within .suggestKeword {
  box-shadow: unset !important;
}

.editPage .centralEntitiesD .CEItemD .suggestKeword {
  padding: 10px;
  background: #F9FBFD;
  display: flex;
  /* justify-content: space-between; */
}

.editPage .centralEntitiesD .CEItemD .keyInner_d {
  width: calc(100% - 85px);
}

.editPage .centralEntitiesD .CEItemD .keywordTrueFalse {
  position: absolute;
  right: 19px;
  z-index: 1;
  top: 13px;
  width: auto;
}

.editPage .centralEntitiesD .CEItemD .keywordTrueFalse span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #DD3333;
  margin: 0 0 2px;
}

.editPage .centralEntitiesD .CEItemD .copy__text,
.editPage .centralEntitiesD .CEItemD .edit__text {
  position: absolute;
  right: 19px;
  z-index: 1;
  top: 13px;
}

.editPage .user-list .writeWithAiBtn {
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  display: inline-flex;
  align-items: center;
  background: #7949FF;
  padding: 0 18px;
}

.editPage .user-list .writeWithAiBtn:hover,
.editPage .user-list .writeWithAiBtn:focus {
  background: #7949FF;
  color: #fff;
}

.editPage .user-list .publishBtn {
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  display: inline-flex;
  align-items: center;
  background: #3F4A59;
  padding: 0 18px;
}

.editPage .user-list .publishBtn:hover,
.editPage .user-list .publishBtn:focus {
  background: #3F4A59;
  color: #fff;
}

/* fixed keyword css start */
.fixedKeywordsDD {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 339px;
  z-index: 1;
  background: #fff;
  box-shadow: -8px -5px 20px 0px #00000042;
}

.fixedKeywordsDD .hideKeyword_header {
  background: #EBF3FE;
  padding: 8px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.fixedKeywordsDD .hideKeyword_header span {
  color: #1C64F2;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.fixedKeywordsDD.open .hideKeyword_header span:first-child svg {
  transform: rotate(180deg);
  margin-bottom: 1px;
}

.fixedKeywordsDD .f_keywordsList {
  padding: 17px 12px 17px 22px;
}

.fixedKeywordsDD h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2B384B;
  margin: 0 0 17px;
}

.fixedKeywordsDD ul {
  padding: 0 10px 0 0;
  list-style: none;
  margin: 0;
  height: 340px;
  overflow-y: scroll;
}

.fixedKeywordsDD ul li {
  margin: 0 0 15px;
}

.fixedKeywordsDD ul li>div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.fixedKeywordsDD ul li:first-child {
  margin: 0 0 21px;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  color: #2B384B;
}

.fixedKeywordsDD ul li div>span:first-child {
  width: 60%;
}

.fixedKeywordsDD ul li div>span:nth-child(2) {
  width: 24%;
}

.fixedKeywordsDD ul li div>span:last-child {
  text-align: right;
  width: 20%;
}

.fixedKeywordsDD ul li .keywordname {
  font-size: 12px;
  color: #44546F;
  background: #EBF3FE;
  border-radius: 5px;
  padding: 3px 7px;
  display: inline-block;
}

.fixedKeywordsDD .showMore_d {
  color: #1C64F2;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  cursor: pointer;
}

/* Fixed keyword css end */
/* Edit product page css end */

/* AI product page css start */
.AIProduct__details {
  padding-bottom: 50px;
}

.AIProduct__details .AIProduct_header {
  padding: 30px 80px;
  background: #F5F1FF;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #7949FF;
  text-transform: uppercase;
  border-bottom: 1px solid #ABC2E1;
}

.AIProduct__details .AIProduct_header svg {
  margin-right: 23px;
}

.AIProduct__details .AI_gredient {
  height: 35px;
  display: block;
  width: 100%;
  background: linear-gradient(to bottom, #d9d9d96b, #d9d9d900);
}

.editPage .AIProduct__details .title_div {
  padding-top: 35px;
}

.editPage .AIProduct__details .centralEntitiesD .CEItemD,
.editPage .AIProduct__details .centralEntitiesD .CEItemD .topCED {
  border-color: #7949FF;
}

.editPage .AIProduct__details .centralEntitiesD .CEItemD {
  background: #fff;
}

/* AI Prodcut Page css end */

/* Toogle switch start */
.toggle-switch11 {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 100px;
  height: 40px;
}

.toggle-switch11 input[type="checkbox"] {
  display: none;
}

.toggle-switch11 .switch {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #DD3333;
  border-radius: 50px;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.toggle-switch11 .switch .text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  /* opacity: 0.5;
  transition: opacity 0.3s; */
}

.toggle-switch11 .switch .text.inactive {
  padding-left: 28px;
}

.toggle-switch11 .switch .text.active {
  display: none;
  padding-right: 28px;
  padding-left: 7px;
}

.toggle-switch11 .switch .circle {
  position: absolute;
  width: 55px;
  height: 55px;
  background: url(/static/assets/images/icons/handle-container-false.png) no-repeat scroll center center;
  background-size: 55px;
  border-radius: 50%;
  top: -7px;
  left: -9px;
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.toggle-switch11 input[type="checkbox"]:checked+.switch {
  background-color: #34c759;
}

.toggle-switch11 input[type="checkbox"]:checked+.switch .text.active {
  display: block;
}

.toggle-switch11 input[type="checkbox"]:checked+.switch .text.inactive {
  display: none;
}

.toggle-switch11 input[type="checkbox"]:checked+.switch .circle {
  transform: translateX(63px);
  background: url(/static/assets/images/icons/handle-container-true.png) no-repeat scroll center center;
  background-size: 55px;
}

/* Toogle switch end */

/* Attribution System page css start */
.attributionSystem {
  font-family: 'AmazonEmber';
}

.attributionSystem .AS_header {
  margin: 0 0 32px;
}

.attributionSystem .AS_header select {
  text-align: left;
  background: #fff url(/static/assets/images/icons/arrow-down-dark.png) no-repeat scroll right center;
  background-size: 12px;
  background-position-x: 94%;
  height: 55px !important;
  appearance: none;
  padding-right: 27px;
  font-size: 16px;
  line-height: 24px;
  color: #2B384B;
  font-weight: 400;
}

.attributionSystem .AS_header select:focus {
  background: #F5F7FA url(/static/assets/images/icons/arrow-down-up.png) no-repeat scroll right center;
  background-size: 12px;
  background-position-x: 94%;
}

.attributionSystem .pdpRequest .table-responsive {
  overflow-x: scroll;
}

.attributionSystem .pdpRequest.reportAbuse table thead th,
.attributionSystem .pdpRequest.reportAbuse .table tr td:nth-of-type(1) {
  vertical-align: middle;
}

.attributionSystem .pdpRequest .table tr td:nth-of-type(1) {
  padding-left: 8px;
}

.attributionSystem .pdpRequest.reportAbuse table thead tr:first-child th a {
  padding: 7px 8px;
}

.attributionSystem .pdpRequest.reportAbuse table thead tr:nth-child(2) th a {
  color: #2076C5;
  text-transform: capitalize;
}

.attributionSystem .pdpRequest .table tr th:nth-of-type(1) a {
  text-align: center;
}

.attributionSystem .pdpRequest .table tr th:nth-of-type(1),
.attributionSystem .pdpRequest .table tr td:nth-of-type(1) {
  border-right-color: #abc2e180;
}

/* .attributionSystem .table .fold{
  display:none;
}
.attributionSystem .table .fold.open{
  display:table-row; 
}
.attributionSystem .table .fold > td{
  padding:0 !important;
} */
.attributionSystem .pdpRequest table td {
  font-size: 12px;
  line-height: 18px;
  color: #2B384B;
}

.attributionSystem .request_val {
  position: relative;
  max-width: 134px;
  margin: 0 auto;
}

.attributionSystem .request_val input {
  border: 1px solid #6E84A3;
  box-shadow: inset 0px 4px 4px 0px #0000000D;
  border-radius: 4px;
  height: 30px;
  width: 100%;
}

.attributionSystem .request_val .value_edit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attributionSystem .toggle-switch11 {
  margin: 0;
}

.attributionSystem .toggle-switch11 .switch {
  background-color: #F94144;
}

.attributionSystem .toggle-switch11 .switch .circle {
  left: unset;
  right: -9px;
}

.attributionSystem .toggle-switch11 .switch .text.inactive {
  padding-right: 28px;
  padding-left: 7px;
}

.attributionSystem .toggle-switch11 .switch .text.active {
  padding-right: 7px;
  padding-left: 30px;
}

.attributionSystem .toggle-switch11 input[type="checkbox"]:checked+.switch {
  background-color: #43AA8B;
}

.attributionSystem .toggle-switch11.TFSwitch {
  width: 85px;
  margin: 0;
}

.attributionSystem .toggle-switch11 input[type="checkbox"]:checked+.switch .circle {
  transform: translateX(0px);
  left: -9px;
  right: unset;
}

.attributionSystem .toggle-switch11.autoCorrection .switch {
  background: #82A0CA;
}

.attributionSystem .toggle-switch11.autoCorrection input[type="checkbox"]:checked+.switch {
  background: #7E8896;
}

.attributionSystem .toggle-switch11.autoCorrection .switch .circle,
.attributionSystem .toggle-switch11.autoCorrection input[type="checkbox"]:checked+.switch .circle {
  background: url(/static/assets/images/icons/user-system-switch.png) no-repeat scroll center center;
  background-size: 55px;
}

.attriSystem_fold {
  background: #E3EBF6;
  padding: 28px 20px;
  row-gap: 30px;
}

.attriSystem_fold .item__d {
  width: 33.33%;
  padding: 0 15px;
  text-align: left;
}

.attriSystem_fold .item__d>div {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ABC2E1;
  height: 100%;
}

.attriSystem_fold .titleHeader {
  background: #F7FAFD;
  padding: 10px 25px;
}

.attriSystem_fold .ASFold_title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.attriSystem_fold .content_d {
  border-top: 1px solid #ABC2E1;
  padding: 17px 25px;
}

.attriSystem_fold .title_c {
  color: #6E84A3;
  margin-right: 10px;
}

.attriSystem_fold .text_d {
  white-space: pre-wrap;
}

.attriSystem_fold .badge_l {
  border: 1px solid #ABC2E1;
  padding: 2px 7px;
  border-radius: 3px;
  color: #4F4F4F;
  font-weight: 500;
  min-width: 70px;
  text-align: center;
}

.attriSystem_fold .failed_b {
  background: #FFD2D3;
  color: #4F4F4F;
}

.attriSystem_fold .success_b {
  background: #C1F0C6;
}

.attriSystem_fold .queued_b {
  background: #e0e0e0;
  color: #44546F;
}

/* Attribution System page css end */
.bulletslist_d .centralEntitiesD .btm__d.d-flex {
  width: calc(100% - 200px);
}

.bulletslist_d2 .centralEntitiesD .btm__d.d-flex {
  width: 100%;
}

/*component CSS */
/* Card box Effect */
.card-box {
  border: 1px solid #E3EBF6;
  border-radius: 2px;
  padding: .5rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 170px;
  min-height: 70px;
}

.card-box.active {
  border: 1px solid #1C64F2;
  background: linear-gradient(177deg, #eaf3ff 0%, #ffffff 100%);
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.card-box .card-title {
  font-size: 13px;
  color: #000000;
  font-weight: bold;
}

.card-box .card-number {
  font-size: 20px;
  font-weight: bold;
  color: #002F36;
}

/* Card box hover effect */
.search-box {
  position: relative;
  width: 389px;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 7px 40px 7px 15px;
  border: 1px solid #44546F;
  border-radius: 2px;
  font-size: 12px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: none;
}

.search-box input[type="text"]:focus {
  box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
  border-color: #44546F;
}

.search-box svg {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2B384B;
  font-size: 14px;
  cursor: pointer;
}

/*upload file css */
.drop-zone {
  transition: 0.3s ease-in-out;
  border: 1px dashed #E3EBF6;
  padding: 10px 15px;
  background: #fff;
  min-height: 70px;
  position: relative;
  min-width: 320px;
}

.drop-zone .file-input {
  display: none;
}

.drop-zone .uploadBtn {
  background: transparent;
  color: #236A78;
  border-radius: 2px;
  padding: 5px 15px;
  font-size: 12px;
  align-self: flex-end;
  margin-top: auto;
  margin-right: auto;
  border: 1px solid #236A78;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: .5s;
  transition: .5s;
}

.drop-zone:hover .uploadBtn {
  background: #236A78;
  color: #fff;
}

.drop-zone:hover .uploadBtn:disabled {
  opacity: .1;
  background: #236A78;
}

.drop-zone .iconDropZone {
  right: 10px;
}

.drop-zone a {
  font-size: 12px;
  color: #236A78;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-zone .file-name {
  font-size: 12px;
  color: #0056b3;
  flex-direction: column;
}

.drop-zone .file-name>span {
  font-weight: bold;
}

.drop-zone .uploadText {
  font-size: 12px;
  color: #000;
}

.drop-zone .uploadText span {
  display: block;
  color: #236A78;
  font-size: 10px;
}

.drop-zone .uploadText label {
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

.drop-zone .deleteIcon {
  cursor: pointer;
  color: #dc3545;
  transition: transform 0.2s;
  position: absolute;
  right: 12px;
}

.drop-zone button:disabled {
  opacity: .3;
  border-radius: 0;
  background-color: #000;
  color: #fff;
}

.drop-zone .deleteIcon:hover {
  transform: scale(1.2);
}

/*select option css */
.dropdown-wrapper {
  position: relative;
  /* border: 1px solid #7E8896; */
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-wrapper select {
  width: 100%;
  padding: 6px 32px 6px 12px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.dropdown-wrapper .custom-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
}

 

/*placeholder css */
input::placeholder,
textarea::placeholder {
  color: #002F36;
  opacity: 1;
}

/* Modal css */
.modal {
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

button:focus {
  outline: none;
}

/*custom checkbox*/
 

/*custom date picker*/
.custom-date-picker {
  position: relative;
  border: 1px solid #000000;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 14px;
  color: #002F36;
}

.calendar-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #003d3d;
  pointer-events: none;
  bottom: 0;
}

.date-input::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.date-input {
  width: 100%;
  font-size: 16px;
  color: #003d3d;
  padding: 12px 42px 12px 12px;
  border: none;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
}


/*responsive CSS*/
@media (max-width: 991.98px) {
  .mobMenuIcon {
    display: block;
  }

  .MobileMenuOpen .pcoded-navbar {
    margin-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1265.98px) {
  .top_header h5 {
    font-size: 28px;
    line-height: 40px;
  }

  .white-btn {
    height: 45px;
    line-height: 40px;
    padding: 0 15px;
  }

  .editPage .middle_pro_d .title_d {
    font-size: 14px;
    line-height: 26px;
  }

  .editPage .subtabs li .borderout {
    height: 55px;
    font-size: 14px;
  }

  .editPage .subtabs li .borderout.active-tab {
    border-bottom: 3px solid #3361FF;
  }

  .editPage .user-list .card-header h5 {
    font-size: 16px;
    line-height: 18px;
  }

  .editPage .user-list .card-header:before {
    width: 2px;
  }

  .editPage .user-list .card-block {
    padding: 30px 30px 20px 30px;
  }


  .card-box {
    width: 100px;
    min-height: initial;
    padding: .2rem .5rem;
  }

  .card-box .card-title {
    font-size: 11px;
  }

  .card-box .card-number {
    font-size: 14px;
  }

  .drop-zone a {
    font-size: 10px;
  }
}
#CaseViewModal .modal-dialog {
  min-width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

#CaseViewModal .modal-content {background: #fff;padding: 18px;border-radius: 8px;position: relative;border: 1px solid #C7C7C7;}
#CaseViewModal .modal-header {padding:0;}
#CaseViewModal .modal-header .leftD {line-height:normal; font-weight:600; margin-bottom:10px;}
#CaseViewModal .modal-body .top_content {padding:0;border-bottom: 1px solid #C7C7C7;}
#CaseViewModal .pro_name span {letter-spacing:normal; line-height:normal;}
#CaseViewModal .type_name {line-height:normal; letter-spacing:normal; font-weight:600;margin-bottom: 10px;}
#CaseViewModal .top_content .item_d {line-height:normal; letter-spacing:normal; font-weight:600;}
#CaseViewModal  .modal-body .middle_content {padding:0;}
#CaseViewModal .close {padding-right:18px;}
#CaseViewModal .btn {background-color:var(--text-primary); min-width:100px;}
#CaseViewModal .input-group textarea {min-height:255px; font-style: normal;font-size: 14px;}
#CaseViewModal .input-group .generatedReply {min-height: 450px;font-style: normal;font-size: 14px;}
#CaseViewModal .input-group label {font-size: 14px;}
@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blink {
  animation: blink 1s infinite;
}
 