/**
 *    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 */
/* 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;
}

.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;
}

.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;
}

@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: #172436;
  border-color: #172436;
}

.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;
}

.btn {
  padding: 12px 30px;
  font-size: 14px;
  line-height: 1em;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  display: inline-flex;
}
@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.btn-primary {
  font-family: "Poppins", sans-serif;
  background: #172436;
  border-color: #172436;
  color: #FFFFFF !important;
}
.btn.btn-primary:hover {
  background: #1F2F48;
  border-color: #1F2F48;
  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;
}
@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: #1F2F48;
  border: solid 1px;
}
.btn.btn-primary-outline:hover {
  background: transparent;
  border-color: #1F2F48;
  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;
}
@media (max-width: 560px) {
  .btn.btn-primary-outline {
    width: 100%;
  }
}

.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;
}

.o-head-button {
  padding: 15px 30px;
  font-size: 14px;
  line-height: 1em;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  display: inline-flex;
  background: #FFFFFF;
  border-radius: 6px;
  color: #1F2F48;
  text-decoration: none;
  opacity: 0.65;
}
.o-head-button .icon {
  margin-left: -5px;
  margin-right: 10px;
  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: 15px;
  height: 15px;
  margin-top: -1px;
  background-size: cover !important;
}
.o-head-button .icon.icon-dashboard {
  background: url(/images/dashboard-dark.svg?b4734ff527fe6807f84cc7768336dd15) no-repeat;
}
.o-head-button .icon.icon-search {
  background: url(/images/search-dark.svg?7f727adcfbb54fb507d8bcc4870c8714) no-repeat;
}
.o-head-button:hover {
  transition: all ease-in-out 0.3s;
  color: #172436;
}
.o-head-button:hover .icon {
  transform: translateX(-5px);
  transition: all ease-in-out 0.3s;
}
.o-head-button.active {
  border-radius: 0px 6px 6px 0px;
  border-left: solid 3px #1F2F48;
  opacity: 1;
}

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

.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: #1F2F48;
  border-color: #1F2F48;
  color: #FFFFFF;
}
.pagination-block .pagination li.active a.page-link {
  background-color: #1F2F48;
  border-color: #1F2F48;
  color: #FFFFFF;
}

.search-address-result {
  margin: 15px 0px;
}

/*
    =====================
    #Common SASS modules 
    =====================
*/
.o-login-screen {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  background: #172436;
  align-content: space-between;
}
@media (max-width: 991px) {
  .o-login-screen {
    min-height: 100vh;
    height: 100%;
    background: #FFFFFF;
  }
}
.o-login-screen .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.o-login-screen .o-login-internal {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-direction: row;
  background: #172436;
  height: calc(100vh - 60px);
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal {
    height: auto;
  }
}
.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: bottom center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 400ms ease-in-out;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 100px 100px;
}
@media (max-width: 1260px) {
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg {
    padding: 60px 40px;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg {
    padding: 40px 25px;
  }
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .brand {
  max-width: 400px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .brand {
    text-align: center;
  }
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .brand img {
  max-width: 100%;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .heading {
  max-width: 450px;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .heading h1 {
  font-size: 54px;
  line-height: 1em;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .heading h1 span {
  font-size: 30px;
  display: block;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .heading h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 0px;
  }
  .o-login-screen .o-login-internal .o-custom-login .o-log-image-area .o-log-bg .o-login-content .heading h1 span {
    font-size: 20px;
  }
}
.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: 25px 80px;
  position: relative;
  border-radius: 0px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media (max-width: 1260px) {
  .o-login-screen .o-login-internal .o-login {
    padding: 25px 40px;
  }
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login {
    padding: 40px 25px;
    text-align: center;
  }
}
.o-login-screen .o-login-internal .o-login .o-home-log {
  max-width: 500px;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login .o-home-log {
    max-width: 100%;
    text-align: center;
  }
}
.o-login-screen .o-login-internal .o-login .heading h2 {
  font-size: 26px;
  line-height: 1.2em;
  color: #172436;
  margin-bottom: 10px;
}
@media (max-width: 1260px) {
  .o-login-screen .o-login-internal .o-login .heading h2 {
    font-size: 23px;
  }
}
.o-login-screen .o-login-internal .o-login .content p {
  font-size: 13px;
  line-height: 1.4em;
  color: #172436;
  margin-bottom: 25px;
}
@media (max-width: 1260px) {
  .o-login-screen .o-login-internal .o-login .content p {
    margin-bottom: 15px;
  }
}
.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 .submit-button {
  text-align: center;
  display: inherit;
}
.o-login-screen .o-login-internal .o-login form {
  margin-bottom: 15px;
}
@media (max-width: 1260px) {
  .o-login-screen .o-login-internal .o-login form {
    margin-bottom: 15px;
  }
}
.o-login-screen .o-login-internal .o-login form .content {
  padding-top: 10px;
}
.o-login-screen .o-login-internal .o-login form .content p {
  font-size: 13px;
  line-height: 1.4em;
  color: #172436;
  margin-bottom: 20px;
  font-weight: 500;
}
.o-login-screen .o-login-internal .o-login .icon {
  float: left;
}
@media (max-width: 991px) {
  .o-login-screen .o-login-internal .o-login .icon {
    float: none;
  }
}
.o-login-screen .o-login-internal .o-login .icon img {
  max-width: 100%;
}

.o-login-footer {
  padding: 20px 0px 19px;
  width: 100%;
  display: flex;
  margin-top: auto;
  background: #172436;
}
.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-msg {
  height: 180px;
}
.form-control-msg_80 {
  height: 80px;
}
.form-control-msg_200 {
  height: 200px;
}
@media (max-width: 991px) {
  .form-control-msg_200 {
    height: 100px;
  }
}
.form-control-msg_300 {
  height: 300px;
}
@media (max-width: 991px) {
  .form-control-msg_300 {
    height: 100px;
  }
}

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

.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;
  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%);
  z-index: -1;
}
.o-form-area .input-group.date .form-control[readonly] {
  background-color: transparent !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;
}
@media (max-width: 767px) {
  .o-page-internal-heading {
    flex-direction: column;
    align-items: start;
  }
}
.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 .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;
}

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

header {
  padding: 20px 25px;
  background: #1F2F48;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header {
    padding: 20px 15px;
  }
}
header .container-fluid {
  padding: 0px;
}
header .o-logo-area {
  max-width: 400px;
}
header .o-logo-area img {
  max-width: 100%;
  max-height: 77px;
}
@media (max-width: 991px) {
  header .o-logo-area {
    margin: 0 auto;
    max-width: 260px;
    text-align: center;
    margin-bottom: 10px;
  }
}
header .col-head {
  margin-left: 15px;
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 600;
}
header .col-head span {
  font-size: 48px;
}
@media (max-width: 1190px) {
  header .col-head {
    font-size: 26px;
  }
  header .col-head span {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  header .col-head {
    width: 100%;
    font-size: 21px;
    text-align: center;
    margin-left: 0px;
  }
  header .col-head span {
    font-size: 26px;
  }
}
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;
  }
}

