@import "icon-font.css";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import 'https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,700;0,800;0,900;1,400&display=swap');
:root {
    --clr-pri: #1d62af;
    --clr-sec: #bf2025;
    --clr-dark: #000;
    --clr-light-dark: #202020;
    --clr-light: #fff;
    --clr-dark-pri: #081e79;
    --clr-dark-grey: #656565;
    --clr-light-black: #464646;
    --clr-light-grey: #434343;
    --clr-border-black: #636363;
    --clr-success: #4db848;
    --clr-light-grey-two: #424242;
    --clr-span: #333;
}
@font-face {
    font-family: vag;
    font-weight: 400;
    src: url(fonts/OPTIVagRound-Bold.otf);
}

*:focus {
    outline: 0;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none !important;
}

.link {
    color: var(--clr-pri);
}

a:active {
    outline: 0;
}

a:focus {
    outline: none !important;
}

a:hover {
    outline: 0;
    text-decoration: none !important;
    color: #333;
    transition: 0.2s ease all;
}

p {
    margin-top: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.h1,
h1 {
    font-size: 40px;
}

.h2,
h2 {
    font-size: 32px;
}

.h3,
h3 {
    font-size: 28px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 20px;
}

.h6,
h6 {
    font-size: 16px;
}

b {
    font-weight: 600;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html,
body {
    font-size: 15px;
    line-height: 1.5;
    /* font-family: vag; */
    font-family: "Poppins", sans-serif !important;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

.art-logos-box-deco {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    gap: 15px;
    flex-wrap: wrap;
}

#custom-design-box {
    list-style-type: none; /* Removes bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Aligns items side by side */
    flex-wrap: wrap;
    gap: 15px;
}
.custom-design-box{
    align-items: stretch;
    justify-content: center;
}
.product-item .price .aslow {
    line-height: 1;
    display: block;
    margin-bottom: 0px;
}
.design-box {
    flex-direction: c;
    position: relative;
    width: 120px;
    height: 120px;
    border: 2px solid black;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
}
.design-box label {
    overflow: hidden;
    margin: 10px;
}
.design-box-cost {
    margin-top: 10px;
    padding: 3px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}
.free-logo-cost {
    color: var(--clr-sec);
}
.paid-logo-cost {
    color: black;
}
.design-box.upload-Box {
    border: none;
}

.design-box-deco {
    position: relative;

    width: 120px;
}

.design-box-deco h5 {
    font-size: 14px;

    line-height: 22px;
}
.design-box-cat {
    width: 100%;
    max-width: 120px;
}
.design-box-cat h5 {
    font-size: 14px;
    line-height: 18px;
}
.design-box-cat-item {
    height: 120px;

    border: 2px solid black;

    border-radius: 5px;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;
    flex-direction: column;

    cursor: pointer;

    background: #e6e6e6;

    position: relative;
}

.skeleton-design-box {
    width: 100%;
    max-width: 120px;
    height: 120px;
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 70%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

input[type="radio"] {
    position: absolute;

    opacity: 0;

    cursor: pointer;

    height: 0;

    width: 0;
}
.radio-mark-1 {
    z-index: 2;
    top: 0;
    width: 100% !important;
    height: 100% !important;
}
.design-box-cat-item input[type="radio"]:checked + .radio-mark {
    border-color: var(--clr-sec);
    color: var(--clr-sec);
}
.design-box-cat-item input[type="radio"]:checked + .radio-mark:before {
    border-color: var(--clr-sec);
}
.radio-mark:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 2px solid #cccccc;
    border-radius: 100%;
}
.choose_design {
    position: absolute;
    top: 6px;
    left: 8px;
}
.design-position {
    /* position: absolute;
    top: 118px; */
    margin: 4px 12px;
    width: 100px;
    text-align: center !important;
}
.upload-div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.design-box-cat-item input[type="radio"]:checked + .radio-mark:after {
    visibility: visible;
}
.design-box-cat-item .radio-mark:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    transform: translate(0px, 0px);
    width: 8px;
    height: 8px;
    background: var(--clr-sec);
    border-radius: 40px;
    visibility: hidden;
}
.design-box-cat-item .radio-mark {
    width: 100%;
    border-radius: 5px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    top: 0;
    cursor: pointer;
}

.decoration-image {
    max-width: 100%; /* Adjust as needed */

    height: auto;
}

.design-image {
    max-width: 80px;
    height: auto;
    max-height: 80px;
}
ul.ship_methods.preivew-address-price {
    justify-content: center;
}
.shpping_error {
    color: #f8498d;
    align-items: center !important;
    text-align: center !important;
}
a.refresh-btn {
    font-size: 14px;
    font-weight: 500;
    color: #534e4e;
    float: right;
    margin-bottom: 10px;
}
.userway-access-button {
    background-color: var(
        --clr-light
    ) !important; /* Change to your desired color */
}
small.price_sh {
    text-transform: lowercase !important;
}
.tier-pr-ul li,
.v2price-range li {
    line-height: 30px;
    display: inline-block;
}

.block-loader-product_det img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}
.block-loader-product_det {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.block-loader-product_del img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}
.block-loader-product_del {
    top: 0;
    left: 0;
    height: 100%;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#customize_emb_modal .modal-dialog {
    max-width: 1000px;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

figure {
    margin: 0px;
}

::selection {
    color: var(--clr-light);
    background: #22303a;
}

button:focus {
    outline: none;
}

.btn.btn-sm {
    padding: 8px 12px;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
}
.btn.btn-xs {
    padding: 6px 10px;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--clr-pri);
    border-color: var(--clr-pri);
    color: var(--clr-light);
    font-weight: 400;
}

