/* ========================================
   Legacy Bootstrap & Canvas Components
   ----------------------------------------
   Ported from Bootstrap 3 + Canvas theme.
   TODO: refactor into modern components.
   ======================================== */

/* --- Clearfix --- */
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

/* ========================================
   Bootstrap .btn / .btn-default
   ======================================== */

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
  opacity: .65;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

/* ========================================
   Bootstrap .caret
   ======================================== */

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* ========================================
   Bootstrap Dropdowns
   ======================================== */

.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a,
.dropdown-menu > li > span {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > span:hover,
.dropdown-menu > li > span:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: var(--coral);
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

/* ========================================
   Bootstrap .btn-group
   ======================================== */

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

/* ========================================
   Bootstrap Pagination
   ======================================== */

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--gray-600);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid var(--gray-200);
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: var(--gray-800);
  background-color: var(--gray-100);
  border-color: var(--gray-200);
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: var(--coral);
  border-color: var(--coral);
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: var(--gray-400);
  cursor: not-allowed;
  background-color: #fff;
  border-color: var(--gray-200);
}

/* ========================================
   Catalog Sorting
   ======================================== */

.sorting.catalog-sorting {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.catalog-sorting .btn-group {
  margin-left: 10px;
}

.catalog-sorting-info-icon {
  margin-left: 10px;
  font-size: 14px;
  color: var(--coral);
  cursor: pointer;
}

/* ========================================
   Process Steps
   ======================================== */

.process-steps {
  margin: 0 0 40px;
  list-style: none;
}
.process-steps li {
  float: left;
  position: relative;
  width: 25%;
  text-align: center;
  overflow: hidden;
}
.process-steps.process-2 li { width: 50%; }
.process-steps.process-3 li { width: 33.33%; }
.process-steps.process-5 li { width: 20%; }

.process-steps li .i-circled { margin-bottom: 0 !important; }
.process-steps li .i-bordered { background-color: #FFF; }

.process-steps li h5 {
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 300;
}
.process-steps li.active h5,
.process-steps li.ui-tabs-active h5 {
  font-weight: 600;
  color: var(--coral);
}
.process-steps li.active a,
.process-steps li.ui-tabs-active a {
  background-color: var(--coral) !important;
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  border-color: var(--coral) !important;
}
.process-steps li:before,
.process-steps li:after {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  margin-left: -26px;
  width: 50%;
  border-top: 1px dashed #DDD;
}
.process-steps li:after {
  left: auto;
  right: 0;
  margin: 0 -26px 0 0;
}
.process-steps li:first-child:before,
.process-steps li:last-child:after { display: none; }

/* ========================================
   Short Form Catalog Box
   ======================================== */

@media (max-width: 479px) {
  .short-form-catalog-box {
    display: none;
  }
}

/* ========================================
   Account Call / Rate Pane (fullscreen overlay)
   ======================================== */

.accountCallPane,
.accountRatePane {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  padding: 20px;
  z-index: 200;
}
.accountCallPane .close,
.accountRatePane .close {
  position: absolute;
  right: 20px !important;
  font-size: 36px;
}
.accountRatePane .form-group {
  margin: 0 auto;
  max-width: 500px;
}
.accountRatePane .icon-star3 {
  font-size: 32px;
  cursor: pointer;
}
.accountRatePane .starHover,
.accountRatePane .starHoverPerm {
  color: #87C300;
}

/* ========================================
   Location Box (catalog sidebar)
   ======================================== */

.location {
  font-size: 14px;
}
.location .fancy-title {
  margin-bottom: 10px;
}
.location ul.list a {
  padding-left: 10px;
}
.location ul.list li {
  line-height: 24px;
  height: 24px;
  margin-bottom: 1px;
}
.location ul.list a:hover {
  background: var(--gray-100);
}
/* ========================================
   Lists
   ======================================== */

/* --- Region / City lists --- */
ul.list {
  list-style-type: none;
  margin: 0 0 5px 0;
  padding: 0;
}
ul.list a {
  position: relative;
  display: block;
  color: var(--gray-800);
  margin-top: 1px;
}
ul.list .current {
  height: 24px;
  padding-left: 10px;
  line-height: 24px;
  background: var(--gray-100);
  font-weight: normal;
  color: var(--gray-500);
}
ul.list a span {
  color: var(--gray-400);
}

/* --- Chosen (active filter) --- */
.location .chosen {
  list-style-type: none;
  margin: 0 0 5px 0;
  padding: 0;
}
.location .chosen li {
  line-height: 24px;
  margin-bottom: 1px;
}
.location .chosen .current {
  padding-left: 0;
  font-size: 14px;
}
.location .chosen .del a {
  display: block;
  font-weight: bold;
  color: #903;
}
.location .chosen .del a:hover {
  color: #c00;
  text-decoration: underline;
}
.location .chosen .change a {
  display: block;
  font-weight: bold;
  color: var(--gray-600);
}
.location .chosen .change a:hover {
  color: var(--coral);
}

/* --- Fancy title (dotted border variant) --- */
.fancy-title {
  position: relative;
  margin-bottom: 20px;
}
.fancy-title h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
}
.fancy-title.title-dotted-border {
  padding-bottom: 0;
  margin-bottom: 5px;
}

.container--form-offer-add .fancy-title {
  margin-bottom: 15px;
}

/* --- Utility --- */
.clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

.js-link {
  cursor: pointer;
}

/* ========================================
   Legacy Layout — Bootstrap Grid (row, col-md-*)
   ======================================== */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.row::after {
  content: '';
  display: table;
  clear: both;
}

[class*="col-md-"] {
  position: relative;
  min-height: 1px;
  padding-right: 12px;
  padding-left: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-2  { width: 16.6667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-6  { width: 50%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-12 { width: 100%; }
}

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

/* ========================================
   Bootstrap Grid System
   ======================================== */

.row {
  margin-right: -15px;
  margin-left: -15px;
}
/*
.row:before,
.row:after {
  display: table;
  content: " ";
}
*/
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1,
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5,
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7,
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11,
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* --- XS (always active) --- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6,
.col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 { width: 100%; }
.col-xs-11 { width: 91.66666667%; }
.col-xs-10 { width: 83.33333333%; }
.col-xs-9  { width: 75%; }
.col-xs-8  { width: 66.66666667%; }
.col-xs-7  { width: 58.33333333%; }
.col-xs-6  { width: 50%; }
.col-xs-5  { width: 41.66666667%; }
.col-xs-4  { width: 33.33333333%; }
.col-xs-3  { width: 25%; }
.col-xs-2  { width: 16.66666667%; }
.col-xs-1  { width: 8.33333333%; }

.col-xs-pull-12 { right: 100%; }
.col-xs-pull-11 { right: 91.66666667%; }
.col-xs-pull-10 { right: 83.33333333%; }
.col-xs-pull-9  { right: 75%; }
.col-xs-pull-8  { right: 66.66666667%; }
.col-xs-pull-7  { right: 58.33333333%; }
.col-xs-pull-6  { right: 50%; }
.col-xs-pull-5  { right: 41.66666667%; }
.col-xs-pull-4  { right: 33.33333333%; }
.col-xs-pull-3  { right: 25%; }
.col-xs-pull-2  { right: 16.66666667%; }
.col-xs-pull-1  { right: 8.33333333%; }
.col-xs-pull-0  { right: auto; }

.col-xs-push-12 { left: 100%; }
.col-xs-push-11 { left: 91.66666667%; }
.col-xs-push-10 { left: 83.33333333%; }
.col-xs-push-9  { left: 75%; }
.col-xs-push-8  { left: 66.66666667%; }
.col-xs-push-7  { left: 58.33333333%; }
.col-xs-push-6  { left: 50%; }
.col-xs-push-5  { left: 41.66666667%; }
.col-xs-push-4  { left: 33.33333333%; }
.col-xs-push-3  { left: 25%; }
.col-xs-push-2  { left: 16.66666667%; }
.col-xs-push-1  { left: 8.33333333%; }
.col-xs-push-0  { left: auto; }

.col-xs-offset-12 { margin-left: 100%; }
.col-xs-offset-11 { margin-left: 91.66666667%; }
.col-xs-offset-10 { margin-left: 83.33333333%; }
.col-xs-offset-9  { margin-left: 75%; }
.col-xs-offset-8  { margin-left: 66.66666667%; }
.col-xs-offset-7  { margin-left: 58.33333333%; }
.col-xs-offset-6  { margin-left: 50%; }
.col-xs-offset-5  { margin-left: 41.66666667%; }
.col-xs-offset-4  { margin-left: 33.33333333%; }
.col-xs-offset-3  { margin-left: 25%; }
.col-xs-offset-2  { margin-left: 16.66666667%; }
.col-xs-offset-1  { margin-left: 8.33333333%; }
.col-xs-offset-0  { margin-left: 0; }

/* --- SM (min-width: 768px) --- */
@media (min-width: 768px) {
  .col-sm-1, .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-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 { width: 100%; }
  .col-sm-11 { width: 91.66666667%; }
  .col-sm-10 { width: 83.33333333%; }
  .col-sm-9  { width: 75%; }
  .col-sm-8  { width: 66.66666667%; }
  .col-sm-7  { width: 58.33333333%; }
  .col-sm-6  { width: 50%; }
  .col-sm-5  { width: 41.66666667%; }
  .col-sm-4  { width: 33.33333333%; }
  .col-sm-3  { width: 25%; }
  .col-sm-2  { width: 16.66666667%; }
  .col-sm-1  { width: 8.33333333%; }

  .col-sm-pull-12 { right: 100%; }
  .col-sm-pull-11 { right: 91.66666667%; }
  .col-sm-pull-10 { right: 83.33333333%; }
  .col-sm-pull-9  { right: 75%; }
  .col-sm-pull-8  { right: 66.66666667%; }
  .col-sm-pull-7  { right: 58.33333333%; }
  .col-sm-pull-6  { right: 50%; }
  .col-sm-pull-5  { right: 41.66666667%; }
  .col-sm-pull-4  { right: 33.33333333%; }
  .col-sm-pull-3  { right: 25%; }
  .col-sm-pull-2  { right: 16.66666667%; }
  .col-sm-pull-1  { right: 8.33333333%; }
  .col-sm-pull-0  { right: auto; }

  .col-sm-push-12 { left: 100%; }
  .col-sm-push-11 { left: 91.66666667%; }
  .col-sm-push-10 { left: 83.33333333%; }
  .col-sm-push-9  { left: 75%; }
  .col-sm-push-8  { left: 66.66666667%; }
  .col-sm-push-7  { left: 58.33333333%; }
  .col-sm-push-6  { left: 50%; }
  .col-sm-push-5  { left: 41.66666667%; }
  .col-sm-push-4  { left: 33.33333333%; }
  .col-sm-push-3  { left: 25%; }
  .col-sm-push-2  { left: 16.66666667%; }
  .col-sm-push-1  { left: 8.33333333%; }
  .col-sm-push-0  { left: auto; }

  .col-sm-offset-12 { margin-left: 100%; }
  .col-sm-offset-11 { margin-left: 91.66666667%; }
  .col-sm-offset-10 { margin-left: 83.33333333%; }
  .col-sm-offset-9  { margin-left: 75%; }
  .col-sm-offset-8  { margin-left: 66.66666667%; }
  .col-sm-offset-7  { margin-left: 58.33333333%; }
  .col-sm-offset-6  { margin-left: 50%; }
  .col-sm-offset-5  { margin-left: 41.66666667%; }
  .col-sm-offset-4  { margin-left: 33.33333333%; }
  .col-sm-offset-3  { margin-left: 25%; }
  .col-sm-offset-2  { margin-left: 16.66666667%; }
  .col-sm-offset-1  { margin-left: 8.33333333%; }
  .col-sm-offset-0  { margin-left: 0; }
}

/* --- MD (min-width: 992px) --- */
@media (min-width: 992px) {
  .col-md-1, .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-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-6  { width: 50%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-3  { width: 25%; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-1  { width: 8.33333333%; }

  .col-md-pull-12 { right: 100%; }
  .col-md-pull-11 { right: 91.66666667%; }
  .col-md-pull-10 { right: 83.33333333%; }
  .col-md-pull-9  { right: 75%; }
  .col-md-pull-8  { right: 66.66666667%; }
  .col-md-pull-7  { right: 58.33333333%; }
  .col-md-pull-6  { right: 50%; }
  .col-md-pull-5  { right: 41.66666667%; }
  .col-md-pull-4  { right: 33.33333333%; }
  .col-md-pull-3  { right: 25%; }
  .col-md-pull-2  { right: 16.66666667%; }
  .col-md-pull-1  { right: 8.33333333%; }
  .col-md-pull-0  { right: auto; }

  .col-md-push-12 { left: 100%; }
  .col-md-push-11 { left: 91.66666667%; }
  .col-md-push-10 { left: 83.33333333%; }
  .col-md-push-9  { left: 75%; }
  .col-md-push-8  { left: 66.66666667%; }
  .col-md-push-7  { left: 58.33333333%; }
  .col-md-push-6  { left: 50%; }
  .col-md-push-5  { left: 41.66666667%; }
  .col-md-push-4  { left: 33.33333333%; }
  .col-md-push-3  { left: 25%; }
  .col-md-push-2  { left: 16.66666667%; }
  .col-md-push-1  { left: 8.33333333%; }
  .col-md-push-0  { left: auto; }

  .col-md-offset-12 { margin-left: 100%; }
  .col-md-offset-11 { margin-left: 91.66666667%; }
  .col-md-offset-10 { margin-left: 83.33333333%; }
  .col-md-offset-9  { margin-left: 75%; }
  .col-md-offset-8  { margin-left: 66.66666667%; }
  .col-md-offset-7  { margin-left: 58.33333333%; }
  .col-md-offset-6  { margin-left: 50%; }
  .col-md-offset-5  { margin-left: 41.66666667%; }
  .col-md-offset-4  { margin-left: 33.33333333%; }
  .col-md-offset-3  { margin-left: 25%; }
  .col-md-offset-2  { margin-left: 16.66666667%; }
  .col-md-offset-1  { margin-left: 8.33333333%; }
  .col-md-offset-0  { margin-left: 0; }
}

/* --- LG (min-width: 1200px) --- */
@media (min-width: 1200px) {
  .col-lg-1, .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-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9  { width: 75%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-7  { width: 58.33333333%; }
  .col-lg-6  { width: 50%; }
  .col-lg-5  { width: 41.66666667%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.66666667%; }
  .col-lg-1  { width: 8.33333333%; }

  .col-lg-pull-12 { right: 100%; }
  .col-lg-pull-11 { right: 91.66666667%; }
  .col-lg-pull-10 { right: 83.33333333%; }
  .col-lg-pull-9  { right: 75%; }
  .col-lg-pull-8  { right: 66.66666667%; }
  .col-lg-pull-7  { right: 58.33333333%; }
  .col-lg-pull-6  { right: 50%; }
  .col-lg-pull-5  { right: 41.66666667%; }
  .col-lg-pull-4  { right: 33.33333333%; }
  .col-lg-pull-3  { right: 25%; }
  .col-lg-pull-2  { right: 16.66666667%; }
  .col-lg-pull-1  { right: 8.33333333%; }
  .col-lg-pull-0  { right: auto; }

  .col-lg-push-12 { left: 100%; }
  .col-lg-push-11 { left: 91.66666667%; }
  .col-lg-push-10 { left: 83.33333333%; }
  .col-lg-push-9  { left: 75%; }
  .col-lg-push-8  { left: 66.66666667%; }
  .col-lg-push-7  { left: 58.33333333%; }
  .col-lg-push-6  { left: 50%; }
  .col-lg-push-5  { left: 41.66666667%; }
  .col-lg-push-4  { left: 33.33333333%; }
  .col-lg-push-3  { left: 25%; }
  .col-lg-push-2  { left: 16.66666667%; }
  .col-lg-push-1  { left: 8.33333333%; }
  .col-lg-push-0  { left: auto; }

  .col-lg-offset-12 { margin-left: 100%; }
  .col-lg-offset-11 { margin-left: 91.66666667%; }
  .col-lg-offset-10 { margin-left: 83.33333333%; }
  .col-lg-offset-9  { margin-left: 75%; }
  .col-lg-offset-8  { margin-left: 66.66666667%; }
  .col-lg-offset-7  { margin-left: 58.33333333%; }
  .col-lg-offset-6  { margin-left: 50%; }
  .col-lg-offset-5  { margin-left: 41.66666667%; }
  .col-lg-offset-4  { margin-left: 33.33333333%; }
  .col-lg-offset-3  { margin-left: 25%; }
  .col-lg-offset-2  { margin-left: 16.66666667%; }
  .col-lg-offset-1  { margin-left: 8.33333333%; }
  .col-lg-offset-0  { margin-left: 0; }
}

/* ========================================
   Compare Products Table
   ======================================== */

.table-product-show-compare-products {
  font-size: 13px;
}
.table-product-show-compare-products th {
  font-weight: 600;
  font-size: 13px;
}
.table-product-show-compare-products th a {
  color: var(--coral);
  font-weight: 600;
}
.table-product-show-compare-products th a:hover {
  text-decoration: underline;
}

.product-compare-photo img,
.ca_photo img {
  display: block;
  margin: 0 auto 10px;
  border-radius: 10px;
}

.desc_catalog img {
  max-width: 400px;
  margin: 0 0 20px 30px;
  border: 10px solid #fff;
  border-radius: 25px;
  float: right;
}

ul.popular-cities {
  list-style-type: none;
}

ul.popular-cities::after {
  content: "";
  display: table;
  clear: both;
}

ul.popular-cities li {
  font-size: 14px;
  line-height: 200%;
}

ul.popular-cities li.col-md-4 {
  padding-left: 0;
  font-size: 14px;
  line-height: 200%;
}

.account-service {
  padding: 0 10px 10px 0;
}

.category-gallery img {
  max-width: 100% !important;
  margin: 0 0 20px 0 !important;
}

.catalog_account_demo {
  opacity: 0.5;
}

.short-form-catalog-box {
  width: 100%;
}

.short-form-catalog-box .btn-primary {
  color: #fff;
}

.short-form-catalog-box .btn-primary:hover {
  color: #fff;
}

.catalog_city_links {
  margin-bottom: 20px;
}

.catalog_city_links h3 {
  margin-bottom: 20px;
}

.catalog_city_links a:hover {
  color: var(--coral);
}

@media (max-width: 768px) {
  .ca_photo img {
    margin: 0 auto 15px;
  }
}

/* ========================================
   Canvas .button (legacy)
   ======================================== */

.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  padding: 0 22px;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  background-color: var(--purple-main);
  color: var(--gray-100);
  font-weight: 600;
  border: none;
  text-shadow: 1px 1px 1px rgba(0,0,0,.2);
  transition: all .2s ease-in-out;
}

.button:hover {
  background-color: var(--purple-brand);
}

.button.button-rounded {
  border-radius: 8px;
}

.button.button-small {
  padding: 0 17px;
  font-size: 12px;
  height: 34px;
  line-height: 34px;
}

.button.button-mini {
  padding: 0 14px;
  font-size: 11px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}

.button i {
  position: relative;
  top: 1px;
  line-height: 1;
  margin-right: 5px;
}

/* button-red → brand gradient (like btn-primary-sm) */
.button.button-red {
  background: var(--gradient-brand);
  color: #fff;
  text-shadow: none;
}

.button.button-red:hover {
  color: #fff !important;
  opacity: .9;
}

.button.button-green {
  background-color: #22c55e;
}

.button.button-green:hover {
  background-color: #16a34a;
}

.button.button-white {
  background-color: #f9f9f9;
  color: var(--gray-700);
  text-shadow: none;
}

.button.button-white:hover {
  background-color: var(--gray-200);
  color: var(--gray-800);
}

.button.button-light {
  background-color: var(--gray-100);
  color: var(--gray-700);
  text-shadow: none;
}

.button.button-light:hover {
  background-color: var(--gray-200);
}

.button.button-3d {
  border-radius: 8px;
}

.button.button-3d.button-red,
.button.button-3d.button-green,
.button.button-3d.button-lime {
  box-shadow: 0 3px 0 rgba(0,0,0,.15);
}

.button.button-3d.button-red:hover {
  background: var(--gradient-brand);
  opacity: .9;
}

.button.button-lime {
  background-color: #9bc932;
  color: #fff !important;
}

.button.button-lime:hover {
  background-color: #87b02a;
}

.button-default {
  color: #fff !important;
}

.button-default:hover {
  color: #ccc !important;
}

/* ========================================
   Company Page (catalog/show)
   ======================================== */

.company_page {
  font-size: 14px;
}

.company_page h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 20px !important;
}

.company_page .fancy-title {
  margin-bottom: 0;
}

.company_page .fancy-title h3,
.company_page .fancy-title h4 {
  color: var(--gray-800);
  font-weight: 600;
  padding-bottom: 16px;
  position: relative;
}

.company_page .fancy-title h3 {
  font-size: 18px;
}

.company_page .fancy-title h3::before,
.company_page .fancy-title h4::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  content: "";
  background-color: var(--coral);
  border-radius: 4px;
}

.company_page .button {
  letter-spacing: 0;
}

.company_page_categories p {
  margin: 0 0 20px 0;
}

.company_page_activity {
  margin-bottom: 20px;
}

.company_page_activity .button {
  margin: 0;
}

.venloc-well {
  border: 1px solid var(--gray-200);
  padding: 20px 20px 0;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.cp_addresses {
  margin-bottom: 15px;
}

.cp_desc p {
  font-size: 16px;
  line-height: 1.7;
}

.cp_contact_data .feature-box h3 {
  line-height: 48px;
}

.cp_address_contact_data_list {
  margin-bottom: 10px;
  padding: 0 0 10px 10px;
  border-bottom: 1px dotted var(--gray-200);
}

.cp_address_contact_data_list ul {
  margin: 0;
  list-style-type: none;
}

.cp_address_contact_data_list ul li {
  font-size: 14px;
  line-height: 36px;
  margin-right: 10px;
  float: left;
}

.cp_address_contact_data_list ul li i {
  font-size: 24px;
  margin-right: 5px;
  float: left;
}

.feature-box p {
  color: var(--gray-600);
}

.feature-box-account-address p {
  font-size: 16px;
}

.ca_attrs {
  margin-bottom: 20px;
}

.ca_attrs table td:first-child {
  width: 40%;
}

.ca_attrs .iconlist {
  margin-bottom: 20px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ========================================
   Account Feedback / Reviews
   ======================================== */

.account-feedback {
  background: var(--gray-50);
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  padding: 10px 10px 0 10px;
  border-radius: var(--radius);
}

.account-feedback--redaction {
  border: 1px solid #dec98f;
  background: #f6f1df;
}

.account-feedback h4 {
  margin-bottom: 0;
}

.account-feedback p {
  margin-bottom: 10px;
}

.company_page .account-reviews-avg {
  font-size: 20px;
}

.venloc-well h4,
.venloc-well p {
  margin-bottom: 15px
}

/* ========================================
   Bootstrap .form-control
   ======================================== */

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #999;
  outline: 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Open Sans', system-ui, sans-serif, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  padding: 8px 0;
  line-height: 18px;
  cursor: pointer;
}
label.label-muted {
  color: #999;
  font-weight: normal;
  margin-right: 5px;
}
select.form-control option {
  height: 30px;
}
/* ========================================
   Checkbox / Radio
   ======================================== */

.checkbox {
  position: relative;
  display: block;
  margin-top: 0;
  margin-bottom: 5px;
}

.checkbox label {
  min-height: 20px;
  padding-left: 26px;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  margin-left: -22px;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--coral);
  cursor: pointer;
}

.checkbox + .checkbox {
  margin-top: -5px;
}

.checkbox label a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .15s;
}

.checkbox label a:hover,
.checkbox label a:focus {
  color: var(--coral);
  text-decoration-color: var(--coral);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--coral);
  cursor: pointer;
}

input[type="checkbox"][disabled],
input[type="radio"][disabled],
.checkbox.disabled label {
  cursor: not-allowed;
  opacity: .6;
}
/* ========================================
   Shity stuff
   ======================================== */

.category-home-content .col_full .row:first-child {
  display: block !important;
}

.feature-box {
  display: flex;
}

.feature-box .fbox-icon {
  margin-right: 10px;
  color: var(--gray-400);
}

.offer_box_top {
  border-bottom: 1px var(--gray-400) dotted;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#offer_form_items {
  margin-bottom: 15px;
}
#offer_form_items .offer_form_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 0 0;
  border-bottom: 1px solid var(--gray-200);
}
#offer_form_items .offer_form_item h4 {
  flex: 1;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}