.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;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 3px;
  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.f-height {
  height: 100vh;
}

.page-content {
  height: 100vh;
  flex-direction: column;
  align-content: space-between;
  display: flex;
}

.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 1rem;
  align-items: center;
  display: flex;
}
@media (max-width: 991px) {
  .main-container-area .inner-heading .heading-area {
    align-items: start;
    flex-direction: column;
  }
}
.main-container-area .inner-heading .heading-area .head {
  font-size: 30px;
  font-weight: 600;
  color: #1F2F48;
}
.main-container-area .inner-heading .heading-area .head span {
  font-weight: 400;
}
@media (max-width: 991px) {
  .main-container-area .inner-heading .heading-area .head {
    font-size: 21px;
  }
}
.main-container-area .inner-heading .heading-area .button-area {
  display: flex;
  margin-left: auto;
  flex: 0 0 auto;
  width: auto;
}
@media (max-width: 991px) {
  .main-container-area .inner-heading .heading-area .button-area {
    margin-left: 0;
    padding-top: 5px;
  }
}
.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: #2C4666;
  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: 5px 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%;
}
.c-drop-zone .dropzone .dz-processing {
  color: #DE4A4A;
}
.c-drop-zone .dropzone .dz-processing a {
  color: #DE4A4A;
  text-decoration: none;
}
.c-drop-zone .dropzone .dz-processing a:hover {
  text-decoration: none;
}
.c-drop-zone .dropzone .dz-remove {
  text-decoration: none !important;
  color: #DE4A4A !important;
  padding-top: 4px;
}

.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;
}
.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 img {
  width: 100%;
  border-radius: 6px;
}

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

.o-button-content-block {
  align-items: center;
  margin-bottom: 10px;
}
.o-button-content-block i {
  margin-right: 6px;
}

