.cart-steps-wrap{
    position: relative;
    overflow: hidden;
}
.cart-steps-wrap::before{
    content:"";
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    background:#0d5eaf;
    z-index:1;
    width:50%;
}
.cart-steps-wrap::after{
    content:"";
    position: absolute;
    right:0;
    top:0;
    bottom:0;
    background:#bdbdbd;
    z-index:2;
    width:50%;
}
.cart-steps-finish::after{
    display: none;
}
.cart-steps-finish::before{
    width:100%;
}
.cart-steps{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
.cart-steps a{
    width:100%;
    text-align: center;
    padding: 28px 0;
    position: relative;
}
.cart-steps a:not(.current-cart-step):not(.cart-step-visited){
    pointer-events: none;

}
.cart-steps a::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: -20px;
    top: 39px;
    display: flex;
    z-index: 50;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.cart-steps a:nth-child(2){
    background:#848484;
}
.cart-steps a:nth-child(2)::after{
    border-left: 10px solid #848484;
}
.cart-steps a:nth-child(3){
    background:#9F9F9F;
}
.cart-steps a:nth-child(3)::after{
    border-left: 10px solid #9F9F9F;
}
.cart-steps a:nth-child(4){
    background:#BDBDBD;
}

.cart-steps p{
    font-weight:600;
    margin:0;
    color:rgba(255,255,255,0.5);

}
.cart-steps p span{
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 40px;
    margin-right: 5px;
}
.cart-steps span::before{
    position: relative;
    top:3px;
}
.cart-steps a:nth-child(1) p span::before{
    content:"1";
}
.cart-steps a:nth-child(2) p span::before{
    content:"2";
}
.cart-steps a:nth-child(3) p span::before{
    content:"3";
}
.cart-steps a:nth-child(4) p span::before{
    content:"4";
}
.cart-steps a:hover{
    text-decoration: none;
    cursor: pointer;
}

.current-cart-step{
    background:#0D5EAF;
}
.cart-steps a.current-cart-step::after{
    border-left: 10px solid #0d5eaf;
}

.current-cart-step p{
    color:#fff;
}
.current-cart-step p span{
    background: #74C820;
    border:none;
    transition: all .2s ease;

}

.cart-step-visited p span{
    background: #5DAF3E;
    border: none;
    color:#fff
}
.cart-step-visited p span::before{
    content: "\f00c"!important;
    font-family: 'Font Awesome 5 Free';
    position: relative;
    top: 5px;
}
.cart-steps a.cart-step-visited{
    background:#0D5EAF;
}
.cart-steps a.current-cart-step{
    background: #0D5EAF;
}
.cart-steps a.cart-step-visited::after{
    border-left: 10px solid transparent;
}


.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
    border: none;
}

table{
    margin-bottom:0!important;
}

table thead th{
    color:#0D5EAF;
    text-transform: uppercase;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f0f0f0;
}
.table{
    color:#707070;
}
.table > thead > tr > th{
    border-bottom:1px solid #E5E5E5;
    padding-left: 14px;
    padding-right: 14px;
}
.table > tbody > tr > th{
    border-bottom:1px solid #E5E5E5;
}
.table > tbody > tr > td{
    border-bottom:1px solid #E5E5E5;
    display: table-cell;
    vertical-align: middle;
    padding-right: 14px;
}
.table-cart-step1 thead tr th:nth-child(5){
    text-align: right;
}
.table-cart-step1 thead tr th:nth-child(6){
    text-align: right;
}
.table > tbody > tr > th {
    width:9%;
    padding-left: 20px;
}
.table > tbody > tr > td:nth-child(2) {
    width:29%;
}
.table > tbody > tr > td:nth-child(3) {
    width:26%;
}
.table > tbody > tr > td:nth-child(4) {
    width:20%;
}
.table > tbody > tr > td:nth-child(5) {
    width:10%;
    text-align: right;
}
.table > tbody > tr > td:nth-child(6) {
    width:6%;
}

