@font-face {
    font-family: Bakerie;
    src: url("https://billing.globalpackagetracker.com/assets/fonts/Bakerie/BakerieSmooth-Bold.otf") format("opentype");
}

.loading-wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    z-index: 999;
}

.loader {
    margin: auto;
    border: 10px solid #EAF0F6;
    border-radius: 50%;
    border-top: 10px solid lightgreen;
    width: 100px;
    height: 100px;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.payment-range::-webkit-slider-runnable-track,
.payment-range::-webkit-slider-runnable-track {
    background-color: lightblue;
}

.payment-range::-moz-range-track,
.payment-range::-moz-range-track {
    background-color: lightblue;
}

.btn-soft:hover {
    background-color: rgb(230, 230, 230) !important;
}

.pointer {
    cursor: pointer;
}

.pointer-disabled {
    cursor: not-allowed;
}

.no-select {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.hover-no-shadow:hover {
    box-shadow: none !important;
}

.no-underline {
    text-decoration: none !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

.range-input {
    position: relative;
}

.range-input::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 6px;
    background-color: #999;
}

.range-input input[type="range"] {
    position: relative;
    z-index: 1;
    /* Add any additional styling as needed */
}

.active-pay-selection {
    background-color: #0d6efd !important;
    color: white !important;
    cursor: default !important;
}

.overlay {
    position: relative;
    cursor: not-allowed;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.375rem !important;
    border-width: 1px !important;
    border-color: rgba(0, 0, 0, 0.175) !important;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: auto;
}


.pricing-card,
.pricing-card .card-footer {
    overflow: hidden;
}

.pricing-card .card-footer {
    background-color: white !important;
}

.pricing-card:hover,
.pricing-card:hover .card-footer {
    background-color: #e1f9e2 !important;
    box-shadow: 0 19px 38px #e8dfdf4d, 0 15px 12px #00000038;
}

.pricing-card:hover:not(.overlay) .greenSquare,
.pricing-card:hover:not(.overlay) .greenSquare2 {
    /* right: -38px; */
    transform: rotate(135deg);
}

.greenSquare,
.greenSquare2 {
    background-color: #0cc652;
    border-radius: 8px;
    content: "";
    height: 88px;
    opacity: .2;
    position: absolute;
    right: -35px;
    transform: rotate(45deg);
    width: 88px;
    z-index: 0;
    transition: transform .5s ease;
}

.greenSquare {
    top: 0px;
}

.greenSquare2 {
    top: 35px;
}

.greenSquare3 {
    background-color: #0cc652;
    border-radius: 50%;
    content: "";
    height: 126px;
    opacity: .2;
    position: absolute;
    right: -90px;
    bottom: -40px;
    transform: rotate(45deg);
    width: 126px;
    z-index: 0;
    transition: all .5s ease;
}

.greenSquare4 {
    background-color: #0cc652;
    border-radius: 50%;
    content: "";
    height: 90px;
    opacity: .2;
    position: absolute;
    right: -40px;
    bottom: -55px;
    transform: rotate(45deg);
    width: 90px;
    z-index: 0;
    transition: all .5s ease;
}


.card-button:hover {
    background-color: #e1f9e2;
    box-shadow: 0 19px 38px #e8dfdf4d, 0 15px 12px #00000038;
    text-decoration: underline;
}

.card-button:hover .greenSquare3 {
    right: -60px;
    bottom: -100px;
}

.card-button:hover .greenSquare4 {
    right: -55px;
    bottom: -30px;
}



/* pricing card */
.shipments-count-item {
    cursor: pointer;
    border-radius: var(--bs-border-radius) !important;
    border-color: #F4F4F5;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.shipments-count-item.active {
    cursor: pointer;
    color: rgba(var(--bs-primary-rgb), 1) !important;
    border-color: rgba(var(--bs-primary-rgb), 1) !important;
    font-weight: bold !important;
}

.shipments-count-item.active div {
    font-weight: bold !important;
}

.shipments-count-item:hover {
    cursor: pointer;
    background-color: rgba(var(--bs-primary-rgb), .2) !important;
    border-color: rgba(var(--bs-primary-rgb), .5) !important;
}

#pricing-nav .nav-link.active {
    color: #F4F4F5 !important;
    font-weight: bold;
}

/* #pricing-nav .nav-link {
    transition: color 0.3s ease, font-weight 0.3s ease;
} */

#billing-links .card:hover {
    background-color: #e1f9e2;
    box-shadow: none !important;
}