.btn.btn-secondary {
    background-color: var(--clr-sec);
    border-color: var(--clr-sec);
    color: var(--clr-light);
    font-weight: 400;
}

.btn.btn-primary:hover {
    background-color: var(--clr-pri);
    border-color: var(--clr-pri);
    color: #ebebeb;
    opacity: 0.8;
}

.btn-outline-secondary {
    border: 1px solid var(--clr-sec);
    color: var(--clr-sec);
    background: transparent;
}

.btn-outline-secondary:hover {
    color: var(--clr-light);
    background: var(--clr-sec);
    border: 1px solid var(--clr-sec);
}

.btn-outline-primary {
    border-color: var(--clr-pri);
    color: var(--clr-pri);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--clr-pri);
    color: var(--clr-light);
    border-color: var(--clr-pri);
}

h1.h1tag {
    display: none;
}

input::placeholder {
    color: #c7c7c7 !important;
    opacity: 0.1;
}

input:-ms-input-placeholder {
    color: #c7c7c7 !important;
    opacity: 0.1;
}

input::-ms-input-placeholder {
    color: #c7c7c7 !important;
    opacity: 0.1;
}

.label-title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 15px;
}

label.custom-checkbox-ui {
    width: auto;
    font-size: 15px;
    line-height: 20px;
    color: #121212;
    padding: 0px 0px 0px 25px;
    min-height: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.red-label {
    color: red !important;
}
.wid-100 {
    width: 100%;
}
.card-topset {
    margin-top: 15px;
    margin-bottom: 0px;
}
.card-bottomset {
    margin-top: 0px;
    margin-bottom: 10px;
}
label.custom-checkbox-ui input {
    position: absolute;
    left: 0;
    visibility: hidden;
}
.cat-prdttype .item {
    width: 33.33%;
    padding: 0px 7px;
    margin-bottom: 14px;
}
.proof-image-qty {
    position: absolute;
    top: 2px;
    right: 0px;
    line-height: 1;
}
.error-message {
    color: red;
    font-size: 14px;
}
.change-button {
    border: #de5e5b;
    background-color: #de5e5b;
    height: 45px;
    font-size: 21px;
    font-weight: 600;
}
.approve-button {
    border: #66c068;
    background-color: #66c068;
    height: 45px;
    font-size: 21px;
    font-weight: 600;
}
.disclaimer-text {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 10px;
}
.proof-action {
    padding-left: 10px;
    text-align: center;
}
.subtext {
    margin-top: 5px;
}
.custom-address {
    float: right;
    margin-top: 30px;
}
.address-row {
    border: 1px solid black;
    padding: 5px 0px 5px 0px;
    margin: 10px;
    border-radius: 5px;
}
.pad-10 {
    padding: 10px;
}
/* .custom-checkbox-ui {
    font-size: inherit;
    font-weight: inherit;
    min-height: 15px;
    padding: 0px 0px 0px 24px;
    line-height: 1.2;
}
.custom-checkbox-ui span:before {
    width: 18px;
    height: 18px;
}
.custom-checkbox-ui span:after {
    left: 5px;
    top: 5px;
    width: 9px;
    height: 5px;
} */
.custom-checkbox-ui {
    font-size: inherit;
    font-weight: inherit;
    min-height: 15px;
    padding: 0px 0px 0px 24px;
    line-height: 1.2;
}
.custom-checkbox-ui span:before {
    width: 18px;
    height: 18px;
}
.custom-checkbox-ui span:after {
    left: 5px;
    top: 5px;
    width: 9px;
    height: 5px;
}

label.custom-checkbox-ui span:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 19px;
    height: 19px;
    border: 2px solid #c1c1c1;
    border-radius: 4px;
}

