/**
 *    Custom Stylesheet
 *
 *    ==========================
 *    SCSS File Inclusion Orders
 *    ==========================
 *
 *    #helpers
 *      - bootstrap

 *    #base
 *      - var
 *      - color_vars
 *      - reset
 *      - base
 *      - keyframes
 *      - typography
 *
 *    #components
 *
 *    #modules
*/
/*
    =====
    #base
    =====
*/
/* FONT VARIABLES */
/*  DEVICE VARIABLES */
/* COLOR VARIABLES */
body {
  --primary-color: #1F2F48;
  --secondary-color: #172436;
  --tertiary-color: #2C4666;
}

.orange-theme {
  --primary-color: #ee7149;
  --secondary-color: #be522f;
  --tertiary-color: #d8633d;
}

.violet-theme {
  --primary-color: #5c49d6;
  --secondary-color: #3f2cba;
  --tertiary-color: #4d39d0;
}

.acquagreen-theme {
  --primary-color: #2bb67c;
  --secondary-color: #16905e;
  --tertiary-color: #1da46c;
}

.red-theme {
  --primary-color: #DE4A4A;
  --secondary-color: #bc3030;
  --tertiary-color: #d04747;
}

.brown-theme {
  --primary-color: #E2832A;
  --secondary-color: #bc6614;
  --tertiary-color: #c87423;
}

.blue-theme {
  --primary-color: #5194F8;
  --secondary-color: #22529a;
  --tertiary-color: #3965a6;
}

.gray-theme {
  --primary-color: #5d5d5d;
  --secondary-color: #3d3a3a;
  --tertiary-color: #4d4d4d;
}

.black-theme {
  --primary-color: #141d2b;
  --secondary-color: #050a11;
  --tertiary-color: #131f31;
}

