/* font */
@font-face {
  font-family: 'Inter';
  font-style: light;
  font-weight: 300;
  src: url('../font/Inter/Inter-Light.woff2') format('woff2'), url('../font/Inter/Inter-Light.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: regular;
  font-weight: 400;
  src: url('../font/Inter/Inter-Regular.woff2') format('woff2'), url('../font/Inter/Inter-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: semibold;
  font-weight: 600;
  src: url('../font/Inter/Inter-SemiBold.woff2') format('woff2'), url('../font/Inter/Inter-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: bold;
  font-weight: 700;
  src: url('../font/Inter/Inter-Bold.woff2') format('woff2'), url('../font/Inter/Inter-Bold.woff') format('woff');
}

/* general */
html {
  scroll-behavior: smooth;
  background-color: #f4f6f9;
}
body {
  font-family: 'Inter', sans-serif;
  color: #5d586c;
  font-size: 0.78rem;
  padding-top: 52px;
  background: #f4f6f9;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #4b465c;
}
.small,
small {
  font-size: 86%;
}
a {
  color: #3373ba;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
code {
  color: #e85559;
}
.no-shadow {
  box-shadow: none !important;
}

/* grid */
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 4px;
  padding-left: 4px;
}
.row {
  margin-right: -4px;
  margin-left: -4px;
}

/* empty state */
.empty-state {
  text-align: center;
  padding: 4rem;
}

/* login */
.login-card-body,
.register-card-body {
  border-radius: 0.5rem;
  box-shadow: 0px 2px 4px rgba(48, 49, 51, 0.1);
}
.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
  border-left: 1px #ced4da solid;
  border-bottom-right-radius: unset;
  border-top-right-radius: unset;
}
.login-card-body .input-group .form-control,
.register-card-body .input-group .form-control {
  border-right: 1px #ced4da solid;
}
.input-group-prepend img {
  width: 18px;
}
/*.login-box{
  width: 420px;
}*/
.login-page {
  background-image: url('../img/bg-login.jpg');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.field-icon {
  float: right;
  margin-top: -20px;
  position: relative;
  z-index: 4;
  right: 12px;
}

/* opacity */
.opacity-100 {
  opacity: 1;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-25 {
  opacity: 0.25;
}

/* margin and paddings */
.mt-4,
.my-4 {
  margin-top: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.15rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.15rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.15rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.15rem !important;
}

/* background */
.bg-primary-50 {
  background-color: #99b9dd;
}
.bg-primary-100 {
  background-color: #85abd6;
}
.bg-primary-200 {
  background-color: #709dcf;
}
.bg-primary-300 {
  background-color: #5c8fc8;
}
.bg-primary-400 {
  background-color: #4781c1;
}
.bg-primary-600 {
  background-color: #2e68a7;
}
.bg-primary-700 {
  background-color: #295c95;
}
.bg-primary-800 {
  background-color: #245182;
}
.bg-primary-900 {
  background-color: #1f4570;
}
.bg-primary-950 {
  background-color: #1a3a5d;
}

.bg-secondary-50 {
  background-color: #a7d4ee;
}
.bg-secondary-100 {
  background-color: #95cbea;
}
.bg-secondary-200 {
  background-color: #83c2e7;
}
.bg-secondary-300 {
  background-color: #71b9e3;
}
.bg-secondary-400 {
  background-color: #60b1e0;
}
.bg-secondary-600 {
  background-color: #4697c6;
}
.bg-secondary-700 {
  background-color: #3e86b0;
}
.bg-secondary-800 {
  background-color: #37769a;
}
.bg-secondary-900 {
  background-color: #2f6584;
}
.bg-secondary-950 {
  background-color: #27546e;
}

.bg-accent-50 {
  background-color: #aab8c6;
}
.bg-accent-100 {
  background-color: #99a9bb;
}
.bg-accent-200 {
  background-color: #889baf;
}
.bg-accent-300 {
  background-color: #778da4;
}
.bg-accent-400 {
  background-color: #667e98;
}
.bg-accent-600 {
  background-color: #4d657f;
}
.bg-accent-700 {
  background-color: #445a71;
}
.bg-accent-800 {
  background-color: #3b4e63;
}
.bg-accent-900 {
  background-color: #334355;
}
.bg-accent-950 {
  background-color: #2b3847;
}

.bg-danger-50 {
  background-color: #f4aaac;
}
.bg-danger-100 {
  background-color: #f1999b;
}
.bg-danger-200 {
  background-color: #ef888b;
}
.bg-danger-300 {
  background-color: #ed777a;
}
.bg-danger-400 {
  background-color: #ea666a;
}
.bg-danger-600 {
  background-color: #d14d50;
}
.bg-danger-700 {
  background-color: #ba4447;
}
.bg-danger-800 {
  background-color: #a23b3e;
}
.bg-danger-900 {
  background-color: #8b3335;
}
.bg-danger-950 {
  background-color: #742b2d;
}

.bg-warning-50 {
  background-color: #f5ba80;
}
.bg-warning-100 {
  background-color: #f3ac66;
}
.bg-warning-200 {
  background-color: #f19e4d;
}
.bg-warning-300 {
  background-color: #ef9133;
}
.bg-warning-400 {
  background-color: #ed831a;
}
.bg-warning-600 {
  background-color: #d46900;
}
.bg-warning-700 {
  background-color: #bc5e00;
}
.bg-warning-800 {
  background-color: #a55200;
}
.bg-warning-900 {
  background-color: #8d4600;
}
.bg-warning-950 {
  background-color: #763b00;
}

.bg-success-50 {
  background-color: #9ae3b9;
}
.bg-success-100 {
  background-color: #85ddaa;
}
.bg-success-200 {
  background-color: #71d79c;
}
.bg-success-300 {
  background-color: #5dd18e;
}
.bg-success-400 {
  background-color: #48cc80;
}
.bg-success-600 {
  background-color: #2fb267;
}
.bg-success-700 {
  background-color: #2a9e5b;
}
.bg-success-800 {
  background-color: #248b50;
}
.bg-success-900 {
  background-color: #1f7744;
}
.bg-success-950 {
  background-color: #1a6339;
}

.bg-info-50 {
  background-color: #97dfe6;
}
.bg-info-100 {
  background-color: #82d8e0;
}
.bg-info-200 {
  background-color: #6dd2db;
}
.bg-info-300 {
  background-color: #59cbd6;
}
.bg-info-400 {
  background-color: #44c5d1;
}
.bg-info-600 {
  background-color: #2aabb8;
}
.bg-info-700 {
  background-color: #2698a3;
}
.bg-info-800 {
  background-color: #21858f;
}
.bg-info-900 {
  background-color: #1c727a;
}
.bg-info-950 {
  background-color: #185f66;
}

.bg-grey-200 {
  background-color: #ebebeb;
}
.bg-grey-300 {
  background-color: #ebebeb;
}
.bg-grey-400 {
  background-color: #c2c2c2;
}
.bg-grey-500 {
  background-color: #adadad;
}
.bg-grey-600 {
  background-color: #999999;
}
.bg-grey-700 {
  background-color: #858585;
}
.bg-grey-800 {
  background-color: #707070;
}
.bg-grey-900 {
  background-color: #5c5c5c;
}
.bg-grey-950 {
  background-color: #474747;
}
.bg-grey-primary {
  background-color: #56718d;
  color: #fff;
}

.bg-white-90 {
  background-color: rgba(255, 255, 255, 0.9);
}
.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-white-70 {
  background-color: rgba(255, 255, 255, 0.7);
}
.bg-white-60 {
  background-color: rgba(255, 255, 255, 0.6);
}
.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-white-40 {
  background-color: rgba(255, 255, 255, 0.4);
}
.bg-white-30 {
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-white-5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-white-1 {
  background-color: rgba(255, 255, 255, 0.01);
}

.bg-primary {
  background-color: #3373ba !important;
}
.bg-gradient-primary {
  background: #295c95 linear-gradient(180deg, #3373ba, #295c95) repeat-x !important;
}
.bg-secondary {
  background-color: #56718d !important;
}
.bg-gradient-secondary {
  background: #3e86b0 linear-gradient(180deg, #56718d, #3e86b0) repeat-x !important;
}
.bg-accent {
  background-color: #55708d;
}
.bg-gradient-accent {
  background: #445a71 linear-gradient(180deg, #55708d, #445a71) repeat-x !important;
}
.bg-success {
  background-color: #34c672 !important;
}
.bg-gradient-success {
  background: #2a9e5b linear-gradient(180deg, #34c672, #2a9e5b) repeat-x !important;
}
.bg-warning {
  background-color: #eb7500 !important;
}
.bg-gradient-warning {
  background: #bc5e00 linear-gradient(180deg, #eb7500, #bc5e00) repeat-x !important;
}
.bg-warning,
.bg-warning > a {
  color: #fff !important;
}
.bg-danger {
  background-color: #e85559 !important;
}
.bg-gradient-danger {
  background: #ba4447 linear-gradient(180deg, #e85559, #ba4447) repeat-x !important;
}
.bg-info {
  background-color: #2fbecc !important;
}
.bg-gradient-info {
  background: #2698a3 linear-gradient(180deg, #2fbecc, #2698a3) repeat-x !important;
}
.bg-dark {
  background-color: #5c5c5c !important;
}
.bg-olive {
  background-color: #a1b986 !important;
}
.bg-olive.btn.active,
.bg-olive.btn:active,
.bg-olive.btn:not(:disabled):not(.disabled).active,
.bg-olive.btn:not(:disabled):not(.disabled):active {
  background-color: #91a779 !important;
  border-color: #91a779;
}
.bg-olive.btn:hover {
  border-color: #91a779;
  background: #91a779;
}
.bg-new {
  background-color: rgba(52, 198, 114, 0.1) !important;
}

/* borders */
.border-primary {
  border-color: #3373ba !important;
}
.border-secondary {
  border-color: #56718d !important;
}
.border-info {
  border-color: #4fa9dd !important;
}
.border-success {
  border-color: #34c672 !important;
}
.border-warning {
  border-color: #ed872e !important;
}
.border-danger {
  border-color: #e85559 !important;
}

/* typography */
.font-family-1 {
  font-family: 'Lato', sans-serif;
}
.font-family-2 {
  font-family: 'Roboto', sans-serif;
}
.colossus {
  font-size: 140px;
}
.uber {
  font-size: 112px;
}
.hero {
  font-size: 80px;
}
.display {
  font-size: 64px;
}

/* button */
.btn {
  border-radius: 0.25rem;
  font-size: 0.78rem;
  padding: 0.275rem 0.5rem;
}
.btn-group-lg > .btn,
.btn-lg {
  padding: 0.42rem 0.75rem !important;
  font-size: 0.9rem !important;
}
.btn-light {
  background-color: #ffffff;
  border-color: #d6d6d6;
  color: #858585;
}
.btn-light:hover {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
  color: #858585;
}
.btn-primary {
  background-color: #3373ba;
  border-color: #3373ba;
}
.btn-primary:hover {
  background-color: #2e68a7;
  border-color: #2e68a7;
}
.btn-secondary {
  background-color: #56718d;
  border-color: #56718d;
}
.btn-secondary:hover {
  background-color: #4e667f;
  border-color: #4e667f;
}
.btn-success {
  background-color: #34c672;
  border-color: #34c672;
}
.btn-success:hover {
  background-color: #2fb267;
  border-color: #2fb267;
}
.btn-info {
  background-color: #2fbecc;
  border-color: #2fbecc;
}
.btn-info:hover {
  background-color: #2aabb8;
  border-color: #2aabb8;
}
.btn-danger {
  background-color: #e85559;
  border-color: #e85559;
}
.btn-danger:hover {
  background-color: #d14d50;
  border-color: #d14d50;
}
.btn-warning {
  color: #fff;
  background-color: #eb7500;
  border-color: #eb7500;
}
.btn-warning:hover {
  color: #fff;
  background-color: #d46900;
  border-color: #d46900;
}
.btn-light.disabled,
.btn-light:disabled {
  color: #fff;
  background-color: #ebebeb;
  border-color: #ebebeb;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #3373ba;
  border-color: #3373ba;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #56718d;
  border-color: #56718d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #34c672;
  border-color: #34c672;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #2fbecc;
  border-color: #2fbecc;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #e85559;
  border-color: #e85559;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #fff;
  background-color: #eb7500;
  border-color: #eb7500;
}
.btn-outline-primary {
  color: #3373ba;
  border-color: #3373ba;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #3373ba;
  border-color: #3373ba;
}
.btn-outline-secondary {
  color: #56718d;
  border-color: #56718d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #56718d;
  border-color: #56718d;
}
.btn-outline-success {
  color: #34c672;
  border-color: #34c672;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #34c672;
  border-color: #34c672;
}
.btn-outline-info {
  color: #2fbecc;
  border-color: #2fbecc;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #2fbecc;
  border-color: #2fbecc;
}
.btn-outline-danger {
  color: #e85559;
  border-color: #e85559;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #e85559;
  border-color: #e85559;
}
.btn-outline-warning {
  color: #eb7500;
  border-color: #eb7500;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #eb7500;
  border-color: #eb7500;
}
.btn-outline-light {
  background-color: #ffffff;
  border-color: #d6d6d6;
  color: #858585;
}
.btn-outline-light:hover {
  background-color: #f4f4f4 !important;
  border-color: #d6d6d6 !important;
  color: #858585 !important;
}
.btn-outline-light:hover {
  color: rgba(0, 0, 0, 0.5);
  background-color: #ebebeb;
  border-color: #ebebeb;
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #ebebeb;
  background-color: transparent;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #3373ba;
  background-color: transparent;
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #56718d;
  background-color: transparent;
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #34c672;
  background-color: transparent;
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #2fbecc;
  background-color: transparent;
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #eb7500;
  background-color: transparent;
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #e85559;
  background-color: transparent;
}
.show > .btn-outline-light.dropdown-toggle {
  color: #858585;
  background-color: #fff;
  border-color: #d6d6d6;
}
.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: inherit;
  display: block;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #56718d;
  border-color: #56718d;
}
.btn-link {
  color: #3373ba;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: #5d586c;
  background-color: #fff;
  border-color: #d3d9df;
}
.btn-label-primary {
  color: #3373ba;
  border-color: transparent;
  background: #d6e3f1;
}
.btn-label-secondary {
  color: #56718d;
  border-color: transparent;
  background: #dde3e8;
}
.btn-label-success {
  color: #34c672;
  border-color: transparent;
  background: #d6f4e3;
}
.btn-label-warning {
  color: #ed872e;
  border-color: transparent;
  background: #fbe7d5;
}
.btn-label-danger {
  color: #e85559;
  border-color: transparent;
  background: #faddde;
}
.btn-label-info {
  color: #4fa9dd;
  border-color: transparent;
  background: #dceef8;
}

.btn-label-primary:hover {
  color: #2e68a8;
}
.btn-label-secondary:hover {
  color: #4e667f;
}
.btn-label-success:hover {
  color: #2fb367;
}
.btn-label-warning:hover {
  color: #d67a29;
}
.btn-label-danger:hover {
  color: #d14d50;
}
.btn-label-info:hover {
  color: #4798c7;
}
.float-chatting {
  position: fixed;
  right: 16px;
  bottom: 38px;
  z-index: 2;
}
.float-chatting a {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0px 2px 16px rgba(51, 115, 186, 0.5);
}
.float-chatting i {
  font-size: 1.5rem;
}
#chat-notif {
  position: absolute;
  right: 0px;
  top: -4px;
  width: 22px;
  height: 22px;
  background: #dc3545;
  text-align: center;
  border-radius: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 1px 2px;
}

/* Backgrounds */
.bg-gradient-light {
  background: #ebebeb linear-gradient(180deg, #ebebeb, #ebebeb) repeat-x !important;
}
.bg-gradient-light.btn:hover {
  background: #c2c2c2 linear-gradient(180deg, #ebebeb, #c2c2c2) repeat-x !important;
  border-color: #c2c2c2;
}
.bg-gradient-primary {
  background: #2e68a7 linear-gradient(180deg, #3373ba, #2e68a7) repeat-x !important;
}
.bg-gradient-primary.btn:hover {
  background: #295c95 linear-gradient(180deg, #2e68a7, #295c95) repeat-x !important;
  border-color: #295c95;
}
.bg-gradient-success {
  background: #48cc80 linear-gradient(180deg, #5dd18e, #48cc80) repeat-x !important;
}
.bg-gradient-success.btn:hover {
  background: #34c672 linear-gradient(180deg, #48cc80, #34c672) repeat-x !important;
  border-color: #34c672;
}

.bg-gradient-info {
  background: #2aabb8 linear-gradient(180deg, #2fbecc, #2aabb8) repeat-x !important;
}
.bg-gradient-info.btn:hover {
  background: #2698a3 linear-gradient(180deg, #2aabb8, #2698a3) repeat-x !important;
  border-color: #2698a3;
}

.bg-gradient-danger {
  background: #d14d50 linear-gradient(180deg, #e85559, #d14d50) repeat-x !important;
}
.bg-gradient-danger.btn:hover {
  background: #ba4447 linear-gradient(180deg, #d14d50, #ba4447) repeat-x !important;
  border-color: #ba4447;
}

.bg-gradient-warning {
  color: #fff;
  background: #d46900 linear-gradient(180deg, #eb7500, #d46900) repeat-x !important;
}
.bg-gradient-warning.btn:hover {
  color: #fff;
  background: #bc5e00 linear-gradient(180deg, #d46900, #bc5e00) repeat-x !important;
  border-color: #bc5e00;
}

.bg-gradient-secondary {
  background: #4697c6 linear-gradient(180deg, #56718d, #4697c6) repeat-x !important;
}
.bg-gradient-secondary.btn:hover {
  background: #3e86b0 linear-gradient(180deg, #4697c6, #3e86b0) repeat-x !important;
  border-color: #3e86b0;
}
.btn-app {
  background-color: #fbfbfb;
  border: 1px solid #ebebeb;
  color: #999;
}
.btn-default {
  background-color: #fbfbfb;
  border: 1px solid #ebebeb;
  color: #5c5c5c;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #ebebeb !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #2e68a7 !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #4697c6 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #2aabb8 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #2fb267 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d46900 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #d14d50 !important;
}
.bg-light.btn:hover {
  border-color: #ebebeb;
}
.bg-primary.btn:hover {
  border-color: #2e68a7;
}
.bg-secondary.btn:hover {
  border-color: #4697c6;
}
.bg-info.btn:hover {
  border-color: #2aabb8;
}
.bg-success.btn:hover {
  border-color: #2fb267;
}
.bg-warning.btn:hover {
  border-color: #d46900;
}
.bg-danger.btn:hover {
  border-color: #d14d50;
}

/* background label */
.bg-label-primary {
  color: #3373ba !important;
  background-color: #d6e3f1 !important;
}
.bg-label-secondary {
  color: #56718d !important;
  background-color: #dde3e8 !important;
}
.bg-label-success {
  color: #34c672 !important;
  background-color: #d6f4e3 !important;
}
.bg-label-warning {
  color: #ed872e !important;
  background-color: #fbe7d5 !important;
}
.bg-label-danger {
  color: #e85559 !important;
  background-color: #faddde !important;
}
.bg-label-info {
  color: #4fa9dd !important;
  background-color: #dceef8 !important;
}
.bg-label-light {
  color: #dbdade !important;
  background-color: #f8f7fa !important;
}

/* text color */
.text-primary {
  color: #3373ba !important;
}
.text-secondary {
  color: #56718d !important;
}
.text-success {
  color: #34c672 !important;
}
.text-warning {
  color: #ed872e !important;
}
.text-danger {
  color: #e85559 !important;
}
.text-info {
  color: #4fa9dd !important;
}
.text-light {
  color: #dddddd !important;
}

/* header */
.main-header {
  border-bottom: 0px;
  z-index: 1034;
  box-shadow: 0px 2px 4px rgba(48, 49, 51, 0.1);
  min-height: 3.2rem;
}
.main-header.navbar img {
  width: 2rem;
  padding: 0.25rem;
  margin-right: 0.5rem;
  margin-top: -6px;
}
.card-subheader {
  border-left: 4px #3373ba solid;
  padding: 0rem 0.9rem;
  margin-left: -18px;
}
.content-header h1 {
  font-size: 1.5rem;
  margin-top: 0.5rem !important;
}
.content-header {
  padding: 8px 0.75rem;
}

/* Heading */
.h1,
h1 {
  font-size: 1.95rem;
}
.h2,
h2 {
  font-size: 1.7rem;
}
.h3,
h3 {
  font-size: 1.45rem;
}
.h4,
h4 {
  font-size: 1.2rem;
}
.h5,
h5 {
  font-size: 0.9rem;
}
.h6,
h6 {
  font-size: 0.78rem;
}

/* navbar */
/*
.dropdown-menu {
  min-width: 6.5rem;
}
*/
.navbar {
  padding: 0.25rem 0.25rem;
}
.dropdown-menu {
  font-size: 0.78rem;
  padding: 0.25rem 0;
}
.nav.nav-tabs a {
  color: #858585;
  border: none;
}
.nav-link img {
  width: 20px;
}
.nav-sidebar > .nav-item .nav-icon {
  width: 1.25rem;
  margin-right: 0.5rem;
}
.sidebar-collapse .nav-sidebar > .nav-item .nav-icon {
  margin-left: 0.4rem;
}
#more-menu .dropdown-toggle::after {
  display: none;
}
.navbar-badge {
  padding: 3px 5px;
  top: 2px;
  border-radius: 0.5rem;
}

/* Switcher */
.switcher a {
  border-radius: 1.5rem;
  padding: 0.35rem 0.35rem;
}
.m-switcher a {
  border-radius: 1.5rem;
  padding: 0.35rem 0.35rem;
}
.m-switcher {
  position: absolute;
  top: 51px;
  width: 100%;
  background: #fff;
  padding: 0.75rem 1rem;
  left: 0px;
  right: 0px;
  box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.16);
}

/* sidebar */
.role-info {
  position: relative;
  top: 6px;
  margin-left: 0.25rem;
  font-size: 0.78rem;
}
.role-switcher {
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
  border-top: 1px rgba(255, 255, 255, 0.1) solid;
  margin-top: 1rem;
}
.toggle.btn {
  min-width: 72px;
  min-height: 32px;
}
.toggle-off.btn {
  padding-left: 16px !important;
}
.toggle-on.btn {
  padding-right: 16px;
}
[class*='sidebar-dark'] .btn-sidebar,
[class*='sidebar-dark'] .form-control-sidebar {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.sidebar-grey-primary {
  background-color: #56718d;
  color: #fff;
}
.sidebar-grey-primary .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #455a71;
}
.brand-link .brand-image {
  float: none;
  margin: 8px;
  max-height: 28px;
}
.sidebar-collapse .brand-link .brand-image {
  max-height: 38px;
}
.sidebar-collapse .form-inline {
  display: none;
}
.sidebar-collapse .role-switcher {
  display: none;
}
[class*='sidebar-dark'] .brand-link {
  border-bottom: 0px;
}
[class*='sidebar-dark'] .user-panel {
  border-bottom: 0px;
}
[class*='sidebar-dark-'] {
  background-color: #4b4b4b;
}
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active,
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active:focus,
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #3373ba;
  color: #fff;
}
.nav-header {
  text-transform: uppercase;
  font-weight: bold;
}
.sidebar-mini.sidebar-collapse .brand-link.logo-lg {
  display: none;
}
.sidebar-mini .brand-link.logo-lg {
  display: inherit;
}
.sidebar-mini.sidebar-collapse .brand-link.logo-sm {
  display: inherit;
}
.sidebar-mini .brand-link.logo-sm {
  display: none;
}
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #3373ba;
}
body:not(.layout-fixed) .main-sidebar .sidebar {
  overflow-y: unset;
}
.sidebar-grey-primary .bottom-nav {
  position: fixed;
  bottom: 0;
  background: #56718d;
}
.sidebar-primary .bottom-nav {
  position: fixed;
  bottom: 0;
  background: #3373ba;
}
.brand-link .badge {
  font-size: 64%;
}
.nav-pills .nav-link {
  color: #ffffff;
}
.nav-pills .nav-link:not(.active):hover {
  color: #ececec !important;
}
.sidebar-mini .main-sidebar .nav-link,
.sidebar-mini-md .main-sidebar .nav-link,
.sidebar-mini-xs .main-sidebar .nav-link {
  width: calc(100%);
}

