/* General */
*, *::before, *::after {
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 18px;
    font-weight: 300;
    color: #262626;
}

body {
    margin: 0;
}

[data-fancybox] { cursor: pointer; }

.hidden { display: none; }

input:focus::placeholder { color: transparent; }
input::placeholder { font-style: italic; }

body, input, button, textarea, select {
    font-family: 'sofia-pro', sans-serif;
    font-size: 1rem;
}

a[href]:not([class]) {
    color: #DE058A;
}

body #search_widget form input,
input[type="search"], input[type="text"], .input-field {
    background: #ffffff;
    color: #262626;
    border: none;
    border-radius: 2em;
    padding: 0.8em 2em;
}

button, input[type="search"], input[type="submit"], input[type="button"], .button {
    background: #fff;
    border: none;
    padding: 15px 30px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-weight: normal;
    justify-content: center;
    border-radius: 27.5px;
    color: #262626;
    text-align: center;
    display: inline-block;
    text-decoration: inherit;
}

.myparcel-delivery-options > .myparcel-delivery-options__modal,
.myparcel-delivery-options__float--right,
.myparcel-delivery-options > div > table > tr:first-child:last-child,
.myparcel-delivery-options__choice:first-child:last-child .myparcel-delivery-options__choice:first-child:last-child {
    display: none;
}

.button.icon-button {
    padding: 15px 17px;
    font-family: inherit !important;
}
.button.icon-button i {
    width: 1.25em;
    text-align: center;
}

.button-primary {
    background: #DE058A;
    color: #fff;
}
.button-primary:disabled {
    background: #868686;
}

.button-cta {
    background: #FF9B12;
    color: #fff;
}

.button-secondary {
    background: #FFE2F3;
    color: #DE058A;
}

#content-wrapper:empty { display: none; }

.container-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-link {
    font-size: 0.8em;
    text-decoration: underline;
    color: inherit;
}

.small-text {
    font-size: 0.8em;
}

/* Tables */
.table {
    border: none;
    width: 100%;
}

.table.table-full {
    width: 100%;
}

.table th {
    color: #DE058A;
    font-weight: bold;
    text-align: left;
}

.table th, .table td {
    padding: 7px;
}

.table tbody tr:nth-child(even) {
    background: #F4F4F4;
}

.label-pill {
    padding: 5px;
    font-size: 0.75em;
}

.action-link { color: inherit; text-decoration: underline; }
.action-link:hover { color: #DE058A; }
.bright { color: #fff; }

/* Forms */

.form .form-fields > label {
    display: flex;
    margin: 20px 0;
    align-items: center;;
}

.form .form-fields > label span {
    flex: 0 0 180px;
}

.form .form-fields > .checkbox-field span {
    flex: 1 1 auto;
}

.form-fields input[type="checkbox"] { display: none; }

.nested-checkbox-span::before,
.form-fields input[type="checkbox"] + span::before {
    content: '\f00c';
    color: transparent;
    margin-right: 10px;
    vertical-align: baseline;
    background: #FFE2F3;
    width: 20px;
    height: 20px;
    border: 1px solid #aaa;
    border-radius: 3px;
    box-shadow: 0 0 1px 0 #aaa;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-family: 'Font Awesome 5 Pro';
    font-size: 14px;
}


.form-fields .radio-field input[type="radio"] {
    display: none;
}

.form-fields .radio-field input[type="radio"] + span {
    padding: 10px;
    display: inline-block;
}

.form-fields .radio-field input[type="radio"] + span::before {
    margin-right: 10px;
    vertical-align: baseline;;
}

.form-fields .radio-field label {
    margin-right: 10px;
}

.form-fields input[type="checkbox"]:-moz-ui-invalid + span::before {
    border-color: red;
}
.form-fields input[type="checkbox"]:-moz-ui-invalid + span {
    color: red;
}

.form-footer {
    margin-top: 40px;
}

.columns { display: flex; }
.column-1 { flex: 1 0 auto; }

.nested-checkbox:checked + * .nested-checkbox-span::before,
.form input[type="checkbox"]:checked + span::before {
    box-shadow: 0 0 1px 0 #DE058A;
    border-color: #DE058A;
    color: #DE058A;
}

.form textarea,
.form select,
.form input:not([type="checkbox"]):not([type="radio"]) {
    background: #FFE2F3;
    color: #DE058A;
    border: none;
    resize: vertical;
    border-radius: 0;
    padding: 0.8em 2em;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form select {
    background-image: url(../image/down.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 24px) center;
}

.nested-checkbox, .nested-radio { display: none; }
.nested-radio-span { display: inline-block; }
.form-fields .radio-field input[type="radio"] + span::before,
.nested-radio + * .nested-radio-span::before {
    content: '';
    vertical-align: baseline;
    background: #ffffff;
    color: #DE058A;
    width: 20px;
    height: 20px;
    border: 1px solid #aaa;
    border-radius: 50%;
    box-shadow: 0 0 1px 0 #aaa;
    display: inline-block;
    text-align: center;
}

.form-fields .radio-field input[type="radio"]:checked + span::before,
.nested-radio:checked + * .nested-radio-span::before {
    background: #DE058A;
    font-weight: bold;
    box-shadow: 0 0 1px 0 #DE058A, inset 0 0 0 2px #FFE2F3;
    border-color: #DE058A;
}
.form-errors {
    margin: 20px 0;
    padding: 20px 30px;
    box-shadow: inset 0 0 0 3px #FFE2F3;
    color: inherit;
    list-style-type: none;
}

.form-errors li {
    display: block;
}
.form-errors li + li {
    margin-top: 20px;
}

/* Notifications */
.form-notifications-slot .alert,
#notifications .alert {
    margin: 0 0 20px 0;
    background: #FFE2F3;
    padding: 20px 30px;
}

.form-notifications-slot ul,
#notifications ul {
    margin: 0;
}

/* Breadcrumbs */
#breadcrumbs {
    background: #FFE2F3;
    display: inline-flex;
    padding: 5px 1em;
    list-style: none;
    margin: 0 0 55px 0;
}

