.fcwc-checkout-widget {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fcwc-checkout-wrapper {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    padding: 40px 20px;
    box-sizing: border-box;
}

.fcwc-checkout-close {
    position: absolute;
    border-bottom: none;
    color: black;
    font-size: 20px;
    right: 35px;
    top: 9px;
    opacity: 1;
    cursor: pointer;
    padding: 0;
}

.fcwc-checkout-parts {
    margin-top: 15px;
}

.fcwc-checkout-inner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fcwc-checkout-inner-wrapper .fcwc-checkout-col {
    width: calc(50% - 10px);
}

.fcwc-checkout .fcwc-billing-details input, .fcwc-checkout .fcwc-shipping-details input,
.fcwc-billing-details select, .fcwc-shipping-details select,
.fcwc-billing-details textarea, .fcwc-shipping-details textarea{
    width: 100%;
    background-color: transparent;
    border: 1px solid #808080;
    box-shadow: none;
    padding: 10px;
}

.fcwc-checkout #ship-to-different-address{
    vertical-align: middle;
}

.fcwc-checkout #fcwc-ship-to-different-address-checkbox{
    width: auto;
    border: 1px solid #808080;
}

.fcwc-checkout .fcwc-billing-details label,
.fcwc-checkout .fcwc-shipping-details label{
    font-size: 18px;
    color: #141414;
}

.fcwc-billing-details h3,
.fcwc-shipping-details #ship-to-different-address label span,
#fcwc_order_review_heading{
    font-size: 24px;
    font-weight: 500;
}

.fcwc-checkout #payment #fcwc_place_order{
    white-space: nowrap;
}


/*  Set scroll in checkout form  */

.fcwc-checkout .fcwc-checkout-wrapper {
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.fcwc-checkout .fcwc-checkout-inner-wrapper {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.fcwc-checkout .fcwc-checkout-col {
    height: 100vh;
    overflow-y: auto;
    padding: 0 32px 85px 32px;
}

.fcwc-checkout .fcwc-checkout-col::-webkit-scrollbar {
    width: 3px;
}

.fcwc-checkout .fcwc-checkout-col::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.fcwc-checkout .fcwc-checkout-col::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

/*  checkout scroll end */

.fcwc-payment-details .woocommerce-error {
    margin: 10px 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.fcwc-checkout .woocommerce-shipping-totals th{
    display: table-cell;
}

.fcwc-checkout .woocommerce-shipping-totals td:before{
    display: none;
}

.fcwc-checkout #fcwc_checkout_shipping_method{
    list-style: none;
    margin: 0;
    padding: 0;
}

@media(max-width: 768px){
    .fcwc-checkout-inner-wrapper .fcwc-checkout-col{
        width: 100%;
        height: 40vh;
        padding: 15px;
    }
}