.helpbutton {
  font-family: verdana;
  font-weight: bold;
  color: #FFFFFF !important;
  font-size: 12px;
  text-shadow: 1px 1px 0px #28A8E6;
  box-shadow: 1px 1px 1px #BEE2F9;
  padding: 10px 25px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #63B8EE;
  background: linear-gradient(top,  #28A8E6,  #2395CC);
  background: -ms-linear-gradient(top,  #28A8E6,  #2395CC);
  background: -webkit-gradient(linear, left top, left bottom, from(#28A8E6), to(#2395CC));
  background: -moz-linear-gradient(top,  #28A8E6,  #2395CC);
  cursor: pointer;
}
.helpbutton:hover {
  color: #FFFFFF !important;
  background: #1C77FF;
}
.message {
    color:#555;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;font-size:11px;
    padding:10px 10px 10px 36px;
	width:949px;
	margin:10px auto;
}
.message span {
    font-weight:bold;
    text-transform:uppercase;
}
.error {
    background:#ffecec url('/images/error.png') no-repeat 10px 50%;
    border:1px solid #f5aca6;
}
.success {
    background:#e9ffd9 url('/images/success.png') no-repeat 10px 50%;
    border:1px solid #a6ca8a;
}
.warning {
    background:#fff8c4 url('/images/warning.png') no-repeat 10px 50%;
    border:1px solid #f2c779;
}
.notice {
    background:#e3f7fc url('/images/notice.png') no-repeat 10px 50%;
    border:1px solid #8ed9f6;
}
div .form-error {
    color: red;
}

:root {
    --st-new-blue: #53A5E0;
    --st-new-blue-hover: #4797d2;
    --overlay-background: rgba(0, 0, 0, 0.5);
    --carbon-offset-green: #4cac54;
    --separator-border: #e0e0e0;
}

select.disabled,
input.disabled {
    background-color: #e6e6e6 !important;
    color: #aaaaaa !important;
}

.copy_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px; font-size: 20px;
    cursor: pointer;
}

.copy_tooltip {
    font-size: 16px;
    position: absolute;
    font-family: 'futura-pt';
    cursor: default;
    background-color: #ffffff;
    margin-top: 90px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    z-index: 1;
    display: none;
}

.copy_tooltip:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: -20px auto;
    width: 0;
    height: 0;
    border-bottom: 14px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.shipment_tag {
    width: fit-content;
    min-width: 150px;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #eeeeee;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'futura-pt';
}

.shipment_tag_small {
    width: fit-content;
    min-width: 30px;
    text-align: center;
    padding: 0 5px;
    border-radius: 15px;
    border: 1px solid #eeeeee;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'futura-pt';
    font-size: 10px;
}

a.blue_link {
    text-decoration: underline;
    color: #28A8E6
}
a.blue_link:hover {
    text-decoration: none;
    color: #28A8E6
}

.alert_banner {
    background-color: #ffc9c9;
    border-bottom: 1px solid #cc013922;
    margin: 0 auto;
    width: 100%;
}

.alert_banner .alert_banner_cont {
    background: none;
    padding: 1rem 0;
}

.alert_banner .alert_banner_cont p,
.alert_banner .alert_banner_cont p a {
    font-family: 'futura-pt';
    color: #333;
    text-transform: none;
    padding: 0;
    text-align: center;
}

.alert_banner .alert_banner_cont p b,
.alert_banner .alert_banner_cont p a {
    font-weight: bold;
}

.alert_banner .alert_banner_cont p a {
    text-decoration: underline;
}

.st_checkbox {
    color: #231f20;
    outline: none;
    position: absolute;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    padding: 0;
    border-radius: 0;
    margin: 0 0 0 -35px;
    top: 2px;
    cursor: pointer;
    border: none;
    background: url(/img/checkbox.png);
}

.st_checkbox:checked {
    background: url(/img/checked_icon.png);
}

label:has(.st_checkbox) {
    font-family: 'futura-pt';
    font-size: 20px;
    line-height: 22px;
    color: #333333;
    display: block;
    position: relative;
    margin-left: 55px;
    padding: 0 0 15.8px 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tooltip_text {
    visibility: hidden;
    width: 250px;
    background-color: #28a8e6;
    color: #fff;
    font-size: 14px;
    font-weight: initial;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: auto;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.1);
}

.tooltip_text::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
}

.tooltip_text.arrow_right::after {
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-color: transparent transparent transparent #28a8e6;
}

.tooltip_text.arrow_left::after {
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-color: transparent #28a8e6 transparent transparent ;
}

.tooltip_text.arrow_top::after {
    top: 0%;
    left: 50%;
    margin-top: -10px;
    border-color: transparent transparent #28a8e6 transparent;
}

.tooltip_text.arrow_bottom::after {
    top: 100%;
    left: 50%;
    margin-top: 0px;
    border-color: #28a8e6 transparent transparent transparent;
}

.tooltip_parent {
    position: relative;
}

.tooltip_parent:hover .tooltip_text {
    visibility: visible;
    opacity: 1;
}
