
:root {
    --accent-strong-blue: #163C35;
    --accent-strong-blue-10: #E8F8F0;
    --accent-strong-blue-30: #E1EEE6;
    --accent-strong-blue-60: #417f64;
    --accent-strong-blue-80: #3E6856;
    --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 */
}
.form-control:disabled {
    color: #9f9f9f;
}

a.cursor {
    cursor: pointer;
}

body{
    font-family: Inter;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.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;
}

span.gray {
    color: #0000006b;
}

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% */
}
.container {
    padding: 10px;
}

.screen-bottom {
    margin-top: auto;
    width: 100%;
    padding-top: 10px;
}

.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;
}

.screen-bottom.padded {
    padding: 0 30px 30px 30px;
}

div:not(.btn-group-sm) > .btn {
    border-radius: 8px;
    padding: 0.75rem 0.75rem;
    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 {
    background: var(--button-accent-active);
}
.btn.btn-default {
    background: var(--accent-strong-blue-10);
}
.btn.btn-default:hover {
    background: var(--accent-strong-blue-30);
}
.btn-check:checked+.btn.btn-default {
    background-color: var(--accent-strong-blue-30);
    border-color: var(--accent-strong-blue-60) !important;
}
.btn-group>.btn-group:not(:first-child), .btn-group>:not(.btn-check:first-child)+.btn {
    margin-left: auto;
    border-left-color: #0000001a;
}


.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;
    margin: 0 auto;
}
#g_id_onload.visible, .g_id_signin.visible {
    display: table !important;
}

.google-login-btn {
    background: var(--button-secondary-active);
    color: var(--text-dark-80);
    font-weight: 600;
    border: 1px solid var(--button-secondary-active);
    padding: 0.75rem 0.75rem;
}
.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;
}

.page-document img {
    max-width: 100%;
}

.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%);
    z-index: 100;
    background: #ffffff87;
}

.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 {

}

.import-container {
    background: #f5f5f5;
}

.import-data label {
    font-size: 10px;
    font-weight: 400;
}

.progress-container {
    position: relative;
}
.progress-count {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 40px;
    color: white;
    text-shadow: 0 0 10px black;
}

.nav-link .right {
    float: right;
    margin-right: 30px;
    color: white;
    background: #afb7b3;
    border-radius: 100px;
    font-weight: 300;
    padding: 5px 10px;
    margin-top: -3px;
    white-space: nowrap;
}
.nav-link .right.green {
    background: #3E6856;
}
.nav-link .right.red {
    background: #dc3545;
}


.form-control.sum-input {
    text-align: center;
}

.input-group-text {
    padding: 14px 16px;
    margin-left: -1px;
    background: #f1f1f3;
    color: #8f8c8c;
    font-weight: 400;
    border-radius: 8px;
}

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);
    z-index: 1190;
}

.modal-dialog:not(.modal-dialog-scrollable) {
    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: 46%;
}

.discount-box {
    display: flex;
    gap: 7px;
}
.discount-button {
    cursor: pointer;
}

.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;
}

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% - 45px);
    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: 98%;
    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: 16px;
}

.navbar-toggler.sub {
    width: 42px;
    margin-right: 0px;
    padding-right: 0px;
}

.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: 1.3rem .5rem !important;
    width: 100%;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.nav-link::after {
    content: url("/design/icons/ArrowRight2.svg");
    vertical-align: middle;
    position: absolute;
    right: 5px;
    margin-top: 5px;
}
.nav-link.removable::after{
    right: 50px;
}
.nav-link span {
    vertical-align: middle;
    padding: 5px;
    padding-right: 10px;
}
.nav-link span.icon {
    display: inline-block;
    width: 40px;
 }
.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;
}

span.icon.flag.large {
    display: flex;
    align-items: center;
}

span.icon.flag.large img {
    width: 45px;
}

span.icon.flag img {
    width: 30px;
    box-shadow: 0px 0px 7px #00000070;
}
span.icon.flag.small {
    padding: 0px !important;
}
span.icon.flag.small img {
    width: 20px;
    box-shadow: 0px 0px 3px #00000070;
}

