body {
  font-family: "Open Sans", sans-serif;
  color: #334155;
  background: #f8fafc;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body,
html {
  font-size: 16px;
}

body>* {
  font-size: 14px;
}

rt.display-block {
  display: block;
}

.tooltip {
  position: fixed;
}

.color-white {
  color: #fff !important;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

[dir="rtl"] .mright5 {
  margin-right: 0;
  margin-left: 5px;
}

[dir="rtl"] .mright10 {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .mleft5 {
  margin-left: 0;
  margin-right: 5px;
}

[dir="rtl"] .mleft10 {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .input-group-addon:last-child {
  border-left: 1px solid #ccc;
}

[dir="rtl"] .colorpicker.colorpicker-visible.dropdown-menu {
  left: 0 !important;
  right: auto;
  padding-left: 3px;
  margin-left: 45px;
}

.border-right {
  border-right: 1px solid #f0f0f0;
}

.line-throught {
  text-decoration: line-through;
}

.full-width {
  width: 100%;
}

.no-margin {
  margin: 0 !important;
}

.no-mtop {
  margin-top: 0 !important;
}

.no-p-left {
  padding-left: 0 !important;
}

.no-p-right {
  padding-right: 0;
}

.relative {
  position: relative;
}

.font-medium {
  font-size: 15px;
}

.inline-block {
  display: inline-block;
}

.alert-validation {
  margin-top: 5px;
}

.table-image {
  height: 75px;
  width: 250px;
  margin: 15px 0;
}

.announcement small {
  font-size: 12px;
  color: #333;
}

.announcement {
  font-size: 14px;
}

.bgwhite {
  background: #fff;
  border: 1px solid #e4e5e7;
}

.warning-bg {
  background: #ff6f00 !important;
  color: #fff !important;
  border: 1px solid #ff6f00 !important;
}

.success-bg {
  background: #84c529 !important;
  color: #fff !important;
  border: 1px solid #84c529 !important;
}

.primary-bg {
  background: #28b8da;
  color: #fff !important;
  border: 1px solid #28b8da;
}

.info-bg {
  background: #03a9f4 !important;
  color: #fff !important;
  border: 1px solid #03a9f4 !important;
}

.danger-bg {
  background: #fc2d42 !important;
  color: #fff !important;
  border: 1px solid #fc2d42 !important;
}

.submenu {
  display: inline-block;
  float: right;
  margin-bottom: 0;
}

.submenu li {
  display: inline-block;
  margin-right: 15px;
}

.submenu li:last-child {
  margin-right: 0;
}

.submenu li a {
  font-size: 17px;
  color: #475569 !important;
}

.submenu li a:active,
.submenu li a:focus,
.submenu li a:hover {
  color: #1e293b !important;
}

.tickets table tr.text-danger a {
  color: #fc2d42;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

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

#wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

h1,
h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

.h3,
.h4,
h3,
h4 {
  font-weight: 400;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
}

.navbar {
  padding: 0;
  min-height: 60px;
  border-radius: 0;
}

.navbar-default {
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  margin-bottom: 0;
  padding: 20px 0;
}

.navbar-default .navbar-nav>li>a {
  color: #334155;
  line-height: 40px;
  font-size: 14.5px;
  display: inline;
  margin-right: 3px;
}

.navbar-default .navbar-nav>li>a i {
  margin-right: 5px;
  color: inherit;
}

.navbar-default .navbar-nav>li:last-child>a {
  margin-right: 0;
}

@media (min-width: 768px) {
  .navbar-nav>li>a {
    padding: 8px 10px;
  }
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #0f172a;
  border-radius: 6px;
  background: #f1f5f9;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
  background: #f1f5f9;
  border-radius: 4px;
  color: #0f172a;
  transition: ease-in-out 0.2s;
}

.navbar-default .navbar-nav>li.dropdown>a.dropdown-toggle:focus,
.navbar-default .navbar-nav>li.dropdown>a.dropdown-toggle:hover {
  background: 0 0;
  border-radius: 0;
}

.navbar a.navbar-brand {
  padding: 0;
  height: auto;
  margin-right: 10px;
}

.navbar a.navbar-brand img {
  width: auto;
  height: 50px;
}

.navbar-default .navbar-nav>li.customers-nav-item-login>a {
  background: #2563eb !important;
  color: #fff !important;
  display: inline;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px !important;
  padding: 8px 16px;
  margin-left: 10px;
}

.navbar-default .navbar-nav>li.customers-nav-item-login>a:active,
.navbar-default .navbar-nav>li.customers-nav-item-login>a:hover {
  background: #1d4ed8 !important;
  border-radius: 6px !important;
}

.navbar-default .navbar-nav>li.customers-nav-item-profile>a {
  padding-right: 0;
}

@media (max-width: 767px) {
  .customers-nav-item-languages {
    display: none;
  }
}

.btn.btn-input-group {
  padding: 7px 16px;
  border: 1px transparent;
}

.btn-icon {
  padding: 2px 6px 2px 6px !important;
}

.original-button {
  margin-top: 22px;
  padding: 6px 12px;
}

#client-home-chart {
  max-width: 100%;
}

.client-reply .panel-body {
  background: #fefce8 !important;
  color: #854d0e;
}

body.viewinvoice .alert {
  margin-top: 10px;
  margin-bottom: -7px;
  border-radius: 1px;
}

.navbar-default .navbar-brand.logo-text {
  font-size: 24px;
  margin-top: 13px;
  display: inline-block;
  color: #1e293b;
  font-weight: 600;
}

.logo-text:active,
.logo-text:focus,
.logo-text:hover {
  color: #0f172a;
}

@media (max-width: 767px) {
  .navbar a.navbar-brand img {
    margin-left: 25px;
  }

  .navbar-default .navbar-brand.logo-text {
    margin-left: 15px;
    margin-top: 15px;
  }
}

.p7 {
  padding: 7px;
}

.p8 {
  padding: 8px;
}

.p8-half {
  padding: 8.5px;
}

.p15 {
  padding: 15px;
}

.valign-middle {
  vertical-align: middle;
}

.mtop5 {
  margin-top: 5px;
}

.mtop7 {
  margin-top: 7px;
}

.mtop10 {
  margin-top: 10px;
}

.mtop15 {
  margin-top: 15px;
}

.mtop20 {
  margin-top: 20px;
}

.mtop25 {
  margin-top: 25px;
}

.mtop30 {
  margin-top: 30px;
}

.mtop40 {
  margin-top: 40px;
}

.mbot5 {
  margin-bottom: 5px;
}

.mbot10 {
  margin-bottom: 10px;
}

.mbot15 {
  margin-bottom: 15px;
}

.mbot20 {
  margin-bottom: 20px;
}

.mbot25 {
  margin-bottom: 25px;
}

.mbot30 {
  margin-bottom: 30px;
}

.mbot40 {
  margin-bottom: 40px;
}

.mleft5 {
  margin-left: 5px;
}

.mleft10 {
  margin-left: 10px;
}

.mright5 {
  margin-right: 5px;
}

.mright10 {
  margin-right: 10px;
}

.padding-30 {
  padding: 30px !important;
}

.no-mbot {
  margin-bottom: 0;
}

.invoice-quick-info h5 {
  margin-top: 0;
}

.table.items {
  margin-top: 25px;
  font-size: 14px;
}

.table.items thead {
  background: #585656;
  color: #ffffff;
}

.table.items>thead:first-child>tr:first-child>th {
  border-top: 1px solid #e2e8f0;
}

.table.items thead th {
  border-right: 1px solid #e2e8f0;
}

.table.items thead th:first-child {
  border-left: 1px solid #e2e8f0;
}

.table.items tbody>tr>td,
.table.items thead>tr>th {
  padding: 8px 10px;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e2e8f0;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #cbd5e1;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav>li>a {
    line-height: 35px;
    color: #64748b;
  }

  .navbar-default .navbar-nav>.active>a,
  .navbar-default .navbar-nav>.active>a:focus,
  .navbar-default .navbar-nav>.active>a:hover,
  .navbar-default .navbar-nav>li>a:focus,
  .navbar-default .navbar-nav>li>a:hover {
    background: 0 0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #475569;
  }

  .navbar-default .navbar-nav>li.customers-nav-item-login {
    padding-bottom: 10px;
  }

  .navbar-default .navbar-nav>li.customers-nav-item-login>a {
    margin-left: 15px;
  }

  .navbar a.navbar-brand {
    padding: 13px 0;
  }

  .navbar-toggle {
    margin-top: 15px;
  }

  #staff_logged_in {
    display: none;
  }

  .viewestimate .panel-body,
  .viewinvoice .panel-body {
    padding: 0;
  }
}

.dataTables_length select {
  padding-top: 5px;
  height: inherit;
}

[dir="rtl"] div.dataTables_wrapper div.dataTables_filter {
  text-align: left;
}

[dir="rtl"] div.dataTables_wrapper {
  direction: rtl;
}

[dir="rtl"] div.dataTables_wrapper div.dataTables_filter .input-group-addon {
  border-right: 1px solid #bfcbd9;
}

.label-href,
.label-href:visited {
  outline: 0 !important;
  border: 0 !important;
}

.pointer {
  cursor: pointer;
}

.mime {
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 1px 0 4px 26px;
}

.mime-word {
  background-image: url(../../../images/mime/word.png);
}

.mime-excel {
  background-image: url(../../../images/mime/excel.png);
}

.mime-powerpoint {
  background-image: url(../../../images/mime/powerpoint.png);
}

.mime-pdf {
  background-image: url(../../../images/mime/pdf.png);
}

.mime-zip {
  background-image: url(../../../images/mime/zip.png);
}

.mime-image {
  background-image: url(../../../images/mime/image.png);
}

.mime-file {
  background-image: url(../../../images/mime/file.png);
}

.mime-photoshop {
  background-image: url(../../../images/mime/photoshop.png);
}

.mime-illustrator {
  background-image: url(../../../images/mime/illustrator.png);
}

.mime-video {
  background-image: url(../../../images/mime/video.png);
}

.mime-audio {
  background-image: url(../../../images/mime/audio.png);
}

.files-container {
  margin: 0 0 10px;
}

.files {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.hr-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mime>a {
  color: #555 !important;
  text-decoration: none;
}

.white {
  color: #fff;
}

.advanced-editor-wrapper {
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.staff-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.staff-profile-xs-image {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.staff-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.staff-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

.task-attachment {
  border: 1px solid #f0f0f0;
  padding: 10px;
  border-radius: 3px;
  max-height: 255px;
  min-height: 255px;
  overflow: hidden;
}

.task-attachment .task-attachment-no-preview {
  margin-top: 45px;
  text-align: center;
}

.task-attachment .preview_image {
  margin: 0;
  width: 100%;
}

.task-attachment .open-in-external {
  position: absolute;
  right: 30px;
}

.task-attachment .task-attachment-user {
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
  margin-left: 0;
  border-bottom: 1px solid #f0f0f0;
}

.media-body {
  word-break: break-word;
}

#proposal-wrapper {
  overflow: hidden;
  min-height: 100%;
}

#proposal-wrapper .proposal-left img {
  margin-left: 10px;
  margin-right: 10px;
}

div.proposal-wrapper img:not(.media-object) {
  display: block;
  max-width: 100%;
  height: auto;
}

.proposal-comment {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.table.proposal-items thead>tr>th {
  padding-left: 10px;
}

.table.proposal-items tbody>tr>td,
.table.proposal-items thead>tr>th {
  text-align: left;
}

.client-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.client-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

#task h4 {
  font-size: 15px;
}

#task h5 {
  font-size: 14px;
}

#task .task-info {
  font-size: 14px;
  vertical-align: middle;
  padding: 10px;
}

#task .task-info h5 {
  font-size: 14px;
  font-weight: 400;
}

