@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("./fonts/LineIcons.css");

:root {
    --colorPrimary: #0E185F;
    --colorSecondary: #4a61e5;
    --PrimaryBgColor: rgba(225, 225, 225, 0.45);
    --buttonPrimary: #0E185F;
    --buttonPrimaryText: #fff;
    --buttonSecondary: rgba(15, 17, 122, 0.16);
    --buttonSecondaryText: #0f117a;
    --buttonDelete: #be0e16;
    --buttonDeleteText: #fff;
    --buttonLight: #eef7fd;
    --buttonLightText: #1e272e;
    --inputBackground: #030303;
    --inputBorder: #edeeee;
    --navbarLabelPrimary: #101426;
    --navbarLabelActive: #4a61e5;
    --navbarActive: rgba(0, 173, 69, 0.08);
    --bs-secondary: #F2F6FF;
    --bs-secondary-rgb: 242, 246, 255;
    --bs-success-rgb: 0, 74, 69;
    --bs-primary-rgb: 14, 24, 95;
    --bs-primary: #0E185F;
    --bs-success: #004A45;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 24px;
    height: 100%;
    overflow-x: hidden;
    color: #222B45;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

h1 {
    font-size: 48px;
    line-height: 62px;
    color: #222B45;
}

h2,
h3 {
    font-size: 36px;
    line-height: 48px;
    color: #222B45;
}

h5 {
    font-size: 20px;
    line-height: 28px;
    color: #222B45;
}

h4 {
    font-size: 24px;
    line-height: 32px;
    color: #222B45;
}

h6 {
    font-size: 18px;
    line-height: 26px;
    color: #222B45;
}

hr {
    background-color: rgba(0, 0, 0, 0.26);
}

.text-primary {
    color: var(--colorPrimary) !important;
}

.instagram {
    color: #4b89ac;
}

.btn-instagram {
    background: rgba(15, 17, 122, 0.16);
    color: var(--colorPrimary);
    display: inline-flex;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn-instagram .lnir {
    font-size: 26px;
    margin-right: 10px;
}

.btn-instagram:hover {
    background: #4b89ac;
    color: #fff;
}

a,
.nav-link {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover,
.nav-link:hover {
    color: var(--colorPrimary);
}

.active,
a.active {
    color: var(--colorPrimary);
    font-weight: 700;
}

.navbar-brand img {
    width: 32px;
}

/* Navbar responsive */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
    box-shadow: none;
}

.navbar-toggler {
    height: 45px;
    position: relative;
}

.navbar-toggler span {
    display: block;
    background-color: #000;
    height: 2px;
    width: 25px;
    margin-top: 6px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
    -webkit-transition: transform 0.35s ease-in-out;
    -moz-transition: transform 0.35s ease-in-out;
    -o-transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--colorPrimary);
}

.dropdown-menu {
    min-width: 16rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.chev-top {
    border: none;
}

.chev-top::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: white;
    top: -16px;
    left: 28%;
    z-index: 4;
}

.dropdown-icon {
    width: 34px;
}

.btn {
    /* border-radius: 14px; */
    font-size: 15px;
    font-weight: 600;
    /* min-width: 166px; */
    padding: 0.675rem 0.75rem;
    transition: 300ms ease-in-out all;
}

.btn-primary {
    background-color: var(--buttonPrimary);
}

.btn-primary:hover, .btn-primary:active {
    background-color: #141f69;
    border-color: #0c134e;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: #0E185F;
    border-color: #0E185F;
}


.btn-link:hover {
    background-color: #eef1ff;
}

.btn-secondary {
    color: #222B45;
    background-color: #D9E4FF;
    border-color: #D9E4FF;
}

.btn-secondary:hover {
    color: #222B45;
    background-color: #e5ebf8;
    border-color: #e5ebf8;
}

.primary-bg {
    background-color: var(--PrimaryBgColor);
}

.secondary-bg {
    background-color: #eeebeb;
}

.form-label,
label {
    font-weight: 500;
    cursor: pointer;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    background-color: #fbfbfb;
}

.form-check-input:checked {
    background-color: #fff;
    border-color: #0f117a;
}

.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%230f117a'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230F117A' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.oty-check .form-check-label span:nth-child(1),
.oty-check .form-check-label span:nth-child(2) {
    min-width: 52px;
    display: inline-block;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.m-top {
    margin-top: 122px;
}

.color-box {
    border-color: rgba(0, 0, 0, 0.16);
    border-radius: 50% !important;
    position: relative;
}

.color-box.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNkMWQxZDEiIHN0cm9rZS13aWR0aD0iMiIgZD0ibTYgMTMgNC4yIDMuNkwxOCA3Ii8+PC9zdmc+");
    border-color: rgba(0, 0, 0, 0.16);
}

.color-box.form-check-input:checked[type="checkbox"]::after {
    /* content: ""; */
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 3px solid #0f117a;
    display: block;
    margin: -5px -4.5px;
}

.fixednav {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    animation: smoothScroll 0.9s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0px);
    }
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #0f117a;
}

