/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); */


@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
        url('../fonts/DMSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
        url('../fonts/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
        url('../fonts/DMSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Digital Numbers Regular';
    src: url('../fonts/DigitalNumbers-Regular.woff') format('woff');
    font-style: normal;
    font-weight: normal;
}

* {
    font-family: 'DM Sans', sans-serif !important;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #252525;
}

button {
    border: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.modal-content {
    width: 100%;
    border: none;
    box-shadow: 0px 18px 45px #7773aa1a;
    border-radius: 10px;
}

::selection {
    background: #7166cd;
    color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

@media (max-width: 575px) {
    .col-xs-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .px-xs-0 {
        padding: 0;
    }
}

/***button-animation***/
.btn-drop-blue,
.btn-drop-brown {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    line-height: 18px;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
}
.btn-drop-blue::before,
.btn-drop-blue::after,
.btn-drop-brown::before,
.btn-drop-brown::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-drop-blue::before {
    background: #968ceb;
}

.btn-drop-blue::after {
    background: #7166CD;
}

.btn-drop-brown::before {
    background: #c18f7d;
}

.btn-drop-brown::after {
    background: #AB7765;
}

.btn-drop-blue:hover,
.btn-drop-brown:hover {
    color: #fff !important;
}

.btn-drop-blue:hover::before,
.btn-drop-blue:hover::after,
.btn-drop-brown:hover::before,
.btn-drop-brown:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn-drop-blue:hover::after,
.btn-drop-brown:hover::after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}

.btn-pop {
    position: relative;
    z-index: 1;
    background: #ab7765;
}

.btn-pop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    z-index: -1;
    background: #7166cd;
    transform: translate(-50%, -50%);
    transition: .2s ease-in;
}

.btn-pop:hover::before {
    width: 100%;
    height: 100%;
    transition: .2s ease-in;
}

/******custom check***********/
.check-input {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.check-label {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #7166CD;
    border-radius: 3px;
    transition: 0.2s ease transform, 0.2s ease background-color, 0.2s ease box-shadow;
    overflow: hidden;
    z-index: 1;
}

.check-label::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.2s ease width, 0.2s ease height;
}

.check-label:active {
    transform: translateY(-50%) scale(0.9);
}

.check-custom {
    position: absolute;
    top: 0px;
    right: 1px;
    left: -1px;
    width: 13px;
    height: 13px;
    margin: 0 auto;
    transform: rotateZ(-40deg);
}

.check-custom::before,
.check-custom::after {
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s ease transform, 0.2s ease opacity;
}

.check-custom::before {
    left: 0;
    bottom: 0;
    width: 3px;
    height: 8px;
    box-shadow: -2px 0 5px rgb(0 0 0 / 23%);
    transform: translateY(-68px);
}

.check-custom::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 23%);
    transform: translateX(78px);
}

.check-input:checked~.check-label {
    background-color: #7166CD;
}

.check-input:checked~.check-label::before {
    width: 0;
    height: 0;
}

.check-input:checked~.check-label .check-custom::before,
.check-input:checked~.check-label .check-custom::after {
    transform: translate(0);
    opacity: 1;
}

/****breadcrumb***/

.bread-nav .breadcrumb li,
.bread-nav .breadcrumb li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #6A6A6A;
}

.bread-nav .breadcrumb li.active {
    color: #252525;
}

.title-love {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #110F0F;
}

.title-love-desc {
    color: #8E8E8E;
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
/*******Shimmer*****/
.shimmer {
    background-image: linear-gradient(to left,#ffffff,#e9e6ff 50%,#ffffff );
    background-size: 306px 100%;
    background-position-x: 0;
    animation: spinBackground 1s linear infinite;
    width: 100%;
    height: 100%;
    display: inline-block;
}
@keyframes spinBackground{100%{background-position-x:300px}}

/*********************/
#logout .modal-dialog {
    max-width: 365px;
}

#logout .modal-content .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}


#logout .modal-content .modal-title {
    width: 200px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #0B1A2C;
    margin: 0 auto;
    padding: 20px 0;
}

#logout .modal-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 158.84%;
    text-align: center;
    color: #0B1A2C;
}

#logout .modal-footer {
    justify-content: center;
    border: none;
    gap: 10px;
}

#logout .modal-footer button,#logout .modal-footer a {
    margin: 0;
    width: 48%;
}

#logout .modal-footer .btn-logout {
    background: #7166CD;
    box-shadow: 0px 4px 14px rgba(194, 194, 194, 0.25);
    color: #fff;
}

/***consignee-section****/
.consignee-section {
    width: 100%;
    margin: 230px 0 70px;
}

.consignee {
    width: 100%;
    padding: 60px 40px;
    background: #C5537D;
    box-shadow: 0px 18px 46px rgba(119, 115, 170, 0.1);
    border-radius: 20px;
}

.consignee-left .love-head {
    color: #fff;
    text-align: left;
    font-size: 40px;
}

.consignee-left p {
    width: 75%;
    color: #fff;
}

.consignee-left .convert-consignee {
    width: 168px;
    height: 45px;
    background: #FFF;
    border-radius: 50px;
    color: #252525;
}

.consignee-img {
    width: 330px;
    height: 433px;
    position: absolute;
    bottom: 0;
    right: 98px;
}

.consignee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consignee-img::after {
    content: '';
    position: absolute;
    background: url(../images/rocket-green.png) no-repeat;
    background-size: cover;
    width: 65px;
    height: 75px;
    right: -45px;
    bottom: 20px;
}

.consignee-img::before {
    content: '';
    position: absolute;
    background: url(../images/rocket-white.png) no-repeat;
    background-size: cover;
    width: 200px;
    height: 140px;
    left: -125px;
    bottom: 40px;
}
.supply-section .consignee-img {
    width: 475px;
    height: 370px;
    position: absolute;
    bottom: 0;
    right: 98px;
}
@media only screen and (max-width: 767px) {
    .title-love {
        font-size: 26px;
        line-height: 38px;
    }

    /*******/
    .consignee {
        padding: 30px;
    }

    .consignee-left .love-head {
        font-size: 28px;
    }

    .consignee-left p {
        width: 100%;
    }
    .consignee-img {
        width: 275px;
        height: 350px;
        position: unset;
        margin: 0 auto;
    }
    .supply-section .consignee-img{
        width: 265px;
        height: 200px;
        position: unset;
        margin: 0 auto;
    }
    .consignee-img::before {
        width: 130px;
        height: 90px;
        left: 15px;
        bottom: 40px;
    }

    .consignee-img::after {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .supply-section .consignee-img,
    .supply-section .consignee-img::after,
    .consignee-img,
    .consignee-img::after {
        right: 0;
    }
    .supply-section .consignee-img {
        width: 300px;
        height: 235px;
        top: 15%;
    }
}
label.error{
    font-size: 12px !important;
    color: #f14d59 !important;
    margin-top: 5px;
}
input.error, select.error,textarea.error{
    border-color: #d21034!important;
}