/* topbar */
.dropdown-item-title {
  font-size: 0.78rem;
}
.dropdown-footer,
.dropdown-header {
  font-size: 0.78rem;
}
.change-role {
  margin: 0px 4px -3px;
  width: auto;
  position: relative;
  border-radius: 0.25rem;
  padding: 8px 16px;
  font-size: 0.8rem;
}
.nav-treeview .nav-item {
  margin-left: 1.75rem !important;
}
.sidebar-collapse .nav-treeview .nav-item {
  margin-left: 0.25rem !important;
}

/* card */
.card {
  border-radius: 0.5rem;
  box-shadow: 0px 2px 4px rgba(48, 49, 51, 0.1);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.075);
}
.card-header {
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 0.25rem;
}
.card-footer {
  padding: 0.5rem 1rem;
}
.card-footer:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.card-body {
  padding: 0.5rem 0.75rem;
}
.card-icon {
  width: 1.75rem;
  position: absolute;
  right: 1rem;
}
.single-item .card-title {
  font-size: 1.1rem !important;
  font-weight: bold;
}
.small-box {
  border-radius: 0.5rem;
  box-shadow: 0px 2px 4px rgba(48, 49, 51, 0.1);
}
.card-light:not(.card-outline) > .card-header {
  background-color: #ebebeb;
}
.card-primary:not(.card-outline) > .card-header {
  background-color: #3373ba;
}
.card-secondary:not(.card-outline) > .card-header {
  background-color: #56718d;
}
.card-info:not(.card-outline) > .card-header {
  background-color: #2fbecc;
}
.card-success:not(.card-outline) > .card-header {
  background-color: #34c672;
}
.card-warning:not(.card-outline) > .card-header {
  background-color: #eb7500;
  color: #fff;
}
.card-danger:not(.card-outline) > .card-header {
  background-color: #e85559;
}
.card-light.card-outline {
  border-top: 3px solid #ebebeb;
}
.card-primary.card-outline {
  border-top: 3px solid #3373ba;
}
.card-secondary.card-outline {
  border-top: 3px solid #56718d;
}
.card-info.card-outline {
  border-top: 3px solid #2fbecc;
}
.card-success.card-outline {
  border-top: 3px solid #34c672;
}
.card-warning.card-outline {
  border-top: 3px solid #eb7500;
}
.card-danger.card-outline {
  border-top: 3px solid #e85559;
}
.card-title {
  font-size: 1rem;
}
/*#manage-account img {
  width: 52px;
}*/