.jquery-comments [contentEditable="true"]:empty:not(:focus):before {
  color: #a1b4cc;
  font-size: 14px;
}

.jquery-comments ul.main {
  list-style: none !important;
}

.jquery-comments.tc-content ul.main ul:not(.child-comments) {
  list-style: initial !important;
}

.jquery-comments .highlight-font-bold,
.jquery-comments ul.main li.comment .actions>*,
.jquery-comments ul.main li.comment .name,
.jquery-comments ul.navigation li {
  font-weight: 500 !important;
}

.jquery-comments ul.main li.comment .name {
  color: #0081bb;
}

.jquery-comments ul.main li.comment .wrapper .content {
  padding: 5px 0 5px 0;
}

.jquery-comments ul.navigation li {
  color: #323a45;
}

.jquery-comments .textarea-wrapper .control-row>span.upload {
  padding: 5px 20px;
  background-color: #7d838b;
}

.jquery-comments .highlight-background {
  background: #03a9f4 !important;
}

.jquery-comments .textarea-wrapper .control-row>span {
  padding: 5px 20px !important;
  border-radius: 4px;
}

.jquery-comments .textarea-wrapper .control-row {
  margin-top: 10px;
}

.jquery-comments ul.main li.comment .actions>* {
  color: #7c838b;
}

