form.cart + .woocommerce-info:first-of-type {
    margin-top: 1rem;
}
.recurring-selector {
    margin-bottom: 1rem;
    border: 2px solid rgba(129, 129, 129, 0.2);
}

.recurring-selector > .recurring-label-wrapper {
    padding: 1rem;
    margin: 0;
}

.recurring-selector > .recurring-label-wrapper:not(:last-of-type) {
    border-bottom: 2px solid rgba(129, 129, 129, 0.2);
}

.recurring-selector > .recurring-label-wrapper.recurring-label {
    background-color: rgba(39, 161, 188, 0.1);
}

.recurring-dropdown-wrapper {
    padding: 5px;
    background-color: white;
    margin: 10px;
    border: 2px solid rgba(129, 129, 129, 0.2);
}

.recurring-product-wrapper {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.4s ease-out;
    -moz-transition: max-height 0.4s ease-out;
    -ms-transition: max-height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
}

.recurring-product-inner {
    padding-left: 21px;
}

.recurring-product-wrapper.open {
    max-height: 190px;
}

.once-off-product-wrapper {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.4s ease-out;
    -moz-transition: max-height 0.4s ease-out;
    -ms-transition: max-height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
}

.once-off-product-wrapper-inner {
    padding-left: 21px;
}

.once-off-product-wrapper.open {
    max-height: 105px;
}

.wcro-error {
    padding: 1rem 0.8rem;
    background-color: #ffd2be;
    color: #ab3d0f;
    text-align: center;
}

span.recurring-desc {
    display: block;
    margin-left: 21px;
}

#recurring_period {
    margin-bottom: 1rem;
    background-color: white;
}

.product-image-summary .quantity {
    background-color: white;
}
.recurring-order-option-product {
    margin-bottom: 1em;
    padding: 0.4em 1em;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.recurring-order-option-select-wrapper {
    display: none;
}
.loader {
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #dedede;
    border-top-color: #35A5B9;
    animation: loading 0.5s linear infinite;
    margin-top: 5px;
}
.loader.loading {
    display: block;
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

/* AUTOSHIP */
.autoship-frequency .autoship-period {
    display: inline-block;
    margin-bottom: 6px;
}
.autoship-frequency .autoship-period:not(:last-of-type) {
    margin-right: 6px;
}
.autoship-frequency .autoship-period input[type=radio] {
    display: none;
}
.autoship-frequency .autoship-period input[type=radio] + span {
    display: block;
    padding: 0 15px;
    line-height: 30px;
    border: 1px solid rgba(0, 0, 0, .4);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin-bottom: 0.5em;
    font-weight: normal!important;
}
.autoship-frequency .autoship-period input[type=radio] + span:hover {
    color: #26a2bc;
    border-color: #26a2bc;
}
.autoship-frequency .autoship-period input[type=radio]:checked + span {
    color: white;
    background-color: #26a2bc;
    border-color: #26a2bc;
}

.woo-variation-swatches-stylesheet-enabled .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    box-shadow: none !important;
    border: 2px solid rgba(0, 0, 0, .4);
    border-radius: 45px;
    line-height: 45px;
    height: 45px;
    padding: 0 15px;
    font-weight: bold;
}
.woo-variation-swatches-stylesheet-enabled .variable-items-wrapper .variable-item:hover {
    color: #26a2bc;
    border-color: #26a2bc;
}
.woo-variation-swatches-stylesheet-enabled .variable-items-wrapper .variable-item.selected {
    color: white;
    background-color: #26a2bc;
    border-color: #26a2bc;
}
.wcro-autoship-product-logo {
    height: 25px !important;
    vertical-align: top;
    margin-top: 1px;
    width: auto;
    display: inline-block;
}
.wcro-autoship-selection-wrapper ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.wcro-autoship-selection-wrapper ul li {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1.2rem;
    transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: scale(0.99);
    background-color: white;
}
.wcro-autoship-selection-wrapper ul li:last-of-type {
    margin-bottom: 1em;
}
.wcro-autoship-selection-wrapper ul li:not(:last-of-type) {
    margin-bottom: 8px;
}
.wcro-autoship-selection-wrapper ul li input[type=radio] {
    display: none;
}
.wcro-autoship-selection-wrapper ul li input[type=radio] + label {
    display: block;
    position: relative;
    padding: 12px 10px 10px 45px;
    box-sizing: border-box;
    cursor: pointer;
}
.wcro-autoship-selection-wrapper ul li input[type=radio] + label::before,
.wcro-autoship-selection-wrapper ul li input[type=radio] + label::after {
    content: '';
    position: absolute;
    display: block;
}
.wcro-autoship-selection-wrapper ul li input[type=radio] + label::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.25);
    left: 11px;
    top: 15px;
}
.wcro-autoship-selection-wrapper ul li.active {
    border-color: #26A2BC;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1);
}
.wcro-autoship-selection-wrapper ul li input[type=radio]:checked + label::before {
    border-color: #26A2BC;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.wcro-autoship-selection-wrapper ul li input[type=radio]:checked + label::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    left: 15px;
    top: 19px;
    background-color: #26A2BC;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.wcro-autoship-hide, .wcro-autoship-option-hide {
    display: none;
}
.wcro-autoship-hide {
    padding: 0 1em 1em 2.75em;
}
.wcro-autoship-hide .variations {
    border-bottom: none !important;
}
#autoship-selection-once-off + label > strong {
    margin-left: 25px;
}
#autoship-selection-repeat + label > strong {
    font-size: 1.4em;
    color: #26A2BC;
    vertical-align: top;
    line-height: 1.3;
    margin-left: 25px;
}
#autoship-selection-repeat + label > span.wcro-autoship-product-label {
    font-size: 1.4em;
    font-weight: bold;
    vertical-align: top;
    line-height: 1.3;
}
#autoship-selection-repeat + label > small {
    display: block;
    color: rgba(0 5 9 / 70%);
}
.wcro-product-terms-link {
    float: right;
    font-size: 0.8em;
}
/* AUTOSHIP MODAL */

