
:root {
    --accent-strong-blue: #163C35;
    --accent-strong-blue-10: #dbf4fc;
    --accent-strong-blue-30: #E1EEE6;
    --accent-strong-blue-60: #417f64;
    --accent-strong-blue-80: #0a7293;
    --button-accent-active: #103337;
    --button-secondary-active: #E2E3E4;
    --background-extra-white: #F8F8FA;
    --accent-orange: #FF843F;
    --background-white: #FFF;
    --text-dark-100: #04021D;
    --text-dark-80: #36354A;
    --text-dark-60: #686777;
    --text-dark-40: #8b8b8b;
    --text-dark-20: #F1F1F4;
    --text-dark-10: #949499;
    --status-red: #F22D2D;
}
.form-control::placeholder {
    color: #bdbdbd;
    opacity: 1; /* Firefox */
}

body {
    font-family: Inter;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body.login-background {
    animation: gradient 30s ease infinite;
    background-image: url("/images/triangle-background.svg");
    background-size: 120%;
}

.menu-title img {
    /*width: 30vw;*/
    max-height: 40px;
}

.login-box {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 20px;
    border: 0;
    max-width: 650px;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, .28);
    background: linear-gradient(45deg, #3a77a7d1 0, #004478eb 100%);
    box-shadow: 0px 0px 100px #000000a6;
    padding: 40px;
}
.login-box-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.35rem;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.content-body {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
h1 {
    color: var(--button-accent-active);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 105% */
    letter-spacing: -0.8px;
}
a {
    color: var(--accent-strong-blue-80);
    text-decoration: none;
}

a:hover {
    color: var(--accent-strong-blue-60);
    text-decoration: none;
}

.subtitle {
    color: var(--accent-strong-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    text-transform: uppercase;
}

ul.markers {
    list-style: none;
    display: flex;
    padding: 0px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    margin-top: 1rem;
}
ul.markers li {
    color: var(--button-accent-active);
    font-size: 16px;
    flex: 1 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}
ul.markers li .marker {
    display: flex;
    width: 30px;
    height: 30px;
    padding: 0 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    background: var(--accent-orange);
    color: var(--background-white);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
}

.screen-bottom {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
}

.screen-bottom label, label.screen-bottom {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark-60);
}
.screen-bottom label a {
    color: var(--accent-strong-blue-80);
    font-size: 14px;
    font-weight: 600;
}

.hr-separator {
    border-top: 1px solid #CCC;
    text-align: center;
    color: #999;
}
.hr-separator span {
    display: block;
    transform: translate(0, -57%);
    background: white;
    width: fit-content;
    margin: 0 auto;
    padding: 0 10px;
    font-weight: 400;
}

input.code-input {
    text-align: center;
    letter-spacing: 15px;
}

input.code-input::placeholder {
    letter-spacing: initial;
}
input.code-input::-webkit-outer-spin-button,
input.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number].code-input {
    -moz-appearance: textfield;
}

.language-selection {
    text-align: center;
}
.language-selection a {
    display: inline-block;
}
.language-selection a.active {
    background: #698c9780;
    border-radius: 10px;
}
.language-selection .icon.flag{
    padding: 3px 10px;
    display: inline-block;
}


.language-selection .icon.flag img{
   height: 70px;
}

.screen-bottom.padded {
    padding: 0 30px 30px 30px;
}
.btn > i {
    line-height: 0;
}
.btn i {
    font-size: 24px;
    margin-right: 10px;
    vertical-align: bottom;
}
.btn {
    font-family: Inter;
    border-radius: 8px;
    padding: 0.75rem 0.75rem;
    font-size: 16px;
    letter-spacing: -0.16px;
    border-color: transparent;
    width: 100%;
}
.btn:hover {
    border-color: transparent !important;
}
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, .5) !important;
}
.btn.btn-success.dark {
    background: var(--button-accent-active);
}
.btn.btn-default {
    background: var(--accent-strong-blue-10);
}

.btn-right {
    width: auto;
    float: right;
}

.btn-icon i {
    margin-right: 0px;
}


