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;
    }
}
.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;
    }
}

/* 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: 36px;
    line-height: 18px;
    margin-top: 15px;
    margin-bottom: 0px;
    color: #333;
    text-align: center;
}
.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: #1062F4;
}
.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;
    }
}