.input-group-text.dial-code {
    padding-right: 10px;
    cursor: pointer;
}
.dial-code {
    color: black;
}

.float-right-top {
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
}


.modal-dialog.countries table tr {
    transition: all linear 0.2s;
    color: black;
}
.modal-dialog.countries table tr:hover {
    background-color: #00000012;
}
.modal-dialog.countries table tr .dial-code {
    color: #9d9d9d;
}

.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 .5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nav-link.avatar-list .avatar-link {
    display: flex;
    align-items: center;
    align-items: center;
}

.nav-link.avatar-list span.avatar {
    padding: 0;
    padding-right: 0;
    display: inline-flex;
    margin-left: 5px;
    margin-right: 5px;
}
.block {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.block .title {
    padding: 2px;
}
.block .detail {
    color: var(--text-dark-60);
    font-weight: 400;
    padding: 2px;
}
.block .title span label, .block .detail span label {
    font-size: 12px;
}
.block .logo {
    width: 35px;
}
.block .logo img {
    max-width: 25px;
    max-height: 25px;
}
.block .distance {
    color: var(--accent-strong-blue-60);
    white-space: nowrap;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x)* -.4);
    margin-left: calc(var(--bs-gutter-x)* -.4);
}

.delete-icon {
    background: url("/design/icons/Close.svg") no-repeat 50% 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    opacity: 0.3;
    transition: all 0.3s;
    margin-top: 5px;
}
.delete-icon:hover {
    opacity: 0.5;
    filter: invert(22%) sepia(23%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%);
}

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

.btn-check:checked+.btn.default-active {
    background-color: #e1eee6;
    border-color: #417f64;
}

.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: 54px;
    padding-bottom: 10px;
}
.sticky.bottom {
    bottom: 0;
    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: #a3d7b626;
}
.menu-container {
    padding-top: 5px;
}

/*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;
    padding: 0 .5rem;
}
.check-container .item, .menu-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 */
    transition: all 0.3s;
    overflow: hidden;
}
.menu-container .item.borderless {
    border: none;
    box-shadow: none;
}
.check-container .item.flex-col {
    flex-direction: column;
}
.check-container .item:hover {
    border: 1px solid var(--accent-strong-blue-60, #649D82);
    box-shadow: 0px 0px 5px 2px rgba(77, 150, 117, 0.40)
}
.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.selected.colored {
    background: rgb(77 150 117 / 8%);
}

.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, .menu-container .item span.right {
    float: right;
    padding-top: 2px;
    margin-left: auto;
    padding-right: 5px;
}
.check-container .item span.right.green, .menu-container .item span.right.green {
    color: green;
}
.check-container .item span.right.red, .menu-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, .menu-container .sub-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.check-container .sub-prices {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: end;
}

.check-container .sub-prices .sub-item {

}

.check-container .sub-items .sub-item.light {
    border-radius: 0;
    background: none;
    padding: 0;
    gap: initial;
    border: none;
    cursor: initial;
}

.check-container .sub-prices .sub-item .size {
    border-radius: 5px;
    border: 1px solid #c9e7c9;
    white-space: nowrap;
    display: block;
    font-size: 11px;
    overflow: hidden;
}

.check-container .sub-prices .sub-item .size.size-xs {

}
.check-container .sub-prices .sub-item .size.size-s {

}
.check-container .sub-prices .sub-item .size.size-m {

}
.check-container .sub-prices .sub-item .size.size-l {

}
.check-container .sub-prices .sub-item .size.size-xl {

}

.check-container .sub-prices .sub-item .size .icon {
    vertical-align: bottom;
    color: #246055;
    background: var(--accent-strong-blue-30);
    display: inline-block;
    width: 20px;
    text-align: center;
}

.check-container .sub-prices .sub-item .size.size-xs {

}
.check-container .sub-prices .sub-item .size.size-s {

}
.check-container .sub-prices .sub-item .size.size-m {

}
.check-container .sub-prices .sub-item .size.size-l {

}
.check-container .sub-prices .sub-item .size.size-xl {

}

.check-container .sub-prices .sub-item .size.size-xs .icon {

}
.check-container .sub-prices .sub-item .size.size-s .icon {

}
.check-container .sub-prices .sub-item .size.size-m .icon {

}
.check-container .sub-prices .sub-item .size.size-l .icon {

}
.check-container .sub-prices .sub-item .size.size-xl .icon {

}

.check-container .sub-prices .sub-item .size .price {
    padding: 3px;
}

.check-container .sub-items .sub-item {
    border-radius: 8px;
    background: var(--text-dark-20);
    display: flex;
    padding: 16px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--text-dark-20);
    cursor: pointer;
}
.check-container .sub-items .sub-item.dark {
    background: #484d5b8a;
    color: white;
    font-weight: 300;
}