#offer_form_items .offer_form_item h4 br {
  display: none;
}
#offer_form_items .offer_form_item .btn_offer_item_edit,
#offer_form_items .offer_form_item .btn_offer_item_delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--gray-500);
  transition: background .15s, color .15s;
}
#offer_form_items .offer_form_item .btn_offer_item_edit:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}
#offer_form_items .offer_form_item .btn_offer_item_delete:hover {
  background: #fef2f2;
  color: #dc2626;
}
#offer_form_items .offer_form_item .btn_offer_item_edit svg,
#offer_form_items .offer_form_item .btn_offer_item_delete svg {
  width: 18px;
  height: 18px;
}
#offer_form_items .offer_form_item > .col-md-12 {
  flex-basis: 100%;
}
#offer_form_item .fancy-title,
#offer_form_items .fancy-title {
  margin-bottom: 20px;
}
.offer_form_items_cont {
  margin-bottom: 10px;
}
.offer_form_item form {
  padding-bottom: 15px;
}

/* ========================================
   Photo Upload (offers/pics)
   ======================================== */

.photo-upload__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 4px;
}
.photo-upload__subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 20px;
}
.photo-upload__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-upload__slot {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-upload__slot--filled {
  background: var(--gray-100);
}
.photo-upload__slot--filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-upload__slot--empty {
  border: 2px dashed var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin: 0;
  padding: 0;
}
.photo-upload__slot--empty:hover {
  border-color: var(--coral);
  background: #fff;
}
.photo-upload__slot--empty:hover .photo-upload__placeholder svg {
  color: var(--coral);
}
.photo-upload__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}
.photo-upload__placeholder svg {
  transition: color .2s;
}
.photo-upload__hint {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
}
.photo-upload__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--coral);
  border-radius: 6px;
}
.photo-upload__delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: var(--gray-500);
  transition: background .15s, color .15s;
  box-shadow: var(--shadow-sm);
}
.photo-upload__delete:hover {
  background: #fef2f2;
  color: #dc2626;
}