.welcome .img-fluid {
    margin-bottom: 30px;
    max-height: 420px;
}
.welcome h1 {
    margin-bottom: 30px;
}

.lang-selector .dropdown-menu {
    min-width: initial;
    margin-right: 5px;
    background: #e0ff88eb !important;
    padding: 0;
}
.lang-selector .dropdown-item:focus, .dropdown-item:hover {
    background-color: #0000001a;
}
.lang-selector .dropdown-toggle {
    color: var(--text-dark-100);
    text-decoration: none;
    padding: 0.75rem;
}
.lang-selector .dropdown-item {
    padding: 0.5rem 1rem;
}

.lang-selector .dropdown-toggle::after {
    content: url("/design/icons/Down.svg");
    border: none;
    vertical-align: baseline;
    margin: 0;
    transition: transform 0.2s;
}
.lang-selector .dropdown-toggle.show::after {
    transform: rotate(-180deg);
}

.password-container::after {
    content: url(/design/icons/Show.svg);
    position: absolute;
    right: 10px;
    height: 25px;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
}
.password-container.show::after {
    content: url(/design/icons/Hide.svg);
}
input.password-input+.toggle {
    width: 25px;
    height: 25px;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 2;
}
.password-container input.is-invalid {
    background-image: none !important;
}

.fs-10 {
    font-size: 10px !important;
}

#g_id_onload, .g_id_signin {
    display: none !important;
}
.google-login-btn {
    background: var(--button-secondary-active);
    color: var(--text-dark-80);
    font-weight: 600;
    border: 1px solid var(--button-secondary-active);
}
.google-login-btn.white {
    background: none;
    border: none;
    padding: 15px 5px;
    border-bottom: 1px solid var(--button-secondary-active);
}
.google-login-btn:hover {
    border: 1px solid var(--button-secondary-active) !important;
    background: var(--button-secondary-active);
    color: var(--text-dark-60);
}
.google-login-btn.white:hover {
    background: none !important;
    border: none !important;
    border-bottom: 1px solid var(--button-secondary-active) !important;
}
.google-login-btn img {
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 30px;
    box-shadow: 0 0 100px 0px #00000099;
    border-radius: 200px;
    transform: translate(-50%, -50%);
}

.loader-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000040;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.loader-bg .centered {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}






.navbar {
    background: #e0ff88eb !important;
    padding-top: 12px;
}
.navbar-light .navbar-toggler {
    border: none;
}

.navbar-brand {
    padding-top: 15px;
    padding-bottom: 0.3125rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    margin: 0 auto;
    padding-left: 39px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    height: 100%;
    padding: 15px 10px;
}

.collapsing {
    left: 100%;
    transform: translate(-100%, 0);
    transition: none;
    /*transition: transform .15s ease;*/
}
.navbar-opened-toggler {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.navbar-opened-toggler .navbar-toggler {
    display: flex;
    width: 36px;
}
.navbar-opened-toggler .menu-title {
    display: flex;
    flex: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--text-dark-100);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.16px;
}
.navbar-nav {
    gap: 0;
}
ul.navbar-nav {
    padding: 0;
    margin: 0;
}
ul.navbar-nav.mr-auto {
    margin-top: 24px;
}

ul.navbar-nav.wide .nav-item.active {
    margin: 0;
}

ul.navbar-nav.wide .nav-link span {

}

ul.navbar-nav.wide .block .title {
    font-size: 14px;
    color: var(--text-dark-60);
    text-transform: uppercase;
}
ul.navbar-nav.wide .block .detail {
    color: var(--text-dark-100);
    font-size: 20px;
}

ul.navbar-nav.wide .block .detail.empty {
    color: var(--text-dark-40);
    font-size: 16px;
}

ul.navbar-nav.wide .nav-link:hover {

}

.modal.fade.show {
    background: #0000007a;
    backdrop-filter: blur(5px);
}

.modal-dialog {
    top: 50%;
    transform: translate(0, -60%) !important;
}

.modal-header {
    border-bottom: none;
    display: block;
}
.modal-body {
    color: var(--text-dark-60);
    font-size: 16px !important;
}
.modal-content {
    border-radius: 20px;
    border: none;

}
.modal-footer {
    border-top: none;
    justify-content: space-evenly;
}