/* tabs n navs */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #5c5c5c;
  font-weight: 600;
  border: none;
  border-bottom: 2px #3373ba solid !important;
  background-color: transparent;
}
#vertical-tab .nav-tabs .nav-link.active {
  border: 1px #e3e6ea solid !important;
  border-right: 1px #fff solid !important;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}
.nav-tabs .nav-item a {
  color: #b3b3b3;
  padding-bottom: 4px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #295c95;
}
.nav-pills .nav-link:not(.active):hover {
  color: #3373ba;
}
.nav-link {
  padding: 0.5rem 0.75rem;
}
#vert-tabs-tab .nav-link.active {
  border-bottom: none !important;
  color: #3373ba;
}

/* breadcrumb */
.block-ruby {
  display: block ruby;
}

/* form */
.form-control {
  border-radius: 0.25rem;
  border: 1px solid #ebebeb;
  font-size: 0.78rem;
  height: calc(1.75rem + 2px);
}
.form-control-lg {
  height: calc(2.25rem + 2px) !important;
  font-size: 1rem !important;
}
.form-group {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.form-control-plaintext {
  font-size: 0.78rem;
}
/*.input-group-append .btn{
  border: 0px solid transparent;
}*/
.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-group-text {
  border-radius: 0.25rem;
  color: #707070;
  padding: 0.275rem 0.75rem;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #f4f4f4;
  opacity: 1;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #34c672;
}
.form-control.is-warning {
  border-color: #eb7500;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #e85559;
}
.icheck-primary > input:first-child:checked + input[type='hidden'] + label::before,
.icheck-primary > input:first-child:checked + label::before {
  background-color: #3373ba;
  border-color: #3373ba;
}
.icheck-danger > input:first-child:checked + input[type='hidden'] + label::before,
.icheck-danger > input:first-child:checked + label::before {
  background-color: #e85559;
  border-color: #e85559;
}
.icheck-success > input:first-child:checked + input[type='hidden'] + label::before,
.icheck-success > input:first-child:checked + label::before {
  background-color: #34c672;
  border-color: #34c672;
}
.select2-container--default .select2-selection--single {
  border-radius: 0.25rem;
  height: 2.25rem;
  border: 1px solid #ebebeb;
}
.select2-container--default .select2-selection--multiple {
  border-radius: 0.5rem;
  height: 2.5rem;
  border: 1px solid #ebebeb;
}
.select2-container--bootstrap4 .select2-selection {
  border-radius: 0.5rem;
}
.bootstrap-duallistbox-container select {
  padding: 0.5rem;
}
#bootstrap-duallistbox-nonselected-list_ {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border: 1px #ebebeb solid;
}
[class*='icheck-'] > input:first-child + input[type='hidden'] + label::before,
[class*='icheck-'] > input:first-child + label::before {
  border-radius: 0.25rem;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
  background: #3373ba;
  color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
.active .bs-stepper-circle {
  background-color: #3373ba;
}
.bs-stepper .step-trigger {
  padding: 1rem;
}
.input-group-text {
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}
label:not(.form-check-label):not(.custom-file-label) {
  font-weight: 600;
}
.form-check-input {
  margin-top: 0.15rem;
}
input[type='checkbox'],
input[type='radio'] {
  accent-color: #3373ba;
}

/* hr */
hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* alert */
.alert-primary {
  color: #3373ba;
  background-color: #d6e3f1;
  border-color: #adc7e3;
}
.alert-secondary {
  color: #56718d;
  background-color: #dde3e8;
  border-color: #bbc6d1;
}
.alert-success {
  color: #34c672;
  background-color: #d6f4e3;
  border-color: #aee8c7;
}
.alert-warning {
  color: #e85559;
  background-color: #faddde;
  border-color: #f6bbbd;
}
.alert-danger {
  color: #ed872e;
  background-color: #fbe7d5;
  border-color: #fbe7d5;
}
.alert-info {
  color: #4fa9dd;
  background-color: #dceef8;
  border-color: #b9ddf1;
}
.alert-light {
  color: #5d586c;
  background-color: #f4f6f9;
  border-color: #dfdfe3;
}

/* table */
.table-bordered td,
.table-bordered th {
  border: 1px solid #ebebeb;
}
.table td,
.table th {
  padding: 0.25rem 0.75rem;
}
.page-link {
  color: #3373ba;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.75rem;
}
.page-item.active .page-link {
  background-color: #3373ba;
  border-color: #3373ba;
}

/* pagination */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.table-header {
  position: sticky;
  top: 0;
}

/* footer */
#footer {
  padding: 4rem 0rem;
}
#footer a {
  color: #fff;
}
.main-footer {
  border-top: 1px solid #ebebeb;
  color: #858585;
}

