.cd-panel *::after,
.cd-panel *::before {
    content: '';
}

.cd-panel {
   /* z-index: 99;*/
   z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
   /* height: 100%;
    width: 100%;*/
    right: 0;
    bottom: 0;
    visibility: hidden;
    transition: visibility 0s 0.6s;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.cd-panel::after {
    /* overlay layer */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s 0.3s;
}

.cd-panel.is-visible {
    background-color: rgba(35, 33, 33, 0.5);
    visibility: visible;
    transition: visibility 0s 0s;
}

.cd-panel.is-visible::after {
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.3s 0s;
}

.cd-panel.is-visible .cd-panel-close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
}

.cd-panel.is-visible .cd-panel-close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.cd-panel-header {
    /*position: fixed;*/
    /*width: 90%;*/
    height: 65px;
    line-height: 65px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);*/
  /*  -webkit-transition: top 0.3s 0s;
    transition: top 0.3s 0s;*/
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.cd-panel-header h2 {
    /*display: none;*/
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding-left: 5%;
}

.from-right .cd-panel-header, .from-left .cd-panel-header {
    top: -65px;
}

.from-right .cd-panel-header {
    right: 0;
}

.from-left .cd-panel-header {
    left: 0;
}

.is-visible .cd-panel-header {
    /*top: 83px;*/
    top: 20px;
    /*-webkit-transition: top 0.3s 0.3s;
    transition: top 0.3s 0.3s;*/
}

.cd-panel-close {
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 22px;
    width: 52px;
    height: 52px;
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-color: #f4f4f4;
}

.cd-panel-close::before,
.cd-panel-close::after {
    /* close icon created in CSS */
    position: absolute;
    top: 25px;
    left: 16px;
    height: 3px;
    width: 20px;
    background-color: rgb(215, 215, 215);
    /* this fixes a bug where pseudo elements are slighty off position */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-panel-close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-panel-close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.no-touch .cd-panel-close:hover {
    background-color: #424f5c;
}

.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
    background-color: #ffffff;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.3s;
}

.no-touch .cd-panel-close:hover::before {
    -webkit-transform: rotate(220deg);
    transform: rotate(220deg);
}

.no-touch .cd-panel-close:hover::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-panel-container {
    /*position: fixed;*/
    /*width: 90%;*/
    
    /*height: 100%;*/
    /*top: 66px;*/
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 1;
  
    overflow: auto;
}
.cd-panel-container,
.cd-panel-header,
.cd-panel-footer {
    width: 500px;
    max-width: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.3s;
/*    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;*/
}

.from-right .cd-panel-container {
    right: 0;
    
}

.from-left .cd-panel-container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.is-visible .cd-panel-container,
.is-visible .cd-panel-header,
.is-visible .cd-panel-footer {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
/*    -webkit-transition-delay: 0s;
    transition-delay: 0s;*/
}

/*@media only screen and (min-width: 768px) {
    .cd-panel-container {
        width: 70%;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-panel-container {
        width: 50%;
    }
}*/

.cd-panel-content.page-basket {
   /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
    width: 100%;
    padding: 0 15px;
    overflow: auto;
    /* smooth scrolling on touch devices */
    -webkit-overflow-scrolling: touch;
}

.cd-panel-content p {
    font-size: 14px;
    font-size: 0.875rem;
    color: #424f5c;
    line-height: 1.4;
    margin: 2em 0;
}

.cd-panel-content p:first-of-type {
    margin-top: 0;
}

.cd-panel-footer {
    position: relative;
    /*bottom: -190px;
    right: 0;*/
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 190px;*/
    /*line-height: 65px;*/
    padding: 30px 15px;
    background-color: #f4f4f4;
    z-index: 2;
/*    -webkit-transition: bottom 0.3s 0s;
    transition: bottom 0.3s 0s;*/
}

/*.is-visible .cd-panel-footer {
    bottom: 0;
    -webkit-transition: bottom 0.3s 0.3s;
    transition: bottom 0.3s 0.3s;
}*/

.menu-cart {  
    min-width: 120px;
}
.cart-wr {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
}
.menu-cart__text {
    margin-top: 25px;
}

/*----------------------------------------------------------------------------------------------*/

.page-basket .table-hover {
    margin: 35px 0;
}

.page-basket .table-hover tbody:before {
    content: "-";
    display: block;
    line-height: 15px;
    color: transparent;
}

.page-basket .table-hover tbody tr {
    background: #fff;
}

.page-basket .table-hover tbody tr.spacer {
    box-shadow: none;
    border-top: none;
}

.page-basket .table-hover tbody tr.spacer td {
    height: 0;
    padding: 0;
    border-top: 2px solid #ebebeb;
}

