/* shop-info start
* smart
*/

.cart .btn {
    display: inline-block;
    width: auto;

    background-color: #eee;

    border: 1px solid #1e1e1e;
    border-radius: 8px;
    vertical-align: top;
    text-align: center;

    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 38px;
    color: #333;

    position: relative;
}

.cart .btn.active:focus,
.cart .btn.active:hover,
.cart .btn:focus,
.cart .btn:active,
.cart .btn:hover {
    box-shadow: none;
    outline: none;
}

.mt30.cart { margin-top: 0 !important; }

.cart .in-block {
    display: block;
    width: 100vw;
    margin: 0 calc( (-100vw + 1100px) / 2 );
    padding: 0 calc( (100vw - 1100px) / 2 );

    background: url('../img/shop-info/black-bg.jpg') repeat;

    margin-bottom: 30px; /* important */
}

.cart .in-block ul {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: height linear 0.5s;
    height: 44px;
    z-index: 100;
}

.cart .in-block ul:hover {
    height: 546px;
}

.cart .in-block__drop-down {
    cursor: pointer;
    display: inline-block;
    width: auto;
    padding: 12px 75px 12px 14px;

    background-color: #020202;

    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;

    position: relative;
}

.cart .in-block__drop-down:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-20%);

    width: 0;
    height: 0;
    border-width: 8px 6px 0 6px;
    border-color: #282828 transparent transparent transparent;
    border-style: solid;
}

.cart .in-block__drop-down:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-46%);

    width: 22px;
    height: 22px;
    background-color: #e5e5e5;
    border-radius: 4px;
}

.cart .in-block li {
    width: auto;
    border-bottom: 1px solid #474129;
}

.cart .in-block a {
    display: block;
    padding: 13px 10px 13px 42px;
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
    white-space: nowrap;
    color: #fff;
    position: relative;
    border-bottom: 1px solid #000;
}

.cart .in-block a:before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 24px;
    top: 50%;
    margin-top: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 8px solid red;
    border-bottom: 5px solid transparent;
}

.cart .in-block a:after {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #fff;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
    border-radius: 18px;
}

.cart .in-block a span {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.cart .in-block a span:before {
    display: block;
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s ease-in-out;
    left: 0;
    bottom: 0;
}

.cart .in-block a:hover span:before {
    width: 100%;
}

@media screen and (max-width: 1100px){
    .cart .in-block {
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

@media screen and (orientation: landscape) and (min-width: 812px) {
    .cart .in-block {
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

.cart .in-block__drop-down {
    display: inline-block;
    width: auto;
    padding: 12px 75px 12px 14px;

    background-color: #020202;

    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;

    position: relative;
}

.cart .in-block__drop-down:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-20%);

    width: 0;
    height: 0;
    border-width: 8px 6px 0 6px;
    border-color: #282828 transparent transparent transparent;
    border-style: solid;
}

.cart .in-block__drop-down:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-46%);

    width: 22px;
    height: 22px;
    background-color: #e5e5e5;
    border-radius: 4px;
}

.cart .main__title {
    display: block;
    width: 100%;
    padding: 14px 15px;
    margin: 0;
    background: url('../img/shop-info/title_bg.jpg') repeat-x 0 0;

    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    color: #000;
}

.cart .main__add-shop {
    display: block;
    width: 100%;
    padding: 30px 0 40px 0;
}

.cart .add-shop__wrap {
    display: block;
    width: 100%;
    padding: 26px 0;
    background-color: #ffe9e9;
    text-align: center;
}

.cart .btn_plus {
    min-width: 452px;
    background-color: #c80000;
    border: none;
    border-radius: 5px;
    padding: 22px 16px;
    transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
}

.cart .btn_plus:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 3px #525252;
}

.cart .btn_plus span {
    display: inline-block;
    width: auto;
    height: auto;
    padding-left: 40px;

    vertical-align: top;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    color: #fff;

    position: relative;
}

.cart .btn_plus span:after,
.cart .btn_plus span:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);

    width: 8px;
    height: 28px;
    background-color: #fff;
}

.cart .btn_plus span:before {
    transform: translateY(-50%) rotate(0deg);
}

.cart .main__table-info {
    display: block;
    width: 100%;
    padding: 0 0 24px 0;
}

.cart .main__table-info th,
.cart .main__table-info td {
    padding: 10px 15px;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    border-bottom: 2px solid #dcdcdc;

    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.cart .main__table-info th {
    background-color: #eeeeee;
}

.cart .main__table-info .table-info__th-head th {
    background-color: #dedede;
}

.cart .main__options {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-bottom: 15px;
}

.cart .btn_option {
    min-width: 320px;
    padding: 22px 16px;
    border: none;
    border-radius: 5px;

    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
}

.cart .btn_option:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 3px #525252;
}

.cart .btn_option + .btn_option {
    margin-left: 20px;
}