.modal-footer.double .btn {
    width: 47%;
}

.discount-button {
    cursor: pointer;
}


.bubble {
    --r: 1em;
    --t: 1em;
    width: fit-content;
    padding: 0.8em;
    padding-top: 0.4rem;
    border-inline: var(--t) solid #0000;
    border-radius: calc(var(--r) + var(--t)) / var(--r);
    mask: radial-gradient(100% 100% at var(--_p) 0, #0000 99%, #000 102%) var(--_p) 100% / var(--t) var(--t) no-repeat, linear-gradient(#000 0 0) padding-box;
    margin-bottom: 0.5em;
    background: #edebeb;
    color: #000000;
    font-weight: 400;
    font-size: 1rem;
}
.bubble .author {
    font-size: 0.6rem;
    color: #00000094;
}
.bubble.right .author {
    color: #ffffffab;
}
.bubble.unreaded {
    font-weight: 700;
    background: #00000026;
}
.bubble .emoji {
    font-size: 1.7em;
    vertical-align: middle;
}
.left {
    --_p: 0;
    border-bottom-left-radius: 0 0;
    place-self: start;
}
.right {
    --_p: 100%;
    border-bottom-right-radius: 0 0;
    place-self: end;
    float: right;
    background: #14addb;
    color: #ffffff;
}

.bubble .img-thumbnail {
    max-width: 200px;
}

#lightbox {
    /* Default to hidden */
    display: none;

    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* A bit of padding around image */
    padding: 0.5em;

    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.5s;
}


#lightbox span {
    /* Full width and height */
    display: block;
    width: 100%;
    height: 100%;

    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.chat-title {
    box-shadow: 0px 15px 20px 10px #ffffff;
    z-index: 10;
}

