body {
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    color: #002440;
}
.header {
    margin-bottom: 15px;
    background: #ffffff;
    transition: background 250ms ease;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.1);
}
.content {
    background: #ffffff;
    box-shadow: 0 5px 6px 0 rgba(0,0,0,.15);
}

/* container */
@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}
@media (min-width: 1600px) {
    .container {
        width: 1440px;
    }
}

/* spacing */
.top5 {
    margin-top: 5px;
}

.top7 {
    margin-top: 7px;
}

.top10 {
    margin-top: 10px;
}

.top15 {
    margin-top: 15px;
}

.top17 {
    margin-top: 17px;
}

.top30 {
    margin-top: 30px;
}

.bottom5 {
    margin-bottom: 5px;
}

.bottom7 {
    margin-bottom: 7px;
}

.bottom10 {
    margin-bottom: 10px;
}

.bottom15 {
    margin-bottom: 15px;
}

.bottom17 {
    margin-bottom: 17px;
}

.bottom30 {
    margin-bottom: 30px;
}

.no-margin-top {
    margin-top: 0;
}

.row.no-gutter {
    margin-left: 0;
    margin-right: 0;
}
.row.no-gutter > [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}

.row.row-space-1 {
    margin-left: -1px;
    margin-right: -1px;
}
.row.row-space-1 > [class*='col-'] {
    padding-left: 1px;
    padding-right: 1px;
}

.row.row-space-2 {
    margin-left: -2px;
    margin-right: -2px;
}
.row.row-space-2 > [class*='col-'] {
    padding-left: 2px;
    padding-right: 2px;
}

.row.row-space-4 {
    margin-left: -4px;
    margin-right: -4px;
}
.row.row-space-4 > [class*='col-'] {
    padding-left: 4px;
    padding-right: 4px;
}

/* button */
.btn {
    transition: all 500ms ease;
}