label.custom-checkbox-ui span:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 9px;
    height: 5px;
    border-left: 2px solid #b9b9b9;
    border-bottom: 2px solid #b9b9b9;
    transform: rotate(-45deg);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

label.custom-checkbox-ui input[type="checkbox"]:checked ~ span:before {
    border-color: var(--clr-pri);
}

label.custom-checkbox-ui input[type="checkbox"]:checked ~ span:after {
    visibility: visible;
    opacity: 1;
    border-color: var(--clr-pri);
}

.custom-switch-ui input {
    display: none;
}

.custom-switch-ui {
    display: inline-block;
    position: relative;
    padding-right: 55px;
    font-weight: 600;
    color: #121212;
    cursor: pointer;
}

.custom-switch-ui span:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 32px;
    cursor: pointer;
    border: 2px solid #777;
    overflow: hidden;
    transition: 0.2s;
    height: 24px;
    width: 50px;
}

.custom-switch-ui span:before {
    position: absolute;
    content: "";
    z-index: 1;
    width: 18px;
    height: 18px;
    background-color: #777;
    border-radius: 30px;
    transform: translateX(-26px);
    transition: 0.2s;
    top: 0;
    right: 0;
    margin: 3px;
}

.custom-switch-ui input:checked + span:after {
    border-color: var(--clr-pri);
    background-color: var(--clr-pri);
}

.custom-switch-ui input:checked + span:before {
    transform: translateX(-0px);
    background-color: var(--clr-light);
    box-shadow: 0 0 5px #a1a5a1;
}

label.custom-radio {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none;
}

.custom-radio .radio-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #cccccc;
    border-radius: 100%;
}

.temp-disabled{
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed !important;
    display: none !important;
}

.custom-radio .radio-content:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    transform: translate(0px, 0px);
    width: 8px;
    height: 8px;
    background: var(--clr-pri);
    border-radius: 40px;
    visibility: hidden;
}

.custom-radio input[type="radio"]:checked + .radio-content:before {
    border-color: var(--clr-pri);
}

.custom-radio input[type="radio"]:checked + .radio-content:after {
    visibility: visible;
}

.breadcrumb-ui ul {
    margin: 15px 0px 5px;
}

.breadcrumb-ui ul li {
    display: inline-block;
    color: #666666;
    font-weight: 500;
    font-size: 14px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    display: block;
}
.mob-fluid .form-group{
    margin-bottom: 15px !important;
}
.form-group p {
    font-size: 14px;
    margin: 5px 0px 0px;
    line-height: 1.3;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    box-shadow: 0 0 5px #ababab;
    border-radius: 2px;
}

.form-group .form-control,
.form-group .form-select {
    height: 40px;
    border-radius: 0;
    border: 1px solid #ddd;
    font-size: 15px;
    box-shadow: none;
    outline: none;
}

.form-group .form-label {
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
    display: block;
    font-size: 14px;
}

label.error,
.errormsg {
    color: #ff0000;
    display: block;
    line-height: 1.3;
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
}

.form-group.error .form-control {
    border-color: #ff0000;
    color: #ff0000;
}

#layout-wrapper ::-webkit-scrollbar {
    width: 5px;
}