.page-basket .table-hover tbody tr.spacer td.not_line {
    border: none;
}

.page-basket .table-hover tbody tr td {
    padding: 15px;
    border: none;
}

.page-basket .table-hover tbody tr td.td-img {
    padding: 15px 15px 15px 0;
}

.page-basket .table-hover tbody tr td.td-name {
    padding: 55px 15px 25px 0;
}

.page-basket .table-hover tbody tr td.td-price {
    font-size: 18px;
    font-weight: 500;
    line-height: 0px;
    text-align: left;
}

.page-basket .table-hover tbody tr td.td-price span {
    white-space: nowrap;
}

.page-basket .table-hover tbody tr td.td-price span.old_price {
    position: relative;
    bottom: 22px;
    font-size: 12px;
    color: #1d1d1d;
    text-decoration: line-through;
}

.page-basket .table-hover tbody tr td.td-summ {
    font-size: 18px;
    font-weight: 800;
}

.page-basket .table-hover tbody tr td.td-summ span {
    white-space: nowrap;
}

.page-basket .table-hover .thumbnail {
    width: 170px;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.page-basket .table-hover .media {
    vertical-align: middle;
    display: inline-block;
}

.page-basket .deleter {
    display: block;
    color: #ccc;
    text-decoration: none;
}

.page-basket .deleter:hover {
    color: #222;
}

.page-basket .deleter i {
    font-size: 20px;
}

.page-basket .table-hover .media-object {
    max-height: 160px;
    max-width: 100%;
}

.page-basket .table-hover .media-heading {
    margin: 0 0 5px 0;
}

.page-basket .table-hover .media-heading a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    cursor: default;
}

.page-basket .table-hover .media-heading a:hover {
    text-decoration: none;
    color: #000;
}

.page-basket .table-hover .vmid {
    vertical-align: middle;
    text-align: center;
}

.page-basket .table-hover .media-body {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    width: 170px;
    display: block;
}

.page-basket .table-hover .m-title {
    font-size: 16px;
    font-weight: bold;
}

.page-basket .table-hover .m-val {
    display: block;
    margin: 5px 0 0 0;
    border-radius: 2px;
    padding: 0 0 0 0;
    font-size: 14px;
    color: #1d1d1d;
}

.page-basket .card-count-box {
    position: relative;
    margin: 0 0 0 0;
    padding: 13px 0 0 0;
    width: 90px;
    height: 44px;
    border-radius: 24px;
    background-color: #f4f4f4;
    /*background-color: #cccccc;*/
}