.jquery-comments ul.navigation .navigation-wrapper {
  padding: 10px 0 0 0;
}

.jquery-comments ul.navigation {
  border-bottom: 1px solid #efefef;
  margin-bottom: 1.5em;
}

.jquery-comments .textarea-wrapper {
  padding-left: 21px;
}

.jquery-comments .textarea-wrapper:before {
  border: 0;
}

.jquery-comments .textarea-wrapper .textarea {
  border-radius: 3px;
  border: 1px solid #bfcbd9;
}

.project-info-bg {
  background: #fbfbfb !important;
  color: #333 !important;
  border-top: 1px solid #e4e5e7;
  border-left: 1px solid #e4e5e7;
  border-right: 1px solid #e4e5e7;
  font-weight: 500;
}

.no-radius {
  border-radius: 0 !important;
}

.team-members .panel-body {
  padding: 0;
}

.team-members .media-left {
  padding: 10px;
}

.team-members .media-body {
  padding-right: 10px;
  padding-top: 12px;
}

.team-members .media:last-child {
  border-bottom: 0;
}

.team-members .media {
  margin-top: 0;
  border-bottom: 1px solid #f0f0f0;
}

.project-percent {
  position: absolute;
  font-size: 33px;
  font-weight: 500;
  top: 35%;
  left: 0;
  right: 0;
}

.project-file-image {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  margin-right: 15px;
}

#task-tracking-stats-modal {
  z-index: 999999999999;
}

.phase-logged-time {
  color: #3b6900;
}

.progress-bg-dark {
  background-color: #7c838b;
}

.project-overview-progress-bar {
  height: 50px;
  background-color: #7c838b;
  position: relative;
}

.project-overview-progress-bar .project-progress-number {
  font-size: 16px;
  position: absolute;
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 500;
  margin-top: 15px;
  text-shadow: 0 0 2px #333;
}

.task-user {
  border: 1px solid #f0f0f0;
  padding: 2px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.task-checklist-indicator {
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  width: 20px;
  height: 21px;
  display: inline-block;
}

.task-checklist-indicator i {
  margin: 0 auto;
  vertical-align: middle;
  margin-left: 3px;
}

#task-comments {
  background: #fdfdfd;
  margin-right: -20px;
  margin-left: -20px;
  padding: 20px;
  display: inline-block;
}

form.dropzone {
  background-color: #fbfdff;
  border: 1px dashed #c0ccda;
  border-radius: 6px;
}

.dropzone .dz-message {
  margin-top: 45px;
  color: #03a9f4;
}

@media (max-width: 768px) {
  #content {
    padding: 0px;
  }

  ._buttons .mleft5 {
    margin-left: 0 !important;
  }

  ._buttons .mright10 {
    margin-right: 0 !important;
  }

  ._buttons .pull-left,
  ._buttons .pull-right {
    float: none !important;
  }

  ._buttons .btn,
  ._buttons .btn-group {
    display: inline-block;
    margin-left: 0 !important;
    width: 100%;
    margin-bottom: 5px !important;
    float: none !important;
  }

  .project-overview-column {
    margin-top: 15px;
  }
}

.tasks-phases .panel-body {
  background: #fbfbfb;
  padding: 10px;
}

.tasks-phases ._task_wrapper {
  background: #fff;
  padding: 5px 10px 5px 10px;
  border: 1px solid #e4e5e7;
  border-radius: 4px;
}

.activity-feed {
  padding: 15px;
}

.activity-feed .feed-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 30px;
  border-left: 2px solid #84c529;
}