.table-cart-step3 > tbody > tr > td:nth-child(2) {
    width: 43%;
}
.table-cart-step3 > tbody > tr > td:nth-child(3) {
    width: 45%;
    text-align: right;
}
.table-cart-step3 > tbody > tr > td:nth-child(4) {
    width: auto;
    text-align: right;
}
.table-cart-step3 thead tr th:nth-child(3){
    text-align: right;
}
.table-cart-step3 thead tr th:nth-child(4){
    text-align: right;
}
.table .fa-times{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6868;
    color: #fff;
    border-radius: 40px;
    font-size: 16px;
    transition: all .2s ease;
    cursor: pointer;
}
.table .fa-times:hover{
    background:#fb3838;
}
.table-discount{
    color:#75C921;
    font-weight:600;
}
tbody > tr{
    height: 91px;
}
.table select{
    border: none;
    padding: 11px 0 11px 40px;
    border-radius: 40px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    width: 100%;
    cursor: pointer;
}
.table input {
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.table div{
    position: relative;
}
.table div .fa-chevron-down{
    background: #0D5EAF;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    border-radius: 0 44px 44px 0;
    pointer-events: none;

}
select:focus{
    outline: none;
}
select::after{
    content:"/f078";
    font-family: 'Font Awesome 5 Free';
}
.table-select:hover .fa-chevron-down{
    background: #0F4984;
}
.table-domena-img{
    width: 70px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    height: 70px;
    display: flex;
    align-items: center;
}



.table tfoot tr:nth-child(4){
    background:#F0F0F0;
    font-weight:600;
}
.table > tfoot > tr > td {
    padding: 14px 8px;
}
.table > tfoot > tr:nth-child(2) > td:nth-child(2){
    color:#BDBDBD;
    font-size: 13px;
    /*padding-top: 40px;*/
}
.table > tfoot > tr > td{
    padding-left: 14px;
    padding-right: 14px;
}
.table > tfoot > tr > td:nth-child(4){
    text-align: right;
}
.table > tfoot > tr:nth-child(4) > td:nth-child(3){
    text-align: right;
}
.table > tfoot .tfoot-note {
	border-top: none;
}

.cart-continue{
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
}
.cart-continue .btn{
    flex-basis:25%;
}
.form-legend{
    position: absolute;
    bottom: -40px;
    right: 15px;
}
.table-cart-step3 .fas{
    background:transparent;
    border:1px solid #0D5EAF;
    margin:0;
}

.table-cart-step3 .custom-checkbox .checkmark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-cart-step3 .custom-checkbox input{
    width: 44px;
    height: 44px;
}
.table-cart-step3 .checkmark::before {
    top: 1px;
    left: 1px;
}
.table-cart-step3 > tbody > tr {
    cursor: pointer;
}
.payment-method-summary tbody > tr {
    height: unset;
}
.payment-method-summary > tbody > tr > td {
    padding-top: 14px;
    padding-bottom: 14px;
}
.table-summary-contact > tbody > tr > td {
    border-bottom: none;
    padding-top: 10px;
}
.table-summary-contact > tbody > tr{
    height:unset;
}
.table-summary-contact > tbody > tr > td:nth-child(2) {
    width: 50%;
}
.table-summary-payment > tbody > tr > td {

    padding-top: 12px;
    padding-bottom: 15px;
}
.table-summary-payment > tbody > tr{
    height:unset;
}
.table-summary-payment > tbody > tr > td:nth-child(1) {
    width: 50%;
    padding-left:25px;
}
.table-summary-payment > tbody > tr > td:nth-child(2) {
    width: 50%;
    text-align: right;
    padding-right:25px;

}
.table-summary-payment > tbody > tr > td:nth-child(4) {
    width: 50%;
    padding-right:25px;
}
.table-summary-payment > tbody > .domain-row > td:nth-child(1) {
    width: 55%;
}
.table-summary-payment > tbody > .domain-row > td:nth-child(2) {
    width: 25%;
    text-align: center;
}
.table-summary-payment > tbody > .domain-row > td:nth-child(3) {
    width: 20%;
    text-align: right;
    padding-right:24px;
}
.table.payment-method-summary{
}

.coupon{
    background:#0D5EAF;
    color:#fff;
    padding: 33px 40px 37px;
    margin-top: 15px;
}
.coupon h4::after{
    letter-spacing: 0px;
    transform: rotate(90deg);
    display: block;
    right: -39.5px;
    top: 2px;
    content: "....";
    position: absolute;
    color: #BDBDBD;
    font-size: 30px;
    font-family: serif;
    font-weight: normal;
}
.coupon input[type="text"]{
    padding: 12px 230px 12px 30px;
}
.coupon-head span{
    padding-left: 35px;
    color: #BDBDBD;
    font-size: 20px;
    font-weight:bold;
}
.coupon-head .coupon-label {
	width: 246px;
}
.coupon input{
    background:#fff;
}
.coupon input[type="submit"]{
    padding: 12px 0;
    width: 200px;
	height: 44px;
	text-align: left;
	padding-left: 20px;
}
.coupon .input-wrap-icon-big .fas {
    top: 15px;
}
.coupon-head{
    display: flex;
    align-items:center;
    padding-bottom:15px
}
.tip{
    font-size:13px;
    margin-top: 40px;
    display: block;
}
.tip a{
    color:#75C921;
}
.table-align{
    display: flex;
    align-items: flex-end;
}

.payment-method-summary > tbody > .coupon-table-row > td {
    padding-top: 19px;
    padding-bottom: 19px;
}
.coupon-table-row{
    /*display:none;*/
}
.coupon-table-row.coupon-active{
    display:table-row !important;
}
.coupon-active > td,
td.coupon-active {
    background: rgba(226, 244, 209, 0.8);
}
tr.hosting-tip {
    background: #0D5EAF;
}
td.hosting-tip {
    background: #0D5EAF;
	color: white;
}
td.hosting-tip a {
	color: white;
	font-weight: bold;
}
td.hosting-tip a:hover {
	color: white;
	text-decoration: underline;
}
.payment-method-summary > tbody > tr > td:nth-child(2) {
    width: 27%;
}

.coupon-active .coupon-head span{
    color:#75C921;
}
.coupon-active .coupon-head h4::after{
    color:#75C921;
}






@media (max-width: 1199px) {

    .table select {
        padding: 11px 0 11px 20px;
    }
    .cart-continue .btn {
        flex-basis: 35%;
    }
    .table-cart-step3 > tbody > tr > td:nth-child(5) {
        padding-top: 10px;
    }
}

@media (max-width: 991px) {

    .cart-wrap .container{
        width: 97%;
    }
    .table > tbody > tr > td {
        padding-left: 5px;
        padding-right: 5px;
    }
    .table > tbody > tr > td:nth-child(2) {
        width: 11%;
    }
    .cart-continue .btn {
        flex-basis: 40%;
    }

    .payment-method-summary > tbody > tr > td:nth-child(2) {
        width: 27%;
    }

    .table-cart-step3 > tbody > tr > td:nth-child(5) {
        width: 8%;
    }
    .table-summary-payment > tbody > .domain-row > td:nth-child(3) {
        width: 15%;
        text-align: center;
    }
    .table-summary-contact > tbody > tr > td:nth-child(2) {
        width: 50%;
    }
    .cart-steps a::after {
        top: 50px;
    }

    .payment-method-summary > tbody > tr > td:nth-child(1) {
        padding-left: 20px;
    }
    .cart-steps p span {
        margin-right:0;
    }

}

@media (max-width: 767px) {
    .table:not(.table-cart-step3):not(.payment-method-summary) tbody > tr {
        height:unset;
        display: block;
        width: 100%;
    }
    .table:not(.table-cart-step3) > tbody > tr > th {
        width: 100%!important;
        display: block;
        border-top:none;
    }
    .table:not(.table-cart-step3):not(.payment-method-summary) > tbody > tr > td {
        display: block;
        width: 100%!important;
        border-bottom:none;
    }
    .table:not(.table-cart-step3) > thead{
        display: none;
    }
    .table:not(.table-cart-step3) > thead > tr {
        display: block;
    }
    .table:not(.table-cart-step3) > thead > tr > th {
        display: block;
        text-align: left!important;
    }
    .table:not(.table-cart-step3) tfoot{
        display: block;
    }

    .table:not(.table-cart-step3) > tbody > tr > th {
        border-bottom: none;
    }
    .table:not(.table-cart-step3) .table-select {
        width: 100%;
        margin: auto;
    }
    .table:not(.table-cart-step3) td{
        position: relative;
        height:62px;
    }
    .table:not(.table-cart-step3):not(.payment-method-summary) > tbody > tr > td {
        padding-left: 130px;
        text-align: center!important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .table:not(.table-cart-step3) tbody tr td::before{
        content: "Domenakm";
        position: absolute;
        left: 0;
        top:0;
        background: #0d5eaf;
        color: #fff;
        font-weight: bold;
        font-size: 15px;
        text-transform: uppercase;
        height: 62px;
        width:110px;
        padding: 20px 0 20px 10px;
        text-align: left;
    }
    .table:not(.table-cart-step3):not(.payment-method-summary).table-striped>tbody>tr:nth-of-type(odd) {
        background-color: #fff;
    }

    /*---table mobil---*/

    .table-cart-step1 .fa-times:after {
        content: "ODOBRAŤ";
        font-family: "bio-sans",sans-serif;
    }
    .table-cart-step1 .fa-times {
        width: 100%;
    }
    .table-cart-step1 .fa-times:before {
        margin-right: 10px;
        opacity: 0.5;
        position: absolute;
        right: 20px;
    }



    .table-cart-step1 tbody tr td:nth-child(2)::before{
        content: "názov";
    }
    .table-cart-step1 tbody tr td:nth-child(3)::before{
        content: "služba";
    }
    .table-cart-step1 tbody tr td:nth-child(4)::before{
        content: "obdobie";
    }
    .table-cart-step1 tbody tr td:nth-child(5)::before{
        content: "zľava";
    }
    .table-cart-step1 tbody tr td:nth-child(6)::before{
        content: "cena";
    }

    .table-cart-step1 tbody tr td:last-child::before{
        display: none;
    }

    .cart-wrap .container {
        width: 100%;
    }
    .table-cart-step1 tbody tr th:nth-child(1){
        display: none;
    }
    .table-cart-step1 tfoot{
        border-bottom: 1px solid #ddd
    }
    .table-cart-step1 tfoot tr{
        border-top: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
    }
    .table-cart-step1 tfoot tr td{
        border-top: none;
        display: flex;
        align-items:center;
    }
    .table-cart-step1 tfoot tr td:last-child{
        display: none;
    }
    .tfoot-note{
        display: none!important;
    }
    .table-cart-step1 tbody tr{
        padding-bottom:30px;
    }
    .table-cart-step1 tbody tr:last-child{
        padding-bottom:0;
    }
    .cart-step-2wrap{
        display: block;
    }
    .cart-step-2wrap .col-xs-100:nth-child(1) form .col-sm-50{
        width:50%;
        float:left;
    }
    .form-legend {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .table-summary-payment tbody tr td::before {
        display: none;
    }
    .table-summary-payment tbody tr{
        position: relative;
    }
    .table-summary-payment tbody tr::before {
        content: "Domenakm";
        position: absolute;
        left: 0;
        top: 0;
        background: #0d5eaf;
        color: #fff;
        font-weight: bold;
        font-size: 15px;
        text-transform: uppercase;
        height: 100%;
        width: 110px;
        padding-top: 19px;
        padding-left: 10px;
        text-align: left;
        z-index:1;
        display: flex;
        align-items: center;
    }
    .cart-step-4wrap{
        display: flex;
        flex-direction: column-reverse;
    }
    .table-summary-payment > tbody > tr > td:nth-child(1) {
        padding-left: 125px;
    }
    .table-summary-payment > tbody > tr{
        margin-bottom:20px;
        border-bottom:1px solid #ddd;
    }
    .table-summary-contact tbody tr td{
        border-top: 1px solid #E5E5E5;
    }
    .payment-row::before{
        display:none;
    }
    .table-summary-contact tbody{
        border-bottom: 1px solid #E5E5E5;
    }
    .table-summary-contact tbody tr td::before {
        padding-top:0;
        padding-left: 10px;
        display: flex;
        align-items: center;
        padding-right: 10px;
    }
    .table-summary-contact tbody tr:nth-child(1) td:nth-child(1)::before {
        content: "IČO";
    }
    .table-summary-contact tbody tr:nth-child(1) td:nth-child(2)::before {
        content: "názov firmy";
    }
    .table-summary-contact tbody tr:nth-child(2) td:nth-child(1)::before {
        content: "dič";
    }
    .table-summary-contact tbody tr:nth-child(2) td:nth-child(2)::before {
        content: "ič dph";
    }
    .table-summary-contact tbody tr:nth-child(3) td:nth-child(1)::before {
        content: "právna forma";
    }
    .table-summary-contact tbody tr:nth-child(3) td:nth-child(2)::before {
        content: "ulica a číslo domu";
    }
    .table-summary-contact tbody tr:nth-child(4) td:nth-child(1)::before {
        content: "krajina";
    }
    .table-summary-contact tbody tr:nth-child(4) td:nth-child(2)::before {
        content: "meno a priezvisko";
    }
    .table-summary-contact tbody tr:nth-child(5) td:nth-child(1)::before {
        content: "telefón";
    }
    .table-summary-contact tbody tr:nth-child(5) td:nth-child(2)::before {
        content: "e-mail";
    }
    .table-summary-payment tbody tr::before{
        display:none;
    }
    .cart-continue .fas{
        display:none;
    }
}

@media (max-width: 576px) {
    .cart-continue {
        flex-direction: column;
    }
    .cart-continue > a:nth-child(1){
        margin-bottom: 10px;
    }
    .table-cart-step3 tbody tr th{
        display: none;
    }
    .table-cart-step3 thead tr th:nth-child(5){
        display: none;
    }
    .table-cart-step3 thead tr th:nth-child(1){
        display: none;
    }
    .table-cart-step3 thead tr th{
        white-space: nowrap;
    }
    .table-cart-step3 .custom-checkbox .checkmark {
        margin-left: 10px;
    }
    .table-cart-step3 > tbody > tr > td:nth-child(2) {
        padding-left:20px;
    }
    .coupon-head span {
        display:none;
    }
    .coupon-head h4::after{
        display:none;
    }
    .cart-continue .fas{
        display:block;
    }
}

@media (max-width: 420px) {
    .table-cart-step1 tbody tr td:last-child{
        padding-left:0
    }
    .cart-step-2wrap .col-xs-100:nth-child(1) form .col-sm-50{
        width:100%;
    }
}
