body {
    font-family: Arial, sans-serif;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}
.checkoutStepNumber {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wowCheckbox {
    display: none;
}
.wowCheckboxLabel {
    position: relative;
    padding-left: 30px;
    user-select: none;
}
.wowCheckboxLabel::before {
    cursor: pointer;
    position: absolute;
    left: 0;
    opacity: 1;
    content: "\e902";
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    font-size: 12px;
    width: 20px;
    height: 20px;
}
.wowCheckbox:checked + .wowCheckboxLabel::before {
    background: black;
}
.checkoutEditBtn {
    font-size: 13px;
    position: relative;
    cursor: pointer;
}
.checkoutStep1TabHolder label{
    margin-bottom: 5px;
}
.checkoutHeader {
    margin-bottom: 10px;
    border-bottom: 1px solid gray;
}
.shippingServiceHolder {
    -webkit-box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
    -moz-box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
    box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
}
.wowTabButton {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    -webkit-box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
    -moz-box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
    box-shadow: 0px 0px 17px 2px rgba(194,194,194,1);
}
.wowTabButton.active {
    border: 2px solid black;
}
.wowTabButton:hover {
    background-color: #000;
    color: #fff;
}

.formRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}
.formRow > * {
    width: 100%;
}
.formGroup {
    display: flex;
    flex-direction: column;
    width: 49%;
}
.checkoutCartContainer {
    padding: 30px;
    background-color: #f6f6f6;
}
.fullWidth {
    width: 100%;
}
.formControl {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #666;
    /* Fix iOS Safari rounded borders */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
}
.formGroup.invalid .formControl {
    border: 1px solid #660303;
}
.formControlErrorMessage {
    /*display: none;*/
}
.formGroup.invalid .formControlErrorMessage {
    display: block;
}
.formCheck {
    margin-right: 10px;
}
.togglePassword, .wowEmailInput {
    position: relative;
}
.togglePassword .icon_key, .wowEmailInput .icon_email {
    position: absolute;
    width: 20px;
    height: 20px;
    object-fit: contain;
    left: 30px;
    top: 10px;
}
.togglePassword .toggleIcon {
    position: absolute;
    height: 100%;
    z-index: 2;
    width: 36px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.checkoutStep1TabContent {
    display: none;
}

.checkoutStep1TabContent.active {
    display: block;
}

.fieldGroup {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
}

.fieldGroup.show {
    max-height: 300px;
    opacity: 1;
}

.wowRadioInput {
    display: none;
}
.wowRadio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid black;
    border-radius: 50%;
}
.checkoutDivider {
    display: none;
    margin-bottom: 20px;
    margin-left: -20px;
    width: calc(100% + 40px);
    height: 1px;
    background: gray;
}
.finishCheckoutBtn {
    padding: 20px;
    max-width: none;
}
.shippingServiceHolder.active .checkoutDivider {
    display: block;
}
.parcelMachineSelector {
    width: calc(100% - 40px);
    margin-left: 40px;
    padding: 10px;
    margin-bottom: 20px;
}
.shippingServiceHolder {
    padding: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(224,224,224,1);
    -moz-box-shadow: 0px 0px 8px 2px rgba(224,224,224,1);
    box-shadow: 0px 0px 8px 2px rgba(224,224,224,1);
}
.shippingServiceHolder.active {
    border: 2px solid black;
}
.shippingHeaderLabel, .parcelMachineLabel {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    cursor: pointer;
}
.shippingTitle, .parcelMachineTitle {
    font-weight: 600;
    color: black;
}
.wowShipLogo {
    background-position: center;
    margin-left: 15px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}
.wowShipLogo.parcelMachine {
    width: 20px;
    height: 20px;
}

.wowRadio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    display: none;
}
.wowRadio.initActive::after {
    display: block;
}
input[type="radio"]:checked + .wowRadio::after {
    display: block;
}

.pmMachineLogo {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}
.shippingServiceContent, .parcelMachineContent {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.shippingServiceContent.show, .parcelMachineContent.show {
    display: block;
    max-height: 500px;
}
.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

