body[data-matched-route-name='customerLogin'],
body[data-matched-route-name='customerRegister'],
body[data-matched-route-name='customerForgottenPass'] {
    background: #f7f7f7;
}

body[data-matched-route-name='customerProfile'] .main,
body[data-matched-route-name='customerBankCard'] .main,
body[data-matched-route-name='customerOrders'] .main,
body[data-matched-route-name='autoship'] .main,
body[data-matched-route-name='pet'] .main {
    padding: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}

.add-edit-pet-pop-up .fancybox__content {
    max-width: 640px;
    padding: 0;
    border-radius: 10px;
}

.add-edit-pet-pop-up .fancybox__content .carousel__button.is-close {
    top:20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: url('../images/icons/icon-times-dark.svg') no-repeat center;
}

.add-edit-pet-pop-up .fancybox__content .carousel__button.is-close svg {
    display: none;
}

.login-page,
.register-page,
.forgotten-password-page {
    max-width: 310px;
    width: 100%;
    margin: 40px auto;
}

.login-page .logo,
.register-page .logo,
.forgotten-password-page .logo {
    display: block;
    width: 182px;
    margin: 0 auto 40px;
}

.login-page .logo img,
.register-page .logo img,
.forgotten-password-page .logo img {
    display: block;
    width: 100%;
}

.login-page .login-wrapper,
.register-page .register-wrapper,
.forgotten-password-page .forgotten-password-wrapper {
    padding: 28px 20px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
}

.login-page .login-wrapper > .title,
.register-page .register-wrapper > .title,
.forgotten-password-page .forgotten-password-wrapper > .title {
    margin-bottom: 28px;
    text-align: center;
}

.login-page .login-wrapper .login-wrapper-bottom,
.register-page .register-wrapper .register-wrapper-bottom,
.forgotten-password-page .forgotten-password-wrapper .forgotten-password-wrapper-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E4;
    text-align: center;
}

.customer-form .form-row {
    margin-bottom: 20px;
}

.customer-form .form-row.country {
    display: inline-block;
    vertical-align: top;
    max-width: 30%;
    width: 100%;
    margin-right: 20px;
}

.customer-form .form-row.city {
    display: inline-block;
    vertical-align: top;
    max-width: calc(45% - 40px);
    width: 100%;
    margin-right: 20px;
}

.customer-form .form-row.post-code {
    display: inline-block;
    vertical-align: top;
    max-width: 25%;
    width: 100%;
}

@media screen and (max-width: 1020px) {

    .customer-form .form-row.country,
    .customer-form .form-row.city,
    .customer-form .form-row.post-code {
        max-width: 100%;
        margin-right: 0;
    }
}

.customer-form .form-row label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    line-height: initial;
}

.customer-form .form-row .form-field {
    display: block;
    width: 100%;
}

.customer-form .form-row.has-error .form-field input,
.customer-form .form-row.has-error .form-field select,
.customer-form .form-row.has-error .form-field textarea {
    border-color: #E74C3C;
}

.customer-form .form-row .form-element-error {
    display: none;
}

.customer-form .form-row .form-element-error:not(:empty) {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.customer-form .login-forgotten-password {
    margin: -10px 0 10px;
    text-align: right;
}

.customer-form > .help-inline:not(:empty) {
    margin-bottom: 15px;
    text-align: center;
}

.customer-form .checkboxes-wrapper {
    margin: 25px 0;
}

.customer-form .form-row-checkbox {
    margin-bottom: 15px;
}

.customer-form .form-row-checkbox input[type='checkbox'] {
    display: none;
}

.customer-form .form-row-checkbox label {
    position: relative;
    padding-left: 46px;
    cursor: pointer;
}

.customer-form .form-row-checkbox label a {
    color: #00ADEE;
}

.customer-form .form-row-checkbox label a:hover {
    text-decoration: underline;
}

.customer-form .form-row-checkbox label:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    display: inline-block;
    width: 36px;
    height: 20px;
    background: #E5E5E4;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.customer-form .form-row-checkbox label:after {
    content: '';
    position: absolute;
    top: -1px;
    left: 3px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

.customer-form .form-row-checkbox input:checked + label:before {
    background-color: #239B56;
}

.customer-form .form-row-checkbox input:checked + label:after {
    left: 17px;
}

.customer-form .gender-wrapper {
    margin: 25px 0;
}

.customer-form .gender-wrapper > label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.customer-form .gender-wrapper .gender-inputs {
    display: inline-block;
    vertical-align: middle;
}

.customer-form .gender-wrapper .gender-inputs .male,
.customer-form .gender-wrapper .gender-inputs .female {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-left: 23px;
    cursor: pointer;
}

.customer-form .gender-wrapper .gender-inputs .male {
    margin-right: 10px;
}

.customer-form .gender-wrapper .gender-inputs > div span {
    display: inline-block;
    margin-top: 2px;
}

.customer-form .gender-wrapper .gender-inputs > div:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #231F20;
    transform: translateY(-50%);
}