.btn.btn-neutral {
    background: #f0f0f0;
}
.btn.btn-neutral:hover {
    background: #cccccc;
}
.btn.btn-neutral-2 {
    color: #ffffff;
    background: #0a8be8;
}
.btn.btn-neutral-2:hover {
    background: #005ea8;
}
.btn-sub-category {
    margin-bottom: 15px;
    border-color: #f0f0f0;
    background-color: #f8f8f8;
    text-align: left;
    font-size: 85%;
    word-break: normal;
    white-space: normal;
    transition: background 500ms ease;
}
.btn-sub-category:hover {
    background-color: #f0f0f0;
}
.btn-unavailable {
    min-height: 34px;
    line-height: 10px;
    font-size: 75%;
    word-break: normal;
    white-space: normal;
}
@media (min-width: 768px) {
    .btn.btn-next {
        float: right;
        margin-left: 5px;
    }
    .btn.btn-back {
        float: left;
    }
    .btn-sub-category {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}
@media (max-width: 767px) {
    .btn.btn-next,
    .btn.btn-back {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    .btn-sub-category {
        height: 46px;
    }
}

/* Poradenské články na URL /poradna/. */
.advisory-list-header,
.advisory-detail-header {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}
.advisory-detail {
    color: #243746;
}
.advisory-detail-header {
    margin-bottom: 38px;
}
.advisory-detail-header h1 {
    max-width: 820px;
    margin: 0 auto 18px;
    color: #002440;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.18;
}
.advisory-eyebrow {
    margin-bottom: 10px;
    color: #003DA5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.advisory-list-lead,
.advisory-detail-lead {
    color: #4b5563;
    font-size: 19px;
    line-height: 1.6;
}
.advisory-detail-lead {
    max-width: 740px;
    margin: 18px auto 0;
}
.advisory-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}
.advisory-card-column {
    display: flex;
    margin-bottom: 28px;
}
.advisory-card-row {
    display: flex;
    flex-wrap: wrap;
}
.advisory-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 61, 165, .07);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.advisory-card:hover,
.advisory-card:focus-within {
    border-color: #b8cbea;
    box-shadow: 0 14px 32px rgba(0, 61, 165, .13);
    transform: translateY(-3px);
}
.advisory-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
    padding: 14px;
    background: #f4f7fc;
    border-bottom: 1px solid #e5e7eb;
}
.advisory-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.advisory-card-image-placeholder {
    color: #003DA5;
    background: linear-gradient(135deg, #eef4ff 0%, #f8faff 100%);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.advisory-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 22px;
}
.advisory-card time,
.advisory-detail time,
.advisory-reading-time {
    color: #6b7280;
    font-size: 14px;
}
.advisory-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 14px;
}
.advisory-card-meta .advisory-reading-time:before {
    padding: 0 8px;
    color: #9ca3af;
    content: '•';
}
.advisory-reading-time {
    white-space: nowrap;
}
.advisory-reading-time .fa-clock {
    margin-right: 4px;
    color: #003DA5;
}
.advisory-dates span + span:before {
    padding: 0 8px;
    color: #9ca3af;
    content: '•';
}
.advisory-card h2,
.advisory-card h3 {
    margin: 10px 0;
    color: #003DA5;
    font-size: 22px;
    line-height: 1.25;
}
.advisory-card h2 a,
.advisory-card h3 a {
    color: inherit;
}
.advisory-card p {
    flex: 1 1 auto;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.55;
}
.advisory-card-cta {
    align-self: flex-start;
    margin-top: auto;
    white-space: normal;
}
.advisory-empty,
.advisory-share {
    margin: 30px 0;
    padding: 28px;
    background: #f4f7fc;
    border-radius: 12px;
    text-align: center;
}
.advisory-main-image {
    max-width: 1000px;
    margin: 0 auto 46px;
    overflow: hidden;
    background: #f4f7fc;
    border: 1px solid #e0e8f3;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 36, 64, .12);
}
.advisory-main-image img {
    display: block;
    width: 100%;
    height: auto;
}
.advisory-body {
    max-width: 820px;
    margin: 0 auto 54px;
    color: #243746;
    font-size: 18px;
    line-height: 1.75;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.advisory-body p {
    margin: 0 0 1.35em;
}
.advisory-body h2 {
    position: relative;
    margin: 2.2em 0 .75em;
    padding-top: 14px;
    color: #003DA5;
    font-size: 30px;
    line-height: 1.25;
}
.advisory-body h2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background: #C4D600;
    border-radius: 3px;
    content: '';
}
.advisory-body h3 {
    margin: 1.8em 0 .65em;
    padding-left: 13px;
    color: #003DA5;
    border-left: 3px solid #d9e5f5;
    font-size: 22px;
    line-height: 1.35;
}
.advisory-body h4 {
    margin: 1.6em 0 .6em;
    color: #002440;
    font-size: 19px;
    line-height: 1.4;
}
.advisory-body h2[id],
.advisory-body h3[id] {
    scroll-margin-top: 24px;
}
.advisory-body h2[id]:target,
.advisory-body h3[id]:target {
    background: #f1f6fd;
    border-radius: 4px;
    box-shadow: 0 0 0 8px #f1f6fd;
}
.advisory-body a:not(.btn) {
    color: #003DA5;
    text-decoration: underline;
    text-decoration-color: rgba(0, 61, 165, .35);
    text-underline-offset: 3px;
}
.advisory-body a:not(.btn):hover,
.advisory-body a:not(.btn):focus {
    color: #002b75;
    text-decoration-color: currentColor;
}
.advisory-body a:focus {
    outline: 2px solid #C4D600;
    outline-offset: 3px;
}
.advisory-body ul,
.advisory-body ol {
    margin-top: 0;
    margin-bottom: 1.5em;
    padding-left: 1.45em;
}
.advisory-body li {
    margin-bottom: .45em;
}
.advisory-body ul:not(.curaprox-benefit-list):not(.curaprox-toc-list):not(.curaprox-toc-sublist),
.advisory-body ol:not(.curaprox-steps):not(.curaprox-toc-list):not(.curaprox-toc-sublist) {
    padding-left: 1.35em;
    list-style-position: outside;
}
.advisory-body ul:not(.curaprox-benefit-list):not(.curaprox-toc-list):not(.curaprox-toc-sublist) > li,
.advisory-body ol:not(.curaprox-steps):not(.curaprox-toc-list):not(.curaprox-toc-sublist) > li {
    padding-left: .3em;
}
.advisory-body ul:not(.curaprox-benefit-list):not(.curaprox-toc-list):not(.curaprox-toc-sublist) > li::marker,
.advisory-body ol:not(.curaprox-steps):not(.curaprox-toc-list):not(.curaprox-toc-sublist) > li::marker {
    color: #003DA5;
    font-weight: 700;
}
.advisory-body img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 34px auto;
    border: 1px solid #e0e8f3;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0, 36, 64, .12);
}
.advisory-body figure {
    max-width: 100%;
    margin: 34px 0;
}
.advisory-body figure img {
    margin: 0 auto;
}
.advisory-body figcaption {
    margin-top: 10px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
.advisory-body blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    color: #002440;
    background: #f4f7fc;
    border-left: 4px solid #003DA5;
    font-size: 19px;
}
.advisory-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    border-collapse: collapse;
}
.advisory-body th,
.advisory-body td {
    padding: 11px 13px;
    border: 1px solid #d9e5f5;
    text-align: left;
}
.advisory-body th {
    color: #002440;
    background: #eef4fc;
}
.advisory-body .curaprox-toc {
    position: relative;
    margin: 0 0 46px;
    padding: 28px 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f6fd 0%, #f8faff 100%);
    border: 1px solid #ccdaf0;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 61, 165, .07);
}
.advisory-body .curaprox-toc:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #003DA5;
    content: '';
}
.advisory-body .curaprox-toc-title {
    margin: 0 0 16px;
    color: #002440;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}
.advisory-body .curaprox-toc-list {
    counter-reset: curaprox-toc-section;
    list-style: none;
    margin: 0;
    padding: 0;
}
.advisory-body .curaprox-toc-list > li {
    position: relative;
    margin: 0 0 4px;
    padding: 4px 0 4px 34px;
    break-inside: avoid;
}
.advisory-body .curaprox-toc-list > .curaprox-toc-level-2 {
    counter-increment: curaprox-toc-section;
}
.advisory-body .curaprox-toc-list > .curaprox-toc-level-2:before,
.advisory-body .curaprox-toc-list > .curaprox-toc-orphan:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 27px;
    color: #003DA5;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}
.advisory-body .curaprox-toc-list > .curaprox-toc-level-2:before {
    content: counter(curaprox-toc-section) ".";
}
.advisory-body .curaprox-toc-list > .curaprox-toc-orphan {
    font-size: 15px;
}
.advisory-body .curaprox-toc-list > .curaprox-toc-orphan:before {
    content: "–";
}
.advisory-body .curaprox-toc-sublist {
    counter-reset: curaprox-toc-subsection;
    list-style: none;
    margin: 4px 0 2px -34px;
    padding: 0;
}
.advisory-body .curaprox-toc-sublist > .curaprox-toc-level-3 {
    position: relative;
    counter-increment: curaprox-toc-subsection;
    margin: 0;
    padding: 3px 0 3px 46px;
    font-size: 15px;
    line-height: 1.45;
}
.advisory-body .curaprox-toc-sublist > .curaprox-toc-level-3:before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 38px;
    color: #52709e;
    content: counter(curaprox-toc-section) "." counter(curaprox-toc-subsection);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}