#layout-wrapper ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#layout-wrapper ::-webkit-scrollbar-thumb {
    background: #888;
}

#layout-wrapper ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*loader css overlay*/
body.loaded {
    overflow: visible;
    background-color: #f5f5f7;
}

body {
    font-size: 100%;
    background: #f5f5f7;
    height: 100%;
    overflow: hidden;
}

.loaded .page-loadoverlay {
    transform: translateY(-100%);
}

.page-loadoverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #081e7914;
    z-index: 999999999;
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.page-loadoverlay span {
    width: 250px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loadoverlay span img {
    width: 140px;
    animation: scaleIn 0.5s linear infinite;
}

.page-loadoverlay span:before {
    content: "";
    width: 100%;
    height: 100%;
    border-top: 4px solid var(--clr-sec);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
}

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

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

@keyframes scaleIn {
    0% {
        transform: scale(0.99);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(0.99);
    }
}

main.wrapper-main {
    opacity: 0;
    font-size: 15px;
}

body.loaded main.wrapper-main {
    opacity: 1;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0px 15px;
}

/*OWL SLIDER*/
.owl-carousel .owl-item {
    padding: 0px 7px;
}

.owl-carousel .owl-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 15px 0px 0px;
}

.owl-carousel .owl-dots button.owl-dot:first-child {
    margin-left: 0;
}

.owl-carousel .owl-dots button.owl-dot:last-child {
    margin-right: 0;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 20px;
    height: 20px;
    background: #d4d4d4;
    display: inline-block;
    margin: 0px 5px;
    border-radius: 50px;
    border: 2px solid #c5c5c5;
}

.owl-carousel .owl-dots button.owl-dot.active {
    background: var(--clr-pri);
    border-color: #45c544;
}

.owl-carousel .owl-nav button.disabled {
    visibility: hidden;
    opacity: 0;
}

body .owl-carousel .owl-nav button.owl-prev,
body .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    width: 65px;
    height: 65px;
    background: #0000004f;
    border-radius: 50px;
    color: var(--clr-light);
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    transition: all 0.4s ease;
}

.fstpromo-container.home-slider-container .owl-carousel .owl-nav button.owl-prev,
.fstpromo-container.home-slider-container .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    background: #0000004f;
    border-radius: 50px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: none;
    background: #a8a8a8;
    opacity: 1;
}

body .owl-carousel .owl-nav button.owl-prev:hover,
body .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #00000073;
    transform: scale(1.03) translateY(-50%);
    opacity: 1;
}

body .owl-carousel .owl-nav button.owl-next span i {
    color: var(--clr-light);
}

body .owl-carousel .owl-nav button.owl-prev span {
    /* transform: rotate(-90deg); */
    font-size: 50px;
    margin: 0;
}

body .owl-carousel .owl-nav button.owl-next span {
    /* transform: rotate(90deg); */
    font-size: 50px;
    margin: 0;
}

body .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}

body .owl-carousel .owl-nav button.owl-next {
    right: -10px;
}

.owl-carousel .owl-stage {
    display: flex;
    /* flex-wrap: wrap; */
}
/* @media only screen and (max-width: 768px){
    .owl-stage {
        width: 270px !important;
    }
} */

.hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}

table th,
table td {
    padding: 6px;
}

/* pagination css */
.pagination {
    width: 100%;
    text-align: center;
    display: block;
}

/* .pagination p {
    display: none;
} */

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination li {
    display: inline-block;
    line-height: 1;
}

.pagination li span,
.pagination li a {
    color: var(--clr-dark);
    margin: 0px 10px;
    font-size: 14px;
}

.pagination li span.active,
.pagination li a.active {
    background: var(--clr-sec);
    color: var(--clr-light);
    text-align: center;
    font-size: 13px;
    min-width: 30px;
    border-radius: 50px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    font-weight: 400;
    padding: 0;
    overflow: hidden;
}

.pagination li span:hover,
.pagination li a:hover {
    color: var(--clr-dark);
}

/* modal css */
.modal .modal-header {
    background: var(--clr-pri);
    color: var(--clr-light);
    padding: 10px;
    line-height: 1.3;
}

.modal-header .modal-title {
    font-size: 18px;
    color: inherit;
    margin: 0;
    display: block;
    font-weight: 500;
}