.customer-form .gender-wrapper .gender-inputs > div.selected:before {
    border-color: #00ADEE;
    box-shadow: 0 0 0 2px rgba(0, 173, 238, 0.25);
}

.customer-form .gender-wrapper .gender-inputs > div.selected:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #00ADEE;
    border-radius: 4px;
    transform: translateY(-50%);
}

.customer-form .login-button,
.customer-form .register-button,
.customer-form .forgotten-password-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 17px 10px 16px;
    background: #FFD940;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.customer-form .login-button:hover,
.customer-form .register-button:hover,
.customer-form .forgotten-password-button:hover {
    background: #e9c53c;
}

@media screen and (max-width: 740px) {

    .login-page,
    .register-page,
    .forgotten-password-page {
        max-width: 330px;
        margin: 20px auto;
    }

    .login-page .logo,
    .register-page .logo,
    .forgotten-password-page .logo {
        width: 130px;
        margin: 0 auto 20px;
    }
}

.profile-page-header {
    padding: 30px 0;
    background: #ffffff;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
}

.profile-page-header > .inner,
.profile-page-content > .inner {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.profile-page-content {
    padding: 40px 0;
    background: #f7f7f7;
}

.profile-page-content > .inner .customer-menu-level-1 {
    display: inline-block;
    vertical-align: top;
    width: 310px;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-menu-level-1 li {
    position: relative;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.profile-page-content > .inner .customer-menu-level-1 li:last-child {
    margin-bottom: 0;
}

.profile-page-content > .inner .customer-menu-level-1 li a {
    position: relative;
    display: block;
    padding: 18px 20px 18px 54px;
    font-size: 16px;
    color: #231F20;
    letter-spacing: 0;
    line-height: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

.profile-page-content > .inner .customer-menu-level-1 li.active a {
    color: #00ADEE;
}

.profile-page-content > .inner .customer-menu-level-1 li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='profile'] a:before {
    background: url('../images/icons/icon-shield-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='profile'].active a:before {
    background: url('../images/icons/icon-shield-accent2.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='bank-card'] a:before {
    background: url('../images/icons/icon-credit-card-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='bank-card'].active a:before {
    background: url('../images/icons/icon-credit-card-accent2.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='orders'] a:before {
    background: url('../images/icons/icon-box-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='orders'].active a:before {
    background: url('../images/icons/icon-box-accent2.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='pets'] a:before {
    background: url('../images/icons/icon-paw-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='pets'].active a:before {
    background: url('../images/icons/icon-paw-accent2.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='autoship'] a:before {
    background: url('../images/icons/icon-autoship-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='autoship'].active a:before {
    background: url('../images/icons/icon-autoship-accent2.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li[data-type='logout'] a:before {
    background: url('../images/icons/icon-logout-dark.svg') no-repeat center;
}

.profile-page-content > .inner .customer-menu-level-1 li.active a:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 3px;
    height: calc(100% - 24px);
    background: #00ADEE;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.profile-page-content > .inner .customer-profile-wrapper {
    display: inline-block;
    vertical-align: top;
    max-width: calc(100% - 330px);
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-panel {
    margin-bottom: 20px;
    padding: 20px 20px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-panel.column {
    display: inline-block;
    vertical-align: top;
    max-width: calc(50% - 10px);
    width: 100%;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-panel.column:nth-child(even) {
    margin-right: 0;
}

@media screen and (max-width: 1020px) {

    .profile-page-content > .inner .customer-profile-wrapper .customer-panel.column {
        max-width: 100%;
        margin-right: 0;
    }
}

.profile-page-content > .inner .customer-profile-wrapper .customer-panel .customer-panel-title {
    margin-bottom: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-panel .checkboxes-wrapper,
.profile-page-content > .inner .customer-profile-wrapper .customer-panel .gender-wrapper {
    margin-bottom: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-profile-buttons-wrapper {
    margin-top: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-profile-buttons-wrapper .button-medium-accent2 {
    display: block;
    min-width: 270px;
    width: fit-content;
    margin: 0 auto;
    padding: 17px 10px 16px;
    background: #00ADEE;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-profile-buttons-wrapper .button-medium-accent2:hover {
    background: #3d91c4;
}

.profile-page-content > .inner .customer-profile-wrapper .no-available-card {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 20px 20px 70px;
    background: #e74c3c;
    border-radius: 10px;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.25);
}

.profile-page-content > .inner .customer-profile-wrapper .no-available-card:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    width: 32px;
    height: 32px;
    background: #ffffff url('../images/icons/icon-times-circle-warning-x3large.svg') center no-repeat;
    background-size: 100%;
    border-radius: 50%;
}

.profile-page-content > .inner .customer-profile-wrapper .no-results {
    text-align: center;
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card {
    padding: 20px 20px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-title,
.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-text {
    margin-bottom: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-details .button-add-bank-card {
    position: relative;
    display: inline-block;
    padding-left: 21px;
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-details .button-add-bank-card:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url('../images/icons/icon-plus-circle-dark-small.svg') no-repeat center;
}

.profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-notice {
    margin-top: 15px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content {
    padding: 20px 20px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-title,
.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-text {
    margin-bottom: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row {
    margin-bottom: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    line-height: initial;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row .form-field {
    display: block;
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row .form-field .select2-container {
    width: 100% !important;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row.has-error .form-field input,
.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row.has-error .form-field select,
.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row.has-error .form-field textarea {
    border-color: #E74C3C;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row .form-element-error {
    display: none;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .form-row .form-element-error:not(:empty) {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .multi-fields {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 396px;
    margin-left: -20px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .multi-fields .form-row {
    margin-left: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .multi-fields .form-row:nth-child(1) {
    flex: 0 1 117px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .multi-fields .form-row:nth-child(2) {
    flex: 0 1 145px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-content .sumup-form .multi-fields .form-row:nth-child(3) {
    flex: 0 1 134px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-buttons-wrapper {
    margin-top: 40px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-buttons-wrapper .button-medium-accent2 {
    margin-top: 40px;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-buttons-wrapper .button-medium-accent2 {
    display: block;
    min-width: 270px;
    width: fit-content;
    margin: 0 auto;
    padding: 17px 10px 16px;
    background: #00ADEE;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .sumup-buttons-wrapper.button-medium-accent2:hover {
    background: #3d91c4;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel {
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel.is-opened {
    border-color: #00ADEE;
    box-shadow: 0 0 0 2px rgba(0, 173, 238, 0.25);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 20px 18px;
    cursor: pointer;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-number {
    flex: 0 0 120px;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-shipping-data {
    flex: 0 1 100%;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-date {
    flex: 0 0 100px;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status {
    flex: 0 0 135px;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label {
    display: inline-block;
    padding: 0 10px;
    border-radius: 10.5px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label.new {
    background: rgba(255, 217, 64, 0.1);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label.processing {
    background: rgba(35, 155, 86, 0.1);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label.completed {
    background: rgba(0, 173, 238, 0.1);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label.default {
    background: rgba(35, 31, 32, 0.1);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status .status-label span {
    line-height: 21px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-total {
    flex: 0 0 100px;
    margin-right: 20px;
    text-align: right;
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-expander {
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-expander span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    user-select: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-expander:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url('../images/icons/icon-chevron-down-dark-small.svg') no-repeat center;
    transition: all 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel.is-opened .customer-order-header .customer-order-expander:after {
    transform: rotate(180deg);
}

@media screen and (max-width: 1020px) {

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header {
        flex-wrap: wrap;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-number {
        order: 1;
        flex: 0 1 calc(50% - 10px);
        margin-bottom: 20px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-shipping-data {
        order: 3;
        flex: 0 1 calc(50% - 10px);
        margin-bottom: 20px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-date {
        order: 4;
        flex: 0 1 calc(50% - 10px);
        margin-right: 0;
        margin-bottom: 20px;
        text-align: right;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-status {
        order: 2;
        flex: 0 1 calc(50% - 10px);
        margin-right: 0;
        margin-bottom: 20px;
        text-align: right;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-total {
        order: 5;
        flex: 0 1 calc(50% - 10px);
        text-align: left;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-expander {
        order: 6;
        flex: 0 1 calc(50% - 10px);
        text-align: right;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-header .customer-order-expander span {
        float: right;
        margin-right: 0;
        margin-left: 5px;
    }
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel.loading {
    cursor: wait;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel.loading > * {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 25px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .top:after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 0;
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background: #E5E5E4;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-order-number,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-last-shipment,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-next-shipment {
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button-disabled {
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status span {
    display: inline-block;
    vertical-align: middle;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status .autoship-status-switch-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    width: 36px;
    height: 20px;
    background: #E5E5E4;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status .autoship-status-switch-button:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transition: all .2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status .autoship-status-switch-button.active {
    background: #239B56;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status .autoship-status-switch-button.active:before {
    left: 17px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-last-shipment,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-next-shipment {
    text-align: center;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-last-shipment .date,
.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-next-shipment .date {
    display: inline-block;
    width: 80px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button {
    padding: 13px 30px 12px;
    background: #239B56;
    border-radius: 20px;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button:hover {
    background: #4a834a;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button-disabled {
    padding: 13px 30px 12px;
    background: #239B56;
    border-radius: 20px;
    text-align: center;
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency.disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .form-field {
    display: inline-block;
    vertical-align: middle;
    width: 250px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .form-field .select2-container {
    width: 100% !important;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .form-field .select2-selection__rendered {
    padding: 14px 30px 12px 15px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .save-frequency-button {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    padding: 13px 30px 12px;
    background: #231F20;
    border-radius: 20px;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .save-frequency-button[disabled] {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .save-frequency-button span {
    text-transform: uppercase;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .save-frequency-button:hover {
    background: #393536;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-expander {
    white-space: nowrap;
    cursor: pointer;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-expander span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    user-select: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-expander:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url('../images/icons/icon-chevron-down-dark-small.svg') no-repeat center;
    transition: all 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel.is-opened .autoship-order-header .customer-order-expander:after {
    transform: rotate(180deg);
}

@media screen and (max-width: 1120px) {

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .top {
        display: block;
        padding: 20px 20px 15px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .top:after {
        display: none;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .bottom {
        display: block;
        padding: 15px 20px 20px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .bottom:after {
        content: '';
        clear: both;
        display: block;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-order-number {
        float: left;
        margin: 0;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-status {
        float: right;
        margin: 0;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-last-shipment {
        clear: both;
        margin: 0 0 15px;
        padding: 20px 0 15px;
        border-bottom: 1px solid #E5E5E4;
        text-align: left;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-next-shipment {
        margin: 0;
        text-align: left;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-last-shipment .date,
    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-next-shipment .date {
        float: right;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-ship-now-button {
        margin-top: 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency {
        margin-bottom: 30px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency label {
        max-width: calc(100% - 260px);
        width: 100%;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .save-frequency-button {
        display: block;
        width: 100%;
        margin: 15px 0 0;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-total {
        float: left;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-expander {
        float: right;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .customer-order-expander span {
        float: right;
        margin-right: 0;
        margin-left: 5px;
    }
}

@media screen and (max-width: 740px) {

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency label {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .autoship-order-header .autoship-frequency .form-field {
        display: block;
        width: 100%;
    }
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body {
    display: none;
    margin: 0 20px;
    padding-bottom: 30px;
    border-top: 1px solid #E5E5E4;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section {
    display: inline-block;
    vertical-align: top;
    max-width: calc(50% - 10px);
    width: 100%;
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section:nth-child(even) {
    margin-right: 0;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section .customer-order-info-section-title {
    margin: 30px 0 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section .button-add-bank-card {
    position: relative;
    top: -1px;
    display: inline-block;
    padding-left: 21px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section .button-add-bank-card:before {
    position: absolute;
    top: 3px;
    left: 0;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url('../images/icons/icon-plus-circle-dark-small.svg') no-repeat center;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products {
    margin-top: 30px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product {
    margin-top: 10px;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product:first-child {
    margin-top: 0;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-image {
    display: inline-block;
    vertical-align: top;
    width: 105px;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-image img {
    display: block;
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info {
    display: inline-block;
    vertical-align: top;
    max-width: calc(100% - 125px);
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info .name {
    margin-bottom: 5px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info .customer-order-ordered-product-info-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E5E4;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info .customer-order-ordered-product-info-bottom .customer-order-ordered-product-prices {
    margin-left: 20px;
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info .customer-order-ordered-product-info-bottom .customer-order-ordered-product-prices .old-price {
    display: inline-block;
    margin-right: 5px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
    border-top: 1px solid #E5E5E4;
    border-bottom: 1px solid #E5E5E4;
    padding-top: 30px;
    padding-bottom: 30px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row {
    padding: 5px 0;
    max-width: calc(50% - 10px);
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row:first-child {
    padding-top: 0;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row:last-child {
    padding-bottom: 0;
    border-bottom: 0 none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row div:first-child {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 30%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row div:last-child {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: calc(60% - 20px);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details {
    float: right;
    display: inline-block;
    max-width: calc(50% - 10px);
    width: 100%;
    margin-top: 30px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #E5E5E4;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details-row:first-child {
    padding-top: 0;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details-row:last-child {
    padding-bottom: 0;
    border-bottom: 0 none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details-row div:first-child {
    margin-right: 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details-row div:last-child {
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel {
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel.is-opened {
    border-color: #00ADEE;
    box-shadow: 0 0 0 2px rgba(0, 173, 238, 0.25);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 20px 18px;
    cursor: pointer;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 72px;
    height: 72px;
    margin-right: 15px;
    background: #E5E5E4;
    border-radius: 36px;
    overflow: hidden;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .image img {
    display: block;
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .image span {
    position: relative;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-size: 24px;
    line-height: 0;
    transform: translate(-50%, -50%);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 87px);
    width: 100%;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .type,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .birth-date {
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .type {
    margin-right: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .type span,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .birth-date span {
    position: relative;
    top: 2px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools {
    white-space: nowrap;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .edit-pet-button,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .delete-pet-button,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .customer-pet-expander {
    display: inline-block;
    vertical-align: middle;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .edit-pet-button,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .delete-pet-button {
    margin-right: 15px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .edit-pet-button:before,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .delete-pet-button:before,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .customer-pet-expander:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .edit-pet-button:before {
    background: url('../images/icons/icon-edit-dark-small.svg') no-repeat center;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .delete-pet-button:before {
    background: url('../images/icons/icon-trash-dark-small.svg') no-repeat center;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .customer-pet-expander:before {
    background: url('../images/icons/icon-chevron-down-dark-small.svg') no-repeat center;
    transition: all 0.2s ease-in-out;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel.is-opened .customer-pet-panel-header .pet-tools .customer-pet-expander:before {
    transform: rotate(180deg);
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .edit-pet-button span,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .delete-pet-button span,
.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .customer-pet-expander span {
    display: inline-block;
    vertical-align: middle;
    user-select: none;
}
@media screen and (max-width: 1140px) {
    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row {
        max-width: 100%;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-invoice .customer-order-invoice-row div:first-child {
        width: 40%;
    }
}

@media screen and (max-width: 1020px) {

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header {
        display: block;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #E5E5E4;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-tools .customer-pet-expander {
        float: right;
    }
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body {
    display: none;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body .pet-details {
    display: flex;
    margin-top: -5px;
    margin-left: -20px;
    padding: 0 20px 20px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body .pet-details .column {
    flex: 0 1 calc(50% - 20px);
    margin-top: 5px;
    margin-left: 20px;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 10px;
}

.profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body .pet-details .column > div {
    margin-bottom: 5px;
}

@media screen and (max-width: 740px) {

    .profile-page-header {
        display: none;
    }

    .profile-page-content {
        padding: 15px 0 30px;
        background: #f7f7f7;
    }

    .profile-page-content > .inner .customer-menu-level-1 {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
    }

    .profile-page-content > .inner .customer-menu-level-1 li {
        margin-bottom: 0;
        border-radius: 0;
        border-bottom: 1px solid #E5E5E4;
    }

    .profile-page-content > .inner .customer-menu-level-1 li:last-child {
        border-bottom: 0 none;
    }

    .profile-page-content > .inner .customer-profile-wrapper {
        max-width: 100%;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-panel {
        margin-bottom: 15px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-profile-buttons-wrapper {
        margin-top: 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-details {
        align-items: initial;
        flex-direction: column;
    }

    .profile-page-content > .inner .customer-profile-wrapper .bank-card .bank-card-details .button-add-bank-card {
        margin-top: 20px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .sumup-buttons-wrapper {
        margin-top: 30px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-info-section {
        max-width: 100%;
        margin-right: 0;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product {
        padding: 10px 10px 30px 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-image {
        width: 60px;
        margin-right: 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-ordered-products .customer-order-ordered-product .customer-order-ordered-product-info {
        max-width: calc(100% - 70px);
        padding-top: 3px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details {
        max-width: 100%;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header {
        padding: 15px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .image {
        vertical-align: top;
        width: 64px;
        height: 64px;
        border-radius: 32px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info {
        vertical-align: top;
        max-width: calc(100% - 79px);
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .name {
        margin-bottom: 10px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .type,
    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-header .pet-info .info .birth-date {
        display: block;
        margin-right: 0;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body .pet-details {
        display: block;
        margin-left: 0;
        padding: 0 15px 15px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-pet-panel .customer-pet-panel-body .pet-details .column {
        margin-left: 0;
        padding: 15px;
    }

    .profile-page-content > .inner .customer-profile-wrapper .customer-order-panel .customer-order-body .customer-order-details {
        max-width: 100%;
    }
}