.advisory-body .curaprox-toc a {
    display: block;
    margin: -3px -7px;
    padding: 3px 7px;
    color: #003DA5;
    border-radius: 5px;
    text-decoration: none;
    text-decoration-color: rgba(0, 61, 165, .35);
    text-underline-offset: 3px;
    transition: color .18s ease, background-color .18s ease;
}
.advisory-body .curaprox-toc a:hover,
.advisory-body .curaprox-toc a:focus {
    color: #002b75;
    background: #e3edf9;
    text-decoration: none;
}
.advisory-body .curaprox-tip-box {
    margin: 30px 0;
    padding: 20px 22px;
    background: #f7fbdf;
    border: 1px solid #e5edab;
    border-left: 5px solid #C4D600;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0, 36, 64, .05);
}
.advisory-body .curaprox-benefit-list,
.advisory-body .curaprox-steps {
    margin: 24px 0 32px;
    padding: 0;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid #e2eaf4;
    border-radius: 10px;
}
.advisory-body .curaprox-benefit-list li,
.advisory-body .curaprox-steps li {
    position: relative;
    display: block;
    min-height: 46px;
    margin: 0;
    padding: 13px 16px 13px 52px;
    background: rgba(255, 255, 255, .44);
    border: 0;
    border-bottom: 1px solid #e2eaf4;
    border-radius: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.advisory-body .curaprox-benefit-list li:last-child,
.advisory-body .curaprox-steps li:last-child {
    border-bottom: 0;
}
.advisory-body .curaprox-benefit-list li:before {
    position: absolute;
    top: 16px;
    left: 14px;
    width: 24px;
    height: 24px;
    margin: 0;
    color: #fff;
    background: #003DA5;
    border-radius: 50%;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}
.advisory-body .curaprox-steps li:before {
    position: absolute;
    top: 15px;
    left: 13px;
    width: 26px;
    height: 26px;
    margin: 0;
    line-height: 26px;
}
.advisory-gallery,
.advisory-related-products,
.advisory-related-categories,
.advisory-more {
    margin-top: 46px;
}
.advisory-gallery-item {
    margin-bottom: 20px;
}
.advisory-gallery-item img {
    border-radius: 10px;
}
.advisory-share-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.advisory-detail .advisory-share {
    max-width: 820px;
    margin: 54px auto 30px;
    padding: 34px 28px;
    background: linear-gradient(135deg, #f1f6fd 0%, #f8faff 100%);
    border: 1px solid #d9e5f5;
    border-radius: 14px;
}
.advisory-detail .advisory-share h2 {
    margin-top: 0;
    color: #002440;
    font-size: 25px;
}
.advisory-detail .advisory-share p {
    color: #4b5563;
}
.advisory-copy-status {
    min-height: 20px;
    margin-top: 10px;
    color: #003DA5;
    font-weight: 700;
}
.advisory-related-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}
.advisory-related-categories a {
    display: inline-block;
    padding: 9px 14px;
    color: #003DA5;
    background: #f4f7fc;
    border-radius: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .advisory-detail-header {
        margin-bottom: 28px;
    }
    .advisory-detail-header h1 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.2;
    }
    .advisory-list-lead,
    .advisory-detail-lead {
        font-size: 17px;
    }
    .advisory-card-column {
        display: block;
    }
    .advisory-card-image {
        height: 200px;
    }
    .advisory-dates {
        font-size: 13px;
    }
    .advisory-main-image {
        margin-bottom: 34px;
        border-radius: 10px;
        box-shadow: 0 10px 26px rgba(0, 36, 64, .1);
    }
    .advisory-body {
        margin-bottom: 42px;
        font-size: 17px;
        line-height: 1.7;
    }
    .advisory-body h2 {
        margin-top: 2em;
        font-size: 25px;
    }
    .advisory-body h3 {
        padding-left: 11px;
        font-size: 20px;
    }
    .advisory-body img,
    .advisory-body figure {
        margin-top: 26px;
        margin-bottom: 26px;
    }
    .advisory-body img {
        border-radius: 8px;
        box-shadow: 0 9px 24px rgba(0, 36, 64, .1);
    }
    .advisory-body .curaprox-toc {
        margin-bottom: 36px;
        padding: 22px 20px 22px 24px;
    }
    .advisory-body .curaprox-toc-list > li {
        padding-left: 30px;
    }
    .advisory-body .curaprox-toc-list > .curaprox-toc-level-2:before,
    .advisory-body .curaprox-toc-list > .curaprox-toc-orphan:before {
        width: 24px;
    }
    .advisory-body .curaprox-toc-sublist {
        margin-left: -30px;
    }
    .advisory-body .curaprox-toc-sublist > .curaprox-toc-level-3 {
        padding-left: 42px;
    }
    .advisory-body .curaprox-toc-sublist > .curaprox-toc-level-3:before {
        width: 34px;
    }
    .advisory-body .curaprox-tip-box {
        padding: 17px 18px;
    }
    .advisory-body .curaprox-benefit-list li,
    .advisory-body .curaprox-steps li {
        padding: 12px 12px 12px 48px;
    }
    .advisory-body .curaprox-benefit-list li:before {
        top: 14px;
        left: 12px;
    }
    .advisory-body .curaprox-steps li:before {
        top: 13px;
        left: 11px;
    }
    .advisory-detail .advisory-share {
        margin-top: 42px;
        padding: 28px 20px;
    }
}
@media (min-width: 992px) {
    .advisory-body .curaprox-toc-list {
        column-count: 2;
        column-gap: 42px;
        column-rule: 1px solid #dbe5f2;
    }
}
@media print {
    .advisory-main-image,
    .advisory-body img,
    .advisory-body .curaprox-toc,
    .advisory-body .curaprox-tip-box {
        box-shadow: none;
    }
    .advisory-body img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
@media (prefers-reduced-motion: reduce) {
    .advisory-card,
    .advisory-body .curaprox-toc a {
        transition: none;
    }
    .advisory-card:hover,
    .advisory-card:focus-within {
        transform: none;
    }
}
.btn.btn-conversion {
    color: #fff;
    background-color: #66b71e;
    border-color: #33880a;
}
.btn.btn-conversion:hover {
    color: #fff;
    background-color: #5da41e;
    border-color: #276608;
}
.btn-white {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #333333;
    transition: all 500ms ease;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active:focus,
.btn-white.active:focus,
.btn-white.focus,
.btn-white:active.focus,
.btn-white.active.focus {
    background-color: #ffffff;
    border-color: #333333;
    color: #333333;
    box-shadow: none;
}
.btn-white.btn-white-bordered {
    background-color: #fefefe;
    border-color: #ced4da;
}
.btn-white.btn-white-bordered:hover {
    border-color: #333333;
}

/* alert */
.alert {
    margin-bottom: 15px;
}

/* box */
.box-block {
    display: block;
}
.box-news {
    background-color: #f0f0f0;
}
.box-betefits {
    display: block;
    min-height: 70px;
    padding: 15px;
    background-color: #f0f0f0;
}

/* text */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #333333;
}
.grid-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
}
.text-white {
    color: #ffffff;
}
.link-color {
    color: #005ea8;
}

/* forms */
.form-control,
.form-control:focus {
    box-shadow: none;
}