.activity-feed .feed-item:last-child {
  border-color: transparent;
}

.activity-feed .feed-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #4b5158;
}

.activity-feed .feed-item .date {
  position: relative;
  top: -5px;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.activity-feed .feed-item .text {
  position: relative;
  top: -3px;
}

.full-screen-modal {
  width: 90%;
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow-y: initial !important;
}

.full-screen-modal .modal-content {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.full-screen-modal .modal-footer {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.project_file_area,
.project_file_discusssions_area {
  overflow-y: scroll;
  height: 400px;
}

@media (max-width: 768px) {

  .project_file_area,
  .project_file_discusssions_area {
    height: auto !important;
  }

  .full-screen-modal {
    width: auto;
    height: auto;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px;
    overflow-y: initial !important;
  }

  .project_file_discusssions_area {
    margin-top: 30px;
  }

  .full-screen-modal .modal-footer {
    width: auto;
    position: relative !important;
  }
}

.preview_image {
  height: auto;
  width: 250px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-top: 15px;
}

.preview_image:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.preview_image img {
  width: 100%;
  height: auto;
}

.fc-event {
  padding: 8px !important;
  border: 0 !important;
  border-radius: 2px !important;
  margin: 5px 10px 5px 10px !important;
  font-size: 14px;
  cursor: pointer;
}

.fc-view {
  overflow-y: scroll;
}

#calendar .fc-day-header,
#calendar .fc-header-toolbar button,
#calendar .fc-toolbar .fc-center {
  text-transform: capitalize;
}

.tc-content ol,
.tc-content ul {
  list-style: inherit;
  margin-left: 15px;
}

.tc-content ol {
  list-style-type: decimal;
}

.tc-content table {
  margin-top: 0;
  border-collapse: initial;
}

.tc-content table>tbody>tr>td {
  padding: 5px 10px 5px 10px;
}

.tc-content img {
  max-width: 100%;
}

.tc-content table[border="1"],
.tc-content table[border="1"] td {
  border: 1px solid;
}

.tc-content em {
  font-style: italic;
}

.contract-view .tc-content ol,
.contract-view .tc-content ul,
.proposal-view .tc-content ol,
.proposal-view .tc-content ul {
  margin-left: 0;
}

.kb-search-jumbotron {
  /* margin-top: -20px; */
  margin-bottom: 10px;
  background: #f9fafb;
}

.has-feedback.has-feedback-left .form-control-feedback {
  left: 0;
}

.kb-search .form-control-feedback {
  left: 6px !important;
  top: 17px;
  font-size: 16px;
}

.kb-search input[type="search"] {
  padding-left: 40px;
  height: 50px;
  font-size: 17px;
}

.kb-search input[type="search"]::-webkit-input-placeholder {
  color: #a7a7a7;
  font-size: 14px;
}

.kb-search input[type="search"]:focus {
  padding-left: 15px;
}

.kb-search button[type="submit"] {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#botlink,
#toplink {
  position: fixed;
  right: 7.5%;
  bottom: 53%;
  padding: 10px;
  margin: 0 -20px 0 0;
  color: #666;
  background: #e9ebef;
  font-size: 1.5em;
  border: 1px solid #b4b4b4;
  border-bottom: 1px solid #b8b8b8;
  border-radius: 6px 6px 0 0;
  z-index: 99;
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

#botlink {
  top: 47%;
  padding: 10px;
  bottom: auto;
  border: 1px solid #b4b4b4;
  border-top: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
}

#botlink:hover,
#toplink:hover {
  color: #84c529;
  background: #fcfcfc;
  text-decoration: none;
}

.panel-body.project-description {
  padding: 11px;
}

.custom-field-inline-edit-link {
  float: left;
  margin-right: 5px;
}

.task-single-status .label {
  float: left;
}

._task_wrapper.overdue-task {
  background: #f2dede !important;
  border-color: #eab8b7 !important;
}

.form-group+p.alert-validation {
  margin-top: -10px;
}

@media screen and (max-height: 575px),
screen and (min-width: 992px) and (max-width: 1199px) {

  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.83);
    -webkit-transform: scale(0.83);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

td[align="left"],
th[align="left"] {
  text-align: left;
}

td[align="right"],
th[align="right"] {
  text-align: right;
}

td[align="center"],
th[align="center"] {
  text-align: center !important;
}

[dir="rtl"] td[align="left"],
[dir="rtl"] th[align="left"] {
  text-align: right !important;
}

[dir="rtl"] td[align="right"],
[dir="rtl"] th[align="right"] {
  text-align: left !important;
}

.signature-pad--body {
  border-radius: 4px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #c0cbda;
}

.gdpr-right {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 35px 15px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 6px;
}

.gdpr-right .gdpr-right-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
}

.gdpr-purpose {
  border: 1px solid #d8d8d8;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.gdpr-purpose .gdpr-purpose-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: #5a5a5a;
}

.list-status h3 {
  margin-top: 0;
}

.list-status:last-child {
  border-right: 0px;
}

.list-status a {
  border: 1px solid #eee;
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
}

.list-status a.active {
  background: #f9fafb;
}

.ticket-info p:last-child {
  margin-bottom: 0;
}

.gpicker {
  opacity: 0;
}

.gpicker+div[id^="dropbox-chooser"] {
  float: right;
  margin-left: 5px;
}