@media (max-width: 768px) {
  .photo-upload__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .photo-upload__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Blog / News Entries
   ======================================== */

#posts {
  position: relative;
}
#posts .entry-content {
  margin-top: 30px;
}

.entry {
  position: relative;
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 2px solid #F5F5F5;
}
.entry blockquote p {
  font-weight: 400;
  font-family: 'Crete Round', serif;
  font-style: italic;
}

#posts .entry-image {
  margin-bottom: 30px;
}
.entry-image iframe {
  display: block;
}
.entry-image img {
  border-radius: 3px;
}
.entry-image,
.entry-image > a,
.entry-image .slide a,
.entry-image img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.entry-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.entry-meta {
  margin: 10px -10px -15px 0;
  list-style: none;
}
.entry-meta li {
  float: left;
  font-size: 13px;
  line-height: 14px;
  margin: 0 10px 15px 0;
  color: #999;
}
.entry-meta li:before {
  content: '/';
  display: inline-block;
  margin-right: 10px;
  opacity: 0.5;
}
.entry-meta li i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}
.entry-meta li a {
  color: #999;
}
.entry-meta li a:hover {
  color: var(--coral);
}
.entry-meta li:first-child:before {
  display: none;
}
.entry-meta li ins {
  font-weight: 600;
  text-decoration: none;
}