/* list */
.list-group {
  border-radius: 0.5rem;
}
.list-group-item.active {
  background-color: #3373ba;
  border-color: #3373ba;
}
.list-group-item {
  border: 1px solid #ebebeb;
  padding: 0.5rem 1.25rem;
}

/* shadow */
.shadow-10 {
  box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.1);
}
.shadow-20 {
  box-shadow: 0px 1px 3px rgba(48, 49, 51, 0.1);
}
.shadow-40 {
  box-shadow: 0px 2px 4px rgba(48, 49, 51, 0.1);
}
.shadow-60 {
  box-shadow: 0px 4px 8px rgba(48, 49, 51, 0.1);
}
.shadow-80 {
  box-shadow: 0px 8px 16px rgba(48, 49, 51, 0.1);
}
.shadow-100 {
  box-shadow: 0px 16px 24px rgba(48, 49, 51, 0.1);
}

.shadow-primary-10 {
  box-shadow: 0px 0px 1px rgba(51, 115, 186, 0.1);
}
.shadow-primary-20 {
  box-shadow: 0px 1px 3px rgba(51, 115, 186, 0.1);
}
.shadow-primary-40 {
  box-shadow: 0px 2px 4px rgba(51, 115, 186, 0.1);
}
.shadow-primary-60 {
  box-shadow: 0px 4px 8px rgba(51, 115, 186, 0.1);
}
.shadow-primary-80 {
  box-shadow: 0px 8px 16px rgba(51, 115, 186, 0.1);
}
.shadow-primary-100 {
  box-shadow: 0px 16px 24px rgba(51, 115, 186, 0.1);
}