.modal .modal-body {
    padding: 10px;
    max-height: calc(90vh - 47px);
    overflow-y: auto;
    overflow-x: hidden;
    height: max-content;
}

.modal .modal-footer {
    padding: 5px;
}

.modal .modal-footer .btn {
    margin: 5px;
}
.addcardmodal {
    padding: 20px !important;
}
/* dotted ul */
.doted-ulli li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.doted-ulli li:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--clr-sec);
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 50px;
}

.md-overlay {
    position: relative;
}

.md-overlay:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffffe0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    background-image: url(/assets/images/spin-loader.svg);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}

.bg-pri {
    background-color: var(--clr-pri);
}

.bg-sec {
    background-color: var(--clr-sec);
}

.slctfile-btn input[type="file"] {
    display: none;
}

.slctfile-btn {
    cursor: pointer;
    color: #514f4f;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.upload-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(36%) sepia(7%) saturate(29%)
        hue-rotate(202deg) brightness(98%) contrast(88%);
}
.imprint-logo-preview img {
    max-width: 110px;
    max-height: 110px;
}

.imprint-logo-preview {
    box-shadow: 0 0 5px #ddd;
    padding: 10px;
    width: fit-content;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
    min-width: 70px;
    min-height: 70px;
}
.imprint-logo-preview {
    position: relative;
    display: inline-block; /* Ensures the div takes only the necessary width */
}

.imprint-logo-preview-show img {
    max-width: 110px;
    max-height: 110px;
}

.imprint-logo-preview-show {
    /* box-shadow: 0 0 5px #ddd; */
    padding: 10px;
    width: fit-content;
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
    min-width: 70px;
    min-height: 70px;
}
.imprint-logo-preview-show {
    position: absolute;
    display: inline-block; /* Ensures the div takes only the necessary width */
}

.close-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px; /* Adjust the width and height to make it a perfect circle */
    height: 20px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.close-icon:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
.modal {
    z-index: 1000;
}

.modal-backdrop {
    z-index: 999;
}

.see-tiersec {
    /* float: right; */
    width: auto;
    margin-top: 15px;
}

.see-tiersec .dropdown.open ul.dropdown-menu {
    display: block;
    width: 100%;
    right: auto;
    left: 0;
    padding: 10px;
    z-index: 1;
    background-color: var(--clr-light);
    border: 1px solid #ccc;
}