section,
footer,
.container-fluid {
    max-width: 1530px;
    margin: 0 auto;
    position: relative;
}

.font-15 {
    font-size: 15px;
}

.font-14 {
    font-size: 14px;
}

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

.font-12 {
    font-size: 12px;
}

.font-10 {
    font-size: 10px;
}

.fw-semibold {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

.rounded-24 {
    border-radius: 24px;
}

.rounded-12 {
    border-radius: 12px;
}

.form-control, .form-select {
    background-color: #F7F9FC;
    border: 1px solid #E4E9F2;
}

input[type=file]::-webkit-file-upload-button, input[type=file]::file-selector-button {
    visibility: hidden;
    display: none;
}

/* Home page Css */

/* Home page Hero Section Start */
.hero-bnr {
    background-image: url("../images/vector.svg"), linear-gradient(to right, #0E185F, #0E185F);
    ;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-img {
    position: relative;
    right: -10%;
}

/* Home page Hero Section end */

/* Custom stickers, labels, mailers, apparel START*/
/* .stickers-grid {
    background-color: #fcfcfc;
} */

.cstmstic a {
    display: block;
    transition: all 500ms ease-in-out;
    border-radius: 4px;
    padding: 10px 0;
}

.cstmstic img.img-fluid {
    transition: all 500ms ease-in-out;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 4px;
}

.cstmstic a:hover {
    transform: scale(1.1);
}

/* Custom stickers, labels, mailers, apparel END */

/* Video section START */
.video-bg {
    background: url("../images/video-bg.png");
    background-position: center 20px;
    background-repeat: no-repeat;
    height: 925px;
}

.video-bg video {
    width: 100%;
    /* height: 545px; */
    border-radius: 14px;
    box-shadow: 0px 30px 60px -1px rgba(15, 17, 122, 0.36);
    -webkit-box-shadow: 0px 30px 60px -1px rgba(15, 17, 122, 0.36);
    -moz-box-shadow: 0px 30px 60px -1px rgba(15, 17, 122, 0.36);
}

.home-video .video {
    border-radius: 24px;
    cursor: pointer;
}

.playpause {
    background-image: url("../images/play-circle.png");
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.playpause:hover {
    filter: drop-shadow(0px 20px 20px #000);
    transform: scale(1.1);
}

/* New player CSS */


/* Video section END */

/* A simple ordering process START*/
.odrprocess::before {
    content: "";
    border-top: 1px dashed #4a61e5;
    width: 80%;
    position: absolute;
    right: -20px;
    top: 38px;
}

.odrprocess::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 15px;
    height: 15px;
    background: var(--colorPrimary);
    clip-path: polygon(0 10px,
            calc(100% - 15px) 10px,
            calc(100% - 15px) 0,
            100% 50%,
            calc(100% - 15px) 100%,
            calc(100% - 15px) calc(100% - 10px),
            0 calc(100% - 10px));
    top: 30.5px;
    right: 30%;
}

/* A simple ordering process END*/

/* Home page Css end */

/* Sticker detail page CSS START */
.options-box {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

.product-bg {
    position: absolute;
    top: 150px;
    z-index: -1;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: auto;
    /* transform: translateY(25%); */
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Sticker detail page CSS END */

/* Login Signup page CSS START */
.loginsignup {
    background-image: url("../images/container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--colorPrimary);
    /* height: calc(100vh - 120px); */
    min-height: calc(100vh - 120px);
}

.loginform {
    background: #ffffff;
    border-radius: 16px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.separation {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: inline-table;
    top: -13px;
    background: #fff;
    padding: 0 8px;
}

/* Login Signup page CSS END */
/* Forgot Pass & contact form*/
.halfblue {
    background: var(--colorPrimary);
    position: relative;
    min-height: calc(100vh - 120px);
}

.halfblue::before {
    content: "";
    position: absolute;
    background-color: #e1e1e1;
    height: calc(100% - 55%);
    bottom: 0;
    width: 100%;
}

.fileuploadbtn {
    background: #f36c7d;
    color: #fff;
}

#file-chosen {
    border-radius: 4px;
}

.fileuploadbtn,
#file-chosen {
    padding: 0.4rem 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fileuploadbtn:hover {
    background: #ee4b61;
    color: #fff;
}

/* Forgot Pass & contact form*/
/* Custom megnet */
.formup {
    position: relative;
    bottom: 65px;
}

.quantitylist {
    max-height: 270px;
}

/* Custom megnet */

/* Footer CSS */
.subscription .form-control {
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    height: 48px;
    border-color: #fff;
}

.subscription .btn {
    height: 48px;
    position: relative;
    right: 30px;
}

.social {
    height: 130px;
}

/* Cart page CSS */
.cart-img,
.cart-img img {
    min-width: 72px;
    width: 72px;
    min-height: 72px;
    height: 72px;
    border-radius: 12px;
}

.cart-input {
    max-width: 25%;
}

.cart-table thead th {
    font-weight: 500;
    font-size: 15px;
}

.cart-table thead,
.empty-line {
    height: 48px;
    vertical-align: middle;
}

/* Checkout form page CSS START */
.summarybox {
    position: fixed;
    width: 338px;
    bottom: calc(100vh - 470px);
}

.order-summary {
    border-radius: 16px;
}

.coupan-btn {
    min-width: auto;
}

/* FAQS Page CSS START */
.accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button {
    color: #000000;
    font-weight: 600;
    border-radius: 16px;
}

.faq-accordion.accordion-flush .accordion-item .accordion-button,
.faq-accordion.accordion-flush .accordion-item {
    border-radius: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: none;
    color: #000000;
    font-weight: 600;
}

.faq-accordion .accordion-body {
    padding-top: 0;
}

/* FAQS Page CSS END */

/* Vinly lettering CSS START*/
.vinlybg {
    background-image: url("../images/vinly-bg.png");
}

:focus-visible {
    outline: none;
}

/* Vinly lettering CSS END*/

/* select 2 CSS */
.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

/* shipping time */
/* .dev-calendar {
    width: 156px;
} */

.delivery-card {
    border-color: var(--bs-light) !important;
    background-color: #EDF1F7 !important;
    cursor: pointer;
    width: 160px;
    transition: 500ms ease all;
}

.delivery-card .btn-outline-success {
    background-color: #F0FFF5 !important;
    color: var(--bs-success) !important;
}

.delivery-card .btn-outline-danger {
    --bs-bg-opacity: 0.1;
    background-color: #FFFDF2 !important;
    color: var(--bs-danger) !important;
}

.delivery-card .btn-outline-success:hover,
.delivery-card .btn-outline-danger:hover {
    pointer-events: none;
}

.delivery-card:hover {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-check:checked+.delivery-card {
    background-color: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}

.pricecardfixed .bg-secondary {
    background-color: #EDF1F7 !important;
}

.pricecardfixed .bg-secondary table tr td {
    vertical-align: top;
}

/* shipping time END */

/* Dashboard CSS */
.orderinfo-img img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

/* Navtabs */
:focus-visible {
    outline: none;
}

.nav-tabs .nav-link {
    color: var(--bs-primary);
    opacity: 0.7;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 4px solid transparent;
    transition: 300ms ease-in-out all;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--bs-primary);
    opacity: 1;
    box-shadow: none !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-bottom: 4px solid #002424;
    color: var(--bs-primary);
    opacity: 1;
}

/* Dashboard END */

/* Responsive CSS START */
@media (min-width: 991px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .my-6 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
}

@media (min-width: 767px) {
    .pricecardfixed {
        top: 60px;
        position: sticky;
        display: flex;
        align-self: flex-start;
        z-index: 1;
        transition: 300ms ease-in-out all;
    }
}

@media (max-width: 992px) {
    .hero-img {
        right: 0;
    }

    .odrprocess::before,
    .odrprocess::after {
        content: none;
    }

    .video-bg {
        height: 790px;
    }

    .table-border {
        border-right: none !important;
    }

    .summarybox {
        width: 290px;
    }

    .navbar-collapse {
        position: absolute;
        background: rgb(255, 255, 255);
        left: 0px;
        right: 0px;
        width: 100vw;
        height: calc(100vh - 50px) !important;
        top: 50px;
        text-align: center;
        line-height: 44px;
        padding: 12px 0px;
        font-size: 24px !important;
        transition: 300ms ease-in-out all;
        transform: scale(0);
        z-index: 100;
        overflow-y: scroll;
    }

    .navbar-collapse.collapse.show {
        transform: scale(1);
    }

    .navbar-nav .dropdown-menu {
        text-align: center;
    }

    .social {
        height: auto;
    }
}

@media (max-width: 768px) {

    /* h1,
    h2,
    h3 {
        font-size: 36px;
        line-height: 60px;
    } */

    .video-bg {
        height: 660px;
    }

    .cstmstic img.img-fluid {
        /* border: 1px solid rgba(0, 0, 0, 0.212); */
        border-radius: 14px;
    }

    .cart-input {
        max-width: 50%;
    }

    .empty-line {
        height: 0;
    }

    .summarybox {
        position: unset;
        width: 100%;
    }

    .product-bg {
        position: static;
    }

    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    h2, h3 {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .subscription .btn {
        right: 0;
        width: 100%;
    }

    /* h1,
    h2,
    h3 {
        font-size: 30px;
        line-height: 38px;
    } */

    .video-bg {
        height: 450px;
    }

    .fileuploadbtn {
        width: 100%;
    }

    .cart-input {
        max-width: 100%;
        width: 60px;
    }

    .m-top {
        margin-top: 100px;
    }
}