.shadow-secondary-10 {
  box-shadow: 0px 0px 1px rgba(78, 168, 0.22, 0.1) !important;
}
.shadow-secondary-20 {
  box-shadow: 0px 1px 3px rgba(78, 168, 220, 0.1) !important;
}
.shadow-secondary-40 {
  box-shadow: 0px 2px 4px rgba(78, 168, 220, 0.1) !important;
}
.shadow-secondary-60 {
  box-shadow: 0px 4px 8px rgba(78, 168, 220, 0.1) !important;
}
.shadow-secondary-80 {
  box-shadow: 0px 8px 16px rgba(78, 168, 220, 0.1) !important;
}
.shadow-secondary-100 {
  box-shadow: 0px 16px 24px rgba(78, 168, 220, 0.1) !important;
}

.shadow-dark-10 {
  box-shadow: 0px 0px 1px rgba(13, 13, 13, 1) !important;
}
.shadow-dark-20 {
  box-shadow: 0px 1px 3px rgba(13, 13, 13, 1) !important;
}
.shadow-dark-40 {
  box-shadow: 0px 2px 4px rgba(13, 13, 13, 1) !important;
}
.shadow-dark-60 {
  box-shadow: 0px 4px 8px rgba(13, 13, 13, 1) !important;
}
.shadow-dark-80 {
  box-shadow: 0px 8px 16px rgba(13, 13, 13, 1) !important;
}
.shadow-dark-100 {
  box-shadow: 0px 16px 24px rgba(13, 13, 13, 1) !important;
}

