/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@100..900&display=swap");
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Hercules Icons";
  src: url("../fonts/icomoon.eot?gt1bqy");
  src: url("fonts/icomoon.eot?gt1bqy#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?gt1bqy") format("truetype"),
    url("../fonts/icomoon.woff?gt1bqy") format("woff"),
    url("../fonts/icomoon.svg?gt1bqy#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: "Hercules Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Variables */
:root {
  /* font variables */
  --chivo: "Chivo", sans-serif;
  --instrument-sans: "Instrument Sans";
  --hercules-icons: "Hercules Icons";

  /* color variables */
  --white: #fff;
  --blue: #00499c;
  --dark-grey: #a8a8a8;
  --medium-grey: #c4c4c4;
  --light-grey: #e6e6e6;
  --yellow: #ffb342;
  --black: #000;
  --black-medium: #1f2225;
  --medium-blue: #1c2752;
  --dark-blue: #1d2835;
  --red: #ce1919;
  --green: #027841;
  --red-medium: #df4b4b;
  --secondary-black: #222;
  --black-secondary: #303030;

  /* transition variable */
  --primary-transition: all 0.3s ease-in-out;
}

/* Common css */
* {
  box-sizing: border-box;
}
html {
  /*    scroll-behavior: smooth;*/
}
body {
  font-family: var(--chivo);
  color: var(--white);
  font-weight: 400;
  font-variant-ligatures: none;
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}
p,
ul,
figure {
  padding: 0;
  margin: 0;
}
*:focus,
a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: 0 none;
  transition: var(--primary-transition);
}
ul,
li {
  list-style: none;
}
.container-fluid {
  padding: 0 20px;
}
.small-notes {
  font-size: 14px;
  line-height: 1.75;
}
.row {
  margin: 0 -20px;
}
.row > * {
  padding: 0 20px;
}
.rounded-05 {
  border-radius: 2px !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input::-ms-clear {
  display: none;
}
input::-ms-reveal {
  display: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out;
  -webkit-text-fill-color: var(--black) !important;
  caret-color: var(--black) !important;
  background: var(--white) !important;
}
.min-w-100 {
  min-width: 100% !important;
}
.min-w-auto {
  min-width: auto !important;
}
.text-blue {
  color: var(--blue);
}
.bg-blue {
  background: var(--blue);
}
.bg-yellow {
  background: var(--yellow);
}
.btns {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50px;
  min-width: 223px;
  min-height: 61px;
  background: transparent;
  padding: 6px 16px;
}
.btn-small {
  font-size: 12px;
  min-width: 96px;
  min-height: 40px;
}
.btn-primary-white {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
.btn-secondary-blue {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}
p {
  font-size: 18px;
  line-height: 30px;
}
p.small,
.small p {
  font-size: 16px;
  line-height: 20px;
}
p.x-small {
  font-size: 14px;
  line-height: 17px;
}
p.xx-small {
  font-size: 13px;
  line-height: 16px;
}
h1 {
  font-size: 60px;
  line-height: 72px;
}
.bg-dark-blue {
  background: var(--dark-blue);
}
h3 {
  font-size: 32px;
  line-height: 44px;
}
h6 {
  font-size: 20px;
  line-height: 25px;
}
.font-inherit {
  font-size: inherit !important;
}
.color-inherit {
  color: inherit !important;
}
h2 {
  font-size: 45px;
  line-height: 60px;
}
.text-medium-blue {
  color: var(--medium-blue);
}
.triangle-dots:before {
  font-family: var(--hercules-icons);
  content: "\e902";
  font-size: 106px;
}
h5 {
  font-size: 24px;
  line-height: 30px;
}
.btn-secondary-white {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}
.btn-primary-blue {
  color: var(--blue);
  border-color: var(--blue);
}
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ellipsis-2 {
  -webkit-line-clamp: 2;
}
.ellipsis-3 {
  -webkit-line-clamp: 3;
}
.ellipsis-4 {
  -webkit-line-clamp: 4;
}
.text-yellow {
  color: var(--yellow);
}
::-moz-selection {
  color: var(--white) !important;
  background: var(--blue) !important;
}
::selection {
  color: var(--white) !important;
  background: var(--blue) !important;
}
.text-red {
  color: var(--red);
}
.cursor-pointer {
  cursor: pointer;
}
.btns:hover {
  opacity: 0.8;
}
table th,
table td {
  font-size: 16px;
  line-height: 24px;
  color: #06152b;
}
table th {
  color: var(--secondary-black);
  font-weight: 600;
}
table th:first-child,
table td:first-child {
  border-radius: 6px 0 0 6px;
}
table th:last-child,
table td:last-child {
  border-radius: 0 6px 6px 0;
}
table.dataTable {
  margin: 0 !important;
}
.text-secondary-black {
  color: var(--secondary-black);
}
.btn-secondary-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.light-bg {
  background-color: #f7f9ff !important;
}
h4 {
  font-size: 28px;
  line-height: 42px;
}
.text-green {
  color: var(--green);
}
.common-table-responsive td,
.common-table-responsive th {
  border: 0;
  padding: 13px 14px;
}
.common-table-responsive tr:nth-child(odd) td,
.common-table-responsive tr.odd td {
  background: #f7f9fc;
}
.table {
  margin-bottom: 0;
}
.common-table-responsive-2 {
  padding: 23px 30px;
  border-radius: 12px;
  background: #f7f8fc;
}
.common-table-responsive-2 th {
  padding: 9px 12px;
  border: 0;
  background: transparent;
}
.common-table-responsive-2 td {
  border: 0;
  padding: 15px 12px;
}
.common-table-responsive-2 td a {
  color: inherit;
}
.common-table-responsive-2 td a:hover {
  color: var(--blue);
  opacity: 0.8;
}
.btn-primary-yellow {
  color: var(--yellow);
  border-color: var(--yellow);
}
.section-2 {
  padding: 50px 0;
}
.bg-blue-light {
  background: #f7f8fc;
}
.rounded-10 {
  border-radius: 10px;
}
p.large {
  font-size: 20px;
  line-height: 30px;
}

/* Keyframes */
@keyframes grow {
  0%,
  40%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes jump {
  0% {
    bottom: 0;
  }
  25% {
    bottom: -5px;
  }
  50% {
    bottom: 0;
  }
  75% {
    bottom: 5px;
  }
  100% {
    bottom: 0;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track,
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}
.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Loader */
.loader {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
}
.dot-loader {
  height: 20px;
  width: 20px;
  animation: 1.5s grow ease-in-out infinite;
}
.dot-loader-2 {
  animation: 1.5s grow ease-in-out infinite 0.2s;
}
.dot-loader-3 {
  animation: 1.5s grow ease-in-out infinite 0.4s;
}

/* Header */
header {
  z-index: 1001;
}
.header-sticky header {
  background: rgba(0, 0, 0, 0.8) !important;
}
.header-hide header {
  transform: translateY(-100%);
}
.header-show header,
.header-show.header-hide header,
.menu-open.header-hide header {
  transform: none;
}
.header-top-bar {
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.5);
}
.select-language a {
  font-size: 12px !important;
  line-height: 16px !important;
  color: var(--dark-grey);
  padding: 0 0 0 22px !important;
  margin-right: 20px;
}
.select-language .active a,
.select-language a:hover {
  color: var(--yellow) !important;
}
.select-language a > i {
  width: 16px;
  height: 16px;
  filter: grayscale(1);
  transition: var(--primary-transition);
}
.select-language .active a > i,
.select-language a:hover > i {
  filter: grayscale(0);
}
.select-language a.en > i {
  background: url("../images/en.svg") no-repeat;
}
.select-language a.fr > i {
  background: url("../images/fr.svg") no-repeat;
}
.select-language a.es > i {
  background: url("../images/es.svg") no-repeat;
}
.header-menu-bar {
  padding: 18px 0 8px;
}
.nav-bar > ul > li {
  padding: 0 16px;
  position: relative;
}
.nav-bar > ul.nav-menu-group > li a {
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  position: relative;
}
.nav-bar > ul > li.dropdown:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: scaleX(5) translateX(-10%) rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
.nav-bar > ul > li.dropdown > a:after {
  font-family: var(--hercules-icons);
  content: "\e905";
  font-size: 5.5px;
  position: absolute;
  right: 0;
  top: 1px;
  transition: transform 0.3s ease-in-out;
}
.nav-bar > ul.nav-menu-group > li:hover > a,
.nav-bar > ul.nav-menu-group > li.active > a {
  color: var(--yellow);
}
.header-sub-menu {
  width: 100%;
  display: none;
}
.header-sub-menu li a {
  color: var(--white) !important;
  display: block;
  padding: 14px 0;
}
.header-sub-menu li a:hover {
  color: var(--yellow) !important;
}
.call-no p > a {
  opacity: 0.8;
}
.call-no p > a:hover {
  opacity: 1;
  color: var(--yellow) !important;
}

/* Banner */
.banner:not(.home-banner) {
  height: 480px;
}
.banner:before {
  content: "";
  background: linear-gradient(
    194.58deg,
    rgba(0, 0, 0, 0.85) 6.04%,
    rgba(40, 43, 53, 0.2635) 45.06%,
    rgba(0, 0, 0, 0.85) 90.21%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.home-banner:before {
  background: linear-gradient(
    194.58deg,
    rgba(0, 0, 0, 0.75) 6.04%,
    rgba(40, 43, 53, 0) 45.06%,
    rgba(0, 0, 0, 0.75) 90.21%
  );
}
.banner-content {
  max-width: 785px;
  padding-bottom: 160px;
}
.banner-content-2 {
  padding-bottom: 140px;
}
.home-banner .banner-content {
  padding-bottom: 85px;
}
.banner-content h1,
.banner-content p {
  color: var(--white);
}
.heading-bordered:before {
  content: "";
  background: var(--yellow);
  width: 23px;
  height: 4px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.banner-scroll-btn {
  font-size: 12px;
  line-height: 24px;
}
.banner-scroll-btn > svg {
  bottom: 0;
}
.banner-scroll-btn > svg {
  animation: jump 1s infinite;
}

/* Sticky bar */
.sticky-bar {
  width: 112px;
  top: 158px;
  z-index: 10;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
}
.sticky-bar li a {
  padding: 16px 26px;
  border-bottom: 1px solid #1e599c;
}
.sticky-bar li a p {
  transition: var(--primary-transition);
}
.sticky-bar li a:hover p {
  color: var(--yellow) !important;
}
.sticky-bar-btn {
  font-size: 12px;
  line-height: 16px;
  padding: 11px 6px;
  border-bottom-right-radius: 12px;
  transition: none !important;
}
.sticky-bar-btn > span.position-relative {
  display: none;
}
.sticky-bar-btn > span {
  position: relative;
  padding: 0 0 0 12px;
}
.sticky-bar-btn > span:before {
  font-family: var(--hercules-icons);
  content: "\e904";
  position: absolute;
  left: 0;
  top: 0;
}
.sticky-bar.close {
  transform: translateX(-100%);
  border-bottom-right-radius: 0;
}
.sticky-bar.close .sticky-bar-btn {
  position: absolute;
  width: 72px;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-top-right-radius: 12px;
}
.sticky-bar.close .sticky-bar-btn > span {
  padding: 0 12px 0 0;
}
.sticky-bar.close .sticky-bar-btn > span:before {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}

/* Footer */
.footer-menu {
  padding: 15px 0;
}
.footer-hercules-logo {
  width: 215px;
}
.footer-menu-list a {
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  padding: 8px 0;
  display: block;
  opacity: 0.6;
}
.footer-menu-list a:hover,
.footer-bottom ul a:hover {
  color: var(--yellow);
  opacity: 1;
}
.footer-bottom p {
  opacity: 0.8;
}
.footer-bottom ul a {
  font-size: 20px;
  color: var(--white);
}
.footer-bottom ul a:before {
  font-family: var(--hercules-icons);
  content: "\e909";
}
.footer-bottom ul .linkedin:before {
  content: "\e908";
}
.footer-bottom ul .twitter:before {
  content: "\e907";
}
.footer-bottom ul .instagram:before {
  content: "\e906";
}

/* Content */
.motor-carrier-content {
  padding: 100px 0;
}
.motor-carrier:after {
  content: "";
  background: url("../images/circle-half-blue-bg.webp") no-repeat;
  background-size: 100% 100%;
  width: 405px;
  height: 609px;
  position: absolute;
  right: 0;
  bottom: -25%;
  pointer-events: none;
  z-index: -1;
}
.motor-carrier .triangle-dots {
  top: -85px;
  transform: rotate(311deg);
}
.motor-carrier .triangle-dots-bottom {
  top: auto !important;
  bottom: 10px;
  transform: rotate(132deg);
}
.motor-carrier .triangle-dots:before {
  color: #1e599c;
}
.motor-carrier-img {
  padding: 50px 0 0 50px;
  background: url("../images/motor-carrier-bg.webp") no-repeat;
  background-size: 90% 55%;
}
.motor-carrier-row figure {
  margin: 0 10px 10px 0;
}
.motor-carrier.no-circle:after {
  display: none;
}
.motor-carrier-row figure:after {
  content: "";
  background: var(--medium-grey);
  width: 100%;
  height: 100%;
  position: absolute;
  right: -10px;
  bottom: -10px;
}
.motor-carrier-img img {
  z-index: 1;
}
.motor-carrier-ratio {
  bottom: 185px;
  margin: 0 -10px;
  z-index: 1;
}
.motor-carrier-ratio li {
  width: 305px;
  min-height: 160px;
  padding: 28px 15px;
  margin: 0 10px;
  border-bottom: 4px solid var(--dark-blue);
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
}
.motor-carrier-row p {
  max-width: 625px;
}
.motor-carrier-ratio h2 {
  font-size: 53px;
  line-height: 54px;
}
.ltl-shipments {
  padding: 50px 0 70px;
  margin-right: 0 !important;
}
.ltl-red-box {
  background: var(--red);
  padding: 60px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.35);
}
.ltl-red-box li {
  background: url("../images/tick-white-bg.svg") no-repeat left 3px;
}
.ltl-blue-box {
  background: var(--blue);
  padding: 60px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.35);
}
.ltl-blue-box li {
  background: url("../images/tick-white-bg.svg") no-repeat left 3px;
}
.ltl-shipments .triangle-dots {
  right: -80px;
  bottom: -85px;
}
.ltl-shipments .triangle-dots:before {
  color: #fcbeaa;
}
.customs-brokerage {
  padding: 50px 0;
}
.customs-brokerage-wrapper {
  padding: 95px 85px;
  background: #e6f2ff url("../images/customs-brokerage-thumb.webp") no-repeat
    right center;
}
.customs-brokerage-wrapper:before {
  content: "";
  background: url("../images/customs-brokerage-bg-desktop.svg") no-repeat;
  background-size: 100% 100%;
  width: 85%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.customs-brokerage-wrapper:after {
  content: "";
  background: url("../images/customs-brokerage-circle-desktop.svg") no-repeat;
  width: 455px;
  height: 333px;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.customs-brokerage-content {
  max-width: 735px;
  z-index: 1;
}
.customs-brokerage-content li {
  margin: 10px 0;
}
.terminal-maps:after {
  content: "";
  background: url("../images/circle-lines-bg.webp") no-repeat;
  background-size: 100% 100%;
  width: 232px;
  height: 586px;
  bottom: auto;
  top: -78px;
}
.content-box {
  border-bottom: 4px solid var(--dark-blue);
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
  padding: 28px 15px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.content-box-wrap [class*="col-"] {
  margin-bottom: 25px;
}
.terminal-maps-content {
  padding: 40px 0 150px;
}
.terminal-maps-content .triangle-dots {
  top: -60px;
}
.terminal-maps-content .triangle-dots-bottom {
  bottom: -30px;
}
.terminal-maps-content .triangle-dots:before {
  color: #d3cece;
}
.location-content-slider {
  background: var(--green);
  padding: 52px 62px 82px;
  box-shadow: 3px 4px 13px 0 rgba(0, 0, 0, 0.25);
}
.location-content-slider p {
  line-height: 24px;
}
.location-content-slider .btns {
  min-width: 160px;
  width: 160px;
  min-height: 52px;
  margin-left: 1px;
}
.location-content-slider .slick-dots {
  display: flex;
  align-items: center;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.location-content-slider .slick-dots button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--white);
  background: transparent;
  border-radius: 50%;
  margin-left: 8px;
  transition: var(--primary-transition);
}
.location-content-slider .slick-dots button:hover,
.location-content-slider .slick-active button {
  background: var(--white);
}
.help-videos {
  padding: 100px 0;
}
.help-videos-slider .slick-list {
  overflow: visible;
}
.help-videos-slider:before {
  content: "";
  background: var(--blue);
  width: 25%;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
.help-videos p {
  border-radius: 0 0 12px 12px;
  background: #e7f2fe;
}
.help-videos figure {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.help-videos img {
  border-radius: 12px 12px 0 0;
  transition: var(--primary-transition);
  transform-origin: center center;
}
.help-videos a:hover img {
  transform: scale(1.05);
}
.help-videos figure:before {
  content: "";
  background: url("../images/play-icon.svg") no-repeat;
  background-size: 100% 100%;
  width: 58px;
  height: 58px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.help-videos-slider .slick-arrow {
  font-size: 0;
  width: 72px;
  height: 72px;
  background: var(--yellow);
  border: 0;
  padding: 0;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%) rotate(180deg);
  box-shadow: 0 -4px 5px 0 rgba(0, 0, 0, 0.35);
  transition: var(--primary-transition);
}
.help-videos-slider .slick-prev {
  right: auto !important;
  left: -50px;
  transform: translateY(-50%);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.35);
}
.help-videos-slider .slick-arrow:before {
  font-size: 24px;
  font-family: var(--hercules-icons);
  content: "\e904";
  color: #464b52;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: -1px;
  transition: var(--primary-transition);
}
.help-videos-slider .slick-arrow:hover {
  background: var(--white);
}
.help-videos-slider .slick-disabled {
  background: #efeaea;
  pointer-events: none;
}
.help-videos-slider .slick-disabled:before {
  color: #9da7b5;
}
.latest-news {
  padding: 75px 0;
}
.latest-news .row {
  margin: 0 -10px;
}
.latest-news .row > * {
  padding: 10px;
}
.latest-news-box {
  padding: 30px 30px 30px 40px;
  border-radius: 12px;
  background: rgba(255, 179, 66, 0.2);
}
.latest-news-box:before {
  content: "";
  width: 5px;
  height: 65%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.latest-news .triangle-dots {
  top: -40px;
  transform: rotate(177deg);
}
.latest-news .triangle-dots:before {
  color: rgba(209, 92, 55, 0.3);
  transform: rotate(310deg);
}
.latest-news p > a:hover {
  color: var(--red);
}
.faq-accordion .accordion-item {
  background: #f7f9ff;
}
.faq-accordion .accordion-button {
  padding: 30px;
  padding-right: 65px;
}
.faq-accordion .accordion-button:after {
  content: "";
  background: url("../images/arrow-brown-small.svg") no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--primary-transition);
}
.faq-accordion .accordion-button:not(.collapsed):after {
  transform: translateY(-50%) rotateX(180deg);
}
.faq-accordion .accordion-body {
  padding: 30px;
}
.faq-accordion .accordion-body p {
  color: #666c89;
  line-height: 24px;
}
.faq-home:before {
  content: "";
  background: url("../images/circle-half-green-bg.webp") no-repeat;
  background-size: 100% 100%;
  width: 271px;
  height: 636px;
  position: absolute;
  left: 0;
  top: -20%;
  pointer-events: none;
  z-index: -1;
}
.drive-for-us {
  padding: 100px 0;
}
.drive-for-us-content {
  padding: 60px 68px;
  background: url("../images/drive-for-us.webp") no-repeat right center/cover;
  border-radius: 12px;
}
.drive-for-us-content:before {
  content: "";
  background: linear-gradient(
    90.38deg,
    #00499c 44.7%,
    rgba(0, 73, 156, 0) 91.61%
  );
  width: 61%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 12px 0 0 12px;
}
.drive-for-us-content > * {
  position: relative;
  z-index: 1;
}
.drive-for-us h2 {
  font-size: 68px;
  line-height: 88px;
}

/* Login modal */
.modal {
  background: rgba(18, 21, 28, 0.5);
}
.modal-dialog {
  display: flex;
}
.modal-content {
  padding: 48px;
  margin: 0 20px;
  width: calc(100% - 40px);
}
.fields-set {
  margin-bottom: 24px;
  position: relative;
}
.form-label,
.form-check-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--black);
  width: 100%;
}
.form-control,
.form-select {
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  padding: 10px 28px;
  width: 100%;
  height: 50px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--black);
  box-shadow: none !important;
  transition: none;
}
.form-control:focus,
.form-control:active,
.form-select:focus,
.form-select:active {
  border-color: var(--blue);
}
.form-control::-webkit-input-placeholder {
  color: #9b9292;
}
.form-control::-moz-placeholder {
  color: #9b9292;
}
.form-control:-ms-input-placeholder {
  color: #9b9292;
}
.form-control:-moz-placeholder {
  color: #9b9292;
}
.btn-close {
  width: 36px;
  height: 36px;
  right: 20px;
  top: 20px;
  background: none;
  box-shadow: none !important;
}
.btn-close:hover {
  transform: rotate(90deg);
}
.btn-close:before {
  font-size: 20px;
  font-family: var(--hercules-icons);
  content: "\e90d";
  color: var(--black-medium);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.error-msg {
  font-size: 13px !important;
  line-height: 20px !important;
  color: var(--red-medium);
  position: absolute;
  display: none;
}
.error-msg.show {
  display: block;
}
.modal a:hover {
  color: var(--yellow);
}

/* Schedule pickup */
.section {
  padding: 100px 0;
}
.form-container {
  max-width: 867px;
}
.form-fields-set {
  padding-top: 32px;
}
.form-fields-set h6,
.form-fields-set h5 {
  color: var(--medium-blue);
  padding-bottom: 24px;
}
.form-label > sup {
  font-size: 22px;
  color: var(--red-medium);
  top: 0;
}
.form-label > i {
  color: #404040;
}
textarea.form-control {
  resize: none;
  min-height: 92px;
}
option:hover {
  color: var(--white);
  background: var(--blue);
}
.form-select,
.form-control.date-picker,
.form-control.time-picker {
  padding-right: 40px !important;
}
.form-control.date-picker {
  padding-left: 10px;
}
.select-arrow,
.date-icon,
.time-icon {
  right: 12px;
  bottom: 7px;
}
.select-arrow {
  bottom: 13px;
}
.select-arrow:before,
.date-icon:before,
.time-icon:before {
  font-family: var(--hercules-icons);
  content: "\e90c";
  font-size: 10px;
  color: var(--blue);
}
.date-icon:before {
  content: "\e90b";
  font-size: 24px;
}
.time-icon:before {
  content: "\e90a";
  font-size: 24px;
}
.form-check-input,
.form-check-input:focus,
.form-check-input:active {
  border-color: var(--black);
  box-shadow: none !important;
  filter: none;
}
.form-check-input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  margin-top: 0;
}
.form-check-input[type="checkbox"]:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}
.form-check-input[type="radio"] {
  border-color: #e2e2e2;
  transition: none;
}
.form-check-input[type="radio"]:checked {
  border-color: var(--blue);
  --bs-form-check-bg-image: none;
  background: url("../images/radio-checked.svg") no-repeat;
  background-size: 115%;
  background-position: center;
}
.form-check {
  margin-bottom: 0;
}
.dimensions-row-set > .fields-set,
.feet-row-set > .fields-set,
.fetch-row-set > .fields-set {
  padding: 16px 20px;
  border: 1px solid #d2d8eb;
  background: #f7f9ff;
}
.dimensions-row-set > .fields-set .row,
.fetch-row-set > .fields-set .row {
  margin: 0 -6px;
}
.dimensions-row-set > .fields-set .row > *,
.fetch-row-set > .fields-set .row > * {
  padding: 0 6px;
}
.toggle-check-input {
  display: none;
}
.toggle-check-label {
  min-width: 56px;
  height: 30px;
  border: 1px solid var(--blue);
  background: transparent;
  border-radius: 50px;
  transition: var(--primary-transition);
}
.toggle-check-label:before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--blue);
  transition: left 0.3s ease-in-out;
}
.toggle-check-label:has(input[type="checkbox"]:checked),
input[type="checkbox"]:checked ~ .toggle-check-label,
.toggle-check-label.checked {
  background: var(--blue);
}
.toggle-check-label:has(input[type="checkbox"]:checked):before,
input[type="checkbox"]:checked ~ .toggle-check-label:before,
.toggle-check-label.checked:before {
  background: var(--white);
  left: 28px;
}
.feet-row-set {
  display: none;
}
.feet-row-set .form-control {
  width: 150px;
}
.btns.add-row-btn,
.btns.add-row-class-btn {
  font-size: 14px;
  min-width: 96px;
  min-height: 42px;
}
.btns.add-row-btn > span,
.btns.add-row-class-btn > span {
  padding-left: 30px;
}
.btns.add-row-btn > span:before,
.btns.add-row-class-btn > span:before {
  font-family: var(--hercules-icons);
  content: "\e901";
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
}
.captcha-refresh-img {
  padding: 3px;
  border: 1px solid var(--black);
}
.captcha-refresh-btn:before {
  font-family: var(--hercules-icons);
  content: "\e900";
  font-size: 48px;
  color: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.schedule-notification p {
  line-height: 22px;
}
.ui-widget-header .ui-icon {
  background-image: url("../images/ui-icons_444444_256x240.png");
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("../images/ui-icons_444444_256x240.png");
}
.ui-datepicker th {
  color: var(--white);
  background: var(--blue);
}
.ui-datepicker .ui-datepicker-header,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button {
  background: #f7f9ff;
  border-color: #d2d8eb;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background: #d2d8eb;
  border-color: #d2d8eb;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-widget-header {
  border: 1px solid var(--medium-blue);
  background: var(--blue);
  color: var(--white);
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 1;
}
.mobile-scrollable-tab {
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  border-bottom: 1px solid #e9e8e8;
}
.mobile-scrollable-tab button {
  font-size: 18px;
  line-height: 22px;
  color: var(--black-secondary) !important;
  outline: none !important;
}
.mobile-scrollable-tab button.active {
  font-weight: 600 !important;
}
.mobile-scrollable-tab button:after {
  content: "";
  background: var(--yellow);
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1.5px;
  transform: scale(0);
  transition: var(--primary-transition);
}
.mobile-scrollable-tab button:hover:after,
.mobile-scrollable-tab button.active:after {
  transform: scale(1);
}
.btns.tab-next-btn {
  min-width: 300px;
}
.btns.remove-row-btn {
  font-size: 12px;
  min-width: 96px;
  min-height: 34px;
}
.dimension-choice-check {
  margin: -5px -24px;
}
.dimension-choice-check .form-check {
  margin-top: 5px;
  margin-bottom: 5px;
}
.motor-carrier-img img {
  object-fit: cover;
}
.location-map-slider img {
  width: 100%;
}
.form-control[type="password"] {
  font-family: initial;
}
.modal .form-control,
.modal .form-select {
  font-size: 18px;
}
.modal-header h3 {
  font-size: 32px;
}
form .btns:not(.btn-small) {
  min-height: 54px;
}
.latest-news-box p.small {
  line-height: 24px;
}
.call-no.footer-call-no p > a {
  font-size: 16px;
}
.ratequote-fetch-row-set > .fields-set .row > .col-sm-1 {
  width: 36px;
}
.ratequote-fetch-row-set > .fields-set .p-or {
  color: rgba(0, 0, 0, 0.4);
}
.btn-checkbox-group {
  margin: 0 -5px;
}
.btn-checkbox-group input {
  display: none;
}
.btn-checkbox-group label {
  font-size: 14px;
  line-height: 14px;
  color: var(--secondary-black);
  font-weight: 500;
  border-radius: 25px;
  border: 1px solid var(--secondary-black);
  padding: 9px 18px;
  margin: 8px 5px;
  cursor: pointer;
}
.btn-checkbox-group label input[type="checkbox"]:checked + span {
  padding-left: 21px;
  background: url("../images/tick-icon-blue.svg") no-repeat left center;
}
.btn-checkbox-group label:hover {
  transition: var(--primary-transition);
}
.btn-checkbox-group label:hover,
.btn-checkbox-group label:has(input[type="checkbox"]:checked) {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: #e9f4ff;
}
.get-zip-postal-code input {
  width: calc(100% - 70px);
}
.zip-postal-btn {
  width: 50px;
  height: 50px;
}
.zip-postal-btn:before {
  font-family: var(--hercules-icons);
  content: "\e914";
  font-size: 18px;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.shipment-check-label {
  padding-left: 36px;
}
.add-row-set {
  border-bottom: 1px solid #e9e8e8;
}
.dimensions-row-set .fields-set:first-child .remove-row-btn {
  display: none;
}
.quote-section .triangle-dots {
  top: -20px;
  right: -11px;
  transform: rotate(311deg);
}
.quote-section .triangle-dots:before {
  color: #1e599c;
}
.fuel-ps-row p {
  line-height: 32px;
  max-width: 603px;
}
.fuel-ps-row p a:hover {
  opacity: 0.8;
}
.fuel-ps-img {
  background: url("../images/fuel-prices-surcharge-bg.webp") no-repeat;
  background-size: 90% 60%;
}
.fuel-ps-img figure:after {
  display: none;
}
.motor-carrier-ratio.fuel-ps-ratio {
  padding: 85px 0 70px;
  margin: -10px;
}
.motor-carrier-ratio.fuel-ps-ratio li {
  width: calc(25% - 20px);
  margin: 10px;
}
.fuelps-modal-btn {
  background: rgba(255, 179, 66, 0.2);
  transition: all 0.15s ease-in-out;
}
.fuelps-modal-btn:hover {
  box-shadow: 6px 6px 20px 0 rgba(0, 0, 0, 0.24);
}
.fuel-prices-surcharge .triangle-dots {
  right: -45px;
  top: -95px;
  transform: rotate(311deg);
}
.fuel-prices-surcharge .triangle-dots:before {
  color: var(--green);
}
.fuel-ps-modal .modal-dialog {
  max-width: 1125px;
}
.fuel-ps-modal .modal-content {
  padding: 30px 50px 45px;
}
.fuel-ps-modal .fuel-ps-ratio li {
  min-height: 125px;
  background: rgba(255, 179, 66, 0.3);
  box-shadow: none;
}
.fuel-ps-modal .btn-close {
  right: -24px;
}
.fuel-ps-table {
  max-width: 788px;
}
.fuel-ps-table .common-table-responsive th,
.fuel-ps-table .common-table-responsive td {
  width: 50%;
  border: 0;
  padding: 18px 22px;
  color: rgba(6, 21, 43, 0.78);
}
.fuel-ps-table .common-table-responsive th {
  color: #06152b;
  padding-bottom: 28px;
  background: transparent;
}
.fuel-ps-table .common-table-responsive th:first-child {
  padding-left: 0;
}
.fuel-ps-table .common-table-responsive th h5 {
  font-weight: inherit;
}
.fuel-ps-table div.dataTables_wrapper div.dt-row {
  padding-bottom: 56px;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 0 -12px;
}
div.dataTables_paginate ul.pagination li.previous,
div.dataTables_paginate ul.pagination li.next,
div.dataTables_paginate ul.pagination li.active {
  margin: 0 12px;
}
div.dataTables_paginate ul.pagination li > a {
  font-size: 14px;
  line-height: 17px;
  color: #2c2f46;
  font-weight: 600;
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none !important;
}
div.dataTables_paginate ul.pagination li > a:hover {
  background: #cdd4e3;
  opacity: 0.8;
}
div.dataTables_paginate ul.pagination li.active > a {
  color: var(--white) !important;
  background: var(--blue);
}
div.dataTables_paginate ul.pagination li.previous > a,
div.dataTables_paginate ul.pagination li.next > a {
  font-size: 0;
  border: 0;
  background: url("../images/pagination-next.svg") no-repeat 0 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
}
div.dataTables_paginate ul.pagination li.previous.disabled > a,
div.dataTables_paginate ul.pagination li.next.disabled > a {
  background: url("../images/pagination-previous.svg") no-repeat 0 0;
}
div.dataTables_paginate ul.pagination li.previous > a,
div.dataTables_paginate ul.pagination li.next.disabled > a {
  transform: rotateY(180deg);
}
div.dataTables_paginate ul.pagination li.previous.disabled > a {
  transform: none;
}
div.dataTables_wrapper div.dt-row ~ .row {
  align-items: center;
  overflow: hidden;
}
div.dataTables_wrapper div.dataTables_info {
  font-size: 14px;
  line-height: 17px;
  color: rgba(34, 34, 34, 0.64);
  font-weight: 500;
  padding-top: 0;
}
.fuel-ps-table-wrapper:before {
  content: "";
  background: url("../images/circle-half-green-bg-right.webp") no-repeat;
  background-size: 100% 100%;
  width: 234px;
  height: 630px;
  position: absolute;
  right: 0;
  top: 18px;
  pointer-events: none;
  z-index: -1;
}
.fuel-ps-table-wrapper > .triangle-dots {
  right: 85px;
  bottom: -72px;
  transform: rotate(132deg);
}
.fuel-ps-table-wrapper > .triangle-dots:before {
  font-size: 131px;
  color: #d3cece;
}
.fuel-ps-table > .triangle-dots {
  transform: rotate(311deg);
  left: calc(100% + 112px);
  top: -38px;
}
.fuel-ps-table > .triangle-dots:before {
  font-size: 120px;
  color: rgba(30, 89, 156, 0.4);
}
.banner-2:before {
  background: linear-gradient(
    194.58deg,
    #000000 6.04%,
    rgba(40, 43, 53, 0.65) 45.06%,
    #000000 90.21%
  );
}
.quote-section.transit-time .triangle-dots {
  top: 90px;
}
.transit-time-form {
  padding: 60px 50px;
  border-radius: 12px;
  max-width: 624px;
  margin-top: -113px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  form#form_track1.transit-time-form .col-md-3 {
      width: 160px;
  }
  form#form_track1.transit-time-form .col-md-9 {
      width: calc(100% - 160px);
  }
}
.transit-time-form .schedule-notification p {
  background: #aab6da;
}
.transit-time-form .get-zip-postal-code input {
  width: calc(100% - 58px);
}
.transit-time-form .btns:not(.btn-small) {
  font-size: 16px;
  min-height: 50px;
}
.transit-time-form .zip-postal-btn:before {
  color: var(--secondary-black);
}
.nobreak-bulk-system {
  padding: 85px 0;
}
.bulk-system-box {
  padding: 40px 10px 10px 45px;
  background: url("../images/wave-bg.png") no-repeat left bottom;
  background-size: 100%;
}
.bulk-system-box h5 {
  line-height: 36px;
  max-width: 694px;
  text-transform: capitalize;
}
.bulk-system-box h5 > span {
  font-size: 28px;
}
.transit-time-form .row {
  margin: 0 -12px;
}
.transit-time-form .row > * {
  padding: 0 12px;
}
.delivery-terminal-modal .modal-dialog {
  max-width: 740px;
}
.transit-time-form-table {
  padding-top: 20px;
}
.transit-time-form-table .common-table-responsive-2 {
  margin-top: 36px;
}
.ui-datepicker table th,
.ui-datepicker table td {
  font-size: 14px !important;
  line-height: 20px !important;
  border-radius: 0 !important;
}
.common-form .ratequote-fetch-row-set .btns:not(.btn-small) {
  min-height: 50px;
  min-width: 100%;
}
.header-sub-menu li p {
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  display: block;
  padding: 14px 0;
  padding-right: 12px !important;
}
.header-sub-menu li p a {
  font-size: 0 !important;
  min-width: 24px;
  height: 24px;
  padding: 5px !important;
  border-radius: 3px;
  margin-left: 10px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.header-sub-menu li p a:first-child {
  margin-left: 16px;
}
.header-sub-menu li p a.online {
  background: url("../images/online-icon.svg");
}
.header-sub-menu li p a.download {
  background: url("../images/download-icon.svg");
}
.header-sub-menu li p a.help {
  background: url("../images/help-icon.svg");
}
.header-sub-menu li p a.claim-help {
  background: url("../images/claim-help-icon.svg");
}
.header-sub-menu li p a:hover {
  background-color: #e6f2ff !important;
}
.header-sub-menu li p a > span {
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  background: #383e45;
  padding: 5px 12px 7px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: var(--primary-transition);
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
}
.header-sub-menu li p a.claim-help > span {
  min-width: 166px;
}
.header-sub-menu li p a > span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #383e45;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.header-sub-menu li p a > span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 0;
}
.header-sub-menu li p a:hover > span {
  opacity: 1;
  visibility: visible;
}
.header-icons-sub-menu {
  padding-top: 38px !important;
}
.header-icons-sub-menu .btns {
  color: var(--blue) !important;
  min-width: 125px;
  min-height: 39px;
}
.track-shipment {
  padding-bottom: 80px;
}
.track-shipment-form option {
  color: var(--black);
}
.track-shipment.quote-section .triangle-dots {
  right: 20px;
  top: auto;
  bottom: -25px;
  transform: rotate(-320deg);
}
.user-menu-list {
  min-width: 190px;
  margin-top: 12px;
  right: -8px;
  z-index: 1;
  display: none;
}
.user-menu-list:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 7px solid var(--white);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  right: 11px;
  bottom: 100%;
}
.user-menu-list a,
.user-menu-list p {
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  display: block;
}
.user-menu-list a:hover {
  color: var(--blue);
}
.quote-result-table td,
.common-table-modal td {
  border: 1px solid #ddd;
  background: var(--white);
}
.common-table-responsive-2 p {
  padding: 8px 0;
}
.btns-group .btn-small {
  font-size: 12px;
  min-width: 96px;
  min-height: 40px;
}
.banner-small:not(.home-banner) {
  height: 240px;
}
.banner-small .banner-content {
  padding-bottom: 40px;
}
.common-form .btns:not(.btn-small) {
  min-height: 54px;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
}
.common-table-responsive-2 td a.text-green {
  color: var(--green);
}
.common-table-responsive-2 td a.text-red {
  color: var(--red);
}
.common-table-modal .modal-dialog {
  max-width: 1400px;
}
.track-shipment-history-details .mobile-scrollable-tab button {
  font-size: 20px;
  line-height: 28px;
  padding: 28px 32px;
}
.track-shipment-history-details .mobile-scrollable-tab button.active {
  font-weight: 700 !important;
}
.track-customs-history {
  padding: 48px 44px;
}
.track-customs-history ul {
  border-left: 2px solid var(--green);
}
.track-customs-history li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 40px;
}
.track-customs-history li:last-child {
  margin-bottom: 0;
}
.track-customs-history li:last-child:after {
  content: "";
  background: #f7f8fc;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 14px;
  left: -2px;
}
.track-customs-history li:before {
  content: "";
  background: var(--green);
  width: 14px;
  height: 14px;
  position: absolute;
  left: -8px;
  top: 0;
  border-radius: 50%;
  border: 2px solid #f7f8fc;
}
.track-customs-history ul p {
  color: #06152b;
}
.track-customs-history ul p:first-child {
  opacity: 0.78;
}
.track-shipper-details .row {
  margin: 0 -15px;
  padding: 15px 30px;
}
.track-shipper-details .row > * {
  padding: 15px;
}
.track-shipper-details .col-content {
  height: 100%;
  padding: 30px;
}
.track-shipper-details p {
  color: var(--black-secondary);
  word-break: break-word;
}
.track-shipper-details p.xx-small {
  color: rgba(48, 48, 48, 0.5);
  padding: 10px 16px;
  border-radius: 100px;
}
.track-shipper-details p.xx-small > span {
  padding-left: 26px;
}
.track-shipper-details p.xx-small > span:before {
  font-family: var(--hercules-icons);
  content: "\e915";
  font-size: 17px;
  position: absolute;
  left: 0;
}
.space-row {
  height: 8px;
}
.common-table-responsive-3 td {
  padding: 15px 20px;
}
.common-table-responsive-3 th {
  padding: 9px 20px;
}
.track-shipment-status-details {
  padding: 36px 0;
}
.track-shipment-status-details .bg-blue {
  width: 195px;
  border-radius: 9px 0 0 9px;
  padding: 20px;
}
.track-shipment-status-details .bg-blue-light {
  width: calc(100% - 195px);
  padding: 30px 45px 0;
}
.track-shipment-status-details .row {
  margin: 0 -10px;
}
.track-shipment-status-details .row > * {
  padding: 0 10px;
  margin-bottom: 30px;
}
p.th,
p.td {
  font-size: 16px;
  line-height: 24px;
  color: #06152b;
  font-weight: 500;
}
p.td {
  color: rgba(6, 21, 43, 0.78);
  font-weight: 400;
  padding-top: 6px;
}
p.text-blue {
  color: var(--blue);
}
.track-shipment-flow {
  padding-top: 60px;
}
.track-shipment-flow ul:before {
  content: "";
  border: 1px dashed rgba(0, 0, 0, 0.3);
  width: 80%;
  height: 1px;
  position: absolute;
  top: 25px;
  left: 10%;
}
.track-shipment-flow li {
  width: 20%;
}
.track-shipment-flow li span {
  width: 50px;
  height: 50px;
  background: #ddd url("../images/tick-icon-white.svg") no-repeat center center;
  position: relative;
  z-index: 1;
}
.track-shipment-flow li.complete span {
  background-color: var(--green) !important;
}
.track-shipment-flow li h6 {
  color: var(--secondary-black);
  padding-top: 30px;
}
.ti_tx,
.mi_tx,
.mer_tx {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.timepicker_wrap .time,
.timepicker_wrap .mins,
.meridian {
  width: 60px;
  float: left;
  margin: 0 10px;
  font-size: 20px;
  color: #2d2e2e;
  font-family: arial;
  font-weight: 700;
}
.timepicker_wrap .prev,
.timepicker_wrap .next {
  cursor: pointer;
  padding: 10px;
  position: relative;
}
.timepicker_wrap .prev:before,
.timepicker_wrap .next:before {
  font-family: var(--hercules-icons);
  content: "\e90c";
  font-size: 10px;
  color: var(--blue);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.timepicker_wrap .prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.time_pick {
  position: relative;
}
.timepicker_wrap {
  padding: 10px;
  border-radius: 3px;
  z-index: 998;
  display: none;
  background: #f7f8fc;
  border: 1px solid #ccc;
  float: left;
  position: absolute;
  top: calc(100% + 1px) !important;
  left: 0;
}
input.timepicki-input {
  font-size: 16px;
  font-family: var(--chivo);
  color: var(--black);
  background: none repeat scroll 0 0 #ffffff;
  border: 1px solid var(--blue);
  border-radius: 5px 5px 5px 5px;
  float: none;
  margin: 0;
  text-align: center;
  width: 70%;
}
div.datedropper.primary {
  font-family: var(--chivo);
}
div.datedropper.primary:before,
div.datedropper.primary .pick-submit,
div.datedropper.primary .pick-lg-b .pick-sl:before,
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-lg-h {
  background: var(--blue);
}
div.datedropper.primary .pick-y.pick-jump,
div.datedropper.primary .pick li span,
div.datedropper.primary .pick-lg-b .pick-wke,
div.datedropper.primary .pick-btn {
  color: var(--blue);
}
header.non-sticky {
  background: transparent !important;
  transition: none !important;
}
.city-lookup .city-lookup-table tr {
  cursor: pointer;
}
.city-lookup .city-lookup-table tr:hover td {
  color: var(--white);
  background: var(--blue);
}
.phone3 {
  width: calc(33.3333% - 10px) !important;
  margin-bottom: 24px;
}
.phone4 {
  width: 33.3333% !important;
  margin-bottom: 24px;
}
.dimens_shipform table {
  width: 100%;
}
.dimens_shipform table tr {
  margin: 0 -6px;
}
.dimens_shipform table td {
  width: 182px !important;
  padding: 0 6px;
  padding-bottom: 24px;
}
.dimens_shipform table tr:first-child td {
  padding-bottom: 0;
}
.dimens_shipform table tr td label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--black);
  margin-left: 5px;
}
.dimens_shipform table tr td label[for="Stackable"] {
  margin-right: 48px;
}
.dimens_shipform table tr td input[type="radio"] {
  width: 1em !important;
  margin-top: 4px;
  border-color: #e2e2e2;
  transition: none;
}
.dimens_shipform table tr td input[type="radio"]:checked {
  border-color: var(--blue);
  --bs-form-check-bg-image: none;
  background: url(../images/radio-checked.svg) no-repeat;
  background-size: 115%;
  background-position: center;
}
.dimens_shipform table tr:nth-child(2) td:last-child {
  position: relative;
  width: 60px !important;
}
.custom-new-delete > div {
  position: absolute;
  right: 6px;
  top: 13px;
}
.add_dim_sec,
.del_dim_sec {
  cursor: pointer;
}
.formError {
  opacity: 1 !important;
}
.formError .formErrorContent {
  background: var(--red) !important;
  border: 0 !important;
  padding: 8px !important;
  box-shadow: none !important;
  border-radius: 4px !important;
  top: -8px;
}
.formError .formErrorContent:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid var(--red);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  left: 15px;
  top: 100%;
}
.formError .formErrorArrow {
  display: none !important;
}
.btns-group .formUl span {
  font-size: 15px;
  float: none !important;
  margin: 0 !important;
}
.error1 {
  color: var(--red) !important;
}
.success1,
.updatesuccess1 {
  color: var(--green) !important;
}
#newdatetime,
#getdatetime {
  font-size: 16px !important;
  line-height: 24px;
  margin-bottom: 24px !important;
  display: block;
}