.page-basket .count_button {
    padding: 2px 0 0 0;
    display: inline-block;
    width: 18px;
    line-height: 16px;
    height: 18px;
    border-radius: 50%;
    vertical-align: baseline;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

.page-basket .count_button:hover,
.page-basket .count_button:active {
    text-decoration: none;
}

.page-basket .quant_measure {
    padding: 0 0 0 0;
    border: 0;
    background: 0;
    color: #222;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    width: 30px;
    text-align: center;
    border-radius: 2px;
    outline: none;
    font-family: inherit;
}

.cdp-itogo {
    width: 50%;
    height: 100%;
    float: left;
}

/*----------- Промокод -----------*/

.promo-second {
    display: none;
}

.cdp-promo {
    margin: 20px 0 0 0;
    padding: 0 0 0 70px;
    height: 44px;
    line-height: 1px;
}

.cdp-promo.is-promo .cdp-promo-field,
.cdp-promo.is-promo .cdp-promo-btn {
    display: none;
}

.cdp-promo .cdp-promo-back {
    /*display: none;*/
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    color: #b5b5b5;
    transition: all .15s ease;
    line-height: 44px;
    padding: 0 19px 0 19px;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin: 0 auto;
    background: #fff;
    max-width: 200px;
}

.cdp-promo .cdp-promo-back:hover {
    box-shadow: inset 0 0 0 1px #ec1900;
}

.cdp-promo.is-promo .cdp-promo-back {
    display: block;
}

.cdp-keep-sale {
    display: block;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    transition: all .15s ease;
    line-height: 44px;
    padding: 0 0 0 0;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin: 15px auto 0 auto;
    background: #098ef9;
    max-width: 220px;
}

.cdp-keep-sale:hover {
    background: #077cda;
}

.cdp-promo-field {
    display: inline-block;
    height: 44px;
    line-height: 44px;
}

input.promo-field {
    display: inline-block;
    font-size: 14px;
    width: 230px;
    height: 44px;
    font-weight: 400;
    color: #000;
    border-radius: 50px;
    box-shadow: 0 0 0 3px #dfdfdf inset !important;
    -webkit-box-shadow: 0 0 0 3px #dfdfdf inset !important;
    -webkit-appearance: none;
    border: none;
    padding: 3px 50px 3px 23px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

input.promo-field:active,
input.promo-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(136, 51, 40, 0.4) inset;
}

.cdp-promo-btn {
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-shadow: inset 0 0 0 3px #ff3b23;
    color: #000;
    transition: all .15s ease;
    line-height: 44px;
    padding: 0 19px 0 19px;
    height: 44px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin: 0 0 0 -45px;
    background: #fff;
}

.cdp-promo-btn:hover {
    color: #fff;
    box-shadow: inset 0 0 0 3px #ec1900;
    background: #ec1900;
}

.cdp-promo-finished {
    margin: 5px 0 0 0;
    padding: 0 0 0 95px;
    text-transform: lowercase;
    font-size: 14px;
    font-weight: 400;
    color: #ec1900;
    /*height: 20px;*/
    line-height: 20px;
}

/*-----------------------*/

.cdp-itogo-in {
    line-height: 38px;
    padding: 45px 0 0 70px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.cdp-itogo-in span {
    font-size: 26px;
    font-weight: 600;
}

.cdp-itogo-in span.basket-total-price-ajax {
    font-weight: 500;
}

.cdp-itogo-out {
    font-size: 14px;
    color: #8e8e8e;
    height: 20px;
    line-height: 20px;
    padding: 0 0 0 95px;
}

.cdp-btn-wrap {
    width: 50%;
    height: 100%;
    float: left;
    text-align: right;
    position: relative;
}

.tooltip_hand {
    position: absolute;
    top: -80px;
    right: 115px;
    width: 290px;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 3px 0 32px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 3px 0 32px 0 rgba(0, 0, 0, 0.2);
}

.tooltip_hand:after {
    top: 100%;
    left: 70%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 20px;
    margin-left: -20px;
}

.tooltip_hand.noter {
    display: none;
}

.tooltip_hand .cdp_content {
    text-align: left;
    display: block;
    font-weight: 500;
    line-height: 22px;
    font-size: 14px;
    color: #ff3b23;
    padding: 30px 30px 30px 30px;
}

.tooltip_hand .closer {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 20px;
    color: #e1e1e1;
    cursor: pointer;
}

.cdp-btn {
    position: relative;
    cursor: pointer;
    margin: 75px 80px 0 0;
    border-radius: 50px;
    background: #ff3b23;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    padding: 0 70px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    transition: background .3s ease;
    -webkit-transition: background .3s ease;
    text-decoration: none;
    color: #fff;
}

.cdp-btn:hover {
    background-image: linear-gradient(to bottom, #fc3c0c, #ec1900);
    text-decoration: none;
    color: #fff;
}

.cdp-btn:active,
.cdp-btn:focus {
    outline: none;
    text-decoration: none;
    color: #fff;
}

.cdp-btn.cdp_no_active,
.btn.cdp_no_active {
    opacity: 0.45;
    cursor: default;
}

.cdp-btn.cdp_no_active:hover,
.btncdp_no_active:hover {
    background: #ff3b23;
}

.page-basket-empty {
    padding: 0 0 0 0;
    margin: 0 0 20px 0;
    max-width: 760px;
    font-size: 60px;
    font-weight: bold;
    line-height: 56px;
}

.promo-second .cdp-itogo-in {
    text-align: left;
    padding: 0 0 0 15px;
}

.promo-second .cdp-promo {
    text-align: left;
    padding: 0 0 0 15px;
}

.promo_mob_text,
.cd-panel-footer-second {
    display: none;
}

.page-basket .table-hover tbody tr .col-not-av {
    padding: 0;
}

/* ==========================================================================
   Media Queries
   ===================================== ONE ============================== */
@media (min-width: 320px) and (max-width: 400px) {
    .page-basket .table-hover tbody tr td.td-summ {
        display: none;
    }
}



@media (min-width: 320px) and (max-width: 479px) {
input.promo-field {
    width: 180px;
    padding: 3px 18px 3px 18px;
}
.page-basket .table-hover tbody:before {
    content: initial;
}
.cd-panel-content {
    padding: 65px 15px 50px 15px;
}
.cd-panel-footer-second {
    display: block;
    position: relative;
}
    .promo_mob{
    display: none;
}
.promo_mob.act {
    display: block;
}
/*.cd-panel-footer {
    display: none;
    bottom: -230px;
    height: 230px;
}*/
.promo_mob_text {
    display: block;
    font-size: 19px;
    text-align: center;
    color: #008ffe;
    margin: 20px 0 0 0;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
}
.promo_mob_text span {
    display: inline-block;
    border-bottom: 1px solid #008ffe;
}
.promo_mob_text.act {
        display: none;
    }
.cd-panel-footer {
    background: #fff;
}
.cd-panel-footer:before,
.cd-panel-footer-second:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ebebeb;
    margin: 0 0;
}
.cdp-itogo {
    width: 100%;
    height: 50px;
    float: none;
    margin: 0 0 15px 0;
}
.cd-panel-footer-second .cdp-btn-wrap,
.cd-panel-footer .cdp-btn-wrap {
    width: 100%;
    height: 100%;
    float: left;
    text-align: center;
}
.cdp-itogo-in {
    padding: 20px 0 0 0;
    font-size: 18px;
    line-height: 30px;
}
.cdp-promo {
    padding: 15px 0 0 0;
    margin: 0 0 0 0;
    height: initial;
    white-space: nowrap;
}
/*---------------------------------------*/

    .cdp-promo-btn {
        margin: 5px 0 0 0;
    }
    .cdp-promo-finished {
        padding: 0 0 0 30px;
    }
    /*---*/
    .cd-panel-container {
        top: 0;
    }
    .is-visible .cd-panel-header {
        top: 0;
    }
    .tooltip_hand {
        top: -130px;
        right: initial;
        left: 20px;
    }
    .page-basket .table-hover,
    .page-basket .table-hover tbody,
    .page-basket .table-hover tbody tr,
    .page-basket .table-hover tbody tr td.td-name {
        display: block;
    }
    .page-basket .table-hover tbody tr td.td-name {
        padding: 20px 0 20px 15px;
        width: 100%;
    }
    .page-basket .table-hover tbody tr {
        padding: 20px 0 20px 0;
        border-bottom: 2px solid #ebebeb;
    }
    .page-basket .table-hover tbody tr:first-child {
        padding: 10px 0 20px 0;
    }
    .page-basket .table-hover tbody tr:last-child {
        border-bottom: none;
    }
    .page-basket .table-hover .media-body {
        width: 100%;
    }
   /* .page-basket .table-hover .m-val {
        float: right;
        margin: 0 20px 0 0;
        padding: 0 0 0 0;
        font-size: 14px;
    }*/
    .page-basket .table-hover tbody tr.spacer {
        display: none;
    }
    .cd-panel-close {
        top: 13px;
        right: 34px;
        width: 34px;
        height: 34px;
    }
    .cd-panel-close::before, .cd-panel-close::after {
        top: 16px;
        left: 7px;
    }
    /*------------------------------------------*/
    .page-basket .table-hover .thumbnail {
        width: 70px;
    }
    .page-basket .table-hover .media-object {
        max-height: 70px;
        margin: 45% auto 0 auto;
    }
    /*.page-basket .table-hover .media-heading a {
        font-size: 22px;
    }*/
    .page-basket .table-hover .m-title {
        font-size: 16px;
    }
    .page-basket .table-hover tbody tr td.td-summ {
        font-size: 14px;
    }
    .page-basket .table-hover tbody tr td.td-price {
        font-size: 14px;
    }
    .cdp-btn {
        margin: 0 0 0 0;
        font-size: 16px;
        padding: 0 30px;
        white-space: nowrap;
    }
    .page-basket .table-hover tbody tr td.td-img {
        display: none;
    }
    .page-basket .table-hover tbody tr.spacer td.not_line {
        border-top: 2px solid #ebebeb;
    }
    .page-basket .table-hover tbody tr td.td-price span {
        display: block;
    }
    .cdp-itogo-in span {
        font-size: 24px;
    }
    /*.cdp-itogo-in {
        padding: 0 0 0 30px;
        font-size: 18px;
        line-height: 30px;
    }*/
    .cdp-itogo-out {
        display: none;
        padding: 0 0 0 30px;
    }
/*    .cd-panel-container {
        width: 100%;
    }
    .cd-panel-header {
        width: 100%;
    }
    .cd-panel-footer {
        width: 100%;
    }*/
    
    .page-basket .table-hover tbody tr .col-not-av_prev {
        display: none;
    }
    .page-basket .table-hover tbody tr .col-not-av {
        display: block;
        width: 100%;
        margin-top: -35px;
    }
}



@media (min-width: 480px) and (max-width: 767px) {
    input.promo-field {
        width: 180px;
        padding: 3px 18px 3px 18px;
    }
    .page-basket .table-hover tbody:before {
        content: initial;
    }
    .cd-panel-content {
        padding: 65px 15px 50px 15px;
    }
    .cd-panel-footer-second {
        display: block;
        position: relative;
    }
    .promo_mob {
        display: none;
    }
    .promo_mob.act {
        display: block;
    }
    /*.cd-panel-footer {
        display: none;
        bottom: -230px;
        height: 230px;
    }*/
    .promo_mob_text {
        display: block;
        font-size: 19px;
        text-align: center;
        color: #008ffe;
        margin: 20px 0 0 0;
        height: 20px;
        line-height: 20px;
        cursor: pointer;
    }
    .promo_mob_text span {
        display: inline-block;
        border-bottom: 1px solid #008ffe;
    }
    .promo_mob_text.act {
        display: none;
    }
    .cd-panel-footer {
        background: #fff;
    }
    .cd-panel-footer:before,
    .cd-panel-footer-second:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ebebeb;
        margin: 0 0;
    }
    .cdp-itogo {
        width: 100%;
        height: 50px;
        float: none;
        margin: 0 0 15px 0;
    }
    .cd-panel-footer-second .cdp-btn-wrap,
    .cd-panel-footer .cdp-btn-wrap {
        width: 100%;
        height: 100%;
        float: left;
        text-align: center;
    }
    .cdp-itogo-in {
        padding: 20px 0 0 0;
        font-size: 18px;
        line-height: 30px;
    }
    .cdp-promo {
        padding: 15px 0 0 0;
        margin: 0 0 0 0;
        height: initial;
        white-space: nowrap;
    }
/*--------------------------------------------------*/
    .cdp-btn {
        margin: 0 0 0 0;
        font-size: 16px;
        padding: 0 30px;
        white-space: nowrap;
    }
    .cdp-promo-btn {
        margin: 5px 0 0 0;
    }
    .cdp-promo-finished {
        padding: 0 0 0 30px;
    }
    /*---*/
    .page-basket .table-hover .thumbnail {
        width: 70px;
    }
    .page-basket .table-hover .media-object {
        max-height: 70px;
        margin: 45% auto 0 auto;
    }
    .page-basket .table-hover .m-title {
        font-size: 14px;
    }
    .page-basket .table-hover tbody tr td.td-summ {
        font-size: 16px;
    }
    .page-basket .table-hover tbody tr td.td-price {
        font-size: 16px;
    }
    .page-basket .table-hover tbody tr td.td-name {
        padding: 55px 0 25px 0;
    }
    .page-basket .table-hover tbody tr:first-child {
        padding: 10px 0 20px 0;
    }

    .page-basket .table-hover tbody tr td.td-img,
    .page-basket .table-hover tbody tr td.td-summ {
        display: none;
    }
    .page-basket .table-hover tbody tr.spacer td.not_line {
        border-top: 2px solid #ebebeb;
    }
    .page-basket .table-hover tbody tr td.td-price span {
        display: block;
    }
    .cdp-itogo-in span {
        font-size: 24px;
    }
    .cdp-itogo-out {
        padding: 0 0 0 30px;
    }
/*    .cd-panel-container {
        width: 100%;
    }
    .cd-panel-header {
        width: 100%;
    }
    .cd-panel-footer {
        width: 100%;
    }*/

}

@media (min-width: 768px)  and (max-width: 979px) {
    input.promo-field {
        font-size: 11px;
        width: 150px;
    }
    .cd-panel-content {
        padding: 65px 15px 30px 15px;
    }
    .page-basket .table-hover .thumbnail {
        width: 70px;
    }
    .page-basket .table-hover .media-object {
        max-height: 70px;
        margin: 45% auto 0 auto;
    }
    .page-basket .table-hover .m-title {
        font-size: 14px;
    }
    .page-basket .table-hover tbody tr td.td-summ {
        font-size: 16px;
    }
    .page-basket .table-hover tbody tr td.td-price {
        font-size: 16px;
    }
 /*   .cd-panel-footer {
        width: 90%;
    }*/
    .cdp-btn {
        margin: 75px 40px 0 0;
        font-size: 16px;
        padding: 0 30px;
    }
}

/*@media (min-width: 980px) and (max-width: 1199px) {
    .cd-panel-container {
        width: 900px;
    }
    .cd-panel-header {
        width: 900px;
    }
    .cd-panel-footer {
        width: 900px;
    }
}*/

/*@media (min-width: 1200px) {
    .cd-panel-container {
        width: 1000px;
    }
    .cd-panel-header {
        width: 1000px;
    }
    .cd-panel-footer {
        width: 1000px;
    }
}*/

@media screen and (max-width: 991px){
    .menu-cart {
        min-width: auto;
    }
    .menu-cart__text {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 530px) {
    .promo-second {
        display: block;
    }
}