.gpicker {
  height: 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  color: #4c4c4c;
  text-decoration: none;
  padding: 1px 7px 5px 3px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-bottom-color: #d4d4d4;
  background: #fcfcfc;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#fcfcfc),
      to(#f5f5f5));
  background: linear-gradient(to bottom, #fcfcfc 0, #f5f5f5 100%);
  line-height: 18px !important;
  text-decoration: none !important;
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
}

.preview-sticky-header {
  z-index: 1;
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 1px 15px 1px rgba(90, 90, 90, 0.08);
  box-shadow: 0 1px 15px 1px rgba(90, 90, 90, 0.08);
  width: 100% !important;
  left: 0 !important;
}

@media (max-width: 767px) {
  .preview-sticky-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.preview-sticky-header .sticky-hidden {
  display: none !important;
}

.preview-sticky-header .sticky-visible {
  display: inherit !important;
}

.mobile .preview-sticky-header {
  padding: 15px;
}

@media (min-width: 1281px),
(min-width: 1025px) and (max-width: 1280px) {
  .preview-top-wrapper {
    margin-top: 25px;
  }
}

[dir="rtl"] .bootstrap-select .dropdown-toggle .filter-option {
  right: 0;
  margin-right: auto;
  text-align: right;
  padding-right: 16px;
}

.task-comment .task-attachment-col-more {
  display: block !important;
}

.comment-content .task-attachment-col:nth-child(2),
.comment-content .task-attachment-col:nth-child(3),
.comment-content .task-attachment-col:nth-child(4) {
  margin-top: 15px;
}

.task-comment .task-attachment-col {
  margin-left: 0;
  padding-left: 0;
}

.tasks-phases {
  overflow: scroll hidden;
}

.kan-ban-col {
  width: 326px;
  height: 416px;
  margin-right: 6px;
  display: inline-block;
}

.tasks-phases .kan-ban-col .panel-body {
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .kan-ban-col {
    width: 216px;
    height: 416px;
    margin-right: 6px;
    display: inline-block;
  }
}

body[dir="rtl"].safari .table-responsive .table {
  max-width: none;
  -webkit-overflow-scrolling: touch !important;
}

@media (max-width: 991px) {
  .register-heading.text-right {
    text-align: center;
  }
}

.g-recaptcha>div {
  margin: 0 auto;
}

.honey-element {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

@media screen and (max-height: 575px),
screen and (min-width: 992px) and (max-width: 1199px) {

  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.83);
    -webkit-transform: scale(0.83);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

/* CSS FOR SLIDES BY CUSTOM  */

.hero-img img {
  height: 70vh;
  width: 100%;
}

.companies_brands {
  display: flex;
}

.companies_brands img {
  height: 100px;
  width: 250px;
}

.home-top-brands {
  padding-bottom: 3rem !important;
  padding-top: 1.5rem !important;
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
}

.top-featured-icon .br-icon {
  border: 1px solid #eaeaea !important;
  border-radius: 0.5rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 10%),
    0 1px 2px 0 rgb(0 0 0 / 6%);
  margin-right: 10px;
  padding: 4px;
}

.top-featured-icon .br-icon img {
  margin: 0 auto;
}

.top-featured-icon .slick-list.draggable {
  height: 55px;
}

.sec-title {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  text-transform: capitalize;
  color: #262626;
}

.title-section a {
  padding: 4px 7px 4px 0px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #262626;
}

.company_branding_parts img {
  width: 165px;
  height: 299px;
  margin: 0px 1.5rem;
}

.annoucement-bar {
  background: #109ddd;
  color: #fff;
  padding: 0.5rem;
}

div.annoucement-bar a {
  color: #fff;
}

.annoucement-bar span {
  text-shadow: 2px 2px 4px #333;
  letter-spacing: 0.25px;
}

/* CSS FOR SLIDES BY CUSTOME ------------------------------------------------------------------------ */
.expand-lg2 {
  background-color: #e31b23 !important;
  color: #fff;
  margin: 0;
  /* padding-top: 10px; */
  /* height: 44px; */
}

.menu-nav a {
  color: #fff !important;
}

.nav-menu2 {
  display: flex !important;
  align-items: center;
  padding: 6px 0 6px 35px;
  justify-content: space-between;
}

/* .popup-content.active { */
/*Shows pop-up content when "active" class is present */
/* visibility: visible; */
/* } */

/* CSS FOR SEARCH INPUT FIELD ------------------------------------*/

.search-form-header input#product_search {
  border: 1px solid #e4e4e4;
  border-left: 0;
}

.search-form-header select#all-category {
  width: 100px;
}

div.search-form-header {
  display: flex;
}

select#all-category {
  border: 1px solid #e0e0e0;
  height: 44px;
  outline: 0;
  box-shadow: none;
  width: 150px;
  font-size: 14px;
  color: #4f4f4f;
  padding: 0.375rem 0.75rem;
}

input#product_search {
  height: 44px;
  outline: 0;
  border: none;
  box-shadow: none;
  font-size: 14px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

button.submit_serch_btn {
  height: 44px;
  width: 60px;
  border: 1px solid #13974e;
  background: #13974e;
  outline: 0;
}

button.submit_serch_btn i {
  font-size: 14px;
  color: #fff;
}

.bootstrap-select .btn {
  display: contents;
  font-size: 14px;
  height: 37px;
  padding-top: 10px;
  border-radius: 0;
  line-height: 3;
}

.search-form-header input#product_search {
  border: 4px solid #757575;
  border-left: 4px solid #757575;
}

.mydiv .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 127px !important;
}

/* CSS FOR SEARCH INPUT FIELD ------------------------------------*/

/*---------------------------------------- CSS FOR FOOTER ------------------------------------- */

.main_footer {
  max-width: 1773px !important;
}

.footer .nav-menu {
  color: #ebebeb;
}