/* datepicker */
.datepicker {
  padding: 1rem !important;
}

/* timeline */
.time-label span {
  border: 1px rgba(0, 0, 0, 0.1) solid;
}
.time-label small {
  font-size: 0.78rem;
  margin: 1rem 0.25rem;
  color: #707070;
}
.timeline > div {
  margin-bottom: 18px;
}
.timeline > div > .timeline-item {
  box-shadow: none;
}
.timeline i {
  font-size: 6px !important;
  height: 16px !important;
  left: 26px !important;
  line-height: 18px !important;
  width: 16px !important;
}
.timeline-item i {
  font-size: 12px !important;
  width: 14px !important;
  height: 14px !important;
}
.timeline::before {
  background-color: #eaeaea;
  left: 33px;
  width: 2px;
}

/* chat */
.direct-chat-messages {
  height: 430px;
  border-radius: 0.5rem;
  padding: 1rem;
}
.right .direct-chat-text {
  background-color: #a7d4ee;
  border: 1px solid #a7d4ee;
}
.right .direct-chat-text::after,
.right .direct-chat-text::before {
  border-left-color: #a7d4ee;
}
.bubble-notif {
  font-size: 0.78rem;
  font-weight: bold;
  background: #dc3545;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  color: #fff;
  position: absolute;
  right: 8px;
  top: 8px;
}
.notification-mark {
  font-size: 8px;
  position: absolute;
  top: 4px;
  right: 4px;
  color: #dc3545;
}
.nav-link .notification-mark {
  right: 32px;
  top: 14px;
}
.sidebar-collapse .notification-mark {
  top: 8px;
  right: 20px;
}