.header .input-group-addon {
    padding-left: 6px;
    padding-right: 6px;
}
@media (min-width: 768px) {
    .header form .form-control,
    .header form .btn,
    .header-basket .btn {
        padding-top: 11px;
        padding-bottom: 11px;
    }
    .header form .form-control {
        height: 44px;
    }
}

.radio label,
.checkbox label {
    padding-top: 2px;
    padding-bottom: 2px;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    margin-left: 0;
}

.disabled span.form-control,
.disabled input[type="text"] {
    cursor: not-allowed;
}

.form-horizontal .form-error-message {
    display: block;
    color: #B52B2B;
    background-color: #fff;
}
@media (min-width: 768px) {
    .form-horizontal .form-error-message {
        position: absolute;
        top: 0px;
        right: 0;
        left: 100%;

        width: 200px;
        margin-left: 5px;
        padding: 0px 6px;
        line-height: 14px;
        font-size: 12px;
        z-index: 2;
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

/* header */
.header {
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .header {
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .header-basket {
        padding-top: 10px;
    }
}
.badge-basket {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #0a8be8;
}
.basket-icon {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 767px) {
    .header-top {
        margin-bottom: 15px;
    }
}
@media (min-width: 768px) {
    .header-top {
        margin-bottom: 20px;
        background-color: #414141;
    }
}

.btn-basket-small img {
    vertical-align: bottom;
}
@media (max-width: 767px) {
    .basket-icon img {
        vertical-align: top;
        height: 20px;
    }
}

/* navbar */
.navbar-top {
    min-height: 25px;
    border: none;
    margin-bottom: 5px;
}
.header-top .logo-swiss {
    line-height: 20px;
    padding: 5px;
    border: 1px solid transparent;
    font-size: 12px;
    color: #fff;
}
@media (min-width: 768px) {
    .header-top .navbar-top {
        background-color: #414141;
        margin-bottom: 0px;
    }
}
.navbar-top .navbar-right {
    margin-left: 0;
    margin-right: 0;
}
.navbar-top .navbar-nav {
    margin: 0 !important;
}
.navbar-top .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}
.navbar-top .nav > li > a {
    padding: 5px;
}
.navbar-top .navbar-toggle {
    margin: 0;
}
.header-top .navbar-default {
    background-color: transparent;
}
.header-top .navbar-default .navbar-nav > li > a {
    color: #fff;
    transition: all 500ms ease;
}
.header-top .navbar-default .navbar-nav > li > a.btn-default {
    background-color: #414141;
    border-color: #414141;
}
.header-top .navbar-default .navbar-nav > li:hover > a.btn-default {
    color: #979797;
}
@media (max-width: 767px) {
    .navbar-top .navbar-collapse {
        position: absolute;
        right: 0;
        z-index: 3;
        min-width: 200px;
        background: #fff;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    }
    .navbar-top .nav>li {
        border-bottom: 1px solid #E7E7E7;
        border-left: 1px solid #E7E7E7;
        border-right: 1px solid #E7E7E7;
    }
    .navbar-top .btn {
        text-align: right;
    }
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ffffff;
}
.navbar-default .navbar-toggle {
    border-color: #212529;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #212529;
}

/* nav products */
.nav.nav-curaprox-l.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0;
}
.nav.nav-curaprox-l>li>a {
    color: #333333;
    background-color: #ffffff;
    border-bottom-color: #f0f0f0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: bold;
}
.nav.nav-curaprox-l>li.category-use>a {
    background-color: #f0f0f0;
    border-color: #cccccc;
}
.nav.nav-curaprox-l2.nav-stacked>li+li {
    margin-top: 0;
}
.nav.nav-curaprox-l2>li>a {
    padding-top: 4px;
    padding-bottom: 4px;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    font-size: 85%;
    color: #333333;
    text-transform: none;
    background-color: #f8f8f8;
}
.nav.nav-curaprox-l2.nav-curaprox-l3>li>a {
    padding-left: 30px;
}
.nav.nav-curaprox-l3>li>a {
    background-color: #f5f5f5;
}
.nav.nav-curaprox-l>li.category-use.active>a,
.nav.nav-curaprox-l>li.active>a {
    color: #333333;
    background-color: #ffffff;
}
@media (min-width: 768px) {
    .nav.nav-curaprox-l>li.submenu-active>a {
        border-right-color: #ffffff;
    }
}
.nav.nav-curaprox-l2>li.active>a {
    font-weight: bold;
    background-color: #f5f5f5;
}
.nav.nav-curaprox-l3>li.active>a {
    color: #333333;
    font-weight: bold;
    background-color: #ffffff;
}
.nav.nav-curaprox-l>li>a:hover,
.nav.nav-curaprox-l>li>a:focus,
.nav.nav-curaprox-l2>li>a:hover,
.nav.nav-curaprox-l2>li>a:focus {
    color: #333333;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .category {
        margin-bottom: 15px;
        transition: background 250ms ease;
        box-shadow: 0 3px 6px 0 rgba(0,0,0,.1);
    }
    .category-xs {
        display: none;
    }
}
.btn-catalog {
    margin-bottom: 2px;
    padding: 10px 15px;
    text-align: left;
}

/* nav use */
.nav-curaprox-t {
    margin-bottom: 2px;
    background-color: #f0f0f0;
}
.nav-curaprox-t .btn {
    padding: 10px 15px;
    text-transform: uppercase;
}

/* nav submenu */
.submenu {
    display: none;
    position: absolute;
    z-index: 5;
    top: -3px;
    left: 100%;
    width: 720px;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-left: none;
    background-color: #ffffff;
    -webkit-box-shadow: 3px 4px 8px 0 rgba(0,0,0,.09);
    box-shadow: 6px 6px 12px 0 rgba(0,0,0,.09);
}
@media (max-width: 767px) {
    .submenu {
        display: none !important;
    }
}
.submenu .link-2 {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 90%;
    font-weight: bold;
    color: #333333;
}
.submenu .link-3 {
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 85%;
}
.submenu .circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* content */
.content {
    position: relative;
    padding-bottom: 15px;
}
@media (min-width: 768px) {
    .content {
        min-height: 600px;
    }
}

.curaprox-lead {
    color: #002440;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 18px;
}
.curaprox-tip-box {
    background: #f7fbdf;
    border-left: 4px solid #C4D600;
    border-radius: 6px;
    color: #002440;
    margin: 16px 0;
    padding: 14px 16px;
}
.curaprox-tip-box > :first-child {
    margin-top: 0;
}
.curaprox-tip-box > :last-child {
    margin-bottom: 0;
}
.curaprox-benefit-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}
.curaprox-benefit-list li {
    margin: 8px 0;
    padding-left: 24px;
    position: relative;
}
.curaprox-benefit-list li:before {
    color: #003DA5;
    content: "\2713";
    font-weight: 700;
    left: 0;
    position: absolute;
    top: 0;
}
.curaprox-steps {
    counter-reset: curaprox-step;
    list-style: none;
    margin: 16px 0;
    padding: 0;
}
.curaprox-steps li {
    counter-increment: curaprox-step;
    margin: 10px 0;
    min-height: 28px;
    padding-left: 40px;
    position: relative;
}
.curaprox-steps li:before {
    background: #003DA5;
    border-radius: 50%;
    color: #fff;
    content: counter(curaprox-step);
    font-size: 13px;
    font-weight: 700;
    height: 26px;
    left: 0;
    line-height: 26px;
    position: absolute;
    text-align: center;
    top: -2px;
    width: 26px;
}
/* carousel */
.carousel-control,
.carousel-control.left,
.carousel-control.right {
    background: none;
}
.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
    opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-control {
    z-index: 2;
}