.footer {
  /*color: #adadad;*/
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  background-color: #262626 !important;
  padding: 10px 0 0px;
}

.left_footer {
  justify-content: center;
  padding-left: 4rem !important;
}

.contact_wrapper {
  line-height: 26px;
  /* padding: 0 0 0 40px; */
  box-sizing: border-box;
}

.contact_email a {
  color: #ebebeb;
}

.contact_email a:hover {
  color: #e89754;
}

.third {
  padding-right: 4rem;
  box-sizing: border-box;
  position: relative;
}

.third::before {
  position: absolute;
  border-left: 1px solid #c6c4c4;
  content: "";
  width: 1px;
  height: 100%;
  left: 0px;
}

/* .toggle-block {
    padding-left: 1rem !important;
} */
.icon_footer {
  padding: 3px 10px;
  font-size: 20px;
  color: #f0e4e4;
}

.widget-title {
  font-family: "Open Sans", sans-serif !important;
  margin: 0;
  color: #f1b969;
  padding: 15px 20px;
  border-bottom: 0px;
  padding: 0 0 15px;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  position: relative;
}

.third .widget-title {
  padding-left: 10px;
}

.footer-section2 {
  text-align: left;
  margin: 0;
}

.footer-section2 p {
  margin-bottom: 1rem;
  color: white;
}

.footer-section2 a {
  color: #fff;
}

.d-flex {
  display: flex;
}

.footer-bottom {
  width: 100%;
  color: white;
  border-top: 1px solid #a8b6cd;
  padding: 30px 0 !important;
}

.footer-menu {
  display: flex;
}

.accepted-payment-methods {
  display: flex;
}

.footer-menu-links a {
  padding: 0 10px;
  color: #ebebeb;
}

.footer-menu-links ul li::after {
  /* position: absolute; */
  top: 7px;
  content: "";
  height: 9px;
  border-left: 1px solid #4d76b8;
}

ul.accepted-payment-methods li {
  display: inline-block;
  vertical-align: top;
  margin: 0px 10px 0 0;
}

ul.accepted-payment-methods li.american-express span {
  background-position: 0 -232px !important;
}

/* ul.accepted-payment-methods li span {
    background: url("https://wordpress.templatemela.com/woo/WCM04/WCM040092/WP2/wp-content/themes/firezy/images/megnor/payment-sprite.png")
        no-repeat scroll right 0 transparent !important;
} */
ul.accepted-payment-methods li span {
  height: 30px;
  width: 40px !important;
  font-size: 0;
  padding: 0;
  vertical-align: top;
}

ul.accepted-payment-methods li span {
  display: inline-block;
  padding: 4px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 50px;
  height: 16px;
  text-align: left;
  text-indent: -999em;
  background-position: 4px 4px;
  background-repeat: no-repeat;
  box-sizing: content-box;
}

ul.accepted-payment-methods li.discover span {
  background-position: 0 -155px !important;
}

ul.accepted-payment-methods li.maestro span {
  background-position: 0 -628px !important;
}

ul.accepted-payment-methods li.mastercard span {
  background-position: 0 -550px !important;
}

ul.accepted-payment-methods li.visa span {
  background-position: 0 -75px !important;
}

.tnp-email {
  width: 220px;
  line-height: 25px;
  padding: 8px 10px;
  border: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}

/* .fa-paper-plane {
    background: white;
    color: #222020;

    width: 15%;
    padding: 8px 8px 13px;
    font-size: 20px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
}
*/
.text-reset:hover {
  color: #f1b764 !important;
}

.paper-plane {
  width: 15%;
  background: rgb(239 239 239);
  font-size: 20px;
  color: #222020;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
}

.paper-plane:hover {
  background-color: #e89754 !important;
}

.social_icons {
  align-items: center;
}

.social_icons a {
  font-size: 30px;
  color: #f1b969 !important;
  margin-right: 20px;
}

.social_icons a:last-child {
  margin-right: 0 !important;
}

/*CSS FOR FOOTER ----------------------------------------------------*/

/*CSS FOR APIDATAS----------------------------------------------------*/

li {
  list-style: none;
}

.product_pricing_dropdown .more {
  cursor: pointer;
}

.header-image {
  /* justify-content: space-around; */
  align-items: center;
  margin-bottom: 10px;
}

.header-image1 {
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 10px; */
}

.header-image img {
  /* justify-content: space-around; */
  margin-right: 10px;
}

.description-file h1,
h2,
h3,
h4,
p,
h5 {
  padding: 0;
  margin: 0;
}

.more2 {
  cursor: pointer;
  color: #0081bb;
  padding: 0px 10px;
}

.partmunb {
  font-size: 18px;
  font-weight: bold;
  color: rgb(13, 82, 161);
}

.header-search {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*CURRECY CART*/

.currency_btn .caret {
  display: none;
}

.currency_btn .bootstrap-select>.dropdown-toggle {
  background: transparent !important;
  padding: 3px 8px !important;
  height: 28px !important;
}

.navbar-right {
  align-items: center;
}

.cart-item-count,
.wishlist-item-count {
  width: 14px;
  height: 21px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -29px;
  right: 0;
}

.cart-item-count .red {
  background: red;
  color: white;
  width: 18px;
  top: 20px;
  align-items: center;
  height: 18px;
  border-radius: 999px;
  position: absolute;
  text-align: center;
  padding: 1px;
}

.price_table_css a {
  color: black !important;
}

.currency_btn .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 55px !important;
}

.form-currency2 .bootstrap-select .btn {
  padding: 0;
  text-align: center;
  align-items: center;
  height: 22px;
}