/* dropzone */
.dropzone {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ebebeb;
  border-radius: 0.5rem;
}
.dz-message {
  color: #707070;
}

/* dashboard */
.icon-dashboard {
  position: absolute;
  right: 16px;
}
.rating p {
  font-size: 0.78rem;
  font-weight: bold;
}
#stats .card {
  min-height: 120px;
}

/* avatar */
.avatar-xs {
  height: 32px;
  width: 32px;
}
.avatar-sm {
  height: 48px;
  width: 48px;
}
.avatar-md {
  height: 72px;
  width: 72px;
}
.avatar-lg {
  height: 96px;
  width: 96px;
}
.avatar-xl {
  height: 120px;
  width: 120px;
}

/* custom input */
.select-role {
  display: inline-block;
}
.selected {
  background: #3373ba;
  color: white;
}
.select-role p {
  margin: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: bold;
}
.select-role {
  padding: 1rem 0.5rem;
  border: 1px solid #3373ba;
  border-radius: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #3373ba;
}
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #2e68a8;
  background-color: #3373ba;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #ffffff;
}
.custom-control-label::before {
  background-color: #f1f1f2;
  border: #e2e1e5 solid 1px;
  box-shadow: unset;
}

.custom-switch .custom-control-label::after {
  background-color: #d4d3d8;
}
.custom-file > input {
  display: none;
}
.profile.custom-file {
  position: absolute;
  left: 2rem;
  top: -4px;
}
.btn-change-image {
  color: #3373ba;
  padding: 0.5rem;
  background: #fff;
  border-radius: 50%;
  border: 1px rgba(0, 0, 0, 0.25) solid;
}
/*#manage-account p{
  min-height: 32px;
}*/
#general-information-change-password .toggle-password {
  margin-top: -28px;
}
#quotation-list {
  background: #fff;
  min-height: 245px !important;
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom,
.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Custom Text */
.text-sm {
  font-size: 0.75rem !important;
}

/* badge
.badge {
  font-size: 90%;
} */

/* list */
#filter {
}
.additional-info {
  border: 1px solid rgb(235, 235, 235);
  background-color: rgb(247, 247, 247);
  padding: 0px 16px 8px;
  border-radius: 8px;
}