.see-tiersec .dropdown .dropdown-toggle::after {
    display: inline-block;
    content: none;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.see-tiersec .dropdown.open ul.dropdown-menu::after,
.see-tiersec .dropdown.open ul.dropdown-menu::before {
    position: absolute;
    width: auto;
    padding: 0;
    content: "";
    right: 7px;
    background-color: transparent;
    border-top: 0 solid transparent;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
}

.see-tiersec .dropdown.open ul.dropdown-menu::before {
    top: -11px;
    border-bottom: 10px solid #ccc;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.see-tiersec .dropdown.open ul.dropdown-menu::after {
    top: -10px;
    border-bottom: 10px solid #f0f0f0;
    border-right: 10px dashed transparent;
    border-left: 10px dashed transparent;
}

.see-tiersec .dropdown-menu li {
    width: 50%;
    display: inline-block;
    float: left;
    padding-right: 10px;
}
button.btn.btn-primary.dropdown-toggle {
    text-transform: uppercase;
    font-size: 12px;
}

.see-tiersec .dropdown-menu li h4 {
    font-size: 13px !important;
    color: #081e79;
}

.tier-pr-ul li,
.tier-pr-ul li b {
    font-size: 14px;
}

.tier-pr-ul {
    float: left;
    width: 100%;
    padding: 0;
    margin-left: 0;
}

.tier-pr-ul li {
    width: 100% !important;
    color: #212529;
}

.v2pricerange-slid {
    float: left;
    padding-left: 12px;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.v2price-range {
    float: left;
    width: 75%;
    padding: 0;
    margin-top: 15px;
}

.v2price-range li {
    width: 30%;
    color: #333;
    font-size: 12px;
}

.see-tiersec button {
    background: 0 0 !important;
    border: none !important;
    color: #f8498d;
}

.see-tiersec button:focus,
.see-tiersec button:hover {
    color: #f8498d !important;
}

.see-tiersec button:active {
    box-shadow: none !important;
    color: #f8498d !important;
}
.form-select.month-select {
    width: 100%;
}

.update-exp-box {
    justify-content: space-between !important;

    gap: 5px !important;
}

.expiration-box .form-group {
    flex: 1;
}

.modal-header .btn-close,
.modal-header .close {
    line-height: 1;
    display: inline-block;
    position: static;
    border: none;
    background-color: transparent;
    font-size: 25px !important;
    font-weight: 700;
    color: #fff !important;
    opacity: 1;
}

/** checkout page  */
.preivew-address-price label.custom-radio {
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
    padding-left: 30px;
    line-height: 1.4;
}
label.custom-radio {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
}
.desktop-view{
    display: block;
}
.mobile-view{
    display: none;
}
.midimg{
    max-height: 55px !important;
    max-width: 55px !important;
}
.logodata_small {
    background-image: url(/assets/images/transparent.png);
    height: 55px;
    background-size: cover;
    display: block;
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logodata_download{
    margin-left: 10px !important;
}
.toolbar select, .toolbar input{
    border: 1px solid var(--clr-dark);
}

@media only screen and (max-width: 767px) {
    body.loaded main.wrapper-main {
        /* height: calc(100vh - 235px); */
        overflow: auto;
        overflow-x: hidden;
    }
    .modal .modal-dialog-centered .modal-content{
        margin-block-end: 80px;
    }
    .modal .modal-body {
        padding: 10px;
        max-height: calc(75vh - 47px);
    }
    .breadcrumb-ui ul li {
        font-size: 13px;
    }

    .owl-carousel .owl-item {
        padding-right: 10px;
    }

    body .owl-carousel .owl-nav button.owl-prev,
    body .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
    }

    body .owl-carousel .owl-nav button.owl-next span,
    body .owl-carousel .owl-nav button.owl-prev span {
        font-size: 15px;
    }

    .modal-header .modal-title {
        font-size: 16px;
    }

    .modal-header .btn-close {
        font-size: 14px;
    }
    .form-group .form-control,
    .form-group .form-select {
        height: 46px;
        font-size: 14px;
    }
    .mob-fluid .form-group{
        margin-bottom: 6px !important;
    }
    label.custom-checkbox-ui {
        width: auto;
        font-size: 12px;
        line-height: 14px;
    }
    .mob-fluid .form-group .form-label, .secruitycode {
        font-size: 12px;
        line-height: 14px !important;
    }
    
    .mob-fluid  label.error,
  .mob-fluid  .errormsg {
    font-size: 12px;
}
}

@media only screen and (max-width: 480px) {
    body.loaded main.wrapper-main {
        min-height: calc(100vh - 210px);
    }

    .breadcrumb-ui ul li {
        font-size: 12px;
    }

    body .owl-carousel .owl-nav button.owl-prev,
    body .owl-carousel .owl-nav button.owl-next {
        width: 32px;
        height: 32px;
    }

    /* .form-group .form-label {
        font-size: 13px;
    } */

    .modal-header .modal-title {
        font-size: 15px;
    }

    .modal-header .btn-close {
        font-size: 12px;
    }
    .see-tiersec .dropdown-menu li:last-child {
        padding-right: 0;
    }

    .see-tiersec .dropdown-menu li h4 {
        font-size: 12px !important;
    }

    .see-tiersec .dropdown-menu li {
        height: 100%;
        min-height: 50px;
        font-size: 12px !important;
        line-height: 18px;
    }

    .secruitycode span {
        font-size: 13px;
    }

    /* label.custom-checkbox-ui span:before {
        width: 17px;

        height: 17px;

        top: 4px;
    } */

    .filter-list label.custom-checkbox-ui span:before {
        top: 0px !important;
    }

    .modal-custom-text {
        text-align: center;
    }

    .checkout-first {
        display: none;
    }
    .mobile-view{
        display: block;
    }
    .desktop-view{
        display: none;
    }
    .top-butt{
        font-size: 10px !important;
        padding: 8px 8px !important;
    }
    .top-box-account{
        display: ruby;
    }
}