.currency_btn .bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: unset !important;
}

/*CURRECY CART*/

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 1920px) {
  div.ft_container {
    max-width: 1690px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1175px;
  }

  .ft_container {
    max-width: 88%;
    width: 100%;
    margin: 0 auto;
  }

  .f-col-2 {
    padding: 0;
  }

  .ft-col2-inner {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .ft_container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .copyright-footer {
    flex-direction: column;
  }

  .header-search {
    width: 100%;
  }
}

#navbarNavDropdown ul {
  display: flex;
  margin: 0;
}

#navbarNavDropdown .nav-item {
  padding-right: 20px;
}

/*CSS FOR APIDATAS----------------------------------------------------*/
.btn-default:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.bootstrap-select .btn {
  border: 1px solid rgb(182, 181, 181);
}

.table>tbody>tr>td,
.table>tfoot>tr>td {
  color: #000;
}

input.form-control {
  color: #000;
}

div.dataTables_wrapper div.dataTables_info {
  color: #000;
}

/* Home css */
.hero-banner {
  margin-left: -15px;
  margin-right: -15px;
  background-color: white;
}

.home-banner-section {
  margin-left: -15px;
  margin-right: -15px;
}

span.copyright-footer {
  font-size: 13px;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  vertical-align: middle;
}

.cart-page {
  margin: 0 -15px;
}

@media (max-width: 1440px) {
  div#example_wrapper {
    overflow-x: auto;
  }
}

@media (max-width: 1366px) {
  .hero-img img {
    height: 50vh;
  }
}

@media (max-width: 1199px) {
  .hero-img img {
    height: 60vh;
  }

  .header-search {
    width: 50%;
  }

  .theme-container.copyright-footer.d-flex {
    flex-direction: column;
    padding: 0 10px;
  }

  aside#accepted_payment_methods-1 {
    margin-top: 5px;
  }

  .accepted-payment-methods li {
    padding-top: 10px;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .accepted-payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .hero-img img {
    height: 50vh;
  }
}

@media (min-width: 768px) {
  .cart-item-detail .table-responsive {
    overflow-y: hidden;
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .page-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-img img {
    height: 40vh;
  }

  .sec-title {
    font-size: 24px;
  }

  .header-search {
    width: 100%;
    margin: 0 !important;
  }

  .navbar a.navbar-brand img {
    margin-left: 0px;
  }

  .navbar-nav {
    margin: 0;
  }

  .footer-section2 {
    display: flex;
    text-align: start;
    padding: 0px 0px 0 20px;
  }
}

@media (min-width: 576px) {
  .col-sm-4 {
    width: 33.33333333%;
  }
}

@media (max-width: 575px) {
  .hero-img img {
    height: 30vh;
  }

  .sec-title {
    font-size: 20px;
  }

  .mydiv .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100px !important;
  }

  .navbar a.navbar-brand img {
    min-width: 90px;
  }

  .navbar-toggle {
    margin-right: 5px;
    padding: 9px 10px 9px 0;
  }

  .footer-section2 {
    padding: 0px 25px;
    display: block;
  }

  div.section-heading.section-products .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sec-title {
    font-size: 18px;
  }
}

@media (max-width: 440px) {
  .hero-img img {
    height: 26vh;
  }

  .mydiv .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 75px !important;
  }

  .navbar a.navbar-brand img {
    min-width: 70px;
  }
}

@media (max-width: 380px) {
  .hero-img img {
    height: 22vh;
  }

  .sec-title {
    font-size: 16px;
  }
}

@media (max-width: 355px) {
  .mydiv .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 75px !important;
  }

  .navbar a.navbar-brand img {
    min-width: 70px;
  }
}

.cart_hover {
  display: none;
  position: absolute;
  z-index: 10;
  right: 10px;
}

.cart_block:hover .cart_hover {
  display: block;
  right: 15px;
}

/* Global customer typography override */
html,
body.customers {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
}

body.customers,
body.customers input,
body.customers textarea,
body.customers select,
body.customers button,
body.customers table,
body.customers td,
body.customers th,
body.customers a,
body.customers li,
body.customers label,
body.customers div,
body.customers p,
body.customers h1,
body.customers h2,
body.customers h3,
body.customers h4,
body.customers h5,
body.customers h6,
body.customers small,
body.customers strong,
body.customers b,
body.customers em {
  font-family: "Open Sans", sans-serif !important;
}

body.customers,
body.customers div,
body.customers table,
body.customers td,
body.customers th,
body.customers a,
body.customers li,
body.customers label,
body.customers input,
body.customers textarea,
body.customers select,
body.customers button {
  font-size: 14px !important;
}

body.customers p,
body.customers span:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.glyphicon):not([class^="fa-"]):not([class*=" fa-"]):not([class^="glyphicon-"]):not([class*=" glyphicon-"]),
body.customers h5 {
  font-size: 14px !important;
  font-weight: 400 !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

  body.customers p,
  body.customers span:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.glyphicon):not([class^="fa-"]):not([class*=" fa-"]):not([class^="glyphicon-"]):not([class*=" glyphicon-"]),
  body.customers h5 {
    font-size: 12px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {

  body.customers p,
  body.customers span:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.glyphicon):not([class^="fa-"]):not([class*=" fa-"]):not([class^="glyphicon-"]):not([class*=" glyphicon-"]),
  body.customers h5 {
    font-size: 11px !important;
  }
}

/* Desktop */
body.customers h1 {
  font-size: 51px !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  body.customers h1 {
    font-size: 45px !important;
  }
}