/* modal */
.modal {
  padding-right: unset !important;
}
.modal-full {
  max-width: 100%;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
}
.modal-full .modal-content {
  height: auto;
  min-height: 100%;
  border-radius: 0;
}
.modal-dialog-scrollable {
  max-height: 100%;
}
.item-area {
  background: #f8f9fa;
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin: 0.25rem;
  border: 1px #e9ecef solid;
}
.top-section {
  border-bottom: 1px #e9ecef solid;
  margin-bottom: 0.5rem;
}
.modal-header {
  padding: 0.75rem 1rem;
}
.modal-header span {
  font-size: 1.2rem;
  position: absolute;
  right: 1rem;
}
.modal-footer {
  padding: 0.75rem 1rem !important;
}
#chat-panel .chat-box {
  height: 430px;
  background: #f8f8f9;
  border-radius: 0rem 0rem 0.25rem 0.25rem;
  border: 1px #f1f1f2 solid;
  overflow-y: scroll;
  background-image: url('../img/img-chat-pattern.png');
}
#chat-panel .chat-box.empty-start {
  border-radius: 0.25rem;
  height: 580px;
}
.empty-start i {
  font-size: 0.75rem;
  background: #3373ba;
  padding: 0.5rem;
  border-radius: 1rem;
  color: #fff;
}
.chat-list .badge {
  top: 24px;
  padding: 3px 6px;
}
.chat-list .active {
  background: #eff4fa;
  border: 1px #d6e3f1 solid;
}
.chat-box .right {
  background: #eff4fa;
  border: 1px #d6e3f1 solid;
  border-radius: 0.5rem 0.5rem 0rem 0.5rem;
  float: right;
  width: 90%;
}
.chat-box .left {
  border-radius: 0.5rem 0.5rem 0.5rem 0rem;
}
.chat-list {
  height: 460px;
  overflow-y: scroll;
}
.chat-list .nav-pills .nav-link {
  border: 1px #e9ecef solid;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}
.chat-list .nav-pills .nav-link.active {
  background: #eff4fa;
  border: 1px #d6e3f1 solid;
}
.chat-title {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px #ececec solid;
  margin: 0rem;
  border-radius: 0.25rem 0.25rem 0 0;
}
.start-chat {
  width: fit-content;
  padding: 0.5rem 0.75rem;
  background: #d6e3f1;
  color: #3373ba;
  border-radius: 0.25rem;
  margin: 0px auto;
  margin-top: 12rem;
}
.start-chat-aanwijzing {
  width: fit-content;
  padding: 0.5rem 0.75rem;
  background: #d6e3f1;
  color: #3373ba;
  border-radius: 0.25rem;
  margin: 0px auto;
  text-align: center;
  /* margin-top: 12rem; */
}
#chat-panel .dropdown-toggle::after {
  display: none;
}
#reply-box {
  border-left: 8px #3373ba solid;
}
#reply-box-inside .card.left {
  border-left: 8px #3373ba solid;
}

/* Bootstrap stepper */
.bs-stepper .step-trigger {
  font-size: 0.75rem;
  padding: 1rem 0rem;
}
.bs-stepper-content {
  padding: 0 6px 20px;
}

/* Bootstrap Tourist */
.popover {
  max-width: 350px;
}
.popover-body h6 {
  margin: 16px 0px 0px 0px;
}
.popover-body p {
  margin: 4px 0px 16px 0px;
}
.tour-backdrop {
  height: 1000px;
}
#first-transaction-onboarding .bs-stepper-circle {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.35em 0 !important;
}
#first-transaction-onboarding .bs-stepper-label {
  font-size: 0.75rem;
}

/* Slider */
.card-img-top {
  height: 148px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
  width: 100%;
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 0.15;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 16px;
  height: 16px;
}

/* Sortable */
.ui-sortable {
  border: 1px #dee2e6 solid;
  padding: 0.75rem 0.5rem 0.25rem 0.5rem;
  margin: 0.5rem 0rem 0.5rem 0rem;
  border-radius: 0.25rem;
  min-height: 50px;
}
#left,
#right {
  min-height: 170px;
  max-height: 490px;
  overflow-y: scroll;
}

/* media screen */
@media (max-width: 767.98px) {
  /* rating */
  .rating td {
    min-width: 12rem;
  }
  /* login */
  #check-company {
    margin-top: 0.5rem;
  }
  .tour-backdrop {
    height: 2300px;
  }
}

/* collapse */
[data-toggle='collapse'].collapsed .if-not-collapsed {
  display: none;
}
[data-toggle='collapse']:not(.collapsed) .if-collapsed {
  display: none;
}
.hidden-panel {
  display: none;
}

/* draggable */
.origin-section {
  border: none;
  padding: unset;
  margin: unset;
}

@media (max-width: 1320px) {
  .list-group-item {
    padding: 0.6rem 1.25rem;
  }
  .float-chatting {
    position: fixed;
    right: 24px;
    bottom: 32px;
  }
}

/* Integration */
#application-integration .card p {
  min-height: 56px;
}

/* Pricing */
#pricing .list-unstyled li {
  font-size: 0.9rem;
}
#pricing .list-unstyled p {
  font-size: 0.9rem;
}
.bs-stepper .step-trigger {
  font-size: 0.9rem;
}
#list-modul p {
  font-size: 0.9rem;
}
.pricing-area {
  min-height: 120px;
}

/* premium features */
.nav-tabs .premium-features .nav-link {
  color: #ed872e;
}
.nav-tabs .premium-features .nav-link.active {
  border-bottom: 2px #ed872e solid !important;
}

.training-box {
  position: fixed;
  z-index: 20000;
  background: #ed872e;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-align: left;
  bottom: 16px;
  right: 1%;
  box-shadow: 0px 2px 8px rgba(237, 135, 46, 0.5);
}
.dropdown-toggle::after {
  display: none;
}