.card {
  padding: 0px;
  border: none;
  border-radius: 10px;
}
.card .card-header {
  display: flex;
  align-content: space-between;
  padding: 15px 18px 13px;
  background: #2C4666;
  align-items: center;
  min-height: 50px;
  border-radius: 10px 10px 0px 0px;
}
@media (max-width: 991px) {
  .card .card-header {
    flex-direction: column;
    align-items: start;
  }
}
.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 .button-area {
  display: flex;
  margin-left: auto;
}
@media (max-width: 991px) {
  .card .card-header .button-area {
    margin-top: 10px;
  }
}
.card .card-header .button-area ul li {
  display: inline-block;
  margin-left: 1.75rem;
  font-size: 14px;
}
@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 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: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: 13px;
  line-height: 1.4em;
}
.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;
}
.card .card-inner-header {
  display: flex;
  align-content: space-between;
  padding: 20px 18px 10px;
  border-bottom: solid 1px #eee;
  align-items: center;
}
@media (max-width: 991px) {
  .card .card-inner-header {
    flex-direction: column;
    align-items: start;
  }
}
.card .card-inner-header .head {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  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 .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 .toast-icon {
  margin-right: 5px;
}

.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 a {
  color: #3f4f5d;
  transition: all ease-in-out 0.3s;
}
.table tr td a:hover {
  color: #3f4f5d;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.table tr td a.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 {
    padding: 10px 1rem 9px;
  }
}
.table tr td a.button:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.button.accepted {
  color: #FFFFFF;
  background: #38C172;
}
.table tr td a.button.rejected {
  color: #FFFFFF;
  background: #E3342F;
}
.table tr td a.button.reviews {
  color: #FFFFFF;
  background: #172436;
}
.table tr td a.button.view-image {
  color: #FFFFFF;
  background: #426EA3;
}
.table tr td a.button.view-image:hover {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.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 {
  color: #FFFFFF;
  background: #677D9F;
}
.table tr td a.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 {
  color: #FFFFFF;
  background: #677D9F;
}
.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;
}
.table.head-table tr td .note .dot {
  width: 6px;
  height: 6px;
  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;
  border-bottom: solid 1px #e8e8e8 !important;
}
.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;
}

.o-inner-table {
  padding: 10px 10px;
  background: #e2e6ef;
  display: inline-block;
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .o-inner-table {
    width: 100%;
  }
}

.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;
  }
}

.o-payment-confirmation {
  padding: 40px 0px 40px;
  text-align: center;
}

.o-successful-content-area {
  text-align: center;
  padding-top: 10px;
}
.o-successful-content-area .iconic-content-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.o-successful-content-area .iconic-content-block .icon {
  margin-bottom: 20px;
}
.o-successful-content-area .iconic-content-block .successful-icon-text {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 17px;
  color: #38C172;
}
.o-successful-content-area .iconic-content-block p {
  word-break: break-all;
}

.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;
  }
}

.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;
}

.head b {
  font-weight: 700;
}

.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;
}
.image-slider.slick-slider .slick-slide .slick-image {
  height: 135px;
  overflow: hidden;
  border-radius: 6px;
}
.image-slider.slick-slider .slick-slide .slick-image 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;
}
.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;
}

.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;
}

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

.bootbox.bootbox-confirm .modal-header {
  background: #2C4666;
  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: #1F2F48 !important;
  color: #172436 !important;
  border: solid 1px;
}
.bootbox.bootbox-confirm .btn.btn-secondary:hover {
  background: transparent;
  border-color: #1F2F48 !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;
}

.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;
}

.o-toast {
  position: relative;
  padding: 10px 30px 10px 10px;
}
.o-toast .close {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
}
.o-toast.alert-success {
  background: #12c35b;
  border: solid 1px #12c35b;
  color: #fff;
}
.o-toast.alert-success a.close {
  color: #fff;
  text-decoration: none;
}
.o-toast.alert-error {
  background: #ed0505;
  border: solid 1px #ed0505;
  color: #fff;
}
.o-toast.alert-error a.close {
  color: #fff;
  text-decoration: none;
}
.o-toast.alert-info {
  background: #008b8b;
  border: solid 1px #008b8b;
  color: #fff;
}
.o-toast.alert-info a.close {
  color: #fff;
  text-decoration: none;
}
.o-toast .toast-icon {
  margin-right: 5px;
}
.o-toast .toast-content {
  font-size: 12px;
  line-height: 1.3em;
  color: #fff;
}

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