.form-submit-messages p {
  display: none;
}
.rate-quote-results-error .bg-blue-light {
  max-width: 730px;
  padding: 37px 20px !important;
  border-radius: 12px !important;
  background: var(--white) !important;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}
.rate-quote-results-error .bg-blue-light a:hover {
  color: var(--blue) !important;
}
.footer-menu .row .col-lg-5 {
  width: 100% !important;
}
main {
  overflow: hidden;
}
#ZipcodeSpan {
  font-size: 15px;
  margin-left: 0 !important;
}
.form-fields-set.rated-as-values {
  padding-top: 32px !important;
}
/*.dimens_dynamic .dimension-choice-check {
    width: calc(100% - 60px);
}*/
/*12082023*/
.btn-secondary-grey {
  color: var(--white);
  border-color: var(--medium-grey);
  background: var(--medium-grey);
}
.btn-group .btns,
.btn-group .btns.tab-next-btn {
  min-width: inherit;
}
.btn-group .btns {
  flex: 1 0 0%;
}
.quote-result-head {
  padding: 30px;
}
.dtfh-floatingparent tr > td,
.dtfh-floatingparent tr > th {
  background-color: #fff;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 12px;
}
.common-error-content > div {
  max-width: 624px;
  padding: 37px 20px;
  border-radius: 12px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.35);
}
.common-error-content p > span {
  padding-left: 30px;
  background: url("../images/error-icon.svg") no-repeat left top;
  background-size: 20px 19px;
}
.cubic_lbs_info p.text-red > a[href^="tel:"] {
  color: var(--red) !important;
}
.fields-ready-time:not(.nobtn) .form-control.date-picker {
  width: calc(100% - 80px);
}
.fields-ready-time:not(.nobtn) .form-control.time-picker {
  width: calc(100% - 80px);
}
.fields-ready-time:not(.nobtn) .time-icon {
  right: 92px;
}
.fields-ready-time:not(.nobtn) .date-icon {
  right: 90px;
}
.current-time-picker,
.current-date-picker {
  bottom: 5px;
}
.track-shipment-status-details .bg-blue-light p {
  word-break: break-word;
}
.track-shipment-status-details .bg-blue-light p.text-blue,
.track-shipment-status-details .bg-blue-light p.text-blue a {
  color: var(--blue) !important;
}
#stickyTable_wrapper table th,
#stickyTable_wrapper table td,
.fixedHeader-floating th,
.fixedHeader-floating td {
  border-radius: 0 !important;
}
.hazmat_section {
  padding-bottom: 13px !important;
}
.rated-value-text .badge {
  text-align: left;
  white-space: normal;
  line-height: 22px;
}
.schedule-notification p.text-red a[href^="tel:"] {
  color: var(--red) !important;
}
.motor-carrier-p {
  min-height: 60px;
}
.brokerage-motor-carrier-p {
  min-height: 220px;
}
.float-text-right {
  float: right;
}
.fs-14 {
  font-size: 14px;
}
.about-banner figure {
  text-align: center;
}
.about-banner figure img {
  width: auto !important;
  height: auto !important;
}
:root {
  scroll-behavior: auto;
}
.banner-header:before {
  content: "";
  background: linear-gradient(
    194.58deg,
    rgba(0, 0, 0, 0.85) 6.04%,
    rgba(40, 43, 53, 0.2635) 45.06%,
    rgba(0, 0, 0, 0.85) 90.21%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.banner-header {
  height: 135px;
  background-color: #a9a9a9;
  background-image: url(../../assets/images/common-banner.webp);
  background-size: cover;
  background-position: center center;
}
.ltl-shipments .row {
  justify-content: center;
}
.ltl-shipments .row .position-lg-absolute {
  position: static !important;
}

.faqText h2 {
  padding: 10px 0;
  color: var(--blue);
}
.faqText p {
  line-height: 24px;
  padding: 5px 0;
}
.faqText span.date {
  font-size: 14px;
  color: #363636;
  font-style: italic;
}
.faqText a {
  color: var(--blue);
}
.faqText a:hover,
#content .newsDiv a:hover {
  opacity: 0.8;
}
.faqText ul li {
  font-size: 16px;
  line-height: 24px;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: #666c89;
}
.faqText ul li:before {
  content: "";
  background: #363636;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 50%;
}
.faqText .brokerPaginationBotBorder {
  margin-top: 10px;
}
.content {
  margin: 0;
  padding: 50px 0;
}
.brokerContent .content {
  padding-top: 0;
}
.content h2 {
  font-size: 20px !important;
  line-height: 30px;
  font-weight: 700;
  width: 100%;
  clear: both;
  margin-top: 10px;
  margin-bottom: 0;
}
.bottomBorder {
  border-bottom: 1px solid #ccc;
}
.faqText h2 {
  line-height: 24px;
}
.faqText p {
  font-size: 16px;
  line-height: 25px;
  color: #363636;
}
.moreLink2 {
  display: inline-block;
  padding: 3px 10px 5px 10px;
  background: #fcf8eb;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #bfdcfc;
  color: #165cab;
  text-decoration: none;
  margin-top: 10px;
}
.moreArrow,
.lessArrow {
  background: url("/assets/default/images/more.png")
    right center;
  height: 8px;
  width: 9px;
  display: inline-block;
}
.lessArrow {
  background: url("/assets/default/images/less.png")
    right center;
}
.faqText a:hover,
#content .newsDiv a:hover {
  opacity: 0.8;
}
.brokerPaginationBotBorder {
  border-bottom: 1px dotted #b2c9fd;
}
.faqText .brokerPaginationBotBorder {
  margin-top: 10px;
}
.brokerContent ul {
  margin: 0px;
  padding: 0px;
  border: none;
}
#pagination {
  text-align: center;
  float: left;
  margin-left: 60px;
}
#pagination li {
  list-style: none;
  float: left;
  margin: 0px 5px 2px 0px;
  padding: 2px 0px;
  width: 20px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 12px;
  line-height: 24px;
  cursor: pointer;
}
.banner:not(.home-banner), .page-banner {
  width: 100%;
}
.banner:not(.home-banner) .container-fluid, .page-banner .container-fluid {
  max-width: 100%;
}
.faqText .more-block h1 {
  color: #363636;
}
@media (min-width: 1540px) {
  .container-fluid,
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 1540px) {
  .banner .container-fluid {
    max-width: 100%;
  }
}