.autoship-modal-container {
    --btn-brd-radius: 35px;
    
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.autoship-modal-container .autoship-modal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .15);
}
.autoship-modal-container .autoship-modal {
    max-width: 600px;
    width: calc(100% - 2em);
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 30%), 0 2px 8px rgb(0 0 0 / 10%), 0 0 3px rgb(0 0 0 / 10%);
    z-index: 10000;
}
.autoship-modal-container .autoship-modal.autoship-wide-modal {
    max-width: 1170px;
}
.autoship-modal-container .autoship-modal .header,
.autoship-modal-container .autoship-modal .body,
.autoship-modal-container .autoship-modal .footer {
    padding: 0.6em 0.9em;
}
.autoship-modal-container .autoship-modal .header {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.autoship-modal-container .autoship-modal .header .title {
    font-size: 1.3em;
    font-weight: bold;
}
.autoship-modal-container .autoship-modal .autoship-modal-close {
    font-size: 1.6em;
    color: rgba(0, 0, 0, 0.4);
    background: transparent;
    border: none;
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0;
    line-height: 30px;
}
.autoship-modal-container .autoship-modal .body {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}
.autoship-modal-container .autoship-modal .footer {
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.autoship-modal-container .autoship-modal .footer button {
    padding: 0.2em 1em;
    background-color: #F3F3F3;
    border: none;
}
.autoship-modal-container .autoship-modal .footer button.button {
    background-color: #26a2bc;
    padding: 0.5em 1.4em;
    font-size: 1em!important;
    color: white;
}
.autoship-modal-container .autoship-group-paused-pill {
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    color: white;
    background-color: #9a9a9a;
}
body.autoship-modal-open {
    overflow-y: hidden;
}

/* END AUTOSHIP MODAL */

.autoship-field {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    margin-bottom: 1em;
}
.autoship-field label {
    font-weight: bold;
}
.autoship-field input[type=text], .autoship-field select {
    width: 100%;
}
.autoship-cols {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1em;
    flex-wrap: wrap;
}
.autoship-radio-buttons input[type=radio] {
    display: none;
}
.autoship-radio-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.autoship-radio-buttons label {
    width: 100%;
    margin: 0;
}
.autoship-radio-buttons label input[type=radio] + span {
    display: block;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0.43em 0.8em;
    border: 1px solid #26a2bc;
    font-weight: normal;
    color: #26a2bc;
    text-align: center;
    transition: background-color 0.1s ease, color 0.1s ease;
}
.autoship-radio-buttons label:nth-of-type(even) input[type=radio] + span {
    border-left: none;
}
.autoship-radio-buttons label:first-of-type input[type=radio] + span {
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
}
.autoship-radio-buttons label:last-of-type input[type=radio] + span {
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
}
.autoship-radio-buttons label:hover input[type=radio] + span {
    background-color: #f8f8f8;
}
.autoship-radio-buttons label input[type=radio]:checked + span {
    background-color: #26a2bc;
    color: white;
}
.autoship-radio-buttons label input[type=radio]:disabled + span {
    background-color: #d3d3d3;
    border-color: #c9c9c9;
    color: #6a6a6a;
    cursor: not-allowed;
}
@media all and (min-width: 769px) {
    .autoship-cols {
        flex-wrap: nowrap;
    }
}

.swal2-container {
    z-index: 9999!important;
}

.autoship-field input[type=number] {
    border: 1px solid #d2d6dc;
    /*border-radius: 0.3rem;*/
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    font-size: 15px;
    padding: 0.5180469716em;
    padding-left: 0.7em;
    padding-right: 0.7em
}
.autoship-question {
    position: absolute;
    right: 0.5rem;
    top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0 0 0 / 30%);
    font-size: 0.8rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
}
.autoship-question:hover {
    background-color: rgba(0 0 0 / 40%);
}
.autoship-info-image {
    display: flex;
    width: 100%;
    margin-bottom: 1em;
    justify-content: center;
}
.autoship-info-image img {
    max-width: 350px;
    width: 100%;
}