.cart .btn_edit { background-color: #269fc2; }
.cart .btn_del { background-color: #474747; }

@media screen and (max-width: 812px){

    .cart .main__title {
        background-size: contain;
        padding: 10px;
        font-size: 24px;
        line-height: 28px;
    }

    .cart .btn_plus {
        min-width: 412px;
        padding: 16px 12px;
    }

    .cart .btn_plus span {
        font-size: 28px;
        line-height: 32px;
    }

    .cart .btn_option {
        min-width: 300px;
        padding: 12px;
    }
}

@media screen and (max-width: 640px) {
    .cart .btn_option {
        min-width: 280px;
    }
}

@media screen and (max-width: 568px) {
    .cart .btn_plus {
        min-width: unset;
        width: 80%;
    }
    .cart .btn_plus span {
        font-size: 24px;
        line-height: 28px;
    }

    .cart .btn_plus span:after, .cart .btn_plus span:before {
        width: 6px;
        height: 22px;
    }

    .cart .btn_option {
        min-width: unset;
        width: calc( (100% - 60px) / 2 );
    }

    .cart .main__table-info th, .cart .main__table-info td {
        font-size: 14px;
        line-height: 18px;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 375px) {
    .cart .btn_option {
        min-width: 140px;
    }

    .cart .main__add-shop {
        padding: 20px 0 30px 0;
    }

    .cart .btn_plus span {
        font-size: 20px;
        line-height: 24px;
        padding-left: 32px;
    }

    .cart .btn_plus span:after, .cart .btn_plus span:before {
        width: 5px;
        height: 20px;
    }
}

/* shop-info start */

/*order-history start*/

.cart .main__table-preview {
    display: block;
    width: 100%;
    padding: 40px 0 0 0;
}

.cart .main__table-preview table {
    border: 2px solid #d8d8d8;
}

.cart .main__table-preview th,
.cart .main__table-preview td {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    padding: 10px;
}

.cart .main__table-preview.table-1 td {
    vertical-align: middle;
}

.cart .main__table-preview td + td,
.cart .main__table-preview th + th {
    border-left: 2px dotted #d8d8d8;
}

.cart .table-preview__head {
    background-color: #202020;
}

.cart .table-preview__head th {
    padding: 12px 0;
    text-align: center;

    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
}

.cart .table-preview__col.col-40 {
    width: 40%;
}
.cart .table-preview__col.col-30 {
    width: 30%;
}

.cart .table-preview__images {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    padding: 0 0 30px 0;
}

.cart .table-preview__images li {
    width: calc( 25% - 36px / 4 );
    height: 100%;
}

.cart .table-preview__images.row-by-three li {
    width: calc( 33% - 36px / 3 );
    height: 100%;
}

.cart .table-preview__images.row-by-three li:first-child {
    width: 100%;
    margin-bottom: 6px;
}

.cart .table-preview__images.row-by-three li:first-child img {
    width: 40%;
    height: auto;
}

@media screen and (max-width: 568px){
    .cart .table-preview__images li {
        width: calc( 50% - 12px / 2 );
        height: 100%;
        margin-bottom: 12px;
    }
    .cart .table-preview__images li:nth-child(2n + 1) {
        margin-left: 0;
    }
    .cart .table-preview__images.row-by-three li {
        width: calc( 33% - 36px / 3 );
        height: 100%;
    }

    .cart .table-preview__images.row-by-three li:first-child {
        width: 100%;
        margin-bottom: 6px;
    }
}

.cart .table-preview__images li a {
    display: block;
    width: 100%;
    height: 100%;
}

.cart .table-preview__images img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
    max-height: 100%;
}

.cart .table-preview__images li + li {
    margin-left: 12px;
}

.cart .table-preview__text_gray {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0;

    font-size: 16px;
    line-height: 20px;
    color: #999999;
}

.cart .table-preview__text_row {
    display: block;
    margin-top: 22px;
}

.cart .table-preview__text_righted {
    text-indent: 10px;
    position: relative;
    text-align: center;
}

.cart .main__table-preview table .table-preview__nowrap {
    white-space: nowrap;
    text-align: center;
    padding: 0 10px;
}

.cart .main__table-preview table tr + tr td {
    padding: 0 10px;
}

.cart .main__table-preview table tr:nth-child(2) td {
    padding-top: 10px;
}

.cart .main__table-preview table tr:last-child td {
    padding-bottom: 10px;
}

.cart .is-add {
    display: inline-block;
    width: auto;
    white-space: nowrap;
    text-indent: 0;
    background-color: #fb061b;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;

    transition: box-shadow .4s ease-in-out;
}

.cart .is-add:hover {
    box-shadow: 0 3px 3px #525252;
}

.cart .table-preview__wrap_bottom_left {
    padding: 20px 10px !important;
    text-align: left !important;
    vertical-align: bottom !important;
}

.cart .table-preview__to-row span {
    display: block;
    margin-top: -44px;
}

.cart .main__table-preview_body {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    padding: 20px 30px;
    border: 2px solid #d8d8d8;
}

.cart .main__table-preview_body + .main__table-preview_body {
    margin-top: 30px;
}

.cart .main__table-preview_body.table-4 {
    background-color: #f8f8f8;
}

.cart .main__table-preview_body dl {
    width: 40%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

@media screen and (max-width: 568px) {
    .cart .main__table-preview_body dl {
        width: 60%;
    }
}
@media screen and (max-width: 480px) {
    .cart .main__table-preview_body dl {
        width: 100%;
    }
}

.cart .main__table-preview_body dt,
.cart .main__table-preview_body dd {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    padding: 4px 0;
}

.cart .main__table-preview_body .list-bold {
    font-weight: bold;
}

.cart .main__table-preview_body .text_red {
    font-weight: bold;
    color: #fb061b;
}

.cart .main__delivery {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 100%;
    padding: 25px 0 80px 0;
}

.cart .btn_delivery {
    padding: 20px 25px;
    border-radius: 5px;
    border: none;

    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #fff;

    transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
}

.cart .btn_delivery:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 3px #525252;
}

.cart .btn_preview {
    background-color: #269fc2;
}

.cart .btn_delivery span {
    display: inline-block;
    padding-right: 26px;
    position: relative;
}

.cart .btn_delivery span:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
}

.cart .btn_preview span:after {
    width: 16px;
    height: 14px;
    background-image: url('../img/shop-info/icon-01.png');
}

.cart .btn_download span:after {
    width: 16px;
    height: 14px;
    background-image: url('../img/shop-info/icon-02.png');
}

.cart .btn_download {
    background-color: #e61e02;
}

.cart .btn_delivery + .btn_delivery {
    margin-left: 16px;
}

.cart .main__table-client {
    display: block;
    width: 100%;
}

.cart .main__table-client + .main__table-client {
    margin-top: 40px;
}

.cart .table-client__title {
    display: block;
    width: 100%;

    position: relative;
    padding-left: 14px;
    margin: 0 0 20px 0;

    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #000;
}

.cart .main__table-client table {
    border-top: 2px solid #d8d8d8;
    border-bottom: 2px solid #d8d8d8;
}

.cart .table-client__title:before {
    content: '';
    display: block;
    width: 5px;
    height: 32px;
    background-color: #e30518;
    position: absolute;
    top: 0;
    left: 0;
}

.cart .main__table-client tr + tr {
    border-top: 1px dashed #d8d8d8;
}

.cart .main__table-client th + td {
    border-left: 2px dashed #d8d8d8;
}

.cart .main__table-client tr:nth-child(2n) {
    background-color: #f8f8f8;
}

.cart .table-client__bold {
    font-weight: bold;
}

.cart .main__table-client th,
.cart .main__table-client td {
    padding: 15px 20px;

    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.cart .main__table-client th {
    font-weight: bold;
    text-align: center;
    width: 40%;
}

.cart .main__table-client td {
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .over-scroll {
        display: block !important;
        width: auto !important;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .cart .table-preview__images.images-nowrap {
        min-width: 300px;
    }
}

@media screen and (max-width: 736px) {
    .cart .main__table-preview th,
    .cart .main__table-preview td {
        padding: 0 5px;
        font-size: 16px;
        line-height: 20px;
    }
    .cart .table-preview__head th {
        padding: 8px 5px;
        font-size: 18px;
        line-height: 22px;
    }
}
@media screen and (max-width: 568px) {
    .cart .main__table-preview th,
    .cart .main__table-preview td {
        font-size: 12px;
        line-height: 18px;
    }
    .cart .table-preview__head th {
        font-size: 12px;
        line-height: 18px;
    }
    .cart .main__table-preview_body li {
        font-size: 16px;
        line-height: 20px;
    }
    .cart .table-client__title {
        font-size: 24px;
        line-height: 28px;
    }
    .cart .btn_delivery {
        padding: 14px 18px;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 1px;
    }
    .cart .main__table-preview_body {
        padding: 6px 30px;
    }
}

@media screen and (max-width: 480px) {
    .cart .btn_delivery {
        padding: 12px 8px;
    }
    .cart .main__table-client th, .cart .main__table-client td {
        padding: 8px 20px;
        font-size: 14px;
        line-height: 18px;
    }
    .cart .table-client__title {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 12px 0;
    }
    .cart .table-client__title:before {
        height: 24px;
    }
    .cart .main__delivery {
        padding: 20px 0 20px 0;
    }
    .cart .table-preview__images.images-nowrap {
        min-width: 190px;
    }
}

@media screen and (max-width: 375px) {
    .cart .main__table-preview th,
    .cart .main__table-preview td {
        font-size: 10px;
        line-height: 16px;
    }
    .cart .table-preview__head th {
        font-size: 10px;
        line-height: 16px;
    }
    .cart .btn_delivery {
        font-size: 12px;
        line-height: 16px;
    }
    .cart .btn_delivery + .btn_delivery {
        margin-left: 4px;
    }
}

@media screen and (max-width: 320px) {
    .cart .btn_delivery {
        font-size: 11px;
        line-height: 15px;
    }
    .cart .btn_delivery + .btn_delivery {
        margin-left: 6px;
    }
}

/*order-history end*/

/*cart-enter start*/

.cart .table-client__title_bordered {
    padding-bottom: 6px;
    border-bottom: 4px solid #fb081c;
}

.cart .steps {
    display: block;
    width: 100%;
    padding: 20px 0;
}

.cart .steps__list {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.cart .steps__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc( 25% - (120px / 4)  );
    padding: 10px 0;
    border: 2px solid #c2c2c2;
    border-radius: 6px;
    text-align: center;
    position: relative;

    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.cart .steps__item + .steps__item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -17%;
    transform: translateY(-50%);
    width: calc(40px * .6);
    height: calc( 36px * .6);
    background-size: contain;
    background-image: url('../img/shop-info/icon-03.jpg');
    background-repeat: no-repeat;
}

.cart .steps__item.is-active {
    background: #fdfdfd;
    background: -moz-linear-gradient(top, #fdfdfd 0%, #f6e9e9 99%);
    background: -webkit-linear-gradient(top, #fdfdfd 0%,#f6e9e9 99%);
    background: linear-gradient(to bottom, #fdfdfd 0%,#f6e9e9 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f6e9e9',GradientType=0 );
}

.cart .steps__item + .steps__item {
    margin-left: 5%;
}

.cart .form {
    margin: 0;
}

.cart .form + .form {
    margin-top: 40px;
}

.cart .form__toggle {
    display: inline-block;
    width: auto;
    padding: 8px 50px;
    background-color: #f2f2f2;

    font-size: 10px;
    line-height: 22px;
    color: #000;
}

.cart .form__toggle span {
    position: relative;
}

.cart .form__toggle span:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 6px 0 6px;
    border-color: #000000 transparent transparent transparent;
}

.cart .form__wrap {
    padding: 12px;
}

.cart .form__row {
    display: block;
    width: auto;
    padding: 25px 30px;
}

.cart .form__row_solid {
    padding: 15px 30px 0 30px;
    background-color: #f2f2f2;
}

.cart .form__row:last-child {
    padding: 25px 30px 0 25px;
}

.cart .form__row_bordered {
    border-bottom: 1px solid #ababab
}

.cart .form__row label {
    display: block;
    width: 100%;
}

.cart .form__row label.form__label_row {
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.cart .form__row label.no-vertically {
    align-items: flex-start;
}

.cart .form__row [class*="form"] {
    display: inline-block;
    vertical-align: middle;
}

.cart .form__row .btn_form {
    margin-top: 20px;
}

.cart .form__name-in,
.cart .form__name-note {
    width: 100%;
    height: auto;
    position: relative;
    padding: 6px 0 6px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 9px;
    line-height: 20px;
    color: #000;
    overflow:hidden;
}

.cart .form__name-in.no-pointer {
    cursor: auto;
}

.cart .no-vertically .form__name-in {
    margin-top: 4px;
}

.cart .form__name-note {
    width: 74%;
    min-width: 150px;
    padding: 6px;
    text-align: left;
}

.cart .form__name-in_solid {
    width: 100%;
    text-align: right;
    font-size: 12px;
    line-height: 20px;
    color: #1d1d1d;
}

.cart .form__name-in_solid.text_left {
    text-align: left;
}
.mgb12{
    margin:12px 0;
    overflow:hidden;
}
.cart .form__name-in_solid:before {
    display: none;
}

.cart .form-custom-add .title-row strong {
    width: auto;
    white-space: nowrap;
    margin-right: 12px;
    float: left;
    vertical-align: top;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
    color: #000;
}
.cart .form-custom-add .title-row .mark.add {
    background: #fe4848;
    font-style: normal !important;
    padding: 0 4px;
    font-size: 8px;
    line-height: 16px;
    color: #fff;
}
.cart .form-custom-add .title-row .mark {
    float: left;
    vertical-align: top;
    background: #b7b7b7;
    padding: 0 4px;
    font-size: 8px;
    line-height: 16px;
    color: #fff;
    font-style: normal !important;
}
.cart .form__input {
    min-height: 22px;
    width: 100%;
    padding: 6px 0px 6px 1px;
    outline: none;
    border: 1px solid #c7c7c7;
}

.cart .form__input::placeholder,
.cart .form__input:focus,
.cart .form__input {
    font-size: 12px;
    line-height: 22px;
    color: #000;
}

.cart .form__input_custom-placeholder::placeholder {
    font-size: 14px;
    line-height: 18px;
    color: #909090;
}

.cart .form__input_bit {
    width: 74%;
}
@media screen and (max-width: 812px){
    .cart .form__input_bit {
        width: 100%;
    }
}

.cart .btn_form {
    padding: 12px 14px;
    background-color: #fcfcfc;
    border: 2px solid #e2e2e2;
    border-radius: 0;
    cursor: pointer;

    font-size: 16px;
    line-height: 20px;
    color: #525252;

    transition: background .4s ease-in-out;
}

.cart .btn_form:hover {
    background-color: #f1f1f1;
}

.cart .form__wrap_select {
    display: inline-block;
    width: 74%;
    height: auto;
    position: relative;
}

.cart .form__select::-ms-expand {
    display: none;
}

.cart .form__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.cart .form__select {
    width: 100%;
    border: 1px solid #c7c7c7;
    border-radius: 6px;
    padding: 4px 16px 4px 10px;
    outline: none;

    font-size: 18px;
    line-height: 22px;
    color: #000;
    position: relative;
}

.cart .form__wrap_select:after,
.cart .form__wrap_select:before {
    content: '';
    position: absolute;
    right: 6px;
    transform: translateY(-50%);
    z-index: 1;

    width: 0;
    height: 0;
    border-style: solid;
}

.cart .form__wrap_select:after {
    top: 40%;
    border-width: 0 3.5px 6px 3.5px;
    border-color: transparent transparent #000 transparent;
}

.cart .form__wrap_select:before {
    top: 65%;
    border-width: 6px 3.5px 0 3.5px;
    border-color: #000 transparent transparent transparent;
}

.cart .form__text_note {
    width: 100%;
    text-align: left;
    margin-top: 10px;

    font-size: 9px;
    line-height: 14px;
    color: #555555;
}

.cart .form__text_note-block {
    width: 100%;
    padding: 14px 0;
}

.cart .form__text_note-block.black {
    color: #000;
}

.cart .form__textarea {
    resize: none;
    min-height: 170px;
    border-radius: 3px;
    padding: 10px 12px;
    width: calc(100% - 24px);
}

.cart .form__row_add .btn_form {
    margin-left: 0;
    font-size: 14px;
}

.cart .form__row_least .form__text_note-block {
    width: 100%;
    margin-left: 0;
    padding-left: 13%;
    text-align: left;
}

@media screen and (max-width: 435px){
    .cart .form__row_least .form__text_note-block {
        padding: 0;
    }
}

.cart .point {
    display: block;
    width: 100%;
    padding: 20px 30px;
    border: 2px solid #ccc;
    margin-bottom: 40px;
}

.cart .point__title {
    display: block;
    width: 100%;
    margin-bottom: 20px;

    font-size: 24px;
    line-height: 28px;
    color: #000;
}

.cart .point__title .point__title_inner {
    display: inline-block;
}

.cart .point__title .red {
    color: #fa494d;
}

.cart .point__wrap {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart .point__name {
    display: inline-block;
    margin-bottom: 10px;
    min-width: 25%;
    text-align: center;

    font-size: 30px;
    line-height: 34px;
    color: #000;
}
.cart .point__enter {
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px 40px;
}

.cart .point__label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 10px;
    cursor: pointer;

    font-size: 28px;
    line-height: 32px;
    color: #000;
}

.cart .point-in {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border: 2px solid #bfbfbf;
    padding: 8px 12px;
    text-align: right;
    margin-right: 10px;
    margin-bottom: 10px;
    outline: none;
}

.cart .point-in,
.cart .point-in::placeholder,
.cart .point-in:focus {
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #000;
}

.cart .point__off {
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
    line-height: 32px;
    color: #000;
}

.cart .form__row_box {
    display: flex;
    width: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart .form__box {
    width: 100%;
    display: flex !important;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart .form__box .box {
    width: calc( 33% - 24px / 3 );
    margin-left: 12px;
    margin-bottom: 20px;
}

.cart .form__box .box:nth-child(3n + 1) {
    margin-left: 0;
}

.cart .form__box .box__label {
    display: block;
    line-height: 20px;
    width: 100%;
    padding: 10px 10px 10px 50px;
    border: 1px solid #e0e0e0;
    background: #e9e9e9;
    background: -moz-linear-gradient(top, #e9e9e9 0%, #fafafa 37%, #ededed 68%, #e3e3e3 100%);
    background: -webkit-linear-gradient(top, #e9e9e9 0%,#fafafa 37%,#ededed 68%,#e3e3e3 100%);
    background: linear-gradient(to bottom, #e9e9e9 0%,#fafafa 37%,#ededed 68%,#e3e3e3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9e9e9', endColorstr='#e3e3e3',GradientType=0 );

    cursor: pointer;
    position: relative;
    margin-bottom: 6px;
}


.cart .form__box .box__note-info {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    white-space: nowrap;
}

.cart .form__box .box__info {
    font-size: 14px;
    line-height: 18px;
    color: #000;
}

.cart .form__box .box__label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translateY(-50%);
    background: url('../img/shop-info/bullet-padio01.png') 0 0 no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
}

.cart .form__box .box__in {
    position: absolute;
    visibility: hidden;
}

.cart .form__box .box__in:checked ~  .box__label:before {
    background: url('../img/shop-info/bullet-padio02.png') 0 0 no-repeat;
}

.cart .main__check {
    padding: 10px 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.cart .btn_check {
    min-width: 350px;
    background: #fe4848;
    border: none;
    border-radius: 6px;
    padding: 24px 10px;

    font-weight: bold;
    font-size: 32px;
    line-height: 36px;
    color: #fff;
    margin-right: 26px;
    transition: background .4s ease-in-out;
}

.cart .btn_check:hover {
    background-color: #000;
}

.cart .btn_check span {
    display: inline-block;
    padding-right: 60px;
    position: relative;
}

.cart .btn_check span:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-40%);
    width: 41px;
    height: 40px;
    background: url('../img/shop-info/item-cart04.png') 0 0 no-repeat;
    background-size: contain;
}

.cart .btn_return {
    min-width: 240px;
    background-color: #b9b9b9;
    padding: 20px 10px;
    border-radius: 6px;
    border: none;

    font-size: 24px;
    line-height: 28px;
    color: #fff;
    transition: background .4s ease-in-out;
}

.cart .btn_return:hover {
    background-color: #000;
}

@media screen and (max-width: 972px){
    .cart .steps__item + .steps__item:before {
        left: -18%;
    }
}
@media screen and (max-width: 840px){
    .cart .steps__item + .steps__item:before {
        left: -20%;
    }
}
@media screen and (max-width: 710px){
    .cart .steps__item + .steps__item:before {
        left: -19%;
        width: calc(40px * .4);
        height: calc( 36px * .4);
    }
}

@media screen and (max-width: 610px){
    .cart .steps__item + .steps__item:before {
        left: -26%;
    }
    .cart .steps__item + .steps__item {
        margin-left: 40px;
    }
}

@media screen and (max-width: 510px){
    .cart .steps__item + .steps__item:before {
        left: -19%;
    }
    .cart .steps__item + .steps__item {
        margin-left: 20px;
    }
    .cart .steps__item {
        width: calc( 25% - (60px / 4) );
    }
}

@media screen and (max-width: 480px){
    .cart .steps__item:nth-child(2n+1):before {
        display: none;
    }
    .cart .steps__item + .steps__item:before {
        left: -16%;
    }
    .cart .steps__item + .steps__item {
        margin-left: 0;
    }
    .cart .steps__item:nth-child(2n) {
        margin-left: 40px;
    }
    .cart .steps__item:nth-last-child(1),
    .cart .steps__item:nth-last-child(2) {
        margin-top: 10px;
    }
    .cart .steps__list {
        flex-flow: row wrap;
    }
    .cart .steps__item {
        width: calc( 50% - 20px );
    }
}

@media screen and (max-width: 375px){
    .cart .steps__item + .steps__item:before {
        left: -20%;
    }
}
@media screen and (max-width: 320px){
    .cart .steps__item + .steps__item:before {
        left: -23%;
    }
}
@media screen and (max-width: 812px){
    .cart .form__row_box {
        padding: 8px 0 !important;
    }
}
@media screen and (max-width: 714px){
    .cart .form__box .box {
        width: calc( 50% - 24px / 2 );
    }
    .cart .form__box .box:nth-child(3n + 1) {
        margin-left: 12px;
    }
    .cart .form__box .box:nth-child(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (max-width: 568px){
    .cart .form__box .box__note-info {
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 480px){
    .cart .form__box .box__note-info {
        font-size: 11px;
        line-height: 16px;
    }
    .cart .form__box .box {
        width: calc( 50% - 16px / 2 );
        margin-left: 8px;
    }
    .cart .form__box .box:nth-child(3n + 1) {
        margin-left: 8px;
    }
    .cart .form__box .box:nth-child(2n + 1) {
        margin-left: 0;
    }
    .cart .form__wrap.radio {
        border: 6px solid #f2f2f2;
        padding: 4px;
    }
}
@media screen and (max-width: 375px){
    .cart .form__box .box {
        width: 100%;
        margin-left: 0;
    }
    .cart .form__box .box:nth-child(3n + 1) {
        margin-left: 0;
    }
    .cart .form__box .box:nth-child(2n + 1) {
        margin-left: 0;
    }
    .cart .form__box .box__note-info {
        font-size: 12px;
        line-height: 16px;
    }
    .cart .form__wrap.radio .form__name-in:before {
        left: 36%;
    }
}
@media screen and (max-width: 640px){
    .cart .main__check {
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    }
    .cart .btn_check {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 375px){
    .cart .btn_check,
    .cart .btn_return {
        min-width: 0;
        width: 100%;
    }
}
@media screen and (max-width: 445px){
    .cart .point {
        padding: 10px;
    }
    .cart .point__title {
        font-size: 20px;
        line-height: 24px;
    }
    .cart .point__title .point__title_inner {
        margin-left: 0;
    }
    .cart .point__name {
        min-width: 0;
        font-size: 24px;
        line-height: 28px;
    }
    .cart .point-in {
        padding: 3px 8px;
        margin-right: 0;
    }
    .cart .point-in, .cart .point-in::placeholder, .cart .point-in:focus {
        font-size: 20px;
        line-height: 24px;
    }
    .cart .point__label {
        font-size: 20px;
        line-height: 24px;
        margin-right: 0;
    }
    .cart .point__off {
        font-size: 20px;
        line-height: 24px;
    }
    .cart .point__enter {
        padding: 10px;
    }
}

@media screen and (max-width: 445px){
    .cart .form__input_bit {
        width: 100%;
    }
    .cart .form__wrap_select {
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    .cart .form__name-in:before {
        left: 40%;
    }
    .cart .form__row {
        padding: 10px 12px;
    }
    .cart .form__row:last-child {
        padding: 10px 12px 0 12px;
    }
    .cart .form__wrap {
        padding: 4px;
    }
    .cart .form__textarea {
        min-height: 130px;
    }
}
@media screen and (max-width: 568px){
    .cart .form__name-in:before {
        left: 55%;
    }
}
@media screen and (max-width: 375px){
    .cart .form__name-in:before {
        left: 75%;
    }
}

/*cart-enter end*/

.cart .order-form h2 {
    font-weight: bold;
}

.cart .order-form th {
    font-weight: bold;
}

.cart h3, .cart .h3 {
    position: relative;
    font-size: 24px;
    line-height: 1.25;
    font-family: "郢晏�ﾎ帷ｹｧ�ｮ郢晄焔�ｧ蛛ｵ縺� Pro W3", "Hiragino Kaku Gothic Pro", 郢晢ｽ｡郢ｧ�､郢晢ｽｪ郢ｧ�ｪ, Meiryo, Osaka, "�ｽ�ｭ�ｽ�ｳ �ｽ�ｰ郢ｧ�ｴ郢ｧ�ｷ郢晢ｿｽ縺�", "MS PGothic", sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0 0 15px;
}

.cart p {
    margin: 0 0 15px;
}

.help-block{
    padding-top: 12px;
    text-align: center;
    color: #666;
    font-size:80%;
}
.cart .order-form .input-block {
    margin-bottom: 46px;
}

.cart .order-form .title-blue-bg {
    padding: 20px 15px;
    font-size: 18px;
    line-height: 1;
    background: #e81100;
    color: #fff;
    text-align: left;
    margin-bottom: 12px;
}

.cart .order-form .input-table {
    width: 100%;
}

.cart .order-form .input-table tr {
    border: 1px solid #dedede;
}

.cart .order-form .input-table th {
    position: relative;
    padding: 23px 60px 23px 19px;
    background: #f6f6f6;
    min-width: 250px;
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
    border-right: 1px solid #dedede;
    vertical-align: top;
}

.cart .order-form .input-table .required-field {
    position: absolute;
    top: 21px;
    right: 10px;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    background: #e60000;
    border-radius: 2px;
    padding: 0 8px;
}

.cart .order-form .input-table td {
    width: 100%;
    padding: 9px;
}

.cart .order-form input[type=email],
.cart .order-form input[type=number],
.cart .order-form input[type=tel],
.cart .order-form input[type=text],
.cart .order-form input[type=url],
.cart .order-form textarea {
    padding: 8px 12px;
    font-size: 15px;
    line-height: 1;
    min-width: 303px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
}

.cart .order-form input[type=email].long,
.cart .order-form input[type=number].long,
.cart .order-form input[type=tel].long,
.cart .order-form input[type=text].long,
.cart .order-form input[type=url].long,
.cart .order-form textarea.long {
    min-width: 440px;
}

.cart .order-form textarea {
    width: 100%;
    height: 113px;
    resize: none;
}

.cart .order-form .input-table .input-row {
    margin-bottom: 8px;
}

.cart .order-form input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    display: block;
    width: 496px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    background: #c80000;
    border-radius: 3px;
    transition: .6s;
}

.cart .order-form input[type=submit]:hover {
    -webkit-transform: translate(-3px,-3px);
    transform: translate(-3px,-3px);
    box-shadow: 3px 3px 0 #640000;
    transition: .6s;
}

.cart .invalid {
    margin-top: 15px;
    color: #e60000;
}

@media
screen and (max-width: 768px),
screen and (max-width: 768px) and (orientation: landscape),
screen and (max-width: 768px) and (orientation: portrait) {

    .cart .order-form .input-table td p {
        font-size: 12px;
    }

    .cart .h3, .cart h3 {
        font-size: 12px;
        margin: 0 0 6px;
    }

    .cart .order-form {
        margin: 20px 0 20px;
    }

    .cart .order-form .input-block {
        margin-bottom: 20px;
    }

    .cart .order-form .title-blue-bg {
        padding: 10px 7px;
        font-size: 14px;
    }

    .cart .order-form .input-table th {
        padding: 10px 45px 10px 10px;
        min-width: 70px;
        white-space: normal;
        font-size: 10px;
        line-height: 12px;
    }

    .cart .order-form .input-table .required-field {
        top: 10px;
        right: 5px;
        font-size: 10px;
        line-height: 16px;
    }

    .cart .order-form input[type=email],
    .cart .order-form input[type=number],
    .cart .order-form input[type=tel],
    .cart .order-form input[type=text],
    .cart .order-form input[type=url],
    .cart .order-form textarea {
        min-width: 0;
        padding: 4px;
        font-size: 12px;
        width: 90%;
    }

    .cart .order-form input[type=email].long,
    .cart .order-form input[type=number].long,
    .cart .order-form input[type=tel].long,
    .cart .order-form input[type=text].long,
    .cart .order-form input[type=url].long,
    .cart .order-form textarea.long {
        min-width: 0;
    }

    .cart .order-form .input-table .input-row {
        margin-bottom: 4px;
    }

    .cart .order-form input[type=submit] {
        width: 200px;
        font-size: 14px;
        line-height: 30px;
    }

    .form-custom {
        background-color: #fff;
    }

    .store-description {
        font-size: 9px;
        line-height: 14px;
        color: #000;
        margin: 0 0 8px !important;
    }

    .btn-preview-custom {
        text-align: center;
    }

}
/* update car 8.11.18 */
.btn-automatically-enter.add01{
    font-size: 10px !important;
}
.form-row-cart.pt12{padding-top: 12px !important;}
.cart .form__name-in_solid{
    font-size: 11px;
    display: block;
}
.form-custom-add .form__wrap{
    padding:0 0 5px;
}
.cart .form-custom-add .form__wrap label .form__name-in{margin: 0;}
.cart .form-custom-add .form__wrap label .form__name-in.is-required:before,
.cart .form-custom-add .form__wrap label .cart .form__name-in:before,
.cart .form-custom-add .form__name-in:before{
    left: 20% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 8px;
    width: 24px;
    height: 16px;
    padding: 0;
    line-height: 16px;
    text-align: center;

}
.cart .form-custom-add .form__wrap label > div{
    width: 100%;
}
.cart .form-custom-add .form__wrap label .form__name-in.is-required,
.cart .form-custom-add .form__wrap label .form__name-in.not-required{
    padding: 0 0 7px 0;
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    display: block;
    overflow: hidden;
}
.cart .form-custom-add .form__wrap label #store_shop_name{
    display: block;
    width: 100%;
}
.cart .form-custom-add .form__wrap label > div > input[type="text"]{
    display: block;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    width: 100%;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 14px;
    color: #000;
    padding: 10px 12px;
    outline: none;
    font-size: 12px !important;
    line-height: 14px !important;
}
.cart .form-custom-add .form__wrap label > div > textarea{
    font-size: 12px !important;
    line-height: 14px !important;
}
.cart .form-custom-add .form__wrap label > div > input[type="text"]::-webkit-input-placeholder,
.cart .form-custom-add .form__wrap label > div > input[type="text"]::-moz-placeholder,
.cart .form-custom-add .form__wrap label > div > input[type="text"]:-ms-input-placeholder,
#store_add_num input::-webkit-input-placeholder,
#store_add_num input::-moz-placeholder,
#store_add_num input:-ms-input-placeholder
{
    color: #888;
}
.db{
    display: block;
}
.mb5{
    margin-bottom: 5px;
}
.cart .form-custom-add .form__row{
    padding: 10px 0 12px 0;
}
.cart .form-custom-add .title-row{
    margin-bottom: 7px;
    overflow: hidden;
}
.cart .form-custom-add .form__wrap label .form__name-in{
    padding: 0px;
    font-size: 12px;
    line-height: 14px;
}

.custom-item001{
    display: block;
    overflow:hidden;
}
.cart .form-custom-add .form__wrap label.custom-item001 .form__name-in_solid{
    display: block;
    padding: 6px 0 !important;
}
.holder-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.holder-flex div{
    width: 100% !important;
    margin: 0;
    padding: 0;
}
.custom-item001 .btn_form{
    width: auto;
    display: block!important;
    float: left!important;
    border: 1px solid #e3e3e3;
    border-color: #e8e8e8 #e3e3e3 #e0e0e0;
    text-align: center;
    font-size: 7px !important;
    line-height: 28px;
    font-weight: bold;
    color: #555;
    height: 28px;
    background: #dedede;
    padding: 0 4px;
    white-space: nowrap;
    margin: 0 0 0 4px !important;
}
.form-custom-add .form__wrap label span{
    font-size: 12px;
}
.custom-item002{
    display: block !important;
}
.cart .form-custom-add .form__wrap label.custom-item002 .form__name-in{
    width: 100%;
}
.cart .form-custom-add .form__wrap label.custom-item002 .form__name-note{
    display: block;
    padding: 6px 0;
}
.cart .btn_delivery span.add{
    padding: 0 26px;
    vertical-align: top;
}
.form-custom-add .form__wrap label.custom-item001{
    display: block !important;
}
@media screen and (max-width: 375px){
    .cart .form-custom-add .form__wrap label .form__name-in{margin: 0;}
    .cart .form-custom-add .form__wrap label .form__name-in.is-required:before,
    .cart .form-custom-add .form__wrap label .cart .form__name-in:before,
    .cart .form-custom-add .form__name-in:before{
        right: 30px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 8px;
        width: 24px;
        height: 16px;
        padding: 0;
        line-height: 16px;
        text-align: center;
    }
}
.cart .form__select{
    border-radius: 0;
}
#store_add_num input{
    display: block;
    float:left;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
    width: 100%;
    max-width: 135px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 14px;
    color: #000;
    padding: 6px;
    outline: none;
}
.form-custom-add .pt0{
    padding-top: 0 !important;
}
.form-custom-add .pb0{
    padding-bottom: 0 !important;
}
.cart .form-custom-add .form__row.pt0{
    padding-top: 0 !important;
}
.cart .form-custom-add .form__row.pb0{
    padding-bottom: 0 !important;
}
.form__wrap_select.add-select{
    width: 100%;
}
.form__wrap_select.add-select:before{
    top: 66%;
}
.form__wrap_select.add-select:after{
    top: 36%;
}
.form__wrap_select.add-select select{
    width: 100%;
    font-size: 10px;
    padding: 10px 12px;
    display: block;
    vertical-align: middle;
    border: 1px solid #c7c7c7;
    background-color: #fff;
}
.cart .form-custom-add .form__wrap label .form__name-in.is-required.w100,
.cart .form-custom-add .form__wrap label .form__name-in.not-required.w100{
    width: 100px !important;
}
.form__wrap_select.add-select select.form__select1{
    font-size: 10px;
    line-height: 12px;
    padding: 6px 11px 6px 4px;
    display: block;
    height: 28px;
}
.cart .form-custom-add .form__wrap label .form__name-in.is-required.w98,
.cart .form-custom-add .form__wrap label .form__name-in.not-required.w98{
    width: 98px !important;
}
.form__wrap_select.add-select.add-select001:before{display: none;}
.form__wrap_select.add-select.add-select001:after{display: none;}
/* update car 8.11.18 end */