/* footer */
.footer {
    color: #002440;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f0f0f0;
}
.footer.footer-after {
    background: #002440;
    color: #ffffff;
}
.footer a {
    color: #002440;
}
.footer img {
    max-height: 39px;
    width: auto;
}

@media (min-width: 768px) {
    .text-center-no-xs {
        text-align: center;
    }

    .text-right-no-xs {
        text-align: right;
    }
}

/* salesman */
.salesman {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    display: block;
    width: 240px;
    height: 257px;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-left: 35px solid #005ea8;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.salesman.salesman-hide {
    width: 35px;
    padding-left: 0;
    padding-right: 0;
}
.salesman.salesman-hide .in {
    display: none;
}
.side {
    position: absolute;
    left: -35px;
    top: 0;
    display: block;
    width: 35px;
    height: 257px;
    background: transparent url('../images/curaproxcz/oz.png') center center no-repeat;
    z-index: 5;
    cursor: pointer;
}

/* product */
.product-out {
    padding-top: 15px;
    padding-bottom: 30px;
}
.product {
    display: block;
    padding: 5px;
    transition: all 500ms ease;
}
.product:hover {
    text-decoration: none;
    -webkit-box-shadow: 3px 4px 8px 0 rgba(0,0,0,.09);
    box-shadow: 3px 4px 8px 0 rgba(0,0,0,.09);
}
.product-image {
    position: relative;
    height: 300px;
    display: table-cell;
    vertical-align: bottom;
    width: 100vw;
}
.product-image img {
    max-height: 100%;
}
.product-name {
    overflow: hidden;
    height: 54px;
    line-height: 18px;
    margin-top: 15px;
    margin-bottom: 0px;
    color: #333;
    text-align: center;
}
.h4.product-name small {
    font-size: 90%;
}
.product-perex {
    margin-bottom: 15px;
}
.product-price {
    line-height: 18px;
    color: #333;
    text-align: center;
}
.product-price .big {
    padding-top: 6px;
    padding-bottom: 6px;
}
@media (max-width: 767px) {
    .product-out {
        padding-top: 10px;
        padding-bottom: 10px
    }
    .product-image {
        height: 130px;
    }
    .product-price {
        padding-bottom: 10px;
        text-align: center;
    }
}
.product-price-full {
    color: #555555;
}
.product-description .h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
}
.label-product {
    position: absolute;
    left: 25px;
    bottom: 0px;
    display: block;
    border-radius: 0;
    font-size: 80%;
    text-transform: uppercase;
}
.label-product.label-gift {
    background-color: #009900;
}
.label-product.label-gift1 {
    background-color: #990099;
}
.label-product.label-gift2 {
    background-color: #CCCC00;
}
.label-product.label-novinka {
    color: #005ea8;
}
.label-product.label-star {
    left: -10px;
    font-size: 24px;
    color: #ffdd42;
}
.label-product.label-black-friday {
    color: #ffffff;
    background: #000000;
}
.label-product.label-position-1 {
    bottom: 0px;
}
.label-product.label-position-2 {
    bottom: 20px;
}
.label-product.label-position-3 {
    bottom: 60px;
}
.label-product.label-position-4 {
    bottom: 90px;
}
.label-product.label-position-5 {
    bottom: 120px;
}
@media (max-width: 767px) {
    .label-product {
        left: 5px;
    }
}