//footer
.footer-menu {
  padding: 40px 0 32px;
}
.footer-hercules-logo {
  width: 122px !important;
  margin-right: 24px;
}
.footer-menu-list li a {
  position: relative;
  padding: 0;
  opacity: 0.8;
}
.footer-menu-list li:not(:last-child) a {
  padding-right: 24px;
}
.footer-menu-list li:not(:last-child) a:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 3px;
  width: 2px;
  height: 16px;
  background: #ffffff;
}
.footer-menu-list li {
  padding: 8px 0 0;
}
.footer-content {
  width: calc(100% - 146px);
  border: none;
}
.common-header-footer h3 {
  font-size: 24px;
  line-height: 30px;
}
.contact-link li a {
  font-size: 22px;
  line-height: 32px;
}
.contact-link li a svg {
  margin-right: 8px;
  opacity: 0.8;
  transition: var(--primary-transition);
}
.contact-link li {
  display: flex;
  align-items: center;
}
.contact-link li a:hover svg {
  fill: var(--yellow);
  opacity: 1;
}
@media (max-width: 991px) {
  .contact-link {
    margin-left: 146px;
  }
}
@media (max-width: 767px) {
  .footer-menu-list {
    border-bottom: none !important;
  }
}
@media (max-width: 576px) {
  .footer-content {
    width: 100%;
  }
  .contact-link {
    margin-left: 0;
  }
  .footer-hercules-logo {
    margin: 0;
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .footer-menu h3 {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.sliderText a {
  color: var(--black);
}
.sliderText a:hover {
  color: var(--yellow);
}
.nav-bar > ul > li.dropdown > a:after {
  line-height: 15px;
}
/* @media only screen and (min-width: 1520px) and (max-width: 1540px) {
  .nav-bar > ul > li.dropdown > a:after {
      line-height: 13px;
  }
} */
.banner-images-slider a {
  cursor: default !important;
}
table:not(.dataTable) th, table:not(.dataTable) td {
  font-size: 15px !important;
  border: 1px solid #ddd;
  border-radius: 0;
  word-break: break-word;
}
form#form_ratequote table:not(.dataTable) th, table:not(.dataTable) td {
    font-size: 15px !important;
    border: 1px solid #ddd;
    border-radius: 0;
    word-break: keep-all;
}
.checkpuForPickupNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.checkpuForPickupNumber a {
  margin: 4px;
}
.checkpuForPickupNumber a .checkpuForPickupNumberlist {
  border: 2px solid var(--blue);
  background-color: white;
  color: var(--blue);
  padding: 12px 20px;
  transition: var(--primary-transition);
}
.checkpuForPickupNumber a .checkpuForPickupNumberlist.checkpuForPickupNumberlistactive,
.checkpuForPickupNumber a .checkpuForPickupNumberlist:hover {
  background-color: var(--blue);
  color: white;
  transition: var(--primary-transition);
}

.language-selector {
  position: relative;
  display: inline-block;
}
.selected-language {
  color: var(--white);
}
.language-option {
  display: block;
  padding: 10px;
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.language-menu {
  display: none;
  position: absolute;
  top: 32px;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  min-width: 160px;
  z-index: 1;
}
.language-menu li {
  list-style-type: none;
  padding: 0 12px;
}
.language-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--secondary-black);
}
.language-menu li:hover {
  background: var(--light-grey);
}
.language-menu li.active {
  background: var(--blue);
}
.language-menu li.active a, .selected-language a {
  color: var(--white);
}
.language-selector .select-language a {
  padding: 10px 10px 10px 22px !important;
  margin: 0;
  font-size: 13px !important;
}
.language-selector .select-language a i {
  top: 50%;
  margin-top: -8px;
  left: 0;
}
.selected-language a i {
  filter: none;
}
@media (max-width: 768px) {
  .language-selector .select-language a {
      font-size: 14px !important;
  }
}
@media (max-width: 575px) {
  .header-cta.mobile {
      padding-right: 0px !important;
  }
  .header-hercules-logo {
      width: 100%;
      max-width: 80px;
  }
}
.header-customs .language-menu li.active a, .header-customs .selected-language a {
  color: #1C2752;
}
a:not(.btns):hover, a.active, .header-customs .header-cta a:hover{
  color: var(--yellow) !important;
}
.header-cta a:hover svg {
  fill: var(--yellow) !important;
  transition: var(--primary-transition);
}
.page-btns.fv-button-container .button-fv:hover {
  color: var(--white) !important;
}
@media (max-width: 1199px) {
  .header-customs .language-menu li.active a, .header-customs .selected-language a {
      color: var(--white);
  }
  }
.language-selector .select-language a {
    position: relative;
}
.language-selector .selected-language a:after {
    font-family: var(--hercules-icons);
    content: "\e905";
    font-size: 5.5px;
    line-height: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    transition: transform 0.3s ease-in-out;
}
.language-selector .selected-language.active a:after {
    transform: rotateX(180deg);
}
.language-selector .select-language a {
    padding: 10px 16px 10px 22px !important;
}
.language-menu {
    z-index: 11;
}
@media (max-width: 1520px) {
    .language-selector {
        margin-right: 12px;
    }
}
a#btn_submit_bol {
    cursor: pointer !important;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    border: none;
}
.service-options li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.service-options li {
    flex: 0 0 33.33%;
}
.service-options li label {
    width: 100% !important;
    max-width: 100% !important;
}
form#form_bol > .formUl > ul li span {
    padding-right: 24px !important;
}
.formbol-bill-of-lading > table > tbody > tr > td {
    padding: 0;
}
.formbol-bill-of-lading table tbody tr td {
    border: none !important;
}
table.shipform table, table.dimens_shipform table {
    margin-bottom: 0px;
}
table.shipform tr.dynamic > td > table {
    border: none;
}
@media (max-width: 991px) {
    .form-container:has(#form_bol) {
        max-width: 100%;
    }
    .form_header_style {
        margin: 0px;
        float: none !important;
        height: auto;
        width: 100% !important;
        box-sizing: border-box;
    }
    .service-options li {
        flex: 0 0 50%;
    }
    #form_bol .formUl ul li:last-child {
        margin: 0px !important;
    }
    .formUl ul {
        margin: 0px !important;
    }
}
@media (max-width: 767px) {
    #form_bol .formUl ul li {
        flex-wrap: wrap;
    }
    #form_bol .formUl ul li > label, #form_bol .formUl ul li > span, .form_header_inner_style_button {
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
        line-height: 1.2 !important;
        height: auto !important;
    }
    #form_bol .formUl ul li span {
        display: inline-flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    #form_bol .formUl ul li span input[type="radio"] {
        flex-shrink: 0;
    }
    #form_bol .formUl ul li > span > input#bol_date {
        width: calc(100% - 54px) !important;
    }
    #form_bol .formUl ul li > span > input[type="text"] {
        width: 100%;
    }
    #form_bol .formbol-bill-of-lading table tbody tr {
        display: block;
        padding: 0px;
        margin-bottom: 12px;
        margin-top: 10px;
        background: var(--white);
        border: 0px !important;
    }
    #form_bol .formbol-bill-of-lading table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 6px 0;
        min-width: auto;
        border: 0;
        font-size: 14px;
    }
    #form_bol .formbol-bill-of-lading table th,  #form_bol .formbol-bill-of-lading table td {
        min-width: auto;
        padding: 12px 10px;
        font-size: 14px;
    }
    #form_bol .formbol-bill-of-lading table tbody tr td {
        border: none !important;
        padding: 0px;
    }
    #form_bol .formbol-bill-of-lading table tbody tr td > span, #form_bol .formbol-bill-of-lading table tbody tr td > span > input[type="text"], #form_bol .formbol-bill-of-lading table tbody tr td > span > textarea, #form_bol .formbol-bill-of-lading table tbody tr td > span > select, #form_bol .formbol-bill-of-lading table tbody tr td > select {
        width: 100% !important;
        min-width: inherit !important;
        max-width: 100% !important;
        box-sizing: border-box;
        min-height: 36px;
    }
    #form_bol .formbol-bill-of-lading table tbody tr td > label {
        height: auto !important;
        line-height: 1.2 !important;
        margin-bottom: 8px;
    }
    #form_bol .shipform, .shipform tbody, #form_bol .dimens_shipform, #form_bol .dimens_shipform tbody {
        display: block;
        width: 100%;
    }
    #form_bol .shipform input[type="text"], #form_bol .dimens_shipform input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
        min-height: 36px;
    }
    #form_bol .shipform input[type="checkbox"] {
        min-height: 18px;
    }
    #form_bol .shipform td, #form_bol .dimens_shipform td {
        border: none !important;
        padding: 0 !important;
        width: 100% !important;
        margin-bottom: 12px;
    }
    #form_bol .shipform td:not(.action-cell), #form_bol .dimens_shipform td:not(.action-cell) {
        display: block;
    }
    #form_bol .shipform td.action-cell img, #form_bol .dimens_shipform td img {
        margin: 0px !important;
        display: none !important;
        margin-right: 12px !important;
    }
    #form_bol .shipform td:not(.action-cell) label, #form_bol .dimens_shipform td:not(.action-cell) label {
        margin-bottom: 4px;
        display: inline-block;
    }
    #form_bol .shipform, #form_bol .shipform tr.dynamic > td > table, #form_bol .dimens_shipform, #form_bol .dimens_shipform tr.dimens_dynamic > td > table {
        width: 100% !important;
        border: none;
        margin: 0px !important;
    }
    #form_bol .shipform, #form_bol .dimens_shipform {
        padding: 12px;
        background: #ebf4ff !important;
    }
    #form_bol .shipform, #form_bol .shipform tbody > tr, #form_bol .dimens_shipform, #form_bol .dimens_shipform tbody > tr {
        width: 100% !important;
        display: block;
        float: none !important;
    }
    #form_bol .shipform > tbody > tr, #form_bol .dimens_shipform > tbody > tr {
        border: 1px solid #cfcfcf;
        padding: 12px;
        margin-bottom: 12px;
        box-sizing: border-box;
        border-radius: 8px;
    }
    #form_bol .shipform td .btns, #form_bol .dimens_shipform td .btns {
        min-width: 120px;
        min-height: auto;
    }
    #form_bol .phone_block {
        display: block;
        width: 100%;
    }
    #form_bol .phone_block span {
        margin-bottom: 12px;
        display: block;
    }
    #form_bol .formUl {
        margin-bottom: 16px;
    }
    #form_bol .BolButtolnFloatRight {
        width: 100%;
        float: none;
        margin: 0px !important;
        height: auto;
    }
    #form_bol .BolButtolnFloatRight > * {
        margin-bottom: 8px;
    }
    #form_bol .formUl .optionBorder {
        border: none;
    }
    #form_bol .dimens_shipform > tbody > tr.dimens_dynamic td:last-child:has(img) {
        display: inline-block;
    }
    #form_bol .dimens_shipform > tbody > tr.dimens_dynamic > td tr {
        display: flex;
        flex-wrap: wrap;
        column-gap: 12px;
    }
    #form_bol .dimens_shipform > tbody > tr.dimens_dynamic > td tr td {
        width: calc(25% - 9px) !important;
    }
}
@media (max-width: 575px) {
    #form_bol .formUl ul.optionBorder li label {
        max-width: 100%;
    }
    #form_bol .dimens_shipform > tbody > tr.dimens_dynamic > td tr td {
        width: calc(50% - 9px) !important;
    }
    .service-options li {
        flex: 0 0 100%;
    }
}
@media (min-width: 992px) {
    #form_bol .shipform td .btns, #form_bol .dimens_shipform td .btns {
        border: none;
        padding: 0px !important;
        min-width: inherit;
        min-height: auto;
    }
    #form_bol .shipform td .btns span, #form_bol .dimens_shipform td .btns span {
        display: none;
    }
}