.single-post .entry-meta {
  margin-bottom: 20px;
}
.single-post .entry-content .entry-image {
  max-width: 350px;
}

.single-post-entry-image {
  margin-bottom: 20px;
}
.single-post-entry-image img {
  border-radius: 3px;
}

.entry-c {
  position: relative;
  overflow: hidden;
}

.entry-content {
  position: relative;
}

.entry-lead {
  font-size: 18px;
}

.entry-link {
  display: block;
  background-color: #F5F5F5;
  padding: 30px 0;
  text-align: center;
  color: #444;
  font-family: 'Open Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 3px;
}
.entry-link:hover {
  color: #FFF;
  background-color: var(--coral);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.entry-link:hover span {
  color: #EEE;
}
.entry-link span {
  display: block;
  margin-top: 5px;
  font-family: 'Crete Round', serif;
  font-style: italic;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: #AAA;
}
body:not(.device-touch) .entry-link {
  transition: background-color .3s ease-in-out;
}

/* --- Small Thumbs --- */
.small-thumbs .entry-image,
.ievent .entry-image {
  float: left;
  width: 300px;
  margin: 0 30px 0 0;
}
.small-thumbs .entry-image img,
.ievent .entry-image img {
  border-radius: 0;
}
.small-thumbs .entry-c .entry-image,
.ievent .entry-c .entry-image {
  float: none;
  width: 100%;
  margin: 0 0 20px 0;
}
.small-thumbs .entry-c .entry-image img,
.ievent .entry-c .entry-image img {
  border-radius: 3px;
}
.small-thumbs .entry-title h2,
.ievent .entry-title h2 {
  font-size: 20px;
  font-weight: 600;
}

/* Small Thumbs Right */
.small-thumbs.alt .entry-image {
  float: right;
  margin: 0 0 0 30px;
}
.small-thumbs.alt .entry-c .entry-image {
  float: none;
  margin: 0 0 20px 0;
}

/* Both Sidebar */
.bothsidebar .small-thumbs .entry-image {
  width: 200px;
  margin: 0 25px 0 0;
}
.bothsidebar .small-thumbs.alt .entry-image {
  margin: 0 0 0 25px;
}
.bothsidebar .small-thumbs .entry-c .entry-image {
  width: 100%;
  margin: 0 0 20px 0;
}
.bothsidebar .small-thumbs .entry-title h2 {
  font-size: 18px;
}

/* --- Individual Post (ipost) --- */
.ipost .entry-image img {
  border-radius: 0;
}
.ipost .entry-title h3,
.ipost .entry-title h4 {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
}
.ipost .entry-title h4 {
  font-size: 15px;
}
.ipost .entry-title h3 a,
.ipost .entry-title h4 a {
  color: #333;
}
.ipost .entry-title h3 a:hover,
.ipost .entry-title h4 a:hover {
  color: var(--coral);
}
.ipost .entry-meta {
  margin-right: -10px;
}
.ipost .entry-meta li {
  font-size: 13px;
  margin-right: 10px;
}
.ipost .entry-content {
  margin-top: 20px;
}
.ipost .entry-content p {
  margin-bottom: 0;
}

.more-link {
  display: inline-block;
  border-bottom: 1px solid var(--coral);
  padding: 0 2px;
  font-family: 'Crete Round', serif;
  font-style: italic;
}
.more-link:hover {
  border-bottom-color: #555;
}

/* --- Small Post (spost) / Medium Post (mpost) --- */
.spost,
.mpost {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #E5E5E5;
}
.mpost {
  margin-top: 25px;
  padding-top: 25px;
}
.spost:first-child,
.mpost:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.spost .entry-image,
.mpost .entry-image {
  float: left;
  margin: 0 15px 0 0;
  text-align: center;
}
.spost .entry-image,
.spost .entry-image a,
.spost .entry-image img,
.spost .entry-image i {
  width: 48px;
  height: 48px;
}
.spost .entry-image a i,
.mpost .entry-image a i {
  font-size: 28px;
  line-height: 48px;
  color: #666;
  background-color: #EEE;
}
.spost .entry-title h4,
.mpost .entry-title h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.spost .entry-title h4 a,
.mpost .entry-title h4 a {
  color: #333;
}
.spost .entry-title h4 a:hover,
.mpost .entry-title h4 a:hover {
  color: var(--coral);
}
.spost .entry-meta {
  margin: 8px -10px 0 0;
}
.spost .entry-meta li,
.mpost .entry-meta li {
  font-size: 13px;
  margin: 0 10px 0 0;
}

/* Medium Post specifics */
.mpost .entry-image {
  margin-right: 20px;
}
.mpost .entry-image a i {
  font-size: 42px;
  line-height: 128px;
}
.mpost .entry-title h4 {
  font-size: 17px;
  font-weight: 600;
}
.mpost .entry-meta {
  margin-top: 5px;
}
.mpost .entry-meta li i {
  margin-right: 2px;
}
.mpost .entry-content {
  margin-top: 15px;
}
.mpost .entry-image,
.mpost .entry-image a,
.mpost .entry-image img,
.mpost .entry-image i {
  width: 170px;
  height: 128px;
}
.mpost .entry-image a,
.mpost .entry-image img {
  border-radius: 2px;
}

/* --- Post Grid --- */
.post-grid {
  margin-right: -28px;
}
.post-grid .entry {
  float: left;
  width: 257px;  /* (1140 - 28*3) / 4 */
  margin-right: 28px;
}
.post-grid .entry-image img {
  border-radius: 0;
}
.post-grid .entry-title h2 {
  font-size: 17px;
  font-weight: 600;
}
.post-grid .entry-link {
  font-size: 24px;
}
.post-grid .entry-link span {
  font-size: 13px;
}
.post-grid .entry-image,
.post-grid .entry-image img {
  height: 144px;  /* (257 * 37) / 66 */
}

/* Post Grid - 3 Columns */
.post-grid.grid-3 {
  margin-right: -30px;
}
.post-grid.grid-3 .entry {
  width: 360px;  /* (1140 - 30*2) / 3 */
  margin-right: 30px;
}
.post-grid.grid-3 .entry-title h2 {
  font-size: 18px;
}
.post-grid.grid-3 .entry-image,
.post-grid.grid-3 .entry-image img {
  height: 201px;
}

/* Post Grid - 2 Columns */
.post-grid.grid-2 {
  margin-right: -40px;
}
.post-grid.grid-2 .entry {
  width: 550px;  /* (1140 - 40) / 2 */
  margin-right: 40px;
}
.post-grid.grid-2 .entry-title h2 {
  font-size: 20px;
}
.post-grid.grid-2 .entry-image,
.post-grid.grid-2 .entry-image img {
  height: 308px;
}

/* --- Post Masonry --- */
.post-masonry .entry-image,
.post-masonry .entry-image img {
  height: auto !important;
}

/* --- Post Navigation --- */
.post-navigation + .line {
  margin: 40px 0 50px;
}

.entry-title h1, .entry-content h2, .entry-content h3 {
  font-weight: 400;
  color: #222;
}

p.entry-lead {
  font-weight: 600;
  color: #222;
}

.entry-content,
.entry-content p {
  font-size: 16px;
  margin-bottom: 20px !important;
}

.entry-content ul,
.entry-content ol {
  margin-left: 30px;
}

.entry-content ul li,
.entry-content ol li {
  font-size: 16px;
}

/* --- Post Alignment Helpers --- */
img.alignleft,
div.alignleft {
  float: left;
  margin: 5px 20px 13px 0;
  max-width: 100%;
}
div.alignleft > img,
div.alignnone > img,
div.aligncenter > img,
div.alignright > img {
  display: block;
  float: none;
}
img.alignnone,
img.aligncenter,
div.alignnone,
div.aligncenter {
  display: block;
  margin: 10px 0;
  float: none;
}
img.aligncenter,
div.aligncenter,
div.aligncenter img {
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
img.alignright,
div.alignright {
  float: right;
  margin: 5px 0 13px 20px;
}

/* --- Venloc spost/mpost override --- */
.spost .entry-title h4,
.mpost .entry-title h4 {
  font-size: 13px;
  font-weight: 400;
}

.category_bar {
  margin: -15px 0 5px 0;
  padding: 5px 0 0 10px !important;
}
.category_bar label {
  float: left;
  margin: 0 10px 5px;
}
.category_bar .form-control {
  margin-left: 10px;
  width: auto !important;
}
.category_bar .button {
  margin: 0 5px 0 0;
}
.found {
  margin-bottom: 15px;
  font-size: 14px;
}
.offers_filters_status .button {
  display: block;
  margin-bottom: 5px;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.promo .button {
  margin-bottom: 5px;
}
.fright {
  float: right;
}
.fleft {
  float: left;
}

/* ========================================
   Bootstrap .alert
   ======================================== */

.alert {
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: absolute;
  top: 8px;
  right: 17px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

/* --- Close button --- */
.close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: inherit;
  opacity: .4;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.close:hover,
.close:focus {
  opacity: .75;
  text-decoration: none;
  outline: 0;
}
.fancy-title h2 .i-circled,
.fancy-title h3 .i-circled {
  display: inline-block;
  height: 34px !important;
  width: 34px !important;
  line-height: 34px !important;
  font-size: 24px !important;
  margin-bottom: 0;
  background: var(--coral);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}
.content-offers ul.list {
  list-style-type: none;
}
.content-offers ul li a {
  display: block;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 15px;
}
.content-offers ul li a:hover {
  color: var(--coral) !important;
}
.content-offers small {
  font-size: 13px;
  color: var(--gray-400);
}
.nobottommargin {
  margin-bottom: 0 !important;
}
.column-offers .fancy-title,
.box.location .fancy-title {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.content-offers ul li a {
  font-size: 14px !important;
}

.offer_box {
  padding: 20px;
}

.offer_box h3 a {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
}

.offer_box h3 a:hover {
  color: var(--coral) !important;
}

.offer_box__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--coral) !important;
  margin-bottom: 8px;
}

.offer_box ul {
  margin-bottom: 15px;
  list-style-type: none;
}

.offer_box ul li {
  font-size: 14px;
  line-height: 24px;
}