.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, .check-container .sub-items .sub-item .size .icon {
    background: var(--accent-strong-blue-30);
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #c9e7c9;
    white-space: nowrap;
    width: 45px;
    display: inline-block;
    color: #246055;
}


.check-container .sub-items .sub-item .size.size-xs .icon,
.check-container .sub-items .sub-item .size.size-xs.icon {

}
.check-container .sub-items .sub-item .size.size-s .icon,
.check-container .sub-items .sub-item .size.size-s.icon {

}
.check-container .sub-items .sub-item .size.size-m .icon,
.check-container .sub-items .sub-item .size.size-m.icon {

}
.check-container .sub-items .sub-item .size.size-l .icon,
.check-container .sub-items .sub-item .size.size-l.icon {

}
.check-container .sub-items .sub-item .size.size-xl .icon,
.check-container .sub-items .sub-item .size.size-xl.icon {

}


.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 .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 .price.discount
{
    font-size: 13px;
    color: #c55b5b;
    text-decoration: line-through;
    display: block;
}
.check-container .sub-items .price.discount.inline
{
    display: inline;
    margin-right: 10px;
}

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

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

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

.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;
}

.door-code.small {
    font-size: 20px;
}

.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: 95%;
    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, .payment-state, .online-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, .shipment-state.ready_for_label_generation {
    background: #f1a84b;
}
.shipment-state.shipping {
    background: #4b5ef1;
}
.shipment-state.collect {
    background: #d7c63e;
}
.shipment-state.delivered, .payment-state.paid, .online-state.online, .shipment-state.label_generated {
    background: #4c9f1a;
}
.online-state.away {
    background: #e3aa29;
}
.shipment-state.cancelled, .payment-state.failed, .shipment-state.returning, .shipment-state.returned,
.shipment-state.need_phone, .shipment-state.need_address, .shipment-state.locker_not_found {
    background: #e51d40;
}

.bg-allocated, .bg-ready_for_label_generation {
    background: #ffe9cd !important;
}
.bg-shipping {
    background: #dce0ff !important;
}
.bg-collect {
    background: #f5efb8 !important;
}
.bg-delivered, .bg-label_generated {
    background: #dcefd1 !important;
    color: #4b7542;
}
.bg-cancelled, .bg-returning, .bg-returned, .bg-need_address, .bg-need_phone, .bg-locker_not_found {
    background: #ebccd2 !important;
    color: #754242;
}

.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 10px 10px;
}

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

button svg {
    margin-bottom: 3px;
}

.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 {
    display: none;
}

.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;
    vertical-align: top !important;
}

.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;
}

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

.form-control.phone-number-input {
    padding-left: 10px;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-size: 14px;
    font-weight: 300;
    background-color: #9292eb;
    color: white;
    width: 45px;
    height: 45px;
    min-width: 45px;
}

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

.avatar.white {
    background: white;
}

.avatar.check {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 47px;
    height: 47px;
    background-color: #e1e1e1;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    cursor: pointer;
}
.avatar.check.active {
    background-color: #3E6856;
    background-image: url("/design/icons/Check_White.svg");
    opacity: 1;
}

.pagination {
    margin-left: auto;
    margin-right: auto;
}

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

.table tfoot th {
    border-bottom: 0;
    border-top: 1px solid black;
}

.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: 54px;
    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);
}