.product-gifts {
}
.product-gifts .img-block {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
.product-gifts .img-select {
    max-width: 20px;
    height: auto;
    vertical-align: middle;
}

/* breadcrumb */
.breadcrumb {
    margin-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
    background-color: #ffffff;
}
.breadcrumb a {
    color: #333333;
}

/* product detail */
.detail-image-main {
    display: block;
    position: relative;
    height: 510px;
    padding-bottom: 15px;
}
.detail-image-main img {
    max-height: 480px;
}
.detail-image {
    display: block;
    text-align: center;
}
.detail-image-inline {
    display: inline-block;
}
.detail-image .center-block {
    display: inline-block;
    padding: 2px;
}
span.form-control.ks {
    border-color: #ffffff;
    background-color: #ffffff;
}
@media (max-width: 767px) {
    .detail-image-main {
        height: 290px;
    }
    .detail-image-main img {
        height: 260px;
    }
}

.detail-image-main .detail-image-price {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -45px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
}
.detail-image-main .detail-image-price .dip-text,
.detail-image-main .detail-image-price .dip-price {
    display: block;
    padding: 5px 15px;
    text-align: center;
    font-weight: bold;
}
.detail-image-main .detail-image-price .dip-text {
    background-color: #00ACCD;
    color: #ffffff;
}
.detail-image-main .detail-image-price .dip-text.dip-text-black-friday {
    background-color: #000000;
}
.detail-image-main .detail-image-price .dip-price {
    background-color: #B7D43A;
    color: #000000;
    font-size: 150%;
}
.detail-image-main .detail-image-price .dip-price sup {
    font-size: 14px;
}

.product-image .detail-image-price {
    display: block;
    position: absolute;
    bottom: 0;
    right: 25px;
    font-size: 80%;
}
.product-image .detail-image-price .dip-text,
.product-image .detail-image-price .dip-price {
    display: block;
    padding: 5px 5px;
    text-align: center;
    font-weight: bold;
}
.product-image .detail-image-price .dip-text {
    background-color: #00ACCD;
    color: #ffffff;
}
.product-image .detail-image-price .dip-text.dip-text-black-friday {
    background-color: #000000;
}
.product-image .detail-image-price .dip-price {
    background-color: #B7D43A;
    color: #000000;
    font-size: 100%;
}
.product-image .detail-image-price .dip-price sup {
}

@media (max-width: 767px) {
    .product-image .detail-image-price {
        font-size: 70%;
        right: -10px;
        top: 0;
    }
    .product-image .detail-image-price .dip-text,
    .product-image .detail-image-price .dip-price {
        line-height: 10px;
        font-weight: normal;
        padding: 2px;
    }
}

/* to basket */
.white-popup {
    background: #ffffff;
    position: relative;
    padding: 15px;
    width: auto;
    max-width: 660px;
    margin: 20px auto;
}

/* search */
@media (max-width: 767px) {
    .typeahead.dropdown-menu {
        min-width: 230px;
        max-width: 260px;
        font-size: 90%;
    }
    .typeahead.dropdown-menu>li>a {
        white-space: normal;
    }
}

/* basket side */
.basket-side {
}
.basket-side-in {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.basket-side-info {
    padding: 10px;
}
.basket-side-title {
    padding: 10px;
}
@media (max-width: 767px) {
    .basket-side {
        margin-top: 30px;
    }
}

/* basket menu */
.basket-step {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cccccc;
}
.basket-step.active {
    color: #005ea8;
    border-color: #005ea8;
}
@media (max-width: 767px) {
    .basket-step {
        border-bottom: none;
        border-top: 2px solid #cccccc;
    }
    .basket-step.active {
        border-color: #005ea8;
    }
}

/* basket */
.table-basket {
    margin-top: 30px;
}
.table.table-basket>thead>tr>th,
.table.table-basket>tbody>tr>th,
.table.table-basket>tfoot>tr>th,
.table.table-basket>thead>tr>td,
.table.table-basket>tbody>tr>td,
.table.table-basket>tfoot>tr>td {
    vertical-align: middle;
}
.table-basket .basket-ks {
    text-align: center;
}
.table-basket .basket-ks .form-control {
    display: inline-block;
    max-width: 74px;
    text-align: center;
}
.table-basket .basket-price {
    text-align: right;
}
.table-basket .basket-remove {
    text-align: right;
}
.basket-price-all {
    display: block;
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 120%;
    text-align: right;
}
.basket-name-ks,
.basket-dph-info {
    display: none;
}
.text-discount {
    color: #a94442;
    font-size: 90%;
    text-decoration: line-through;
}
@media (max-width: 767px) {
    .table-basket {
        display: block;
    }
    .table-basket thead {
        display: none;
    }
    .table-basket > tbody,
    .table-basket > tbody > tr,
    .table-basket > tbody > tr > td {
        display: block;
        border: none;
    }

    .table-basket > tbody > tr {
        position: relative;
        border-top: 1px solid #dddddd;
    }
    .table-basket > tbody > tr:before,
    .table-basket > tbody > tr:after {
        content: " ";
        display: table;
    }
    .table-basket > tbody > tr:after {
        clear: both;
    }
    .table.table-basket>thead>tr>th,
    .table.table-basket>tbody>tr>th,
    .table.table-basket>tfoot>tr>th,
    .table.table-basket>thead>tr>td,
    .table.table-basket>tbody>tr>td,
    .table.table-basket>tfoot>tr>td {
        padding: 4px 0 4px 58px;
    }
    .table.table-basket>tbody>tr>td.basket-image {
        position: absolute;
        top: 4px;
        left: 0;
        width: 50px;
        height: 75px;
        padding: 0;
    }
    .table.table-basket>tbody>tr>td.basket-price {
        padding-left: 0;
    }
    .table.table-basket.table-basket-summarize>tbody>tr>td.basket-price {
        padding-left: 54px;
    }
    .table-basket .basket-remove {
        position: absolute;
        top: 0;
        right: 0;
    }
    .table-basket .basket-ks,
    .table-basket .basket-price {
        display: inline-block;
        width: 50%;
        float: left;
        text-align: left;
    }
    .table-basket.table-basket-summarize .basket-price {
        display: block;
        width: 100%;
    }
    .table-basket.table-basket-summarize .basket-ks {
        display: none;
    }
    .table-basket .basket-price.basket-price-2 {
        width: 100%;
    }
    .table.table-basket>tbody>tr>td.basket-price.basket-price-2 {
        padding-left: 50%;
    }
    .basket-name-ks {
        display: inline;
    }
    .basket-dph-info {
        display: inline;
        font-size: 80%;
    }
    .basket-price-all {
        text-align: center;
    }
}
.basket-free-transport {
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
}
.tp-branch-info {
    font-weight: normal;
}
.basket-product-price-full {
    display: block;
    text-decoration: line-through;
    color: #555555;
    font-size: 90%;
}
.basket-price-full {
    display: block;
    color: #555555;
    font-size: 90%;
}

/* SUMMARIZE */
.summarize {
    display: block;
    padding: 10px;
    background-color: #f0f0f0;
}
.summarize table {
    width: 100%;
}
.summarize table tr.tr-variant td,
.summarize table.table-summarize td {
    border: none;
}
.summarize table tr.tr-variant td {
    padding-top: 0;
}
.summarize tbody {
    vertical-align: top;
}
.row.row-summarize {
    display: block;
    margin-bottom: 15px;
    font-size: 90%;
}
.row.row-summarize.row-price {
    font-size: 125%;
}
@media (max-width: 767px) {
    .summarize {
        margin-top: 30px;
    }
}

/* VOUCHER */
.row-voucher .checkbox input[type="checkbox"] {
    margin-left: -20px;
}

/* MAGNIFIC POPUP */
.mfp-figure:after {
    background-color: #ffffff;
}

/* VIDEO */
.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* CLUB BENEFITS */
.row.benefits {
    color: #ffffff;
    text-transform: uppercase;
}
.col-benefits {
    padding: 0px 30px;
    background-color: #4266B0;
}
.col-benefits-heading {
    font-size: 150%;
    font-weight: bold;
    text-align: center;
}
.col-benefits-border {
    padding: 0 0 15px 0;
    margin: 15px 0 15px 0;
    border-bottom: 2px solid #ffffff;
}
.col-benefits-items {

}
.box-benefits {
    text-align: center;
    font-weight: bold;
}
.box-benefits img {
    max-width: 75px;
    margin: 0 auto 15px;
}
@media screen and (max-width: 991px) {
    .col-benefits {
        padding: 15px 30px;
    }
    .box-benefits img {
        max-width: 50px;
        margin: 0 auto 15px;
    }
}
@media screen and (min-width: 768px) {
    .vertical-align {
        display: flex;
        align-items: center;
    }
}
@media screen and (max-width: 767px) {
    .box-benefits {
        text-align: left;
    }
    .box-benefits .row {
        display: flex;
        align-items: center;
    }
    .box-benefits img {
        margin: 0 auto;
    }
}

/* USER */
.dropdown-menu.dropdown-menu-user>li>a {
    text-align: right;
}

/* Stránka Vernostný program */
.club {
    margin: 0 0 60px;
}
.club img {
    max-width: 100%;
}
.club .box {
    display: block;
}
.club .responsive {
    display: none
}
.box {
    position: relative;
    background-image: url('/images/curaproxcz/curaproxcz_vernostni_program.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.text {
    width: 100%;
}
.text:after {
    content: '';
    display: block;
    clear: both;
}
.text > .side-left {
    width: 45%;
    float: left;
    text-align: left;
}
.text > .side-left > p.red {
    color: #ef3845;
    font-size: 22px;
    line-height: 22px;
    margin: 50px 10px 10px 30px;
}
.text > .side-left > p.blue {
    color: #25408f;
    font-size: 22px;
    line-height: 22px;
    margin: 10px 10px 215px 30px;
}
.text > .side-left > a {
    float: right;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    margin: 217.5px -35px 50px 10px;
    background-color: #EE3A45;
    padding: 10px 30px 10px 65px;
    border-radius: 6px;
    background-image: url('/images/curaproxcz/double-arrow-right-icon.png');
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: center;
}
.text > .side-left > a:hover {
    -webkit-box-shadow: 3px 4px 8px 0 rgba(0,0,0,.3);
    box-shadow: 3px 4px 8px 0 rgba(0,0,0,.3);
}
.text > .side-left > a:hover {
    text-decoration: underline;
}
.text > .side-right {
    width: 55%;
    float: right;
    text-align: right;
}
.text > .side-right > h1 {
    margin: 0px;
}
.text > .side-right > h1 > span.blue {
    color: #25408f;
    font-size: 82px;
    line-height: 82px;
    font-weight: normal;
    display: inline-block;
    margin: 30px 30px 5px 10px;
}
.text > .side-right > h1 > span.white {
    color: #ffffff;
    font-size: 82px;
    line-height: 82px;
    font-weight: normal;
    display: inline-block;
    margin: 5px 30px 30px 10px;
}
.text > .side-right > h1 > span.white > img {
    width: 60px;
    float: right;
    display: inline-block;
    margin: 8px 4px;
}
.text > .side-right > ul {
    padding: 0px;
    list-style: none;
    margin: 15px 30px 15px 10px;
}
.text > .side-right > ul > li {
    margin: 0px;
}
.text > .side-right > ul > li > p {
    margin: 5px 0px;
}
.text > .side-right > ul > li > p.red {
    color: #ef3845;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}
.text > .side-right > ul > li > p.white {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    text-shadow: 1px 1px 2px grey, 0 0 1px grey, 0 0 0.2px grey;
}
.text > .side-right > a {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    text-decoration: none;
    margin: 30px 30px 30px 10px;
    text-shadow: 1px 1px 2px grey, 0 0 1px grey, 0 0 0.2px grey;
}
.text > .side-right > a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .box {
        background-image: none;
    }
    .text > .side-left {
        float: none;
        width: 100%;
    }
    .text > .side-right {
        float: none;
        width: 100%;
        text-align: left;
    }
    .text > .side-left > p.red {
        margin: 30px 0 15px;
    }
    .text > .side-left > p.blue {
        margin: 0 0 30px;
    }
    .text > .side-left > a {
        float: none;
        margin: 0 auto;
    }
    .text > .side-right > h1 > span.blue {
        font-size: 62px;
        line-height: 62px;
        margin-left: 0;
    }
    .text > .side-right > h1 > span.white {
        font-size: 62px;
        line-height: 62px;
        margin-left: 0;
        color: #25408f;
    }
    .text > .side-right > h1 > span.white > img {
        height: 46px;
        width: auto;
        margin: 10px 4px;
    }
    .text > .side-right > ul {
        margin: 0;
    }
    .text > .side-right > ul > li > p.white,
    .text > .side-right > a {
        text-shadow: none;
        color: #333333;
    }
    .text > .side-right > ul > li > p.white br {
        display: none;
    }
    .text > .side-right > a {
        margin-left: 0;
        margin-right: 0;
        text-decoration: underline;
    }
}

/* BENEFIT DETAIL */
.benefit-detail {
    display: flex;
    margin-bottom: 15px;
    background-image: url('/images/curaproxcz/curaproxcz_benefit_detail.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}
.benefit-detail .benefit-text,
.benefit-detail .benefit-action {
    line-height: 36px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 13px;
    font-weight: normal;
}
.benefit-detail .benefit-text {

}
.benefit-detail .benefit-text span {
    display: inline-block;
    line-height: 18px;
    vertical-align: middle;
}
.benefit-detail .benefit-action {
    vertical-align: middle;
}
.benefit-detail .benefit-action a {
    display: inline-block;
    line-height: 18px;
    vertical-align: middle;
    padding-right: 20px;
    background-image: url('/images/curaproxcz/curaproxcz_benefit_detail_heart.png');
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-size: auto auto;
}

/* DOPRAVA */
.doprava-box {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
}
.doprava-box-text:after {
    content: '';
    display: block;
    clear: both;
}
.doprava-box-img {
    display: block;
    box-sizing: border-box;
    width: 30%;
    float: left;
    padding: 15px 0;
}
.doprava-box img {
    max-width: 100%;
    height: auto;
}
.doprava-box-text {
    display: block;
    box-sizing: border-box;
    padding: 0px 15px;
    width: 70%;
    float: left;
}
.doprava-box-text h3 {
    margin: 10px 0;
}

/* ODSTOUPENI OD KUPNI SMLOUVY */
.order-withdrawal-control {
    margin: 20px 0 35px;
    color: #1f2933;
}
.order-withdrawal-intro,
.order-withdrawal-success {
    margin-bottom: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 8px;
}
.order-withdrawal-intro h2,
.order-withdrawal-success h2,
.order-withdrawal-confirm h2 {
    margin-top: 0;
    color: #003DA5;
}
.order-withdrawal-intro p,
.order-withdrawal-success p,
.order-withdrawal-confirm p,
.order-withdrawal-note {
    font-size: 16px;
    line-height: 1.55;
}
.order-withdrawal-errors {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 24px;
    padding: 18px 20px;
    background: #EEF5FF;
    border: 1px solid #8BB8E8;
    border-left: 5px solid #003DA5;
    border-radius: 8px;
    color: #1f2933;
}
.order-withdrawal-errors-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    background: #003DA5;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}
.order-withdrawal-errors-content {
    flex: 1 1 auto;
}
.order-withdrawal-errors h3 {
    margin: 0 0 6px;
    color: #003DA5;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}
.order-withdrawal-errors p {
    margin: 0 0 10px;
    color: #1f2933;
    font-size: 15px;
    line-height: 22px;
}
.order-withdrawal-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.order-withdrawal-errors li {
    position: relative;
    margin: 6px 0 0;
    padding-left: 18px;
    color: #1f2933;
    font-size: 15px;
    line-height: 22px;
}
.order-withdrawal-errors li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #C4D600;
    border-radius: 50%;
}
.order-withdrawal-form fieldset {
    margin: 0 0 24px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 8px;
}
.order-withdrawal-form legend {
    width: auto;
    margin: 0 0 14px;
    padding: 0 8px;
    color: #003DA5;
    border: 0;
    font-size: 20px;
    font-weight: bold;
}
.order-withdrawal-form label {
    color: #1f2933;
    font-weight: bold;
}
.order-withdrawal-form .form-control:focus {
    border-color: #003DA5;
    box-shadow: 0 0 0 2px rgba(0, 61, 165, 0.14);
}
#ui-datepicker-div.ui-datepicker {
    clip: auto !important;
    width: 280px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 61, 165, 0.16);
    color: #1f2933;
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    z-index: 10000 !important;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    min-height: 36px;
    margin: 0 0 8px;
    padding: 7px 42px;
    background: #003DA5;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
    top: 7px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    cursor: pointer;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev {
    left: 10px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
    right: 10px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:hover,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #8BB8E8;
    border-color: #8BB8E8;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next span {
    display: none;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:before,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:before {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:before {
    content: "<";
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:before {
    content: ">";
}
#ui-datepicker-div.ui-datepicker table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 3px;
    font-size: 14px;
}
#ui-datepicker-div.ui-datepicker th {
    padding: 6px 0;
    color: #003DA5;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}
#ui-datepicker-div.ui-datepicker td {
    padding: 0;
    border: 0;
}
#ui-datepicker-div.ui-datepicker td span,
#ui-datepicker-div.ui-datepicker td a {
    display: block;
    min-width: 30px;
    padding: 6px 0;
    background: #f7f9fc;
    border: 1px solid #ededed;
    border-radius: 4px;
    color: #003DA5;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
}
#ui-datepicker-div.ui-datepicker td a:hover,
#ui-datepicker-div.ui-datepicker td a:focus {
    background: #EEF5FF;
    border-color: #8BB8E8;
    color: #003DA5;
}
#ui-datepicker-div.ui-datepicker .ui-state-active,
#ui-datepicker-div.ui-datepicker .ui-widget-content .ui-state-active {
    background: #003DA5;
    border-color: #003DA5;
    color: #ffffff;
}
#ui-datepicker-div.ui-datepicker .ui-state-highlight,
#ui-datepicker-div.ui-datepicker .ui-widget-content .ui-state-highlight {
    background: #C4D600;
    border-color: #C4D600;
    color: #003DA5;
}
#ui-datepicker-div.ui-datepicker .ui-priority-secondary {
    background: #ffffff;
    color: #9aa4b2;
    opacity: 1;
}
.order-withdrawal-item {
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid #ededed;
}
.order-withdrawal-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.order-withdrawal-item-head h3 {
    margin: 0;
    color: #003DA5;
    font-size: 17px;
}
.order-withdrawal-submit {
    margin-top: 20px;
}
.order-withdrawal-confirm {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
    overflow: auto;
    background: rgba(0, 0, 0, 0.55);
}
.order-withdrawal-confirm-in {
    max-width: 760px;
    margin: 30px auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 8px;
}
.order-withdrawal-confirm dl {
    margin: 18px 0;
    padding: 18px;
    background: #f7f9fc;
    border: 1px solid #ededed;
    border-radius: 8px;
}
.order-withdrawal-confirm dt {
    margin-top: 10px;
    color: #003DA5;
}
.order-withdrawal-confirm dt:first-child {
    margin-top: 0;
}
.order-withdrawal-confirm dd {
    margin-left: 0;
}
.order-withdrawal-confirm ul {
    padding-left: 18px;
}

@media (max-width: 767px) {
    .order-withdrawal-intro,
    .order-withdrawal-success,
    .order-withdrawal-form fieldset,
    .order-withdrawal-confirm-in {
        padding: 18px;
    }
    .order-withdrawal-item-head {
        display: block;
    }
    .order-withdrawal-item-head .btn {
        margin-top: 10px;
    }
    .order-withdrawal-errors {
        display: block;
    }
    .order-withdrawal-errors-icon {
        margin-bottom: 10px;
    }
}
