    /*
** Express COD Checkout v1.0.0
** [1] - Quantity input
** [2] - Buy button loading Animation
** [3] - Form wrapper
** [4] - Form inputs
** [5] - Form BUTTON
** [6] - Form alerts
** [7] - Form label
** [8] - customizer sidebar
*/
    
     :root {
        --expcod-main-color: #aa2e62;
    }
    
    @font-face {
        font-family: 'Droid Arabic Kufi';
        font-style: normal;
        font-weight: 400;
        src: url(droidarabickufi/DroidKufi-Regular.ttf) format('truetype');
    }
    /* 
** [1] - Quantity input
** Start quantity input
*/
    
    .expcod-quantity-input .quantity {
        width: 100;
        height: 100%;
        min-width: 100%;
        font-size: 13px;
    }
    
    .expcod-quantity-input .quantity i {
        font-size: 13px !important;
    }
    
    .quantity_increamenter {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%
    }
    
    .quantity_increamenter>div {
        background-color: #f0f0f0;
        width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 7px;
        cursor: pointer;
        height: 35px;
        padding: 20px;
    }
    
    .quantity_increamenter>input {
        width: 40%;
        text-align: center;
        border: none;
        outline: none;
    }
    
    input[type=text].woodokan-quantity-input {
        display: block;
        border: none;
        outline: none;
        padding: 0;
        background-color: initial;
        box-shadow: unset;
    }
    
    @media (min-width: 767px) {
        [dir=ltr] .expcod-quantity-input {
            padding-right: 0;
        }
        [dir=rtl] .expcod-quantity-input {
            padding-left: 0;
        }
    }
    /* 
** [2] - Buy button loading Animation 
** Start Loading Animation 
*/
    
    .lds-spinner {
        color: official;
        display: inline-block;
        position: relative;
        width: 30px;
        height: 30px;
        transform: scale(.3);
        margin-top: -9px;
    }
    
    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }
    
    .lds-spinner div:after {
        content: " ";
        display: block;
        position: absolute;
        top: 3px;
        left: 37px;
        width: 6px;
        height: 18px;
        border-radius: 20%;
        background: #fff;
    }
    
    .lds-spinner div:nth-child(1) {
        transform: rotate(0deg);
        animation-delay: -1.1s;
    }
    
    .lds-spinner div:nth-child(2) {
        transform: rotate(30deg);
        animation-delay: -1s;
    }
    
    .lds-spinner div:nth-child(3) {
        transform: rotate(60deg);
        animation-delay: -0.9s;
    }
    
    .lds-spinner div:nth-child(4) {
        transform: rotate(90deg);
        animation-delay: -0.8s;
    }
    
    .lds-spinner div:nth-child(5) {
        transform: rotate(120deg);
        animation-delay: -0.7s;
    }
    
    .lds-spinner div:nth-child(6) {
        transform: rotate(150deg);
        animation-delay: -0.6s;
    }
    
    .lds-spinner div:nth-child(7) {
        transform: rotate(180deg);
        animation-delay: -0.5s;
    }
    
    .lds-spinner div:nth-child(8) {
        transform: rotate(210deg);
        animation-delay: -0.4s;
    }
    
    .lds-spinner div:nth-child(9) {
        transform: rotate(240deg);
        animation-delay: -0.3s;
    }
    
    .lds-spinner div:nth-child(10) {
        transform: rotate(270deg);
        animation-delay: -0.2s;
    }
    
    .lds-spinner div:nth-child(11) {
        transform: rotate(300deg);
        animation-delay: -0.1s;
    }
    
    .lds-spinner div:nth-child(12) {
        transform: rotate(330deg);
        animation-delay: 0s;
    }
    
    @keyframes lds-spinner {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    /*
** [3] - Form wrapper
** Start form wrapper
*/
    
    .express-cod-checkout-wrapper {
        /* display: none; */
        position: relative;
    }
    
    .entry-summary .express-cod-checkout-wrapper {
        display: block;
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form {
        margin-top: var(--expcod-form-marginTop);
        margin-bottom: var(--expcod-form-marginBottom);
        border-color: var(--expcod-form-borderColor);
        border-width: var(--expcod-form-borderWidth);
        border-radius: var(--expcod-form-borderRadius);
        padding: var(--expcod-form-padding);
        border-style: var(--expcod-form-borderType);
    }
    
    .express-cod-checkout-wrapper *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    /*
** [4] - Form input
** Start form inputs
*/
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .exp-cod-input-label {
        margin-bottom: 8px;
        display: var(--expcod-label-display);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form select,
    .express-cod-checkout-wrapper .express-cod-checkout-form .variations select,
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=text],
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=email],
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=tel] {
        font-family: 'Droid Arabic Kufi', sans-serif;
        border-style: solid;
        transition: .3s ease-in-out;
        padding: 10px;
        width: 100%;
        display: block;
        outline: none;
        box-shadow: none;
        border-width: var(--expcod-inp-border-width);
        border-color: var(--expcod-inp-border-color);
        height: var(--expcod-inp-height);
        border-radius: var(--expcod-inp-border-radius);
        background-color: var(--expcod-inp-bg-color);
        color: var(--expcod-txt-color);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .variations select:focus,
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=text]:focus,
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=email]:focus,
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input[type=tel]:focus,
    .express-cod-checkout-wrapper .express-cod-checkout-form select.expcod-input:focus {
        box-shadow: 0 5px 20px 0 #0000000d;
        border-color: var(--expcod-inp-borderColor-onfocus);
        border-width: var(--expcod-inp-borderWidth-onfocus);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-input::placeholder {
        font-size: var(--expcod-placeholder-fontSize);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form {
        font-family: 'Droid Arabic Kufi', sans-serif;
    }
    
    .variations select {
        margin-bottom: 20px;
    }
    
    .reset_variations {
        display: none;
    }
    
    .woocommerce-variation-price {
        display: none;
    }
    /*
** [5] - Form button
** Start form button
*/
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buyNow-text {
        color: var(--expcod-buyNow-txtColor);
        font-size: var(--expcod-buyNow-fontSize);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buy-now-btn {
        width: 100%;
        position: relative;
        border-style: solid;
        transition: .3s ease-in-out;
        font-family: 'Droid Arabic Kufi', sans-serif;
        background-color: var(--expcod-buyNow-bgColor);
        border-color: var(--expcod-buyNow-borderColor);
        border-width: var(--expcod-buyNow-borderWidth);
        height: var(--expcod-buyNow-height);
        border-radius: var(--expcod-inp-border-radius);
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buy-now-btn:hover .expcod-buyNow-text {
        color: var(--expcod-buyNow-color-onhover)
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .disabled {
        opacity: .7;
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buy-now-btn:hover {
        background-color: var(--expcod-buyNow-bgColor-onhover);
        text-decoration: none;
    }
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .expcod-button-loading {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    
    .expcod-brn-loader-animation {
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%
    }
    /*
** [6] - Form alerts
** Start form alerts
*/
    
    .codexp-success-message {
        border: 1px solid green;
        padding: 5px;
        border-radius: 3px;
        color: green;
        background-color: #00968805;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: none;
        opacity: 1;
    }
    
    .codexp-error-message {
        border: 1px solid red;
        padding: 23px;
        border-radius: 3px;
        color: red;
        background-color: #e91e6312;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        display: none;
        opacity: 1;
    }
    
    .codexp-show-message {
        display: block;
    }
    /*
** [7] - Form label
** Start form label
*/
    
    .express-cod-checkout-wrapper .express-cod-checkout-form .exp-cod-label {
        display: block;
        color: var(--expcod-label-color);
        font-size: var(--expcod-label-fontSize);
        margin-bottom: var(--expcod-label-marginBottom);
        margin-top: var(--expcod-label-marginTop);
        font-weight: var(--expcod-label-fontWeight);
    }
    /*
** [7] - place order form
** Start place order form
*/
    
    .codexpress-checkout-billing {
        background-color: #fcfcfc;
        border: 1px solid #e5e5e5;
        position: relative;
    }
    
    .codexpress-checkout-billing-body {
        padding: 10px;
    }
    
    .codexpress-checkout-billing .codexpress-checkout-card {
        background-color: white;
        width: 100%;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        margin-bottom: 10px;
    }
    
    .codexpress-checkout-billing .codexpress-checkout-card .codexpress-checkout-card-header {
        padding: 10px;
        border-bottom: 1px solid #e5e5e5;
        text-align: center;
    }
    
    .codexpress-checkout-billing .codexpress-checkout-card .codexpress-checkout-card-body {
        padding: 10px;
    }
    
    .codexpress-checkout-billing .codexpress-checkout-card .codexpress-checkout-card-body table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #e5e5e5
    }
    
    .codexpress-checkout-card-body table td,
    .codexpress-checkout-card-body table th {
        padding: 5px;
        text-align: left;
        border: 1px solid #e5e5e5
    }
    
    .shipping-info {
        display: flex;
        justify-content: space-between;
    }
    
    .shipping-info h5 {
        margin: 0;
        display: inline-block
    }
    
    .shipping-info p {
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .codexpress-checkout-card-footer {
        padding: 10px;
        border-top: 1px solid #e5e5e5;
    }
    
    .codexpress-checkout-card-footer a {
        text-decoration: underline;
        font-size: 13px;
        color: #03a9f4;
    }
    
    .codexpress-checkout-billing-footer {
        padding: 10px;
        background-color: white;
        border-top: 1px solid #e5e5e5;
        position: sticky;
        bottom: 0;
    }
    
    .codexpress-checkout-billing-footer button {
        width: 100%;
        padding: 15px;
        background-color: var(--expcod-buyNow-bgColor);
        color: white;
        border: none;
        outline: none;
        border-radius: 3px;
        background-color: var(--expcod-buyNow-bgColor);
        border-color: var(--expcod-buyNow-borderColor);
        border-width: var(--expcod-buyNow-borderWidth);
        height: var(--expcod-buyNow-height);
        border-radius: var(--expcod-inp-border-radius);
        min-height: 57px;
    }
    
    .codexpress-checkout-billing-footer button:hover {
        background-color: var(--expcod-buyNow-bgColor-onhover);
        color: var(--expcod-buyNow-color-onhover);
    }
    
    .order-summary-detail {
        display: flex;
        justify-content: space-between;
    }
    
    .order-summary-detail p {
        margin-bottom: 5px;
    }
    
    .total-box {
        padding: 7px;
        border: 2px solid var(--expcod-buyNow-bgColor);
        border-radius: 3px;
        justify-content: center;
    }
    
    .total-box p {
        margin: 0 10px;
    }
    
    .expcod-loading-btn-animation {
        display: none;
    }
    
    #expcod-checkout {
        display: none;
    }
    /*
** [08] Start Cod express customize form in front end 
** Customizer sidebar 
**/
    
    .codexp-customizer {
        width: 300px;
        background-color: #fcfcfc;
        height: 100vh;
        /* border: 1px solid #e5e5e5; */
        box-shadow: 0 5px 20px 0 rgb(0 0 0 / 5%);
        position: fixed;
        z-index: 9999;
        top: 30px;
        font-family: 'Droid Arabic Kufi', sans-serif;
        font-size: 13px;
        transition: .5s ease-in-out;
        display: none;
    }
    
    .codexp-customizer>* {
        box-sizing: border-box;
    }
    
    .codexp-customizer .inner {
        padding: 20px;
        height: 100%;
        overflow: scroll;
        padding-bottom: 100px;
    }
    
    .codexp-customizer .inner::-webkit-scrollbar {
        width: 10px;
        border-radius: 5px;
    }
    
    .codexp-customizer .inner::-webkit-scrollbar-track {
        border-radius: 5px;
    }
    
    .codexp-customizer .inner::-webkit-scrollbar-thumb {
        background: #00000034;
        border-radius: 5px;
        position: absolute;
        left: 0;
    }
    
    .codexp-customizer-card {
        background: white;
        width: 100%;
        border: 1px solid #e5e5e5;
        margin-bottom: 20px;
    }
    
    .codexp-customizer-card-header {
        padding: 10px;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .codexp-customizer-card-body {
        padding: 20px;
    }
    
    .codexp-customizer-card-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .codexp-customizer-card-body ul li {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
    }
    
    .codexp-customizer-card-body ul li input[type=number] {
        padding: 5px;
        width: 58px;
    }
    
    .codexp-customizer-card-body ul li select {
        padding: 5px;
    }
    
    .codexp-customizer-card-body ul li div.value {
        text-align: center;
    }
    
    .codexp-customizer .customize-footer {
        width: 100%;
        background-color: white;
        padding: 10px;
        border: 1px solid #e5e5e5;
        position: sticky;
        bottom: 0;
    }
    
    .codexp-customizer .customize-header {
        width: 100%;
        background-color: var(--expcod-main-color, #5c4b77);
        padding: 10px;
        /* border: 1px solid #e5e5e5; */
        color: white
    }
    
    .codexp-customizer .customize-footer button {
        width: 100%;
        padding: 10px;
        background: var(--expcod-main-color, #5c4b77);
        color: white;
        border: none;
        outline: none;
        border-radius: 3px;
        font-size: 15px;
        text-decoration: none;
        cursor: pointer;
        text-transform: capitalize;
    }
    
    .codexp-color-picker input[type=color] {
        border: 1px solid gray;
        display: inline-block;
        padding: 3px;
        background: white;
        width: 58px;
    }
    
    #wp-admin-bar-codexpress-menu.codexpress-top-link {
        background-color: var(--expcod-main-color, #5c4b77);
        transform: .3s ease-in-out;
        color: white;
    }
    
    .customize-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cod-customizer-aside-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cod-customizer-aside-toggle div {
        border: 1px solid #ffffff42;
        margin: 0 5px;
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
        cursor: pointer;
        display: none;
        transition: .3s ease-in-out;
    }
    
    .cod-customizer-aside-toggle div:hover {
        background: white;
        color: var(--expcod-main-color, #5c4b77);
    }
    
    .cod-customizer-aside-toggle #cod-customizer-hide {
        display: flex;
    }
    
    .edit-codexpress-style {
        display: inline-block;
        padding: 10px;
        border: 1px solid var(--expcod-main-color, #5c4b77);
        color: var(--expcod-main-color, #5c4b77);
        font-style: 13px;
        position: absolute;
        top: 0;
        font-size: 13px;
        padding: 5px 10px;
        border-radius: 3px;
        right: 0;
    }
    
    [dir=rtl] .edit-codexpress-style {
        right: unset;
        left: 0;
    }
    
    .edit-codexpress-style:hover {
        background-color: var(--expcod-main-color, #5c4b77);
        color: white;
    }
    
    .codexp-customizer-footer-overlay {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #ffffffc9;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    
    #quantitiy_input {
        width: 50%
    }
    
    @media (max-width: 767px) {
        .expcod-quantity-input {
            margin-bottom: 15px;
        }
    }
    /**  form label ***/
    
    #woodokan_form {
        position: relative;
        max-width: var(--expcod-form-max-width);
        background-color: var(--expcod-bg-color);
    }
    
    .exp-cod-label {
        width: fit-content;
        /* border: 1px solid black; */
        /* position: absolute;
        top: 0;
        transform: translate(-50%, -50%);
        left: 50%; */
    }
    
    .exp-cod-label {
        text-align: center;
        /* background: white; */
        margin: -53px auto;
        max-width: fit-content;
        padding: 0 20px;
        /* font-size: 18px; */
        /* white-space: nowrap; */
    }
    
    .exp-cod-label {
        text-align: center;
        /* background: white; */
        margin: -53px auto;
        max-width: fit-content;
        padding: 0 20px;
        font-size: 18px;
    }
    
    .order-total-block-body {
        display: none;
    }
    
    .bt-flesh {
        margin-bottom: -5px;
        display: inline-block;
    }
    
    .order-total-block-container {
        width: 100%;
        overflow: hidden;
        border-radius: 5px;
        border: 1px solid #d0d0d0;
        margin-top: 15px;
    }
    
    .order-total-block-header {
        background-color: #eeeeee29;
        margin-top: -5px;
        padding: 10px;
        width: 100%;
        justify-content: space-between;
        display: flex;
        cursor: pointer;
    }
    
    .sum-champ {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }
    
    .sum-champ:not(:last-child) {
        border-bottom: 1px dashed #00000012;
    }
    
    .cart-sum {
        margin: 0 10px;
    }
    
    .wdk_free_shipping {
        color: #ffffff;
        background: #00934b;
        font-size: 13px;
        padding: 0 5px;
        border-radius: 4px;
    }
    
    .wdk_quantity_label {
        background: #1e73be;
        padding: 0 5px;
        height: fit-content;
        border-radius: 2px;
        color: white;
    }
    
    .expcod-quantity-input {
        display: var(--expcod-quantity-input);
    }
    
    .order-total-block-container {
        display: var(--expcod-order-summary);
    }
    
    .order-total-block-body {
        display: var(--expcod-order-default);
        background-color: white;
    }
    
    @keyframes shake-x {
        0% {
            left: 0
        }
        1% {
            left: -3px
        }
        2% {
            left: 5px
        }
        3% {
            left: -8px
        }
        4% {
            left: 8px
        }
        5% {
            left: -5px
        }
        6% {
            left: 3px
        }
        7% {
            left: 0
        }
    }
    
    .wdk-shaked {
        animation: shake-x 5s ease infinite !important;
    }
    
    .wdk-shaked:hover {
        animation: none;
    }
    /* start sticky button */
    
    .woodokan-sicky-buy-btn {
        width: 100%;
        height: 70px;
        position: fixed;
        bottom: -100%;
        background-color: white;
        z-index: 9999;
        display: var(--expcod-sticky-button);
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: -100%;
        width: 100%;
        z-index: 10;
        background-color: #fff;
        padding: 10px 0;
        text-align: center;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0px 0px 14px 0px #00000021;
        transition: .5s ease-in-out;
    }
    
    .wdk-sticky {
        background-color: blue;
        color: white;
        text-decoration: none;
        width: auto;
        padding: 10px 100px;
        text-align: center;
        border-radius: 5px;
        position: relative;
        display: inline-block;
        padding: 0 100px;
        animation: shake-x 4s ease infinite;
        width: auto;
        height: 45px;
        font-size: 15px;
        line-height: 45px;
        color: #fff;
        background-color: #5b4ebb;
        border-radius: 4px;
    }
    
    @media (max-width: 767px) {
        .wdk-sticky {
            width: 90%
        }
    }
    
    @keyframes shake-x2 {
        0%,
        100% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        10%,
        30%,
        50%,
        70%,
        90% {
            -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
        }
        20%,
        40%,
        60%,
        80% {
            -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
        }
    }
    
    .wdk-sticky-visible {
        bottom: 0;
    }
    
    .wdk-shaked-sticky {
        animation: shake-x2 5s ease infinite;
    }
    
    .wdk-shaked-sticky:hover {
        animation: none;
    }
    
    .woodokan-sicky-buy-btn .wdk-sticky {
        color: var(--expcod-buyNow-txtColor);
        font-size: var(--expcod-buyNow-fontSize);
        position: relative;
        border-style: solid;
        transition: .3s ease-in-out;
        font-family: 'Droid Arabic Kufi', sans-serif;
        background-color: var(--expcod-buyNow-bgColor);
        border-color: var(--expcod-buyNow-borderColor);
        border-width: var(--expcod-buyNow-borderWidth);
        height: var(--expcod-buyNow-height);
        border-radius: var(--expcod-inp-border-radius);
    }
    
    .woodokan-sicky-buy-btn .wdk-sticky:hover {
        color: var(--expcod-buyNow-color-onhover);
        background-color: var(--expcod-buyNow-bgColor-onhover);
        text-decoration: none;
    }
    /** end sticky button */