.popover-blue {
    --bs-popover-border-color: rgb(25 73 255 / 45%);
    --bs-popover-body-color: #4682bd;
    --bs-popover-bg: #ebf2ff;
    font-weight: bold;
}

.popover-blue .popover-body {
    padding: 5px var(--bs-popover-body-padding-x) var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
    color: var(--bs-popover-body-color);
}

.iti {
    width: 100% !important;
}
.clearable-select {
    position: relative;
}

select option[value=""] {
    color: #999;
}

.clearable-select select:has(option:checked:not([value=""])) + i,
.clearable-select .bootstrap-select:has(select > option:checked:not([value=""])) + i,
.clearable-select .bootstrap-select:has(select > option:checked:not([value=""])) + 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;
}

.clearable-select .bootstrap-select:has(select > option:checked:not([value=""])) .dropdown-toggle::after {
    display: none;
}

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

option.inactive {
    color: #a9a9a9;
}

.statistics {
    display: flex;
    justify-content: center;
}
.statistics .title {
    padding: 6px;
    display: inline-block;
    text-align: center;
}
.statistics .filter-container {
    text-align: center;
    display: flex;
}


.select-picker {
    height: 1rem;
}

.dropdown-menu {
    z-index: 1001;
    padding: 0;
}

.bootstrap-select .dropdown-menu.show {
    box-shadow: rgba(0, 0, 0, 0.42) 0px 0px 10px 0px;
}
.bootstrap-select .dropdown-menu li a:hover {
    background-color: #0d6efd;
    color: white;
}
.bootstrap-select .btn.dropdown-toggle:hover {
    border: 1px solid var(--button-secondary-active) !important;
}
.bootstrap-select>.dropdown-toggle.show {
    border: 1px solid var(--accent-strong-blue-60, #649D82);
    box-shadow: 0px 0px 0px 4px rgba(77, 150, 117, 0.40);
}

.bootstrap-select>.dropdown-toggle {
    border: 1px solid var(--button-secondary-active);
    background: var(--background-extra-white);
}
.bootstrap-select .btn.dropdown-toggle:focus {
    outline: 0 !important;
}
.bootstrap-select .btn.dropdown-toggle:focus-visible {
    outline: 0;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    color: green;
}
.bootstrap-select.show-tick .dropdown-menu .selected:hover span.check-mark {
    color: white;
}
.bootstrap-select .btn.dropdown-toggle.show::after {
    transform: rotate(180deg);
}
.bootstrap-select .dropdown-menu .selected {
    background: #f0f9ff;
}
.bootstrap-select .dropdown-menu .selected.active {
    background: #0d6efd;
    color: white;
}
.bootstrap-select .dropdown-menu .inactive {
    background: #ff00001f;
}
.bootstrap-select .dropdown-menu li:hover small {
    color: rgba(255, 255, 255, .5) !important;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    text-overflow: ellipsis;
    margin-right: 20px;
    letter-spacing: 0;
}
.dropdown-toggle::after {
    margin-right: 5px;
}

@media (max-width: 991px) {

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

    .buttons {
        width: 50px;
    }
    th.jump {
        width: fit-content !important;
        float: left;
    }

    tfoot th.jump.last {
        width: 100% !important;
    }

    .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, .table-responsive .table tr td.bolder {
        font-weight: 600;
    }
    thead tr {
        box-shadow: 0 1px 0 black;
    }
    thead tr th {
        border: none;
    }

    .table td:has(nav) {
        text-align: center;
    }
    .hide-mobile {
        display: none;
    }

}

@media (max-width: 767px) {
    .clearable-select select:has(option:checked:not([value=""])) + i,
    .clearable-select .bootstrap-select:has(select > option:checked:not([value=""])) + i {
        top: 7px;
        right: 20px;
    }
    .statistics .filter-container {
        flex-direction: column;
        align-items: end;
    }
    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: initial !important;
        bottom: 60px;
        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;
    }

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

    .modal-dialog.countries table {
        margin: 0 auto;
    }

}
@media (min-width: 576px) {

    .modal-dialog.countries {
        max-width: fit-content;
    }

}

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