.purple-theme {
  --primary-color: #7b0983;
  --secondary-color: #440249;
  --tertiary-color: #4a004f;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

input,
textarea {
  outline: none !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: " "; /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* FONT VARIABLES */
/*  DEVICE VARIABLES */
* {
  outline: none;
}
*:focus {
  outline: none;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 1.5em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  background-color: #e2e6ef;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mr-1 {
  margin-right: 10px;
}

.ml-1 {
  margin-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .mb-4 {
    margin-bottom: 1rem !important;
  }
}

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

.text-deco {
  text-decoration: none;
}
.text-deco:hover {
  text-decoration: none;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-1 {
  padding-right: 10px !important;
}

.pr-2 {
  padding-right: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.text-white {
  color: #FFFFFF;
}

.showed {
  display: block !important;
}

.w-120 {
  width: 120px;
}

.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.pull-right {
  float: right !important;
}

@media (max-width: 560px) {
  .m-w-200 {
    width: 200px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1260px;
  }
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* FONT VARIABLES */
/*  DEVICE VARIABLES */
h1, h2, h3, h4, h5, h6 {
  color: #000;
  line-height: 1.2em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 13px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0px;
}

/*
    ===========
    #components
    ===========
*/
.form-check-input {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.2em;
}
.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #426EA3;
}

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

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

.slider.round {
  border-radius: 34px;
}

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

input[type=file i] {
  padding: 8px 0px;
}

.o-custom-button {
  display: inline-block;
  color: #3f4f5d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.o-custom-button span {
  display: inline-block;
  margin-left: 10px;
}
.o-custom-button:hover {
  color: var(--primary-color);
  transition: all ease-in-out 0.3s;
}

.btn {
  padding: 12px 30px;
  font-size: 14px;
  line-height: 1em;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  display: inline-flex;
  white-space: nowrap;
  text-transform: capitalize;
}
@media (max-width: 560px) {
  .btn {
    display: inline-block;
  }
}
.btn .arrow {
  margin-left: 5px;
  font-size: 15px;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 6px;
  height: 13px;
  background-size: cover !important;
}
.btn.white-space-wrap {
  white-space: nowrap;
}
.btn.delete {
  padding: 9px 10px;
}
.btn.btn-primary {
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #FFFFFF !important;
}
.btn.btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transition: all ease-in-out 0.3s;
  color: #FFFFFF !important;
}
.btn.btn-primary:focus {
  box-shadow: none;
  outline: none !important;
}
.btn.btn-primary .arrow.arrow-right {
  background: url(/images/arrow.svg?04a1b0748dba888260e1d3db629d842c) no-repeat;
}
.btn.btn-primary .arrow.text-icon {
  background: url(/images/text-icon.svg?346fafd8f9c7650314c7c25c5d2c5db1) no-repeat;
  width: 13px;
  height: 15px;
}
@media (max-width: 560px) {
  .btn.btn-primary {
    width: 100%;
  }
}
.btn:hover {
  transition: all ease-in-out 0.3s;
}
.btn:hover .arrow {
  transform: translateX(5px);
  transition: all ease-in-out 0.3s;
}
.btn.btn-primary-outline {
  font-family: "Poppins", sans-serif;
  background: transparent;
  border-color: var(--primary-color) !important;
  border: solid 1px;
}
.btn.btn-primary-outline:hover {
  background: transparent;
  border-color: var(--primary-color) !important;
  transition: all ease-in-out 0.3s;
}
.btn.btn-primary-outline:focus {
  box-shadow: none;
  outline: none !important;
}
.btn.btn-primary-outline .arrow.arrow-right {
  background: url(/images/arrow-dark.svg?4901d232b5eccb093e0219c68c920cc7) no-repeat;
}
.btn.btn-primary-outline .arrow.attachment {
  background: url(/images/attachment-icon.svg?20174371127d4c3612169521ef6806f2) no-repeat;
  width: 13px;
  height: 15px;
}
.btn.btn-primary-outline .arrow.sign {
  background: url(/images/enforcement-button-icon.svg?e9cd5b5a7e24c4e2681f8acf53ca710a) no-repeat;
  width: 15px;
  height: 15px;
}
@media (max-width: 560px) {
  .btn.btn-primary-outline {
    width: 100%;
  }
}
.btn.red {
  background: #E3342F;
  border-color: #E3342F;
  color: #FFFFFF;
}
.btn.red:hover {
  background: #d30000;
  border-color: #d30000;
  color: #FFFFFF;
}
.btn.green {
  background: #38C172;
  border-color: #38C172;
  color: #FFFFFF;
}
.btn.green:hover {
  background: #26A95D;
  border-color: #26A95D;
  color: #FFFFFF;
}

.btn-group .btn {
  border: solid 1px #eee;
  padding: 10px 15px;
  margin-left: -1px;
  font-weight: 300;
}
.btn-group .btn:hover, .btn-group .btn.active {
  background: #E1E5EE;
}
.btn-group .btn.active {
  font-weight: 500;
}
.btn-group .btn:focus {
  border: none;
  outline: none;
  border: solid 1px #eee;
  box-shadow: none;
}
.btn-group.radio .btn {
  border: solid 1px #eee;
  padding: 10px 15px;
  margin-left: -1px;
  font-weight: 300;
  color: #3f4f5d;
}
.btn-group.radio .btn:hover, .btn-group.radio .btn.active {
  background: #E1E5EE;
  outline: none;
  box-shadow: none;
}
.btn-group.radio .btn.active {
  font-weight: 500;
  outline: none;
  box-shadow: none;
}
.btn-group.radio .btn:focus {
  border: none;
  outline: none;
  border: solid 1px #eee;
  box-shadow: none;
}

.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary {
  background: #E1E5EE;
  color: #3f4f5d;
  outline: none;
  box-shadow: none;
  font-weight: 500;
}

.flatpickr,
.flatpickr.active {
  text-align: left !important;
  padding-left: 15px !important;
}

.pagination a.page-link {
  padding: 0.375rem 1rem;
  font-size: 13px;
  color: var(--primary-color);
}
.pagination a.page-link:hover, .pagination a.page-link.active {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.pagination-block {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pagination-block {
    flex-direction: column;
  }
  .pagination-block .o-page-record-block {
    margin-bottom: 10px;
  }
}
@media (max-width: 580px) {
  .pagination-block {
    justify-content: center;
  }
  .pagination-block .o-page-inner-block {
    flex-direction: column;
  }
  .pagination-block .o-page-inner-block .o-total-payment-block {
    margin-bottom: 10px;
  }
  .pagination-block .o-page-inner-block .pagination {
    margin-left: 0px;
  }
}
.pagination-block .pagination li {
  margin: 0px 2px;
}
.pagination-block .pagination li a.page-link {
  padding: 0.5rem 1rem;
  font-size: 13px;
  color: #1F2F48;
  background: transparent;
  border-radius: 4px;
  border-color: #3f4f5d;
}
.pagination-block .pagination li a.page-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
}
.pagination-block .pagination li.active a.page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
}
@media (max-width: 690px) {
  .pagination-block .heading-area {
    display: none !important;
  }
}

/*
    =====================
    #Common SASS modules 
    =====================
*/
.o-login-screen {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  flex-wrap: wrap;
  padding-top: 60px;
  background: var(--secondary-color);
  align-content: space-between;
}
@media (max-width: 767px) {
  .o-login-screen {
    padding-top: 45px;
  }
}
.o-login-screen .o-login-internal {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-direction: row;
}
.o-login-screen .o-login-internal .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
.o-login-screen .o-login-internal .o-custom-login {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 400ms ease-in-out;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 40px 40px;
  border-radius: 0px 10px 10px 0px;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg:after {
  width: 100px;
  height: 80px;
  background: url(/images/login-bottom-dot-pattern.svg?9938a30c530c9390718baa09370eb5aa) no-repeat center right;
  content: "";
  bottom: 40px;
  right: -100px;
  position: absolute;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content {
  max-width: 195px;
  padding-left: 20px;
  border-left: solid 4px #5194F8;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.2em;
  place-self: flex-end;
  margin-left: auto;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area {
    display: none;
  }
}
.o-login-screen .o-login-internal .o-login {
  background: rgb(255, 255, 255);
  background: linear-gradient(45deg, rgb(255, 255, 255) 57%, rgb(251, 251, 251) 57%);
  padding: 68px 100px;
  position: relative;
  border-radius: 10px 0px 0px 10px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login {
    border-radius: 10px;
    padding: 40px 60px;
  }
}
@media (max-width: 767px) {
  .o-login-screen .o-login-internal .o-login {
    border-radius: 10px;
    padding: 40px 25px;
  }
}
.o-login-screen .o-login-internal .o-login:after {
  width: 365px;
  height: 90px;
  background: url(/images/login-top-pattern.svg?e3ecb3dbbfdb00373f21e8e8d0b45c4e) no-repeat top right;
  content: "";
  top: 0;
  right: 0;
  position: absolute;
}
.o-login-screen .o-login-internal .o-login .brand {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login .brand {
    text-align: center;
    width: 100%;
  }
}
.o-login-screen .o-login-internal .o-login .heading h1 {
  font-size: 48px;
  line-height: 1em;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.o-login-screen .o-login-internal .o-login .heading h1 span {
  font-size: 30px;
  display: block;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login .heading h1 {
    text-align: center;
    font-size: 30px;
  }
  .o-login-screen .o-login-internal .o-login .heading h1 span {
    font-size: 20px;
  }
}
.o-login-screen .o-login-internal .o-login .o-form-check-block {
  display: flex;
}
.o-login-screen .o-login-internal .o-login .o-form-check-block .o-forgot-password {
  margin-left: auto;
}
.o-login-screen .o-login-internal .o-login .o-form-check-block .o-forgot-password a {
  color: #3f4f5d;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
.o-login-screen .o-login-internal .o-login .o-form-check-block .o-forgot-password a:hover {
  color: #000;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.o-login-screen .o-login-internal .o-login .btn {
  justify-content: center;
}

.o-login-footer {
  padding: 50px 0px 25px;
  width: 100%;
  display: flex;
  margin-top: auto;
}
.o-login-footer ul {
  list-style-type: none;
}
@media (max-width: 991px) {
  .o-login-footer ul {
    text-align: center;
  }
}
.o-login-footer ul li {
  display: inline-block;
  border-left: solid 1px #677D9F;
  padding: 0px 15px 0px 15px;
  line-height: 1em;
}
.o-login-footer ul li:first-child {
  border-left: none;
  padding: 0px 15px 0px 0px;
}
.o-login-footer ul li a {
  color: #677D9F;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
.o-login-footer ul li a:hover {
  opacity: 0.75;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.o-login-footer .o-footer-text {
  text-align: right;
  color: #677D9F;
}
.o-login-footer .o-footer-text p {
  font-size: 14px;
}
@media (max-width: 991px) {
  .o-login-footer .o-footer-text {
    text-align: center;
    padding-top: 10px;
  }
}

.form-control {
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  border: 1px solid #D9E1E8;
  border-radius: 6px !important;
}
.form-control.count {
  width: 80px;
  background: #fff;
}

.form-control-msg {
  height: 180px;
}
.form-control-msg_80 {
  height: 80px;
}

.form-select {
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  border: 1px solid #D9E1E8;
}

.select2.select2-container--default .select2-selection--single {
  border: 1px solid #D9E1E8 !important;
  height: 40px;
}
.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.choices__inner {
  background-color: #FFFFFF !important;
  padding: 6px 15px 0px;
  border: 1px solid #D9E1E8 !important;
  border-radius: 6px !important;
  line-height: 1 !important;
  font-size: 14px !important;
  min-height: 42px !important;
}

.choices__input {
  min-width: 120px !important;
}

.choices__list--multiple .choices__item {
  background-color: #172436 !important;
  border: 1px solid #172436 !important;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  border-left: 1px solid #000 !important;
}

.custom-form-control {
  background-color: #FFFFFF;
}

.custom-select {
  padding: 0.75rem 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid #D9E1E8;
  margin-left: 10px;
  width: 200px;
}

.custom-select-small {
  padding: 0.05rem 0.5rem;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  width: 80px;
}

.o-form-area span.label {
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
  text-transform: capitalize;
  width: 100%;
}
.o-form-area span.label .asterisk {
  color: red;
}
.o-form-area span.c-label {
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}
.o-form-area span.time-zone {
  padding: 12px 20px;
  line-height: 1em;
  background: #ecf1f8;
  border-color: #ecf1f8;
  margin-left: 10px;
  border-radius: 6px;
  font-weight: 600;
}
.o-form-area span.vrm-number-color {
  display: inline-block;
  padding: 10px 20px 9px;
  border-radius: 4px;
  border: solid 1px #AD873B;
  color: #AD873B;
  background: #f7f3eb;
  width: calc(100% - 151px);
  text-align: center;
}
.o-form-area p {
  font-size: 14px;
}
.o-form-area .input-group.date .input-group-addon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.o-form-area .input-group.date .form-control[readonly] {
  background-color: transparent !important;
}
.o-form-area .input-group.date .form-control.date {
  z-index: 1 !important;
}
.o-form-area .c-field-area .form-control {
  width: calc(100% - 165px);
}
.o-form-area.table .form-control {
  max-width: 400px;
}
@media (min-width: 1367px) {
  .o-form-area.o-evidence-block {
    padding-right: 75px;
  }
}

.o-page-internal-heading {
  align-content: space-between;
  padding: 0rem 0rem 0.5rem;
  align-items: center;
  display: flex;
  border-bottom: solid 1px #CECECE;
  margin-bottom: 20px;
}
.o-page-internal-heading .o-list-link {
  margin-left: auto !important;
}
@media (max-width: 1100px) {
  .o-page-internal-heading.desktop {
    flex-direction: column;
    align-items: start;
  }
  .o-page-internal-heading.desktop .o-list-link {
    margin-left: inherit !important;
  }
}
@media (max-width: 991px) {
  .o-page-internal-heading.tablet {
    flex-direction: column;
    align-items: start;
  }
  .o-page-internal-heading.tablet .o-list-link {
    margin-left: inherit !important;
  }
}
@media (max-width: 560px) {
  .o-page-internal-heading.mobile {
    flex-direction: column;
    align-items: start;
  }
  .o-page-internal-heading.mobile .o-list-link {
    margin-left: inherit !important;
  }
}
.o-page-internal-heading .site-head {
  font-size: 20px;
  font-weight: 600;
  color: #1F2F48;
}
@media (max-width: 767px) {
  .o-page-internal-heading .site-head {
    font-size: 18px;
  }
}
.o-page-internal-heading .site-head span {
  color: #426EA3;
}

.o-list-link {
  display: inline-block;
  margin-left: auto;
}
@media (max-width: 767px) {
  .o-list-link {
    margin-left: inherit;
    padding-top: 5px;
  }
}
.o-list-link ul {
  list-style: none;
  font-size: 0px;
}
.o-list-link ul li {
  display: inline-block;
  padding: 0px 15px;
  font-size: 0px;
  line-height: 1em;
  font-size: 14px;
}
.o-list-link ul li img {
  margin-right: 10px;
}
.o-list-link ul li:first-child {
  padding: 0px 15px 0px 0px;
}
.o-list-link ul li a {
  color: #172436;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
.o-list-link ul li a:hover {
  color: #1F2F48;
  transition: all ease-in-out 0.3s;
  text-decoration: underline;
}
.o-list-link.seperator ul {
  list-style: none;
  font-size: 0px;
}
.o-list-link.seperator ul li {
  border-left: solid 1px #1F2F48;
}
.o-list-link.seperator ul li:first-child {
  border-left: none;
}

.dashboard-iconic-card .card {
  transition: all ease-in-out 0.3s;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .icon {
  margin-left: 10px;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .icon img {
  max-width: 60px;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .content .content-top {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 400;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .content .content-top span {
  font-size: 30px;
  font-weight: 600;
  color: #1F2F48;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .content .content-bottom {
  line-height: 1.4;
  font-weight: 400;
}
.dashboard-iconic-card .card .card-body .dashboard-iconic-block .content .content-bottom span {
  font-weight: 500;
}
.dashboard-iconic-card .card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.3s;
}

.card.dashboard .table.head-table tr td {
  padding: 0.75rem 0rem;
}

header {
  padding: 20px 30px;
  background: #F6F8FF;
  min-height: 90px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  header {
    min-height: 0px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 20px 15px;
  }
}
header .container-fluid {
  padding: 0px;
}
header h1 {
  font-size: 21px;
  color: #426EA3;
}
header p {
  color: #3f4f5d;
  font-size: 13px;
}
@media (max-width: 991px) {
  header .col-head {
    display: none;
  }
}
header .app-utilities .app-utility-item {
  display: inline-block;
  margin-left: 3rem;
}
@media (min-width: 1367px) {
  header .app-utilities .app-utility-item {
    margin-left: 5rem;
  }
}
header .app-utilities .app-utility-item a.o-user:after, header .app-utilities .app-utility-item a.o-settings:after, header .app-utilities .app-utility-item a.o-notification:after {
  display: none;
}
header .app-utilities .app-utility-item a.o-notification {
  position: relative;
}
header .app-utilities .app-utility-item a.o-notification img {
  margin-top: 3px;
}
header .app-utilities .app-utility-item a.o-notification .number {
  position: absolute;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 12px;
  top: -8px;
  right: -20px;
  background: #677D9F;
  color: #FFFFFF;
  border-radius: 15px;
}
header .app-utilities .app-utility-item a.o-user {
  position: relative;
}
header .app-utilities .app-utility-item a.o-user .greendot {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -8px;
  right: -4px;
  background: #2AED27;
  border-radius: 50px;
}
header .app-utilities .app-utility-item a.o-user img {
  width: 31px;
  height: 31px;
  border-radius: 3px;
  overflow: hidden;
}
header .app-utilities .app-utility-item.o-user-block .dropdown-menu.show {
  top: 20px !important;
  border: none !important;
  font-size: 14px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
}
header .app-utilities .app-utility-item.o-user-block .dropdown-menu.show li a {
  color: #677D9F;
}
header .app-utilities .app-utility-item.o-notification-block {
  position: relative;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box {
  display: none;
  top: 30px !important;
  border: none !important;
  font-size: 14px;
  width: 420px;
  right: -10px;
  padding: 25px 20px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 767px) {
  header .app-utilities .app-utility-item.o-notification-block .o-notification-box {
    width: calc(100vw - 40px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    top: 70px !important;
  }
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .o-close {
  position: absolute;
  right: 25px;
  top: 15px;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E1E5EE;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .heading h3 {
  color: #3f4f5d;
  font-size: 18px;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel {
  max-height: 275px;
  overflow: auto;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block {
  padding: 15px 0px;
  border-bottom: solid 1px #eee;
  display: flex;
  width: 100%;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .image-block {
  position: relative;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .image-block .n-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #90CDF4;
  border-radius: 10px;
  left: 2px;
  top: 2px;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .image-block .n-image {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #E1E5EE;
  overflow: hidden;
  margin-right: 15px;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content {
  width: 100%;
  padding-right: 30px;
  position: relative;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .c-content {
  margin-bottom: 5px;
  line-height: 1.4;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .c-content span {
  font-weight: 600;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .delete {
  width: 25px;
  height: 25px;
  position: absolute;
  overflow: hidden;
  border-radius: 50px;
  line-height: 23px;
  text-align: center;
  opacity: 0.75;
  top: 0px;
  right: 0px;
  background: #E1E5EE;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .delete img {
  height: 18px;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .delete:hover {
  opacity: 1;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block .content .date {
  font-size: 11px;
  color: #A5ACB8;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block-final {
  padding-top: 10px;
  text-align: center;
  text-transform: capitalize;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block-final a {
  color: #A5ACB8;
  text-decoration: none;
}
header .app-utilities .app-utility-item.o-notification-block .o-notification-box .notify-panel .notify-block-final a:hover {
  color: #1F2F48;
}
header .app-utilities .app-utility-item.o-notification-block.show .o-notification-box {
  display: block;
}
header .app-utilities .app-utility-item.o-setting-block {
  position: relative;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box {
  top: 30px !important;
  border: none !important;
  font-size: 14px;
  width: 316px;
  right: -10px;
  padding: 25px 20px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  display: none;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .o-close {
  position: absolute;
  right: 25px;
  top: 15px;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E1E5EE;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .heading h3 {
  color: #3f4f5d;
  font-size: 18px;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel {
  margin-left: -5px;
  margin-right: -5px;
  font-size: 0px;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .sub-heading {
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #677D9F;
  padding-left: 5px;
  text-transform: uppercase;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box {
  width: calc(33.33333% - 10px);
  display: inline-block;
  height: 38px;
  border-radius: 5px;
  background: #eee;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  border: solid 1px #E1E5EE;
  cursor: pointer;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.orange {
  background: #ee7149;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.violet {
  background: #5c49d6;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.acquagreen {
  background: #2bb67c;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.red {
  background: #DE4A4A;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.brown {
  background: #E2832A;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.blue {
  background: #5194F8;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.lightgrey {
  background: #E1E5EE;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.gray {
  background: #5d5d5d;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.black {
  background: #141d2b;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.white {
  background: #FFFFFF;
}
header .app-utilities .app-utility-item.o-setting-block .o-settings-box .colorpanel .color-box.purple {
  background: #7b0983;
}
header .app-utilities .app-utility-item.o-setting-block.show .o-settings-box {
  display: block;
}
header .search-desktop {
  max-width: 460px;
  margin-left: auto;
}
@media (max-width: 1100px) {
  header .search-desktop {
    display: none;
  }
}
header .o-mobile-search {
  display: none !important;
}
@media (max-width: 1100px) {
  header .o-mobile-search {
    display: inline-block !important;
  }
}
header .o-mobile-search .o-mobile-search-panel {
  width: 100vw;
  height: 100vh;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  display: none;
}
header .o-mobile-search .o-mobile-search-panel.show {
  display: block;
}
header .o-mobile-search .o-mobile-search-panel #close {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 25px;
}
header .o-mobile-search .o-mobile-search-panel .o-search-field-area {
  position: absolute;
  top: 50%;
  width: 75%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
header .o-mobile-search .o-mobile-search-panel .o-search-field-area .form-control {
  width: 100%;
  border: none;
  border-bottom: solid 1px #eee;
  border-radius: 0px !important;
  padding-left: 0px;
  padding-right: 0px;
  color: #FFFFFF;
}
header .o-mobile-search .o-mobile-search-panel .o-search-field-area .form-control:active, header .o-mobile-search .o-mobile-search-panel .o-search-field-area .form-control:focus {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-bottom: solid 1px #eee;
}
header .o-mobile-search .o-mobile-search-panel .o-search-field-area .form-control::-moz-placeholder {
  color: #FFFFFF;
}
header .o-mobile-search .o-mobile-search-panel .o-search-field-area .form-control::placeholder {
  color: #FFFFFF;
}

.search {
  position: relative;
}
.search .form-control {
  background: transparent;
  padding-left: 0px;
  border: none;
  border-bottom: solid 1px #eee;
  padding-right: 35px;
}
.search .form-control:focus {
  box-shadow: none;
}
.search .btn.search {
  width: 17px;
  height: 21px;
  position: absolute;
  right: 0;
  background: url(/images/search-icon.svg?dff7dc4e565d537b441cbfa88940552b) no-repeat;
  border: none;
  outline: none;
  top: 50%;
  padding: 0px;
  transform: translateY(-50%);
}
.search .btn.search:focus {
  outline: none;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  transition: all 0.3s ease;
}

/* Sidebar Menu */
.sidebar-wrapper {
  width: 250px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  background-color: var(--primary-color);
  top: 0;
  left: 0px;
  z-index: 999;
}
@media (max-width: 991px) {
  .sidebar-wrapper {
    left: -250px;
  }
}
.sidebar-wrapper .sidebar-header {
  padding: 8px 15px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  width: 100%;
  position: relative;
  text-align: center;
}
.sidebar-wrapper .sidebar-header a.brand-logo img {
  width: 160px;
}
.sidebar-wrapper .sidebar-header a.brand-circle {
  width: 45px;
  height: 45px;
  display: none;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 100px;
  text-align: center;
  font-size: 20px;
  line-height: 45px;
  font-weight: bold;
  color: #1F2F48;
  text-decoration: none;
}
.sidebar-wrapper .sidebar-header a.brand-cross {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.sidebar-wrapper .sidebar-content {
  max-height: calc(100% - 180px);
  height: calc(100% - 180px);
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
}
.sidebar-wrapper .sidebar-menu {
  padding: 0px 0px 10px;
}
.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}
.sidebar-wrapper .sidebar-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar-wrapper .sidebar-menu ul li {
  font-weight: 300;
  white-space: nowrap;
}
.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 8px 15px 8px 15px;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 12px;
  width: 235px;
  transition: width ease-in-out 0.3s;
  position: relative;
  opacity: 0.65;
  text-transform: uppercase;
}
.sidebar-wrapper .sidebar-menu ul li a:before {
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  content: "";
  display: none;
}
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  margin-left: 15px;
  display: inline-block;
  min-width: 28px;
  height: 28px;
  line-height: 23px;
  background: #FFFFFF;
  color: var(--primary-color);
  border-radius: 50px;
  text-align: center;
  margin-top: 1px;
  padding: 0.35em 0.15em 0.35em 0.1em;
}
.sidebar-wrapper .sidebar-menu ul li a span {
  display: inline-block;
  vertical-align: top;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon {
  width: 30px;
  height: 30px;
  margin-left: 0.2rem;
  font-size: 1.2rem;
  margin-right: 0.2rem;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-dashboard {
  background: url(/images/dashboard.svg?7768532a5ec0f5e13c1e5d3578963165) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-pcn-management {
  background: url(/images/pcn-management.svg?5c0cd8b7a18933f15e48a13925a0ecdc) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-site-management {
  background: url(/images/site-management.svg?350a7df1a8a1d3cde8a6ef156f237010) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-anpr {
  background: url(/images/anpr.svg?b597c2118df37509e57fce3d4d23efa8) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-dvla-tracker {
  background: url(/images/dvla-tracker.svg?32344729e745fe0b2b83d72b42a80b66) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-party-management {
  background: url(/images/3rd-party-management.svg?77984ffe793dab8f99552a82eeb20df3) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-debt-recovery {
  background: url(/images/hammer-icon.svg?1dbb9e49118d40628dd0026ef4107a4b) no-repeat center;
  background-size: 80%;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-kiosk {
  background: url(/images/kiosk.svg?6addf317dde0026a06de5e8096b7c4f0) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-users {
  background: url(/images/users.svg?bbfe2ea4495ac5fd922a6ce6290b2c8c) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-whitelist {
  background: url(/images/whitelist.svg?98b388cf1fcd65bb8bbbc48a272d0513) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-postage {
  background: url(/images/postage.svg?0a243c528e37e8bb357d3e73d24099fc) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-payments {
  background: url(/images/credit-card.svg?83f419e87a914a221bce7f706ed0a130) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-appeal-settings {
  background: url(/images/appeal-setting.svg?a7b7d04cf6ff1bf6ed18770afcb6fa5e) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-reports {
  background: url(/images/report.svg?4589f058d46990574f2bc9be0f4be5e7) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-administration {
  background: url(/images/3rd-party-management.svg?77984ffe793dab8f99552a82eeb20df3) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-pcn-printer {
  background: url(/images/printer.svg?302998f07e002493aaa3dbab90817421) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-download {
  background: url(/images/download-menu-icon.svg?8b640fa952c825fa05d9604e5415207f) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-tv {
  background: url(/images/tv-icon.svg?b35d87b62fe848902b7a85d5c3c7dc56) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-setting {
  background: url(/images/setting-main.svg?b049280699b58fe5ac4ec369c6e1ca9c) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a span.icon.icon-billing {
  background: url(/images/billing-icon.svg?cba4eb56289ad0030f277bc2d0768501) no-repeat center;
}
.sidebar-wrapper .sidebar-menu ul li a:hover {
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.sidebar-wrapper .sidebar-menu ul li a:hover:before {
  display: block;
}
.sidebar-wrapper .sidebar-menu ul li a.custom-link {
  display: inline-block;
  vertical-align: top;
}
.sidebar-wrapper .sidebar-menu ul li a.custom-link p {
  transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  font-size: 13px;
  vertical-align: top;
  line-height: 30px;
  padding-top: 1px;
  font-weight: 500;
}
.sidebar-wrapper .sidebar-menu ul li .sidebar-submenu a:before {
  display: none !important;
}
.sidebar-wrapper .sidebar-menu ul li.active {
  background-color: var(--secondary-color);
  /*@include secondary($secondary-color);*/
}
.sidebar-wrapper .sidebar-menu ul li.active .sidebar-submenu a {
  opacity: 0.5;
}
.sidebar-wrapper .sidebar-menu ul li.active .sidebar-submenu a:hover {
  opacity: 1;
}
.sidebar-wrapper .sidebar-menu ul li.active .sidebar-submenu li.active a {
  opacity: 1;
}
.sidebar-wrapper .sidebar-menu ul li.active .sidebar-submenu li.active a:hover {
  opacity: 1;
}
.sidebar-wrapper .sidebar-menu ul li.active a {
  opacity: 1;
}
.sidebar-wrapper .sidebar-menu ul li.active a:before {
  display: block;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  content: "";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 10px;
  top: 22px;
  width: 13px;
  height: 7px;
  background: url(/images/nav-down-arrow.svg?7c40e9270092c3a2aeada324ad1f5f2b) no-repeat center;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu {
  margin-bottom: 10px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
  padding: 7px 15px 7px 15px;
  font-size: 12px;
  position: relative;
  display: flex;
  align-items: center;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a span {
  display: inline-block;
  vertical-align: middle;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a span.icon {
  width: 30px;
  height: 22px;
  margin-left: 0.2rem;
  font-size: 1.2rem;
  margin-right: 0.2rem;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a span.icon.icon-subnav {
  background: url(/images/subnav-arrow.svg?d61904ede3d4ad46d0d12c74b80b0a54) no-repeat center;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a p {
  transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  display: inline;
  margin: 0;
  white-space: nowrap;
  font-size: 12px;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a.label, .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a.badge {
  float: right;
  margin-top: 0px;
}
.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}
.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 10px;
}
.sidebar-wrapper .sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  /*@include secondary($secondary-color);*/
  background-color: var(--secondary-color);
  padding: 15px 18px;
}
.sidebar-wrapper .sidebar-footer a {
  color: #FFFFFF;
  font-size: 15px;
  text-decoration: none;
}
.sidebar-wrapper .sidebar-footer a span {
  display: inline-block;
  vertical-align: middle;
}
.sidebar-wrapper .sidebar-footer a span.icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.sidebar-wrapper .sidebar-footer a span.icon.icon-dashboard {
  background: url(/images/logout.svg?2b55272dd8968b8b3f0509df6b601702) no-repeat center;
}
.sidebar-wrapper .sidebar-footer a span.text {
  opacity: 0.5;
  font-weight: 400;
  transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  display: inline;
  margin: 0;
  white-space: nowrap;
  font-size: 14px;
}

.sidebar-collapse .page-content {
  padding-left: 65px;
  width: auto;
}
@media (max-width: 991px) {
  .sidebar-collapse .page-content {
    padding-left: 0px;
  }
}
.sidebar-collapse .sidebar-wrapper {
  overflow: hidden;
  margin-left: 0;
  width: 65px;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper {
    transition: all 0.3s ease;
    width: 250px;
    z-index: 9999 !important;
    left: 0px;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-header {
  padding: 22px 10px;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-header {
    padding: 10px 10px !important;
    text-align: left;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-header a.brand-logo {
  display: none;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-header a.brand-logo {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-header a.brand-cross {
    display: inline-block;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-header a.brand-circle {
  display: inline-block;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-header a.brand-circle {
    display: none;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu {
  padding: 10px 0px;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li {
  white-space: nowrap;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a {
  padding: 10px 15px 10px 15px;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a span.badge {
  display: none;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a span.badge {
    display: inline-block;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a span {
  display: inline-block;
  vertical-align: middle;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a.custom-link {
  width: 60px;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a.custom-link {
    width: 235px;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a.custom-link p {
  margin-left: -10px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: hidden;
  display: none;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-menu ul li a.custom-link p {
    margin-left: 0px;
    visibility: visible;
    display: inline;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  white-space: nowrap;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
  padding: 7px 15px 7px 15px;
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a p {
  margin-left: -10px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: hidden;
  display: none;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a p {
    margin-left: 0px;
    visibility: visible;
    display: inline;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  opacity: 0;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
    opacity: 1;
  }
}
.sidebar-collapse .sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}
.sidebar-collapse .sidebar-wrapper .sidebar-footer a span.text {
  margin-left: -10px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: hidden;
  display: none;
}
@media (max-width: 991px) {
  .sidebar-collapse .sidebar-wrapper .sidebar-footer a span.text {
    margin-left: 0px;
    visibility: visible;
    display: inline;
  }
}
.sidebar-collapse .sidebar-wrapper:hover {
  transition: all 0.3s ease;
  width: 250px;
  z-index: 9999 !important;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-header {
  padding: 8px 30px;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-header a.brand-logo {
  display: inline-block;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-header a.brand-circle {
  display: none;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li {
  white-space: nowrap;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li a {
  padding: 10px 15px 10px 15px;
  display: inline-block;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li a span.badge {
  display: inline-block;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li a span {
  display: inline-block;
  vertical-align: middle;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li a.custom-link {
  width: 235px;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu ul li a.custom-link p {
  margin-left: 0px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: visible;
  display: inline;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
  padding: 7px 15px 7px 15px;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu .sidebar-dropdown .sidebar-submenu li a p {
  margin-left: 0px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: visible;
  display: inline;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-menu .sidebar-dropdown > a:after {
  opacity: 1;
}
.sidebar-collapse .sidebar-wrapper:hover .sidebar-footer a span.text {
  margin-left: 0px;
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  visibility: visible;
  display: inline;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 10px;
  height: 3px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.page-wrapper {
  /*height: 100vh;*/
}

.page-content {
  padding-left: 250px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  height: 100vh;
}
@media (max-width: 991px) {
  .page-content {
    padding-left: 0px;
    height: 100%;
  }
}

.signature img {
  max-width: 100%;
}

.main-container-area {
  padding: 30px 15px;
}
@media (max-width: 767px) {
  .main-container-area {
    padding: 30px 0px;
  }
}
.main-container-area .o-page-heading-mobile {
  display: none;
  margin-bottom: 15px;
}
.main-container-area .o-page-heading-mobile .site-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2F48;
  margin-bottom: 5px;
}
.main-container-area .o-page-heading-mobile p {
  font-size: 13px;
  color: #1F2F48;
}
@media (max-width: 991px) {
  .main-container-area .o-page-heading-mobile {
    display: block;
  }
}
.main-container-area .inner-heading .heading-area {
  align-content: space-between;
  padding: 0rem 0rem 0.75rem;
  align-items: center;
  display: flex;
}
.main-container-area .inner-heading .heading-area .head {
  font-size: 16px;
  font-weight: 600;
  color: #1F2F48;
}
.main-container-area .inner-heading .heading-area .head span {
  font-weight: 400;
}
.main-container-area .inner-heading .heading-area .button-area {
  display: flex;
  margin-left: auto;
  flex: 0 0 auto;
  width: auto;
}
.main-container-area .inner-heading .heading-area .button-area .o-payment-block {
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1em;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  display: inline-flex;
  white-space: nowrap;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  background: transparent;
  border-color: #3f4f5d;
  border: solid 1px;
  border-radius: 4px;
  color: #3f4f5d;
}
@media (max-width: 690px) {
  .main-container-area .inner-heading .heading-area .button-area .o-payment-block {
    display: inline-block;
    width: 100%;
  }
}
.main-container-area .inner-heading .heading-area .text-block {
  font-weight: 600;
  white-space: nowrap;
}
.main-container-area .inner-heading .heading-area .text-block_merron {
  color: #C3574F;
}
.main-container-area .inner-heading .heading-area.desktop .button-area {
  margin-left: 0px;
}
@media (max-width: 1280px) {
  .main-container-area .inner-heading .heading-area.desktop {
    align-items: start;
    flex-direction: column;
  }
  .main-container-area .inner-heading .heading-area.desktop .button-area {
    margin-left: 0px;
  }
}
@media (max-width: 1280px) and (max-width: 1280px) {
  .main-container-area .inner-heading .heading-area.desktop .button-area {
    align-items: center;
  }
}
@media (max-width: 1280px) and (max-width: 690px) {
  .main-container-area .inner-heading .heading-area.desktop .button-area {
    flex-direction: column;
    align-items: center;
    display: inline-block;
    text-align: center;
  }
  .main-container-area .inner-heading .heading-area.desktop .button-area .ml-1 {
    margin-left: 0px !important;
  }
}
@media (max-width: 991px) {
  .main-container-area .inner-heading .heading-area.tablet {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .main-container-area .inner-heading .heading-area.tablet .button-area {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .main-container-area .inner-heading .heading-area.mobile {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 640px) and (max-width: 991px) {
  .main-container-area .inner-heading .heading-area.mobile .button-area {
    margin-left: 0;
  }
}
.main-container-area .inner-sub-heading .heading-area {
  align-content: space-between;
  padding: 0.5rem 0rem 0.5rem;
  align-items: center;
  display: flex;
}
.main-container-area .inner-sub-heading .heading-area .head {
  font-size: 15px;
  font-weight: 600;
  color: #172436;
}
.main-container-area .inner-sub-heading .heading-area .button-area {
  display: flex;
  margin-left: auto;
}

.o-outstanding-block .card-body {
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.o-outstanding-block .card-body .o-bottom-anchorlist {
  display: flex;
  margin-top: auto;
}

.custom-modal h3.modal-title {
  font-size: 15px;
  color: #FFFFFF;
}
.custom-modal .btn-close {
  background: url(/images/modal-close.svg?dd287ba573c6a411229b9197c0ef460f) no-repeat center;
}
.custom-modal .modal-content {
  padding: 0px 0px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.custom-modal .modal-content .modal-header {
  display: flex;
  align-content: space-between;
  padding: 15px 18px 13px;
  background: var(--tertiary-color);
  align-items: center;
  min-height: 50px;
}
.custom-modal .modal-content .modal-body {
  padding: 18px 18px 18px;
}
.custom-modal .modal-content .modal-body .inner-header {
  display: flex;
  align-content: space-between;
  padding: 20px 18px 10px;
  border-bottom: solid 1px #eee;
  align-items: center;
}
@media (max-width: 991px) {
  .custom-modal .modal-content .modal-body .inner-header {
    flex-direction: column;
    align-items: start;
  }
}
.custom-modal .modal-content .modal-body .inner-header .head {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #1F2F48;
}
.custom-modal .modal-content .modal-body .inner-header .head span {
  color: #C3574F;
}
.custom-modal .modal-content .modal-body .inner-header .head small {
  font-size: 15px;
  font-weight: 500;
}
.custom-modal .modal-content .modal-body.image-area h5 {
  margin-bottom: 12px;
  font-weight: 400;
}
.custom-modal .modal-content .modal-body.image-area img {
  max-width: 100%;
}
.custom-modal .modal-content .modal-body .image-area img {
  max-width: 100%;
}

.image-block img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
}

.box-area {
  padding: 0px;
  border: solid 1px #eee;
  border-radius: 10px;
}
.box-area .o-table-area {
  padding: 15px 15px;
}

.attachement-gallery-slider .slick-slide {
  position: relative;
}
.attachement-gallery-slider .slick-slide .delete {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  border-radius: 50px;
  top: 10px;
  right: 10px;
  z-index: 99;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.attachement-gallery-slider .slick-slide .delete img {
  width: 18px;
  height: 20px;
  display: inline-block;
  line-height: 30px;
  margin-top: 4px;
}
.attachement-gallery-slider .slick-slide .delete:hover {
  background: rgba(0, 0, 0, 0.95);
  transition: all ease-in-out 0.3s;
}

.o-button-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .o-button-block {
    align-items: start;
    flex-direction: column;
  }
}
.o-button-block .button-inner-block {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .o-button-block .button-inner-block {
    margin: 5px 0px;
  }
}

.appeal-main-iframe {
  width: 100%;
  height: 500px;
}

.c-drop-zone .dropzone {
  padding: 0px 0px;
  border: none;
}
.c-drop-zone .dropzone img {
  margin-bottom: 15px;
}
.c-drop-zone .dropzone .dz-message {
  margin: 0em 0;
}
.c-drop-zone .dropzone .dz-preview .dz-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.image-items-area {
  overflow-y: auto;
  height: 260px;
  overflow-x: hidden;
}
.image-items-area.h-140 {
  height: 150px;
}
.image-items-area.h-150 {
  height: 160px;
}
.image-items-area .image-item-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.image-items-area .image-item-block .delete {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  border-radius: 50px;
  top: 10px;
  right: 10px;
  z-index: 99;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.image-items-area .image-item-block .delete img {
  width: 18px;
  height: 20px;
  display: inline-block;
  line-height: 30px;
  margin-top: 4px;
}
.image-items-area .image-item-block .delete:hover {
  background: rgba(0, 0, 0, 0.95);
  transition: all ease-in-out 0.3s;
}
.image-items-area .image-item-block .image-item {
  display: flex;
  height: 160px;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
}
@media (max-width: 1023px) {
  .image-items-area .image-item-block .image-item {
    height: 140px;
  }
}
@media (max-width: 767px) {
  .image-items-area .image-item-block .image-item {
    height: 120px;
  }
}
.image-items-area .image-item-block .image-item a {
  width: 100%;
}
.image-items-area .image-item-block .image-item img {
  width: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.image-items-area .image-item-block .o-custom-button {
  display: flex;
  align-items: center;
}
.image-items-area .image-item-block .o-custom-button img {
  margin-right: 5px;
}

.note-toolbar.card-header {
  display: initial !important;
}

.table {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.table.break-word tr td {
  word-break: break-word !important;
}

.o-inner-content-block {
  align-items: top;
  margin-bottom: 10px;
}
.o-inner-content-block i {
  margin-right: 8px;
  margin-top: 4px;
}

#trackingmap {
  height: 400px !important;
}

.device-tab-btn-group {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  overflow: hidden;
}
.device-tab-btn-group .btn {
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-weight: 500;
}
.device-tab-btn-group.btn.active {
  background-color: #e3e6ee;
  color: #000;
  font-weight: 600;
}

.o-custom-tab .nav-tabs {
  border-bottom: 1px solid #cbd0da;
  flex-wrap: inherit !important;
}
.o-custom-tab .nav-item {
  margin-right: 0px;
}
.o-custom-tab .nav-item a.nav-link {
  padding: 10px 0px;
  margin: 0px 15px;
  position: relative;
  color: #3f4f5d;
  outline: none;
  border: none;
  font-size: 14px;
}
.o-custom-tab .nav-item a.nav-link:after {
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  display: none;
  bottom: 0px;
}
.o-custom-tab .nav-item a.nav-link:hover, .o-custom-tab .nav-item a.nav-link.active {
  background: transparent;
  color: var(--secondary-color);
  outline: none;
  border: none;
}
.o-custom-tab .nav-item a.nav-link:hover:after, .o-custom-tab .nav-item a.nav-link.active:after {
  display: block;
}
.o-custom-tab .nav-item a.nav-link.active {
  font-weight: 700;
}
.o-custom-tab .nav-item:first-child a.nav-link {
  margin-left: 0px;
}
.o-custom-tab .scrtabs-tab-container {
  position: relative;
}
.o-custom-tab .scrtabs-tab-container .scrtabs-tab-scroll-arrow {
  border: none;
  padding-top: 0px;
  height: 40px;
  position: absolute;
  z-index: 999;
}
.o-custom-tab .scrtabs-tab-container .scrtabs-tab-scroll-arrow span {
  display: none;
}
.o-custom-tab .scrtabs-tab-container .scrtabs-tab-scroll-arrow.scrtabs-disable {
  opacity: 0;
}
.o-custom-tab .scrtabs-tab-container .scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-left {
  left: -15px;
  background: url(/images/tab-arrow-left.svg?82a26be9984965a8f6767356a744ee36) no-repeat center;
}
.o-custom-tab .scrtabs-tab-container .scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-right {
  right: 0px;
  background: url(/images/tab-arrow-right.svg?9ed88eeeaaa9d01ef619225deb5de585) no-repeat center;
}

.o-custom-tab-pane {
  padding-top: 30px;
}
.o-custom-tab-pane .heading {
  font-size: 20px;
  font-weight: bold;
  color: #1F2F48;
}

.o-custom-inner-tab {
  display: flex;
  align-content: space-between;
  padding: 0px 18px 0px;
  background: var(--tertiary-color);
  border-radius: 10px 10px 0px 0px;
  align-items: center;
}
.o-custom-inner-tab .nav-tabs {
  min-height: 50px;
  border-bottom: 0px !important;
}
.o-custom-inner-tab .nav-item {
  margin-right: 30px;
}
.o-custom-inner-tab .nav-item a.nav-link {
  padding: 16px 0px 12px;
  position: relative;
  color: #FFFFFF;
  outline: none;
  border: none;
}
.o-custom-inner-tab .nav-item a.nav-link:after {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  bottom: -3px;
  content: "";
  left: 0;
  display: none;
}
.o-custom-inner-tab .nav-item a.nav-link:hover, .o-custom-inner-tab .nav-item a.nav-link.active {
  background: transparent;
  color: #FFFFFF;
  outline: none;
  border: none;
}
.o-custom-inner-tab .nav-item a.nav-link:hover:after, .o-custom-inner-tab .nav-item a.nav-link.active:after {
  display: block;
}
.o-custom-inner-tab .nav-item a.nav-link.active {
  font-weight: 700;
}
.o-custom-inner-tab .button-area {
  display: flex;
  margin-left: auto;
}
@media (max-width: 991px) {
  .o-custom-inner-tab .button-area {
    margin-top: 10px;
  }
}
.o-custom-inner-tab .button-area ul li {
  display: inline-block;
  margin-left: 1.75rem;
  font-size: 14px;
}
@media (min-width: 1367px) {
  .o-custom-inner-tab .button-area ul li {
    margin-left: 2.25rem;
  }
}
.o-custom-inner-tab .button-area ul li span img {
  margin-right: 5px;
  margin-top: -4px;
}
.o-custom-inner-tab .button-area ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.o-custom-inner-tab .button-area ul li a font {
  opacity: 0.75;
  transition: all ease-in-out 0.3s;
}
.o-custom-inner-tab .button-area ul li a:hover {
  transition: all ease-in-out 0.3s;
}
.o-custom-inner-tab .button-area ul li a:hover font {
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.o-custom-inner-tab .button-area ul li .dropdown .dropdown-toggle:after {
  display: none;
}
.o-custom-inner-tab .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show {
  top: 15px !important;
  border: none !important;
  font-size: 14px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  width: 190px;
}
.o-custom-inner-tab .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li {
  width: 100%;
  display: block;
  margin-left: 0px;
  position: relative;
}
.o-custom-inner-tab .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a {
  color: #3f4f5d;
  padding: 0.4rem 1rem;
  padding-left: 30px;
  font-size: 13px;
}
.o-custom-inner-tab .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a:after {
  width: 14px;
  height: 12px;
  background: url(/images/green-tick.svg?9769dce076ee293fb7453a731278fe72) no-repeat;
  content: "";
  left: 10px;
  top: 11px;
  position: absolute;
}
.o-custom-inner-tab .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a:active {
  background-color: #FFFFFF;
}
.o-custom-inner-tab .button-area ul li .o-filter-block, .o-custom-inner-tab .button-area ul li .o-filter-new {
  position: relative;
}
.o-custom-inner-tab .button-area ul li .o-filter-block a.c-filter, .o-custom-inner-tab .button-area ul li .o-filter-new a.c-filter {
  display: flex;
}
.o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 25px 25px;
  font-size: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  width: 500px;
  right: 0;
  top: 35px;
}
@media (max-width: 767px) {
  .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new {
    width: 300px;
  }
}
.o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box .heading, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new .heading, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box .heading, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new .heading {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E1E5EE;
}
.o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box .heading h3, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new .heading h3, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box .heading h3, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new .heading h3 {
  color: #3f4f5d;
  font-size: 18px;
}
.o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box .o-form-area span.label, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new .o-form-area span.label, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box .o-form-area span.label, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new .o-form-area span.label {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4em;
}
.o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-box .o-form-area .o-close, .o-custom-inner-tab .button-area ul li .o-filter-block .o-filter-new .o-form-area .o-close, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-box .o-form-area .o-close, .o-custom-inner-tab .button-area ul li .o-filter-new .o-filter-new .o-form-area .o-close {
  position: absolute;
  right: 25px;
  top: 15px;
}
.o-custom-inner-tab .button-area ul li .o-filter-block.show .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-block.show .o-filter-new, .o-custom-inner-tab .button-area ul li .o-filter-new.show .o-filter-box, .o-custom-inner-tab .button-area ul li .o-filter-new.show .o-filter-new {
  display: block;
}
.o-custom-inner-tab .button-area.seperator {
  background: none;
}
.o-custom-inner-tab .button-area.seperator ul {
  font-size: 0px;
}
.o-custom-inner-tab .button-area.seperator ul li {
  border-left: solid 1px #1F2F48;
  padding: 0px 15px;
  margin-left: 0px;
  font-size: 14px;
  line-height: 1em;
}
.o-custom-inner-tab .button-area.seperator ul li:first-child {
  padding: 0px 15px 0px 0px;
  border-left: none;
}
.o-custom-inner-tab .button-area.seperator-white {
  background: none;
}
.o-custom-inner-tab .button-area.seperator-white ul {
  font-size: 0px;
}
.o-custom-inner-tab .button-area.seperator-white ul li {
  border-left: solid 1px #fff;
  padding: 0px 15px;
  margin-left: 0px;
  font-size: 14px;
  line-height: 1em;
}
.o-custom-inner-tab .button-area.seperator-white ul li:first-child {
  padding: 0px 0px 0px 0px;
  border-left: none;
}

.o-custom-inner-tab-pane {
  padding: 18px 18px;
}
.o-custom-inner-tab-pane .heading {
  font-size: 20px;
  font-weight: bold;
  color: #1F2F48;
}

.card {
  padding: 0px;
  border: none;
  border-radius: 10px;
  /*overflow: hidden;*/
}
.card .dropdown .dropdown-toggle:after {
  display: none;
}
.card .dropdown.o-extra-menu .dropdown-menu.show {
  top: 15px !important;
  border: none !important;
  font-size: 14px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  width: 190px;
}
.card .dropdown.o-extra-menu .dropdown-menu.show li {
  width: 100%;
  display: block;
  margin-left: 0px;
  position: relative;
}
.card .dropdown.o-extra-menu .dropdown-menu.show li a {
  color: #3f4f5d;
  padding: 0.75rem 1rem;
  padding-left: 20px;
  font-size: 13px;
}
.card .dropdown.o-extra-menu .dropdown-menu.show li a.dropdown-item {
  white-space: inherit !important;
}
.card .dropdown.o-extra-menu .dropdown-menu.show li a:active {
  background-color: #FFFFFF;
}
.card .card-header {
  display: flex;
  align-content: space-between;
  padding: 15px 18px 13px;
  background: var(--tertiary-color);
  align-items: center;
  min-height: 50px;
  border-radius: 10px 10px 0px 0px;
}
.card .card-header .head {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: capitalize;
}
.card .card-header .head span {
  color: #C3574F;
}
.card .card-header .head small {
  font-size: 15px;
  font-weight: 300;
}
.card .card-header .spinner {
  margin-left: 10px;
}
.card .card-header .spinner .spinner-border {
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  filter: brightness(1000%);
}
.card .card-header .button-area {
  display: flex;
  margin-left: auto;
}
.card .card-header .button-area ul li {
  display: inline-block;
  margin-left: 1.75rem;
  font-size: 14px;
  color: #FFFFFF;
}
@media (min-width: 1367px) {
  .card .card-header .button-area ul li {
    margin-left: 2.25rem;
  }
}
.card .card-header .button-area ul li span img {
  margin-right: 5px;
  margin-top: -4px;
}
.card .card-header .button-area ul li span.colorbox {
  margin-left: 8px;
  display: inline-block;
  width: 18px;
  height: 18px;
}
.card .card-header .button-area ul li span.colorbox.lightblue {
  background: #85D0DB;
}
.card .card-header .button-area ul li span.colorbox.darkblue {
  background: #4A6DB5;
}
.card .card-header .button-area ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.card .card-header .button-area ul li a font {
  opacity: 0.75;
  transition: all ease-in-out 0.3s;
}
.card .card-header .button-area ul li a:hover {
  transition: all ease-in-out 0.3s;
}
.card .card-header .button-area ul li a:hover font {
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.card .card-header .button-area ul li .dropdown .dropdown-toggle:after {
  display: none;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show {
  top: 15px !important;
  border: none !important;
  font-size: 14px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  width: 190px;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li {
  width: 100%;
  display: block;
  margin-left: 0px;
  position: relative;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a {
  color: #3f4f5d;
  padding: 0.4rem 1rem;
  padding-left: 30px;
  font-size: 13px;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a.dropdown-item {
  white-space: inherit !important;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a:after {
  width: 14px;
  height: 12px;
  background: url(/images/green-tick.svg?9769dce076ee293fb7453a731278fe72) no-repeat;
  content: "";
  left: 10px;
  top: 11px;
  position: absolute;
}
.card .card-header .button-area ul li .dropdown.o-extra-menu .dropdown-menu.show li a:active {
  background-color: #FFFFFF;
}
.card .card-header .button-area ul li .o-filter-block {
  position: relative;
}
.card .card-header .button-area ul li .o-filter-block .o-filter-box {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 25px 25px;
  font-size: 1rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  width: 500px;
  right: 0;
  top: 35px;
}
@media (max-width: 767px) {
  .card .card-header .button-area ul li .o-filter-block .o-filter-box {
    width: 300px;
  }
}
.card .card-header .button-area ul li .o-filter-block .o-filter-box .heading {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E1E5EE;
}
.card .card-header .button-area ul li .o-filter-block .o-filter-box .heading h3 {
  color: #3f4f5d;
  font-size: 18px;
}
.card .card-header .button-area ul li .o-filter-block .o-filter-box .o-form-area span.label {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4em;
  color: #3f4f5d;
}
.card .card-header .button-area ul li .o-filter-block .o-filter-box .o-form-area .o-close {
  position: absolute;
  right: 25px;
  top: 15px;
}
.card .card-header .button-area ul li .o-filter-block.show .o-filter-box {
  display: block;
}
.card .card-header .button-area.seperator {
  background: none;
}
.card .card-header .button-area.seperator ul {
  font-size: 0px;
}
.card .card-header .button-area.seperator ul li {
  border-left: solid 1px #1F2F48;
  padding: 0px 15px;
  margin-left: 0px;
  font-size: 14px;
  line-height: 1em;
}
.card .card-header .button-area.seperator ul li:first-child {
  padding: 0px 15px 0px 0px;
  border-left: none;
}
.card .card-header .button-area.seperator-white {
  background: none;
}
.card .card-header .button-area.seperator-white ul {
  font-size: 0px;
}
.card .card-header .button-area.seperator-white ul li {
  border-left: solid 1px #fff;
  padding: 0px 15px;
  margin-left: 0px;
  font-size: 14px;
  line-height: 1em;
}
.card .card-header .button-area.seperator-white ul li:first-child {
  padding: 0px 15px 0px 0px;
  border-left: none;
}
@media (max-width: 767px) {
  .card .card-header.tablet {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 640px) {
  .card .card-header.mobile {
    flex-direction: column;
    align-items: start;
  }
  .card .card-header.mobile .button-area {
    padding-top: 10px;
  }
  .card .card-header.mobile .button-area ul li {
    margin-left: 0px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 13px;
  }
}
.card .card-inner-header {
  display: flex;
  align-content: space-between;
  padding: 20px 18px 10px;
  border-bottom: solid 1px #eee;
  align-items: center;
}
.card .card-inner-header .o-list-link {
  margin-left: auto !important;
}
@media (max-width: 1100px) {
  .card .card-inner-header.desktop {
    flex-direction: column;
    align-items: start;
  }
  .card .card-inner-header.desktop .o-list-link {
    margin-left: inherit !important;
  }
}
@media (max-width: 991px) {
  .card .card-inner-header.tablet {
    flex-direction: column;
    align-items: start;
  }
  .card .card-inner-header.tablet .o-list-link {
    margin-left: inherit !important;
  }
}
@media (max-width: 560px) {
  .card .card-inner-header.mobile {
    flex-direction: column;
    align-items: start;
  }
  .card .card-inner-header.mobile .o-list-link {
    margin-left: inherit !important;
  }
}
.card .card-inner-header .head {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  color: #1F2F48;
}
.card .card-inner-header .head span {
  color: #C3574F;
}
.card .card-inner-header .head small {
  font-size: 15px;
  font-weight: 500;
}
.card .card-body {
  padding: 18px 18px;
}
.card .card-body p {
  color: #3f4f5d;
}
.card .card-body p a {
  color: #3f4f5d;
}
.card .card-body p a:hover {
  text-decoration: none;
  color: #3f4f5d;
}
.card .card-body a {
  color: #3f4f5d;
}
.card .card-body a:hover {
  text-decoration: none;
  color: #3f4f5d;
}
.card .card-body .card-body {
  overflow-Y: auto;
  overflow-x: auto;
}
.card .card-body .card-body.vertical-100 {
  height: 100px;
}
.card .card-body .card-body.vertical-150 {
  height: 150px;
}
.card .card-body .card-body.vertical-200 {
  height: 200px;
}
.card .card-body .card-body.vertical-300 {
  height: 300px;
}

.iconic-card-area .card .card-body .o-iconic-block {
  display: flex;
  align-items: center;
}
.iconic-card-area .card .card-body .o-iconic-block .icon {
  margin-right: 25px;
}
.iconic-card-area .card .card-body .o-iconic-block .icon img {
  max-width: 50px;
}
.iconic-card-area .card .card-body .o-iconic-block .text {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 600;
}
.iconic-card-area .card .card-body .o-iconic-block .text span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #C4C4C4;
}

.o-textblock-card-area .card .card-body .o-text-block {
  display: flex;
  align-items: center;
}
@media (max-width: 560px) {
  .o-textblock-card-area .card .card-body .o-text-block {
    flex-direction: column;
    align-items: inherit;
  }
}
.o-textblock-card-area .card .card-body .o-text-block .left-panel {
  margin-right: 10px;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
}
.o-textblock-card-area .card .card-body .o-text-block .left-panel .c-text {
  margin: 5px 0px;
}
.o-textblock-card-area .card .card-body .o-text-block .left-panel .c-text span {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}
.o-textblock-card-area .card .card-body .o-text-block .right-panel {
  margin-left: auto;
}
@media (max-width: 560px) {
  .o-textblock-card-area .card .card-body .o-text-block .right-panel {
    margin-left: inherit;
    margin-top: 15px;
  }
}

.o-toast {
  position: relative;
  padding: 10px 10px;
}
.o-toast .close {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
}
.o-toast.alert-success {
  background: #6FCF97;
  border: solid 1px #6FCF97;
  color: #0F552C;
}
.o-toast.alert-success a.close {
  color: #0F552C;
  text-decoration: none;
}
.o-toast.alert-error {
  background: #DE4A4A;
  border: solid 1px #DE4A4A;
  color: #020000;
}
.o-toast.alert-error a.close {
  color: #020000;
  text-decoration: none;
}
.o-toast .toast-icon {
  margin-right: 5px;
}

.summernote-area .card-header {
  background: #FFFFFF !important;
  padding: 0px 6px 6px 6px !important;
}
.summernote-area .card-header .btn-group .btn {
  background: #FFFFFF !important;
  padding: 10px 10px !important;
}
.summernote-area .card-header .btn-group .btn:hover,
.summernote-area .card-header .btn-group .btn.active {
  background: #FFFFFF !important;
  padding: 10px 10px !important;
}

.table {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.table tr td {
  line-height: 1.2;
  padding: 0.75rem 0.5rem 0.75rem 0.25rem;
  vertical-align: middle;
  color: #3f4f5d;
}
.table tr td:first-child {
  padding: 0.75rem 0rem;
  padding-right: 10px;
}
.table tr td.head {
  font-weight: 600;
}
.table tr td .active {
  display: inline-block;
  padding: 9px 0.65rem 8px;
  border-radius: 4px;
  color: #1F2F48;
  background: #ecf1f8;
  text-align: center;
  text-decoration: none;
  border: solid 1px #677D9F;
}
.table tr td .accepted {
  color: #FFFFFF;
  background: #38C172;
}
.table tr td .rejected {
  color: #FFFFFF;
  background: #E3342F;
}
.table tr td .reviews {
  color: #FFFFFF;
  background: #172436;
}
.table tr td .view {
  color: #172436;
  border: solid 1px #677D9F;
  background: transparent;
  padding: 9px 1.5rem 8px;
  font-weight: 500;
}
.table tr td .acknowledge {
  color: #172436;
  border: solid 1px #677D9F;
  background: transparent;
  padding: 9px 1.5rem 8px;
  font-weight: 500;
}
.table tr td .invoice {
  color: #172436;
  border: solid 1px #C7D3E4;
  background: #C7D3E4;
  padding: 9px 1.5rem 8px;
  font-weight: 600;
  border-radius: 4px;
}
.table tr td .unpaid {
  display: inline-block;
  padding: 9px 0.65rem 8px;
  border-radius: 4px;
  color: #00B0F0;
  background-color: rgba(0, 176, 240, 0.23);
  text-align: center;
  text-decoration: none;
  border: solid 1px;
  border-color: rgba(0, 176, 240, 0.23);
  font-weight: 600;
  text-transform: capitalize;
}
.table tr td .paid {
  display: inline-block;
  padding: 9px 0.65rem 8px;
  border-radius: 4px;
  color: #00B050;
  background-color: rgba(0, 176, 80, 0.23);
  text-align: center;
  text-decoration: none;
  border: solid 1px;
  border-color: rgba(0, 176, 80, 0.23);
  font-weight: 600;
  text-transform: capitalize;
}
.table tr td .overdue {
  display: inline-block;
  padding: 9px 0.65rem 8px;
  border-radius: 4px;
  color: #FF0000;
  background-color: rgba(255, 0, 0, 0.23);
  text-align: center;
  text-decoration: none;
  border: solid 1px;
  border-color: rgba(255, 0, 0, 0.23);
  font-weight: 600;
  text-transform: capitalize;
}
.table tr td a, .table tr td div {
  color: #3f4f5d;
  transition: all ease-in-out 0.3s;
}
.table tr td a:hover, .table tr td div:hover {
  color: #3f4f5d;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.table tr td a.button, .table tr td div.button {
  display: inline-block;
  padding: 9px 0.65rem 8px;
  border-radius: 4px;
  color: #677D9F;
  background: #ecf1f8;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 1367px) {
  .table tr td a.button, .table tr td div.button {
    padding: 10px 1rem 9px;
  }
}
.table tr td a.button:hover, .table tr td div.button:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.button.accepted, .table tr td div.button.accepted {
  color: #FFFFFF;
  background: #38C172;
}
.table tr td a.button.rejected, .table tr td div.button.rejected {
  color: #FFFFFF;
  background: #E3342F;
}
.table tr td a.button.reviews, .table tr td div.button.reviews {
  color: #FFFFFF;
  background: #172436;
}
.table tr td a.button.actions, .table tr td div.button.actions {
  color: #FFFFFF;
  background: #4573B6;
  border: solid 1px #4573B6;
  text-transform: uppercase;
  margin: 1px 2px;
}
.table tr td a.button.actions:hover, .table tr td div.button.actions:hover {
  color: #FFFFFF;
  background: #3461a2;
}
.table tr td a.button.view-image, .table tr td div.button.view-image {
  color: #FFFFFF;
  background: #426EA3;
}
.table tr td a.button.view-image:hover, .table tr td div.button.view-image:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.button.view, .table tr td div.button.view {
  color: #172436;
  border: solid 1px #677D9F;
  background: transparent;
  padding: 9px 1.5rem 8px;
  font-weight: 500;
}
.table tr td a.button.view:hover, .table tr td div.button.view:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.button.acknowledge, .table tr td div.button.acknowledge {
  color: #172436;
  border: solid 1px #677D9F;
  background: transparent;
  padding: 9px 1.5rem 8px;
  font-weight: 500;
}
.table tr td a.button.acknowledge:hover, .table tr td div.button.acknowledge:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.remove-text, .table tr td div.remove-text {
  color: #E3342F;
  text-decoration: none;
}
.table tr td .in {
  display: inline-block;
  padding: 6px 1rem 5px;
  border-radius: 4px;
  color: #677D9F;
  background: #ecf1f8;
  border: solid 1px #677D9F;
  text-decoration: none;
}
.table tr td .out {
  display: inline-block;
  padding: 6px 1rem 5px;
  border-radius: 4px;
  color: #677D9F;
  background: #c1d9f0;
  border: solid 1px #677D9F;
  text-decoration: none;
}
.table tr td .thirdpartyname {
  font-weight: 600;
  color: #FFFFFF;
  background: #5987BE;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-size: 21px;
}
.table tr th {
  padding: 0.75rem 0.25rem;
  font-weight: 600;
  line-height: 1.2;
}
.table tr th:first-child {
  padding: 0.75rem 0rem;
  padding-right: 10px;
}
.table.head-table {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.table.head-table tr td {
  padding: 0.85rem 1rem;
  line-height: 1.2;
  /*.vrm-number{
     display:inline-block;
     padding:8px 20px 7px;
     border-radius:4px;
     border:solid 1px $darkbrown;
     color:$darkbrown;
     background:#f7f3eb;
  }*/
}
.table.head-table tr td .user {
  display: flex;
  align-items: center;
}
.table.head-table tr td .user .sort {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: #e2e6ef;
  border-radius: 100px;
  line-height: 30px;
  color: #FFFFFF;
  margin-right: 10px;
  text-align: center;
}
.table.head-table tr td .note {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 15px;
}
.table.head-table tr td .note .dot {
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: #e2e6ef;
  border-radius: 100px;
  margin-right: 10px;
}
.table.head-table tr td .day {
  display: flex;
  align-items: center;
}
.table.head-table tr td .day .sort {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: #e2e6ef;
  border-radius: 100px;
  line-height: 30px;
  color: #FFFFFF;
  margin-right: 10px;
  text-align: center;
}
.table.head-table tr td .code {
  display: inline-block;
  padding: 8px 20px 7px;
  border-radius: 4px;
  border: solid 1px #677D9F;
  color: #677D9F;
  background: #ecf1f8;
}
.table.head-table tr td ul.action-button {
  font-size: 0px;
}
.table.head-table tr td ul.action-button li {
  display: inline-block;
  margin-right: 0.5rem;
}
.table.head-table tr th {
  padding: 1rem 1rem;
  font-weight: 600;
  background: #FBFBFD;
  line-height: 1.2;
  vertical-align: middle;
  color: #3f4f5d;
  border-top: solid 1px #e8e8e8;
  text-transform: capitalize;
  border-bottom: solid 1px #e8e8e8 !important;
}
.table.head-table tr:nth-child(3n+1) td .user .sort {
  background-color: #85D0DB;
}
.table.head-table tr:nth-child(3n+1) td .note .dot {
  background-color: #85D0DB;
}
.table.head-table tr:nth-child(3n+2) td .user .sort {
  background-color: #E06381;
}
.table.head-table tr:nth-child(3n+2) td .note .dot {
  background-color: #E06381;
}
.table.head-table tr:nth-child(3n+3) td .user .sort {
  background-color: #9099D7;
}
.table.head-table tr:nth-child(3n+3) td .note .dot {
  background-color: #9099D7;
}
.table.head-table tr:nth-child(1) td .day .sort {
  background-color: #426EA3;
}
.table.head-table tr:nth-child(2) td .day .sort {
  background-color: #AD873B;
}
.table.head-table tr:nth-child(3) td .day .sort {
  background-color: #AC4E7F;
}
.table.head-table tr:nth-child(4) td .day .sort {
  background-color: #BC7687;
}
.table.head-table tr:nth-child(5) td .day .sort {
  background-color: #A77ED9;
}
.table.head-table tr:nth-child(6) td .day .sort {
  background-color: #669EFF;
}
.table.head-table tr:nth-child(7) td .day .sort {
  background-color: #C3574F;
}
.table.iconic-table tr td {
  font-size: 17px;
}
.table.head-table > :not(:last-child) > :last-child > * {
  border-bottom-color: transparent;
}
.table .inner-table tr td {
  padding: 0px 2px;
}
.table.table-striped tbody tr:nth-of-type(odd) {
  background: #FFFFFF !important;
  --bs-table-accent-bg:$white!important;
}
.table.table-striped tbody tr:nth-of-type(even) {
  background: #FBFBFD !important;
}
.table.iconic tr span.icon {
  margin-right: 0px;
}

.o-table-area {
  overflow-Y: auto;
  overflow-x: auto;
}
.o-table-area .dataTables_wrapper {
  width: 99%;
}
.o-table-area table {
  width: 100%;
}
.o-table-area.vertical {
  height: 200px;
}
@media (max-width: 991px) {
  .o-table-area.horizontal table {
    min-width: 800px;
  }
}
.o-table-area.vertical-100 {
  height: 100px;
}
.o-table-area.vertical-150 {
  height: 150px;
}
.o-table-area.vertical-200 {
  height: 200px;
}
.o-table-area.vertical-300 {
  height: 300px;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting:after,
table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_asc:after,
table.dataTable > thead .sorting_desc:before, table.dataTable > thead .sorting_desc:after,
table.dataTable > thead .sorting_asc_disabled:before,
table.dataTable > thead .sorting_asc_disabled:after,
table.dataTable > thead .sorting_desc_disabled:before,
table.dataTable > thead .sorting_desc_disabled:after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_info {
  margin-top: 20px !important;
}

.dataTables_wrapper .custom-select {
  padding: 0.5rem 1.25rem;
}
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_info {
  margin-top: 10px !important;
}
.dataTables_wrapper .dataTables_paginate .pagination .page-item {
  margin: 0px 2px;
  font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .pagination .page-item.active a.page-link {
  background-color: #1F2F48;
  border-color: #1F2F48;
}

.o-button-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 560px) {
  .o-button-area {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .o-button-area .ml-2, .o-button-area .ml-1 {
    margin-left: 0px !important;
  }
}
@media (max-width: 1100px) {
  .o-button-area.desktop {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  .o-button-area.desktop .ml-2, .o-button-area.desktop .ml-1, .o-button-area.desktop .ml-auto {
    margin-left: 0px !important;
  }
}
.o-button-area .button-item {
  display: inline-block;
  margin-left: 0px;
}
@media (max-width: 560px) {
  .o-button-area .button-item .ml-2, .o-button-area .button-item .ml-1 {
    margin-left: 0px !important;
  }
}
@media (max-width: 560px) {
  .o-button-area .button-item {
    margin-left: 0px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .o-button-area .button-item .btn {
    display: block;
  }
}

.card-button-block {
  padding: 0px 18px;
}

.o-button-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .o-button-block {
    flex-direction: column;
  }
}
.o-button-block .button-inner-block {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .o-button-block .button-inner-block {
    margin: 5px 0px;
  }
}

.contact-histroy-block {
  align-items: top;
  padding: 15px 15px;
  background: #F7F7FE;
}
.contact-histroy-block .head-area {
  margin-right: 10px;
}
.contact-histroy-block .head-area .round {
  margin-right: 10px;
  display: inline-block;
  border-radius: 28px;
  background: #172436;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.contact-histroy-block .head-details-area {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-histroy-block .head-details-area span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-histroy-block .head-details-area span span.name {
  display: inline-block;
  margin-bottom: 0px;
  margin-right: 6px;
  font-weight: 400;
  color: #9BABC5;
}
.contact-histroy-block .head-status {
  font-weight: bold;
}

.contact-histroy-block-area {
  overflow-Y: auto;
}
.contact-histroy-block-area.vertical {
  height: 200px;
}
.contact-histroy-block-area.vertical-100 {
  height: 100px;
}
.contact-histroy-block-area.vertical-150 {
  height: 150px;
}
.contact-histroy-block-area.vertical-200 {
  height: 200px;
}
.contact-histroy-block-area.vertical-300 {
  height: 300px;
}
.contact-histroy-block-area.vertical-400 {
  height: 400px;
}
.contact-histroy-block-area .contact-histroy-block.active {
  background: #e2e6ef;
}
.contact-histroy-block-area .contact-histroy-block.active .head-area .round {
  background: #E06381;
  color: #FFFFFF;
}

.file-upload-area label {
  cursor: pointer;
}
.file-upload-area .file-upload-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.file-upload-area .file-upload-inner img {
  max-width: 90px;
  margin-bottom: 10px;
}
.file-upload-area .file-upload-inner span {
  line-height: 1.2em;
  font-size: 13px;
  width: 100%;
}
.file-upload-area .image-input {
  display: none;
}
.file-upload-area.outline {
  padding: 25px;
  border: solid 1px #eee;
  border-radius: 10px;
}

@media (max-width: 560px) {
  .o-uploadblock {
    flex-direction: column;
  }
}
.head b {
  font-weight: 700;
}

.headspan {
  margin-bottom: 30px;
}
.headspan .content {
  font-size: 16px;
  font-weight: 500;
  color: #3f4f5d;
}
@media (max-width: 991px) {
  .headspan.tablet .content {
    font-size: 14px;
    line-height: 1.3em;
  }
}

.o-ob-mid-block {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 560px) {
  .o-ob-mid-block {
    justify-content: space-between;
  }
}
.o-ob-mid-block .o-col-left {
  display: flex;
  color: #C3574F;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  margin-right: 10px;
}
.o-ob-mid-block .o-col-right p {
  color: #3f4f5d;
  line-height: 1.2;
  margin-bottom: 5px;
}
.o-ob-mid-block .o-col-right p span.first {
  color: #426EA3;
}
.o-ob-mid-block .o-col-right p span.second {
  color: #C3574F;
}

.o-bottom-anchorlist {
  display: flex;
}
.o-bottom-anchorlist ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.o-bottom-anchorlist ul li {
  display: flex;
  margin-right: 0.5rem;
  font-size: 14px;
  vertical-align: middle;
}
@media (min-width: 1367px) {
  .o-bottom-anchorlist ul li {
    margin-right: 1.5rem;
  }
}
.o-bottom-anchorlist ul li a {
  color: #3f4f5d;
  text-decoration: underline;
}
.o-bottom-anchorlist ul li a img {
  margin-top: -3px;
  margin-right: 6px;
}
.o-bottom-anchorlist ul li a:hover {
  color: #3f4f5d;
  text-decoration: none;
}

.image-slider img {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-slider.slick-slider {
  margin: 0 -6px;
}
.image-slider.slick-slider .slick-slide {
  text-align: center;
  margin-right: 6px;
  margin-left: 6px;
  height: 135px;
  overflow: hidden;
}
.image-slider.slick-slider .slick-slide a {
  width: 100%;
}
.image-slider.slick-slider .slick-arrow {
  position: absolute;
  top: -40px;
  width: 8px;
  height: 15px;
  background-size: cover !important;
}
.image-slider.slick-slider .slick-arrow:before {
  display: none;
}
.image-slider.slick-slider .slick-arrow.slick-next {
  background: url(/images/slider-arrow-white-right.svg?bdf578d1cc4193f3c8093ded0a984d27) no-repeat;
  right: 5px;
}
.image-slider.slick-slider .slick-arrow.slick-prev {
  background: url(/images/slider-arrow-white-left.svg?b446ed2fda2a722cbc2792ac3681c698) no-repeat;
  left: auto;
  right: 40px;
}

.vrm-number {
  display: inline-block;
  background: #EBD001;
  color: #000;
  text-transform: uppercase;
  padding: 9px 15px 7px;
  border-radius: 5px;
  font-family: "Arial", sans-serif !important;
  font-size: 18px;
  line-height: 1.1em;
  white-space: nowrap;
  font-weight: bold !important;
  min-width: 150px;
  text-align: center;
}
.vrm-number.f-width {
  width: calc(100% - 151px);
  text-align: center;
}
.vrm-number.button-height {
  padding: 10px 25px 9px;
  font-size: 20px !important;
}
.vrm-number.rejected {
  background: #E3342F;
  color: #FFFFFF;
}

.vrm-number-textbox {
  display: inline-block;
  background: #EBD001;
  color: #000;
  text-transform: uppercase;
  padding: 11px 15px 9px;
  border-radius: 5px !important;
  font-family: "Arial", sans-serif !important;
  font-size: 18px;
  line-height: 1.1em;
  white-space: nowrap;
  font-weight: bold !important;
}
.vrm-number-textbox.f-width {
  width: calc(100% - 151px);
  text-align: center;
}
.vrm-number-textbox.button-height {
  padding: 10px 25px 9px;
  font-size: 20px !important;
}
.vrm-number-textbox:disabled, .vrm-number-textbox[readonly] {
  background: #EBD001 !important;
  color: #000 !important;
}

.time-block {
  display: inline-block;
  background: #e2e6ef;
  color: #1F2F48;
  text-transform: uppercase;
  padding: 8px 15px 7px;
  border: solid 2px #1F2F48;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
}

.o-myprofile-block {
  padding: 10px 25px;
}
.o-myprofile-block .images-area {
  width: 124px;
  height: 124px;
  overflow: hidden;
  border-radius: 100px;
  margin: 15px auto;
}
.o-myprofile-block h3 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.o-myprofile-block h3 a {
  text-decoration: underline;
  transition: all ease-in-out 0.3s;
  color: #172436;
}
.o-myprofile-block h3 a:hover {
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  color: #1F2F48;
}
.o-myprofile-block .info-details {
  color: #1F2F48;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: solid 1px #eee;
  margin-bottom: 50px;
}
.o-myprofile-block .info-details img {
  margin-bottom: 5px;
}
.o-myprofile-block .info-contact-details {
  color: #4C576A;
  text-align: left;
}
.o-myprofile-block .info-contact-details .info-contact-block {
  margin-bottom: 10px;
  display: flex;
}
.o-myprofile-block .info-contact-details .info-contact-block img {
  margin-right: 10px;
}

.c-block.o-ias-block {
  background: #426EA3;
}
.c-block.o-ips-block {
  background: #AC4E7F;
}
.c-block .card-body {
  padding: 0px;
}
.c-block .o-top-inr-block {
  display: flex;
  align-items: center;
  padding: 25px 20px;
}
.c-block .o-top-inr-block .iconic-area {
  width: 180px;
}
.c-block .o-top-inr-block .iconic-area .o-circle {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  line-height: 110px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}
.c-block .o-top-inr-block .iconic-content .heading {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.c-block .o-top-inr-block .iconic-content .content {
  color: #FFFFFF;
  font-size: 16px;
}
.c-block .o-status-area {
  border-top: solid 1px;
  border-color: rgba(255, 255, 255, 0.25);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}
.c-block .o-status-area .o-status-col {
  border-left: solid 1px;
  border-color: rgba(255, 255, 255, 0.25);
  padding: 15px 25px;
  color: #FFFFFF;
}
.c-block .o-status-area .o-status-col span {
  font-weight: 600;
  margin-right: 15px;
}
.c-block .o-status-area .o-status-col:first-child {
  border-left: none;
}
.c-block .o-status-area .o-status-col a {
  color: #FFFFFF;
}
.c-block .o-status-area .o-status-col a:hover {
  text-decoration: none;
}

.note-editing-area b {
  font-weight: bold !important;
}

.anpr-camera-row .anpr-camera-icon {
  min-width: 40px;
}
.anpr-camera-row .anpr-camera-name {
  font-weight: bold;
  padding-left: 5px;
}
@media (max-width: 1280px) {
  .anpr-camera-row .anpr-camera-name {
    padding-left: 25px;
  }
}
@media (max-width: 1100px) {
  .anpr-camera-row .anpr-camera-name {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .anpr-camera-row .anpr-camera-name {
    padding-left: 15px;
  }
}
.anpr-camera-row .anpr-camera-read {
  text-align: right;
}

.o-colortheme-block {
  position: relative;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box {
  top: 30px !important;
  border: none !important;
  font-size: 14px;
  width: 316px;
  right: -10px;
  padding: 25px 20px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.07);
  display: none;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .o-close {
  position: absolute;
  right: 25px;
  top: 15px;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #E1E5EE;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .heading h3 {
  color: #3f4f5d;
  font-size: 18px;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel {
  margin-left: -5px;
  margin-right: -5px;
  font-size: 0px;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .sub-heading {
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #677D9F;
  padding-left: 5px;
  text-transform: uppercase;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box {
  width: calc(33.33333% - 10px);
  display: inline-block;
  height: 38px;
  border-radius: 5px;
  background: #eee;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  border: solid 1px #E1E5EE;
  cursor: pointer;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.orange {
  background: #ee7149;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.violet {
  background: #5c49d6;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.acquagreen {
  background: #2bb67c;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.red {
  background: #DE4A4A;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.brown {
  background: #E2832A;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.blue {
  background: #5194F8;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.lightgrey {
  background: #E1E5EE;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.gray {
  background: #5d5d5d;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.black {
  background: #141d2b;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.white {
  background: #FFFFFF;
}
.o-colortheme-block .o-colorsettings-box.o-settings-box .colorpanel .color-box.purple {
  background: #7b0983;
}
.o-colortheme-block .o-colorsettings-box.show {
  display: block;
}

.status {
  cursor: initial;
}
.status.green:hover {
  background: #38C172 !important;
}
.status.red:hover {
  background: #E3342F !important;
}

.o-evidence-block .text-block {
  font-weight: 600;
  white-space: nowrap;
}
.o-evidence-block .text-block_merron {
  color: #C3574F;
}
.o-evidence-block .vrm-number-textbox {
  text-align: center;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .o-evidence-block .vrm-number-textbox {
    margin-right: 0px;
  }
}
@media (max-width: 991px) {
  .o-evidence-block .d-flex {
    flex-wrap: wrap;
  }
  .o-evidence-block .d-flex .ml-auto {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .o-evidence-block .d-flex .text-block {
    margin-left: 0px;
    width: 100%;
    text-align: center;
  }
}

a.button.o-tooltip {
  position: relative;
}
a.button.o-tooltip span.tt {
  width: 200px;
  height: auto;
  padding: 10px;
  background: #000;
  position: absolute;
  color: #FFFFFF;
  right: 0%;
  top: 100%;
  font-size: 10px;
  text-align: left;
  font-weight: 300;
  border-radius: 6px;
  opacity: 0;
  z-index: 10;
}
a.button.o-tooltip span.tt span.strong {
  font-weight: 600;
}
a.button.o-tooltip:hover span.tt {
  opacity: 1;
}

p.button.o-tooltip {
  position: relative;
}
p.button.o-tooltip span.tt {
  width: 200px;
  height: auto;
  padding: 10px;
  background: #000;
  position: absolute;
  color: #FFFFFF;
  right: 0%;
  top: 100%;
  font-size: 10px;
  text-align: left;
  font-weight: 300;
  border-radius: 6px;
  opacity: 0;
  z-index: 10;
}
p.button.o-tooltip span.tt span.strong {
  font-weight: 600;
}
p.button.o-tooltip:hover span.tt {
  opacity: 1;
}

.o-appeal-drop {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.o-appeal-drop .dropzone {
  padding: 85px 0px;
}

.o-appeal-list ul li {
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 15px;
}
.o-appeal-list ul li span {
  margin-right: 8px;
}
.o-appeal-list ul li span img {
  hight: 20px;
}

footer {
  padding: 0px 30px;
  display: flex;
  margin-top: auto;
}
@media (max-width: 767px) {
  footer {
    padding: 0px 15px;
  }
}
footer .container-fluid {
  padding: 17px 0px;
  border-top: solid 1px #cecece;
  font-size: 14px;
}
footer ul {
  list-style-type: none;
}
@media (max-width: 767px) {
  footer ul {
    text-align: center;
  }
}
footer ul li {
  display: inline-block;
  border-left: solid 1px #1F2F48;
  padding: 0px 15px 0px 15px;
  line-height: 1em;
}
footer ul li:first-child {
  border-left: none;
  padding: 0px 15px 0px 0px;
}
footer ul li a {
  color: #1F2F48;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
footer ul li a:hover {
  color: #677D9F;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
footer .o-footer-text {
  text-align: right;
  color: #1F2F48;
}
@media (max-width: 767px) {
  footer .o-footer-text {
    text-align: center;
    padding-top: 10px;
  }
}
footer .o-footer-text p {
  font-size: 14px;
}

.jq-toast-wrap {
  /* width: calc(100% - 305px)!important;
  left: 275px!important; */
  top: 8px !important;
  /* @media (max-width: 991px){
    width: calc(100% - 50px)!important;
    left: 25px!important;
  }
  @media (max-width: 767px){
    width: calc(100% - 20px)!important;
    left: 10px!important;
  } */
}
.jq-toast-wrap .jq-toast-single {
  background-color: #1F2F48 !important;
  color: #FFFFFF !important;
  font-size: 14px;
  font-family: "Poppins", sans-serif !important;
  padding: 15px !important;
}
.jq-toast-wrap .jq-toast-single h2 {
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.jq-toast-wrap .jq-toast-single h2 img {
  margin-right: 10px;
}
.jq-toast-wrap .close-jq-toast-single {
  top: 10px !important;
  right: 11px !important;
  font-size: 20px !important;
}

.bootbox .modal-header {
  background: var(--tertiary-color);
  align-content: space-between;
  padding: 15px 18px 13px;
}
.bootbox .modal-header .modal-title {
  color: #FFFFFF;
  font-size: 15px;
}
.bootbox .modal-header .bootbox-close-button.close {
  background: url(/images/modal-close.svg?dd287ba573c6a411229b9197c0ef460f) no-repeat center;
  width: 20px;
  height: 20px;
  font-size: 0px;
  display: inline-block;
}
.bootbox .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
.bootbox .btn .arrow {
  width: 7px;
  height: 13px;
}
.bootbox .btn.btn-secondary {
  font-family: "Poppins", sans-serif;
  background: transparent;
  border-color: var(--primary-color) !important;
  color: #172436 !important;
  border: solid 1px;
}
.bootbox .btn.btn-secondary:hover {
  background: transparent;
  border-color: var(--primary-color) !important;
  transition: all ease-in-out 0.3s;
}
.bootbox .btn.btn-secondary:focus {
  box-shadow: none;
  outline: none !important;
}
.bootbox .btn.btn-secondary .arrow.arrow-right {
  background: url(/images/arrow-dark.svg?4901d232b5eccb093e0219c68c920cc7) no-repeat;
}
.bootbox .btn.btn-secondary .arrow.attachment {
  background: url(/images/attachment-icon.svg?20174371127d4c3612169521ef6806f2) no-repeat;
  width: 13px;
  height: 15px;
}
@media (max-width: 560px) {
  .bootbox .btn.btn-secondary {
    width: 100%;
  }
}
.bootbox.bootbox-confirm .modal-header {
  background: var(--tertiary-color);
  align-content: space-between;
  padding: 15px 18px 13px;
}
.bootbox.bootbox-confirm .modal-header .modal-title {
  color: #FFFFFF;
  font-size: 15px;
}
.bootbox.bootbox-confirm .modal-header .bootbox-close-button.close {
  background: url(/images/modal-close.svg?dd287ba573c6a411229b9197c0ef460f) no-repeat center;
  width: 20px;
  height: 20px;
  font-size: 0px;
  display: inline-block;
}
.bootbox.bootbox-confirm .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
.bootbox.bootbox-confirm .btn .arrow {
  width: 7px;
  height: 13px;
}
.bootbox.bootbox-confirm .btn.btn-secondary {
  font-family: "Poppins", sans-serif;
  background: transparent;
  border-color: var(--primary-color) !important;
  color: #172436 !important;
  border: solid 1px;
}
.bootbox.bootbox-confirm .btn.btn-secondary:hover {
  background: transparent;
  border-color: var(--primary-color) !important;
  transition: all ease-in-out 0.3s;
}
.bootbox.bootbox-confirm .btn.btn-secondary:focus {
  box-shadow: none;
  outline: none !important;
}
.bootbox.bootbox-confirm .btn.btn-secondary .arrow.arrow-right {
  background: url(/images/arrow-dark.svg?4901d232b5eccb093e0219c68c920cc7) no-repeat;
}
.bootbox.bootbox-confirm .btn.btn-secondary .arrow.attachment {
  background: url(/images/attachment-icon.svg?20174371127d4c3612169521ef6806f2) no-repeat;
  width: 13px;
  height: 15px;
}
@media (max-width: 560px) {
  .bootbox.bootbox-confirm .btn.btn-secondary {
    width: 100%;
  }
}
.bootbox.bootbox-alert .bootbox-close-button.close {
  background: url(/images/modal-close.svg?dd287ba573c6a411229b9197c0ef460f) no-repeat center;
  width: 20px;
  height: 20px;
  font-size: 0px;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px;
}
.bootbox.bootbox-alert .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
.bootbox.bootbox-alert .modal-content .modal-body {
  padding: 20px;
}
.bootbox.bootbox-alert .modal-content .bootbox-body {
  padding-right: 25px;
  font-size: 14px;
}
.bootbox.bootbox-alert .modal-footer,
.bootbox.bootbox-alert .btn {
  display: none;
}

/*
    =============
    #Page Modules
    =============
*/