#breadcrumbs li {
    font-size: 14px;
    display: flex;
    align-items: baseline;
}
#breadcrumbs a {
    text-decoration: none;
    color: #DE058A;
}

#breadcrumbs li + li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: normal;
    color: #DE058A;
    font-size: 0.7em;
    display: inline-block;
    margin: 0 1em;
}

#breadcrumbs li:first-child a::before {
    content: '\f015';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
}

#breadcrumbs li:first-child a span {
    display: none;
}

#breadcrumbs li:last-child a {
    color: #262626;
}
#breadcrumbs li a span {
    white-space: nowrap;
}

/* Content */
#wrapper .container {
    padding: 40px 0;
    display: flex;
}

.page-index #wrapper .container {
    padding: 0 0 40px 0;
}
.page-index #wrapper .container .z2-homepage-blocks:first-child {
    margin-top: 0;
}

#wrapper #left-column {
    flex: 1 0 300px;
    padding-right: 40px;
}
#wrapper #right-column {
    flex: 1 0 440px;
    padding-left: 40px;
}

#wrapper #content-wrapper {
    flex: 1 1 100%;
}

/* Sidebar */
#left-column h3 {
    color: #DE058A;
    font-size: 22px;
    font-weight: bold;
}

/* Pagination */
.pagination {
    margin: 0;
    padding: 0;
    list-style-type: none;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.pagination li {
    display: block;
}

.pagination li a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: inherit;
    width: 30px;
    margin-left: 10px;
    text-align: center;
}

.pagination .current { color: #DE058A; }

.pagination .next, .pagination .previous {
    background: #FFE2F3;
    color: #DE058A;
    width: 30px;
    text-align: center;
}

/* Reassurance */

.blockreassurance_product {
    background: #FFE2F3;
    font-size: 16px;
    padding: 1px;
}

body .blockreassurance_product .item-product {
    display: none;
}
body .blockreassurance_product p.block-title {
    margin: 30px;
    display: flex;
    line-height: 1em;
}
.blockreassurance_product p::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: normal;
    color: #DE058A;
    margin-right: 14px;
}

.psgdprinfo17 h2 {
    margin-top: 0;
}

.psgdprgetdatabtn17 { float: none !important; color: #DE058A; }
.team-members {
    display: flex;
    flex-wrap: wrap;
}
.team-member img {
    display: block;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.team-member-img {
    height: 275px;
    overflow: hidden;
}
.team-member {
    flex: 0 1 275px;
    height: 410px;
    margin-right: 40px;
}
.team-member strong {
    margin: 20px 0 10px 0;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #DE058A;
}

.warning-balk {
    background: #DE058A;
    color: #fff;
    padding: 20px;
    font-size: 16px;
    margin: 0 0 20px 0;
}