.chat-limited {
    max-height: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.check-container .item.underline {
    border-radius: 0px;
    border: none;
    border-top: 1px solid var(--button-secondary-active);
    background: var(--background-white, #FFF);
    box-shadow: none;
}
.check-container .item.underline.first {
    border-top: none;
}
.check-container .detail {
    min-width: 110px;
}

.sub-item.clickable .detail.register {
    color: #055160;;
}

.sub-item .alert .btn-close {
    position: absolute;
    right: 1.5rem;
}

h6 {
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}
h6.page-heading {
    margin-bottom: 0;
    font-weight: 300;
    color: #9f9f9f;
    font-size: 20px;
    margin-top: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--button-secondary-active);
}
.search-icon {
    /*position: sticky;*/
    padding-right: 10px;
    padding-left: 10px;
    top: 20px;
    cursor: pointer;
    /*z-index: 11;*/
    margin: 0 calc(100% - 40px);
    margin-top: -25px;
    width: fit-content;
    margin-bottom: 15px;
}

.form-control.bg-search-icon:placeholder-shown,
.form-control.bg-search-icon:placeholder-shown:not(:focus),
.form-control.bg-search-icon:not(:placeholder-shown):not(:focus)
{
    background-image: url("/design/icons/Search.svg");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: center;
    background-color: white;
}
.form-control.bg-search-icon:not(:placeholder-shown):hover
{
    /*background-image: none;*/
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    border-radius: 50em;
    background: url("/design/icons/Close.svg") no-repeat 50% 50%;
    background-size: contain;
    opacity: 0;
    pointer-events: none;
}

input[type="search"]:focus::-webkit-search-cancel-button {
    opacity: .5;
    pointer-events: all;
}
.nav-item.active {
    background: none;
    border-top: 1px solid #eceded;
    transition: all 0.2s;
    font-size: 26px;
    font-weight: 400;
}

.navbar-toggler.sub {
    width: 42px;
    margin-right: 0px;
    padding: 0.5rem;
    border: 1px solid #00000000;
}
.navbar-toggler.sub.active {
    background: #77b9cd4d;
    border: 1px solid #00000012;
}

.nav-item.active:has(.nav-link.active) {
    background: var(--accent-strong-blue-10);
}
.nav-item:first-child {
    border-top: none;
}
.nav-link {
    padding: 0;
    color: var(--text-dark-100) !important;
    padding: 20px 0;
    width: 100%;
    position: relative;
}
.nav-link::after {
    content: url("/design/icons/ArrowRight2.svg");
    vertical-align: middle;
    position: absolute;
    right: 5px;
}
.nav-link span {
    vertical-align: middle;
    padding: 5px;
    padding-right: 10px;
}
.nav-link span.icon {
    display: inline-block;
    font-size: 36px;
    color: #14addb;
    margin-left: 10px;
}
.nav-link span.icon.flag, .check-container .item span.icon.flag, .table-responsive span.icon.flag {
    display: inline-flex;
    width: auto;
    padding: 0 5px 0 0;
}
.nav-link span.icon.flag img, .check-container .item span.icon.flag img, .table-responsive span.icon.flag img {
    width: 30px;
    box-shadow: 0px 0px 7px #00000070;
}

.dropdown-menu.language span.icon.flag img {
    width: 20px;
    box-shadow: 0px 0px 4px #00000070;
    margin-right: 5px;
    vertical-align: baseline;
}

.nav-link.avatar-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav-link.avatar-list span.avatar {
    padding: 0;
    padding-right: 0;
    display: inline-flex;
    margin-left: 5px;
    margin-right: 5px;
}

.app-icons {
    text-align: center;
}

.app-icon {
    display: inline-block;
    text-align: center;
    padding: 8px;
    padding-bottom: 0px;
}
.app-icon .icon {
    display: inline-block;
    padding: 5px;
    border-radius: 20px;
    border: 1px solid #e7e7e7;
}
.app-icon .icon.waze {
    background: #35cbfe;
}
.app-icon .icon.gmaps {
    background: #ffffff;
}
.app-icon .icon.regio {
    background: #FFCA00;
}
.app-icon .icon.copy {
    font-size: 50px;
    padding: 10px;
}
.app-icon .icon img {
    max-width: 60px;
    max-height: 60px;
}
.app-icon .text {
    display: block;
    font-size: 10px;
}


.block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.block .d-row {
    flex-direction: row;
    padding-top: 5px;
}
.block .title {
    padding: 2px;
}
.block .detail {
    color: var(--text-dark-60);
    font-weight: 300;
    padding: 2px;
    font-size: 18px;
}
.block.multi .detail {
    display: flex;
    color: var(--text-dark-100);
}
.block.multi .detail.large {
    font-size: 24px;
    font-weight: 400;
}
.block.multi .detail .logo {
    color: #6d9db9;
    padding: 5px;
    width: 27px;
}
.block.multi .detail.large .logo{
    font-size: 28px;
    padding: 0px;
}
.chevron {
    font-size: 50px;
    color: #16975b;
    align-content: center;
    padding: 0px !important;
}
.sub-item.warning {
    background: #ff00000d;
}
.sub-item.warning .detail {
    color: #990000;
}
.sub-item.clickable .detail {
    color: #14addb;
}

.sub-item .detail.file {
    color: #14addb;
    display: inline-block;
    padding: 7px 5px;
    margin-right: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90vw;
    border: 1px solid #ffffff00;
    transition: transform .3s;
}
.sub-item .detail.file:active {
    background: #ecf4f7;
    border-radius: 10px;
    border: 1px solid #dbe4e7;
    transform: scale(1.05);
}
.sub-item .detail.file .file-icon {
    font-size: 30px;
    vertical-align: middle;
    color: #06303d;
}

.sub-item .right-icon {
    font-size: 20px;
    color: #b7b7b7;
    align-self: center;
}

.text-bg-success {
    background: #deebde;
    color: #137112;
}
.block .title span label, .block .detail span label {
    font-size: 12px;
}
.block .logo {
    width: 35px;
    float: left;
}
.block .logo img {
    max-width: 25px;
    max-height: 25px;
}
.sub-item .logo i {
    font-size: 40px;
    color: #6d9db9;
}
.block .distance {
    color: var(--accent-strong-blue-60);
}

.item .logo, .sub-item .logo {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 3px;
}
.item .logo img, .sub-item .logo img {
    max-width: 40px;
    max-height: 40px;
}

.form-check-label {
    font-weight: 500;
}
.form-switch .form-check-input {
    width: 2.5em;
    height: 1.5em;
    margin-left: -2.5em;
    margin-top: -0.1em;
    margin-right: 0.5em;
}
.mx-auto {
    width: fit-content;
}
.scroll {
    /*max-height: calc(100svh - 155px);
    overflow-y: scroll;*/
}
.sticky {
    position: sticky;
    background: white;
    z-index: 10;
}
.sticky.top {
    top: 0;
}
.sticky.search {
    top: 55.5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.sticky.bottom {
    bottom: 10px;
    box-shadow: 0 10px 0 10px white;
}

.form-check-input:checked {
    background-color: var(--accent-strong-blue);
    border-color: var(--accent-strong-blue);
}
.form-check-input:focus {
    border-color: var(--accent-strong-blue);
    box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, .5) !important;
}
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked:focus {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.nav-link:hover {
    color: rgba(0,0,0,.7) !important;
    background: #00a8dd0f;
}
.menu-container {

}

/*body:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: url(/design/images/shipit24-icon.svg);
    background-repeat: no-repeat;
    background-position: 0% -30%;

    background-attachment: fixed;
}*/

.alert a {
    text-decoration: underline;
}

.menu-container.flex {
    display: flex;
    flex-grow: 1;
    flex-flow: column;
}
.menu-container.flex > div{
    display: flex;
    flex-grow: 1;
    flex-flow: column;
}
.check-container {
    gap: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.check-container .item {
    padding: 16px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    gap: 16px;
    position: relative;
    align-self: stretch;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--button-secondary-active);
    background: var(--background-white, #FFF);
    box-shadow: 0px 0px 4px 0px rgba(197, 197, 204, 0.32);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.check-container .item.flex-col {
    flex-direction: column;
}
.check-container .item:hover {
    color: rgba(0,0,0,.7) !important;
    background: #a3d7b626;
}
.check-container .item.flex-col.selected:hover {
    background: none;
}
.check-container .item.active, .check-container .item.highlight, .check-container .item.selected {
    border: 1px solid var(--accent-strong-blue-60, #649D82);
    box-shadow: 0px 0px 5px 2px rgba(77, 150, 117, 0.40)
}

.check-container .item .right-border {
    border-right: 1px solid var(--button-secondary-active);
}
.check-container .item .right-border img {
    max-width: 200px;
}

.check-container .item span.right {
    float: right;
    padding-top: 2px;
    margin-left: auto;
    padding-right: 5px;
}
.check-container .item span.right.green {
    color: green;
}
.check-container .item span.right.red {
    color: var(--status-red);
}

.form-label + .check-container {
    margin-top: 8px;
}

.form-control:focus {
    border: 1px solid var(--accent-strong-blue-60, #649D82);
    box-shadow: 0px 0px 0px 4px rgba(77, 150, 117, 0.40)
}

.check-container .item.active::after {
    content: url("/design/icons/Check_Green.svg");
    vertical-align: middle;
    position: absolute;
    right: 10px;
}

.check-container .item.highlight::after {
    content: url("/design/icons/ArrowRight2.svg");
    vertical-align: middle;
    position: absolute;
    right: 5px;
}

.check-container .sub-items {
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
    width: 100%;
}

.check-container .sub-items .sub-item {
    padding: 15px;
    flex-direction: row;
    align-items: start;
    gap: 8px;
    border-bottom: 1px solid #ededed;
    cursor: pointer;
}

.check-container .sub-items .sub-item.checked {
    border: 1px solid var(--accent-strong-blue-60, #649D82);
    background: #a3d7b626;
}

.check-container .sub-items .sub-item .check {
    width: 20px;
}

.check-container .sub-items .sub-item .size {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    width: 30%;
}
.check-container .sub-items .sub-item .size.icon {
    background: var(--accent-strong-blue-30);
    width: 45px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c9e7c9;
    white-space: nowrap;
}
.check-container .sub-items .sub-item .measures {
    display: flex;
    flex-direction: column;
}

.check-container .sub-items .sub-item .measures .weight {
    color: var(--text-dark-10);
    font-weight: 500;
}

.check-container .sub-items .sub-item .price {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.16px;
    width: 70px;
    text-align: end;
}
.check-container .sub-items .sub-item .price.discount
{
    font-size: 13px;
    color: #c55b5b;
    text-decoration: line-through;
    display: block;
}

.sub-title {
    font-size: 16px;
    font-weight: 700;
    position: sticky;
    top: 85px;
    padding-bottom: 10px;
    margin-bottom: -10px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 9;
}

.frosty {
    background: #ffffffc7;
    backdrop-filter: blur(3px);
}

.sub-title.with-search {
    top: 129.3px;
}

.door-code {
    color: var(--text-dark-100);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */
    letter-spacing: -0.6px;
}

.package-code {
    color: var(--text-dark-100);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 118.75% */
    letter-spacing: -0.6px;
}
.barcode img{
    width: 100%;
    height: 100px;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #103337;
    border-color: #103337;
}
.page-item .page-link:focus {
    box-shadow: none;
}
.page-item .page-link {
    color: #103337;
}

.shipment-state {
    border-radius: 20px;
    background: #bdbdbd;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}
.shipment-state.allocated {
    background: #f1a84b;
}
.shipment-state.shipping {
    background: #4b5ef1;
}
.shipment-state.collect {
    background: #d7c63e;
}
.shipment-state.delivered {
    background: #4c9f1a;
}
.shipment-state.cancelled {
    background: #e51d40;
}

.bg-allocated {
    background: #ffe9cd !important;
}
.bg-shipping {
    background: #dce0ff !important;
}
.bg-collect {
    background: #f5efb8 !important;
}
.bg-delivered {
    background: #dcefd1 !important;
}
.bg-cancelled {
    background: #ebccd2 !important;
}

.bg-dark-opacity-10 {
    background-color: #21252908!important;
}
.bg-dark-opacity-10 label {
    font-size: 12px;
    color: var(--text-dark-40);
}

.sub-item label, .package-code label, .door-code label {
    color: var(--text-dark-60);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
}

.sub-navbar {
    padding: 20px 10px 20px 10px;
    background: #529eb51c;
    border-bottom: 1px solid #d1d1d1;
}

tr.archived {
    background: #e1dfdf;
    opacity: 0.5;
}

button svg {
    margin-bottom: 3px;
}

.bp-gray {
    border-bottom: 1px solid #ededed;
}

.image-div {
    width: 150px;
    height: 150px;
}

.image-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0px, 0px, 0.1px);
    border-radius: 5px;
}

.modal-content .image-div {
    height: auto;
    width: 100%;
    background: none;
    position: relative;
}

.modal-content .image-div img {
    height: auto;
}

.modal-content .image-div .turn-buttons {
    display: table;
    width: 100%;
    padding: 5px;
    background: #0000001c;
    border-radius: 5px;
    margin-bottom: 5px;
}

.modal-content .image-div .turn-buttons a {
    color: #484747ad;
    cursor: pointer;
}

.modal-content .image-div .turn-buttons a.left {
    float: left;
}

.modal-content .image-div .turn-buttons a.right {
    float: right;
}

.item-data .badge {
}

.description {
    font-size: small;
    color: #808080;
    word-break: break-word;
    text-align: justify;
}

.buttons {
    width: 140px;
    text-align: right;
}

.buttons button {

}

.modal-open .modal {
    display: block !important;
}

.modal .btn-close {
    position: absolute;
    z-index: 3000;
    right: 15px;
    top: 15px;
}

.select-none {
    opacity: 0.5;
    display: inline-block;
}

.blurred {
    -webkit-filter: blur(5px) grayscale(0.0);
}

.toast-spacer {
    z-index: 5000;
}

.toast {
    position: relative;
}

.toast-body {
    padding-right: 1.75rem;
}

.toast .btn-close {
    float: right;
    position: absolute;
    right: 0px;
    top: 12px;
}

.toast-spacer:has(.toast.hide) {
    display: none;
}

.navbar-toggler {
    margin-right: 5px;
}
.navbar-toggler i {
    font-size: 30px;
}

input[type="search"]::-webkit-search-cancel-button:hover {
    cursor: pointer;
}

.form-control.phone-number-input {
    padding-left: 56px !important;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-size: 12px;
    font-weight: 600;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #9292eb;
    color: white;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #e1e1e1;
    width: 45px;
    height: 45px;
    min-width: 45px;
}

.avatar.large {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    font-size: 2rem;
}

.avatar.white {
    background: white;
}

td:has(.avatar) {
    vertical-align: middle;
}

.table-responsive {
    overflow-x: initial !important;
    font-weight: 400;
}

.table-responsive .table {
    border-collapse: separate;
    border-spacing: 0;
}


.table-responsive thead.sticky {
    position: sticky;
    top: 68px;
    z-index: 1000;
}

.table-responsive .table tbody tr {
    transition: all 0.15s;
}
.table-responsive .table tbody tr:hover {
    background-color: #00000008;
}

.table-responsive .table tr td {
    vertical-align: middle;
    border-top-width: 1px !important;
    border-bottom-width: 0 !important;
}
.table-responsive .table tr td.jump:empty {
    padding: 0 !important;
}

.table-responsive .table {
    border-bottom: 1px solid #dee2e6 !important;
}

.form-label {
    display: block;
    color: var(--text-dark-80);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 150% */
    margin-bottom: 0.2rem;
}
.form-control {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--button-secondary-active);
    background: var(--background-extra-white);
}
.iti { width: 100%; }
.iti__selected-flag {
    padding: 0 10px 0 14px;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-left: 56px;
}

.clearable-select {
    position: relative;
}
.clearable-select i {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}

.social-media {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .image-div {
        width: 60px;
        height: 60px;
    }

    .buttons {
        width: 50px;
    }
    th.jump {
        width: fit-content !important;
        float: left;
    }
    .table-responsive .table tr td.jump {
        display: block;
        width: 100% !important;
        line-break: anywhere;
        border-top-width: 0 !important;
        border-bottom-width: 0 !important;
        padding: 0.2rem;
    }
    .table-responsive .table tr td.jump.first {
        border-top-width: 1px !important;
    }
    .table-responsive .table tr td.jump.last {
        border-bottom-width: 0 !important;
    }
    .table-responsive .table tr td.jump.bolder {
        font-weight: 600;
    }
    thead tr {
        box-shadow: 0 1px 0 black;
    }
    thead tr th {
        border: none;
    }

    .table td:has(nav) {
        text-align: center;
    }


}

@media (max-width: 767px) {
    table.table {
        font-size: 0.8rem;
    }
    .table>:not(caption)>*>* {
        padding: 0.3rem 0.3rem;
    }

    .card-body {
        padding: 0.3rem;
    }
    .toast-spacer.position-fixed.top-0.end-0 {
        top: 68px !important;
        transform: translateX(-50%)!important;
        left: 50%!important;
        width: 100%;
    }
    .toast-spacer.position-fixed.top-0.end-0 .toast {
        margin: 0 auto;
    }


}

@media (min-width: 992px) {
    /*.navbar-expand-lg .navbar-collapse {
        display: none !important;
    }*/
    .navbar-expand-lg .navbar-toggler {
        display: initial !important;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }
    .collapse:not(.show) {
        display: none !important;
    }
    .content-body {
        width: 960px;
        margin: 0 auto;
    }
}


@media (max-width: 575px) {
    .iti__country-list {
        width: calc(100vw - 20px);
        white-space: normal;
    }
    .package-code {
        font-size: 14px;
    }
    .check-container .item .right-border img {
        max-width: 120px;
    }
    .discount-box {
        width: 100% !important;
    }
    #discount-field {
        width: calc(100% - 110px) !important;
    }

}

@media (max-width: 320px) {
    .container {
        zoom: 0.8;
    }
}
@media (max-height: 700px) {
    .container {
        zoom: 0.8;
    }
}
