
.wprelay-pbar-container {
    border: 1px solid inherit;
    border-radius: 5px;
    width: 60%;
    margin: auto auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;

    /*!*remove below*!*/
    /*border: 1px solid red;*/
}

.wprelay-pbar-fields-container {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /*remove below*/
    /*border: 1px solid blue;*/

}

.wprelay-pbar-container .wprelay-pbar-overview-container {

    /*//remove below*/
    /*border: 1px solid chartreuse;*/
}

.wprelay-pbar-container .wprelay-pbar-overview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wprelay-pbar-container .wprelay-pbar-overview-container .wprelay-pbar-overview-title {
    font-size: 2rem;
}

.wprelay-pbar-container .wprelay-pbar-overview-container .wprelay-pbar-overview-description {
    font-size: 1rem;
    /*text-align: center;*/
}

.wprelay-pbar-container .wprelay-pbar-input-fields-wrapper {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    /*remove this*/
    /*border: 1px solid skyblue;*/
}

.wprelay-pbar-input-container input, select {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.wprelay-pbar-container .wprelay-pbar-submit-button-wrapper button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;;
    gap: 20px;
    min-width: 200px;
}

.wprelay-pbar-container .wprelay-pbar-input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;

    /*//remove below*/
    /*border: 1px solid navajowhite;*/
}

.wprelay-pbar-container .wprelay-pbar-input-container .wprelay-pbar-label {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
}

.wprelay-pbar-container .wprelay-pbar-button-container {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*border: 1px solid blueviolet;*/
    /*padding: 0.5rem;*/
}

.wprelay-pbar-container .wprelay-pbar-button-container .wprelay-pbar-button {
    text-align: center;
    background-color: black;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    width: max-content;
    align-items: center;
}

/* Confirmation Page */
.wprelay-pbar-container .wprelay-pbar-confirmation-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;

    /*//remove below*/
    /*border: 1px solid deeppink;*/
}

.wprelay-pbar-container .wprelay-pbar-confirmation-container .wprelay-pbar-confirmation-icon {
    width: 250px;
    margin: auto;
}

.wprelay-pbar-container .wprelay-pbar-confirmation-container .wprelay-pbar-confirmation-header {
    text-align: center;
    font-size: 2rem;
}

.wprelay-pbar-container .wprelay-pbar-confirmation-container .wprelay-pbar-confirmation-body {
    text-align: center;
    font-size: 1rem;
}

/*//Page Specific*/
.wprelay-pbar-fields-container.hide {
    display: none;
}

.wprelay-pbar-container .wprelay-text-danger {
    color: red;
    margin: 0 !important;
}

#wprelay-registration-block > #confirmation-block {
    width: 100%;
}

#wprelay-registration-block #confirmation-block.hide {
    display: none;
}

.wprelay-mandatory-field {
    color: red;
}

.wprelay-loader {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: relative;
    animation: wprelayRotate 1s linear infinite
}

.wprelay-loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 100%;
    border: 5px solid #FFF;
    animation: wprelayPrixClipFix 2s linear infinite;
}

@keyframes wprelayRotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes wprelayPrixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}