/* Mobile L (425px - 767px) */
@media (min-width: 425px) and (max-width: 767px) {
  body.customers h1 {
    font-size: 35px !important;
  }
}

/* Mobile M (375px - 424px) */
@media (min-width: 375px) and (max-width: 424px) {
  body.customers h1 {
    font-size: 30px !important;
  }
}

/* Mobile S (up to 374px) */
@media (max-width: 374px) {
  body.customers h1 {
    font-size: 25px !important;
  }
}

body.customers h2 {
  font-size: 30px !important;
}

/* Mangofy test fonts: remove this block to revert font styling */
:root {
  --mg-font-headline: "Open Sans", sans-serif;
  --mg-font-body: "Open Sans", sans-serif;
  --mg-font-label: "Open Sans", sans-serif;
}

body,
body.customers,
body.customers div,
body.customers table,
body.customers td,
body.customers th,
body.customers a,
body.customers li,
body.customers label,
body.customers input,
body.customers textarea,
body.customers select,
body.customers button,
body.customers p,
body.customers span:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.glyphicon):not(.material-symbols-outlined):not([class^="fa-"]):not([class*=" fa-"]):not([class^="glyphicon-"]):not([class*=" glyphicon-"]) {
  font-family: var(--mg-font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
body.customers h1,
body.customers h2,
body.customers h3,
body.customers h4,
body.customers h5,
body.customers h6,
.section-title,
.widget-title,
.mg-nav-brand,
.mg-mega-title {
  font-family: var(--mg-font-headline) !important;
}

code,
kbd,
pre,
samp,
.label-sm,
.mg-label,
.mg-code-label {
  font-family: var(--mg-font-label) !important;
}

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

/* /Mangofy test fonts */

/* Mangofy add-to-cart modal: remove this block to revert cart popup styling */
#addtocartmodal {
  z-index: 12050 !important;
}

.modal-backdrop,
.modal-backdrop.in {
  z-index: 12040 !important;
}

#addtocartmodal .modal-dialog {
  width: min(560px, calc(100vw - 32px));
  margin: 96px auto 24px;
}

#addtocartmodal .modal-content {
  overflow: hidden;
  border: 0 !important;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  font-family: var(--mg-font-body, "Open Sans", sans-serif);
}

#addtocartmodal .modal-header {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 20px 24px 16px;
  border: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
  color: #102033;
}

#addtocartmodal .modal-header .close {
  order: 2;
  margin-left: auto;
  color: #64748b;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  opacity: 1;
}

#addtocartmodal .modal-header h2,
#addtocartmodal .modal-header .h1-responsive {
  margin: 0;
  color: #102033;
  font-family: var(--mg-font-headline, "Open Sans", sans-serif);
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1.25;
  text-align: left !important;
}

#addtocartmodal .modal-body {
  padding: 0 24px 24px;
}

.mg-cart-confirm {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}

.mg-cart-confirm-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #009448;
  font-size: 20px;
}

.mg-cart-confirm-copy {
  min-width: 0;
}

.mg-cart-confirm-kicker {
  margin: 0 0 4px;
  color: #009448;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mg-cart-confirm-copy h3 {
  margin: 0 0 8px;
  color: #102033;
  font-family: var(--mg-font-headline, "Open Sans", sans-serif);
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.3;
}

.mg-cart-confirm-copy p:not(.mg-cart-confirm-kicker) {
  margin: 0;
  color: #475569;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.mg-cart-confirm-details {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.mg-cart-confirm-details div {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
}

.mg-cart-confirm-details div:last-child {
  border-bottom: 0;
}

.mg-cart-confirm-details dt,
.mg-cart-confirm-details dd {
  margin: 0;
  min-width: 0;
  color: #27364a;
  font-size: 14px !important;
  line-height: 1.35;
}

.mg-cart-confirm-details dt {
  color: #64748b;
  font-weight: 600 !important;
}

.mg-cart-confirm-details dd {
  font-weight: 500 !important;
  overflow-wrap: anywhere;
}

.mg-cart-confirm-details .mg-cart-confirm-total {
  background: #ffffff;
}

.mg-cart-confirm-details .mg-cart-confirm-total dt,
.mg-cart-confirm-details .mg-cart-confirm-total dd {
  color: #102033;
  font-weight: 700 !important;
}

#addtocartmodal .modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 24px 24px;
  border-top: 1px solid #edf2f7;
  background: #ffffff;
}

#addtocartmodal .modal-footer a,
#addtocartmodal .modal-footer button {
  margin: 0 !important;
}

#addtocartmodal .modal-footer .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent !important;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1;
  box-shadow: none;
}

#addtocartmodal .modal-footer a .btn {
  background: #009448 !important;
  color: #ffffff !important;
}

#addtocartmodal .modal-footer button[data-dismiss="modal"] {
  border-color: #d7e1ed !important;
  background: #ffffff !important;
  color: #27364a !important;
}

@media (max-width: 575px) {
  #addtocartmodal .modal-dialog {
    margin-top: 72px;
  }

  #addtocartmodal .modal-header,
  #addtocartmodal .modal-body,
  #addtocartmodal .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mg-cart-confirm {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .mg-cart-confirm-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .mg-cart-confirm-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #addtocartmodal .modal-footer {
    justify-content: stretch;
  }

  #addtocartmodal .modal-footer a,
  #addtocartmodal .modal-footer .btn {
    width: 100%;
  }
}

/* /Mangofy add-to-cart modal */

body.customers h3 {
  font-size: 18px !important;
}

body.customers h4 {
  font-size: 16px !important;
}

body.customers h5,
body.customers h6 {
  font-size: 14px !important;
}