.notifyjs-corner {
    z-index: 9999111 !important;
}

/* **********************************************************************************  */
/*                           замена общих стилей НАЧАЛО                                */
/* **********************************************************************************  */

.buyButton {
    position: relative;
}

.buyButton.disabled {
    position: relative;
    background: rgb(255, 239, 196);
    border: 3px solid rgba(255, 239, 196, 0.75);
}

.buyButton.disabled:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: url("loader.gif") no-repeat center center;
    background-size: 30px 30px;
}

.buyButton.disabled:after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: rgba(0, 0, 0, 0.25);
}

.buyButton.disabled:hover {
    cursor: progress;
}

.main {
    min-height: 50px !important;
}

/* **********************************************************************************  */
/*                           замена общих стилей КОНЕЦ                                 */
/* **********************************************************************************  */

/* **********************************************************************************  */
/*                        оверрайд стилей попапа НАЧАЛО                                */
/* **********************************************************************************  */
.vex.vex-theme-default .vex-content {
    width: 770px;
    background: #fff;
    z-index: 9999;
}

.vex.vex-theme-default .vex-content .vex-dialog-button {
    color: #333;
    text-transform: none;
    letter-spacing: normal;
}

.vex.vex-theme-default .vex-content .vex-dialog-button-primary {
    background: #ffde00;
    background: -moz-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffde00), color-stop(100%, #ff9a00));
    background: -webkit-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -o-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -ms-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: linear-gradient(to bottom, #ffde00 0%, #ff9a00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffde00', endColorstr='#ff9a00', GradientType=0);
}

.vex.vex-theme-default .vex-content .vex-dialog-button-primary:hover {
    background: #ffdb14;
    background: -moz-linear-gradient(top, #ffdb14 0%, #ffa72d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffdb14), color-stop(100%, #ffa72d));
    background: -webkit-linear-gradient(top, #ffdb14 0%, #ffa72d 100%);
    background: -o-linear-gradient(top, #ffdb14 0%, #ffa72d 100%);
    background: -ms-linear-gradient(top, #ffdb14 0%, #ffa72d 100%);
    background: linear-gradient(to bottom, #ffdb14 0%, #ffa72d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdb14', endColorstr='#ffa72d', GradientType=0);
}
/* **********************************************************************************  */
/*                        оверрайд стилей попапа КОНЕЦ                                 */
/* **********************************************************************************  */

/* **********************************************************************************  */
/*                           таблица корзины НАЧАЛО                                    */
/* **********************************************************************************  */


.cart-table {
    text-align: left;
}

.cart-table .cart-item-count-selector {
    display: inline-block;
}

.cart-table .cart-item-count-selector .borderCount {
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
    font-size: 13px;
    display: block;
    height: 18px;
    float: left;
    width: 20px;
    text-align: center;
    line-height: 16px;
}

.cart-table .cart-item-count-selector .changeCount[data-item="-1"] {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    width: 20px;
    height: 18px;
    float: left;
    background-color: #93A2B5;
    border: 1px solid #808080;
    font-size: 15px;
    color: #FFF;
    line-height: 18px;
    cursor: pointer;
}

.cart-table .cart-item-count-selector .changeCount[data-item="1"] {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    width: 20px;
    height: 18px;
    float: left;
    background-color: #93A2B5;
    border: 1px solid #808080;
    font-size: 15px;
    color: #FFF;
    cursor: pointer;
}

.cart-table .cart-item-count-selector .changeCount[data-item="-1"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-table .cart-item-count-selector .changeCount[data-item="1"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-table table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
}

.cart-table .cart-total-price {
    text-align: right;
}

.cart-table .cart-item-delete, .store-info .cart-item-delete, .delivery-available .cart-item-delete {
    border: none;
    background: #FFF url("/modules/cart/img/delete.png") no-repeat center;
    height: 20px;
    width: 100%;
    float: left;
    margin-right: 3px;
    cursor: pointer;
}

.cart-table table td, .store-info table td, .delivery-available table td{
    font-size: 13px;
}

.cart-table table > thead > tr > th,
.cart-table table > tbody > tr > th,
.cart-table table > tfoot > tr > th,
.cart-table table > thead > tr > td,
.cart-table table > tbody > tr > td,
.cart-table table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: middle;
    border-top: 1px solid #ddd;
}

.cart-table table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

.cart-table table > caption + thead > tr:first-child > th,
.cart-table table > colgroup + thead > tr:first-child > th,
.cart-table table > thead:first-child > tr:first-child > th,
.cart-table table > caption + thead > tr:first-child > td,
.cart-table table > colgroup + thead > tr:first-child > td,
.cart-table table > thead:first-child > tr:first-child > td {
    border-top: 0;
}

.cart-table table > tbody + tbody {
    border-top: 2px solid #ddd;
}

.cart-table table .cart-table table {
    background-color: #bc0000;
}

.cart-table table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

.cart-table table td[class*="col-"],
.cart-table table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.red-line-through {
    display: inline-block;
    color: #333;
    text-decoration: line-through;
    margin-right: 4px;
}

.red-line-through:after {
    content: ' р.';
    white-space: pre;
}
.pre_pay-visible{
    font-size: 85% !important;
    color: gray;
}
.cart-items-sum-price-discount, .cart-item-price-discount, .cart-total-price-sum-discount{
    color: red;
}
/* **********************************************************************************  */
/*                               таблица корзины КОНЕЦ                                 */
/* **********************************************************************************  */



/* **********************************************************************************  */
/*                               скролл навигация НАЧАЛО                               */
/* **********************************************************************************  */

.scroll-nav {
    position: absolute;
    top: 40px;
}

.scroll-nav.fixed .scroll-nav__wrapper {
    position: fixed;
    top: 60px;
}

.scroll-nav__wrapper {
    padding-left: 27px;
}

.scroll-nav li {
    list-style: none;
}

.scroll-nav__item {
    padding: 5px 0;
}
.scroll-nav__item a {
    color: #808080;
}
.scroll-nav__item.active a {
    color: #000000;
}

/* **********************************************************************************  */
/*                               скролл навигация КОНЕЦ                                */
/* **********************************************************************************  */

/* **********************************************************************************  */
/*                               стили страница оплаты                                 */
/* **********************************************************************************  */
.cart-container .cart-table {
    text-align: left;
}

.cart-container h2 {
    display: none;
}

.cart-container .cart-total-price>span:first-of-type {
    color: rgb(226, 13, 43);
    font-size: 20px;
}


.order-block:not(.no-style) {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #fff;
	-webkit-border-radius: 2px;
	border-radius: 2px;
    
    -webkit-box-shadow: 0px 0px 6px 0px rgba(50, 50, 50, 0.54);
    -moz-box-shadow:    0px 0px 6px 0px rgba(50, 50, 50, 0.54);
    box-shadow:         0px 0px 6px 0px rgba(50, 50, 50, 0.54);
}

.order-block h2 {
    border-bottom: 1px solid #ddd;
    padding-top: 8px;
    padding-bottom: 8px;
}

.order-block p {
    font-size: 13px;
}

.order-block .form-body {
    border-top: 1px solid #ddd;
    padding-top: 12px;
}

.order-block .form-body,
.order-block .form-head,
.order-block .form-footer {
    min-width: 488px;
    /*display: block;*/
}

.order-block .form-body:after,
.order-block .form-head:after,
.order-block .form-footer:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;

}

.order-block .form-head,
.order-block .form-footer {
    width: 100%;
}


.order-block .contacts-form .form-head span,
.order-block .contacts-form .form-body input,
.order-block .contacts-form .form-footer span{
    width: 32%;
    float: left;
    margin-right: 2%;
}

.order-block  input {
    transition: border linear 0.2s, box-shadow linear 0.2s;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    border: 1px solid #CCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 28px;
    padding: 0 10px;

}
.order-block input.changeCount {
    padding: 0 0px;
}
.order-block .contacts-form .form-body input:last-of-type,
.order-block .contacts-form .form-footer span:last-of-type,
.order-block .contacts-form .form-head span:last-of-type {
    margin-right: 0;
}

.order-block .contacts-form .form-item label span{
    text-align: left;
}

.order-block #cashless-form input, .order-block .contacts-form.contacts input {
    width: 100%;
}

.form-head span {
    text-align: center;
    height: 33px;
    line-height: 40px;
    font-size: 13px;
}

@media screen and (min-width: 800px) {
    .order-block[data-nav-index="payType"] .form-item {
        width: 40%;
    }
}

.form-footer {
    padding-top: 5px;
}
.form-footer span {
    text-align: left;
    color: #808080;
    font-size: 11px;
}
.tabs-header,
.tabs-body {
    width: 100%;
}

.tabs-header:after,
.tabs-body:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.tab-header {
    text-align: center;
    float: left;
    width: 45%;
    margin-top: 14px;
    height: 30px;
    line-height: 28px;
    border: 1px solid rgb(209, 209, 209);
    cursor: pointer;
}

.tab-header.active {
    width: 55%;
    margin-top: 0;
    height: 44px;
    line-height: 40px;
    -webkit-box-shadow:  2px -2px 3px 0px rgba(133, 255, 121, 0.45);
    -moz-box-shadow:     2px -2px 3px 0px rgba(133, 255, 121, 0.45);
    box-shadow:          2px -2px 3px 0px rgba(133, 255, 121, 0.45);
}
.tab-header.disabled {
    opacity: 0.5;
    cursor: auto;
}


.tab-header:first-of-type:not(.active) {
    border-right: none;
}

.tab-header:last-of-type:not(.active) {
    border-left: none;
}

.tabs-body {
    border: 1px solid rgb(209, 209, 209);
    border-top: none;
}

.tab-body {
    width: 100%;
    padding: 15px;
    display: none;
}

.tab-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #000;
}

.tab-body table.shop-addresses {
    font-size: 14px;
    width: 100%;
    float: left;
    border-spacing: 0;
    border-collapse: collapse;
    padding-top: 20px;
}
.tab-body table.shop-addresses td {
    padding-top: 5px;
    padding-bottom: 5px;
}
.tab-body table.shop-addresses td:first-of-type {
    padding-left: 5px;
}

.tab-body table.shop-addresses tr {
    cursor: pointer;
}

.store-name:hover {
    background: rgba(199, 209, 228, 0.83);
    transition: background 0.6s ease-out 50ms; ;
}

.tab-body table.shop-addresses tr.active {
    background: rgba(243, 145, 9, 0.78);
}

.tab-body table.shop-addresses tr.store-disabled {
    background: rgba(255,255,255, 1);
    background-color: transparent;
    cursor: auto;
    color: gray;
}

.tab-body .address-info {
    width: 100%;
    padding-bottom: 20px;

}

.tab-body .address-info .yandex-map {
    height: 240px;
    width: 50%;
    float: left;
    padding-bottom: 20px;
}

.tab-body .address-info .details {
    margin-top: 20px;
    padding-left: 56%;
}

.tab-body .address-info .details p {
    position: relative;
    font-size: 14px;
}

.tab-body .address-info .details i {
    position: absolute;
    left: -21px;
    top: 3px;
}

.tab-body.active {
    display: inline-block;
}

.delivery-container h2 {
    padding-top: 18px;
}

.tab-body.courier-delivery .addr-input {
    width: 13%;
    margin-right: 14%;
    margin-bottom: 15px;
    float: left;
}

.tab-body.courier-delivery .addr-input:nth-of-type(2), .tab-body.courier-delivery .addr-input:nth-of-type(3) {
    width: 100%;
    margin-right: 100%;
}
.tab-body.courier-delivery .addr-input:nth-of-type(2) input, .tab-body.courier-delivery .addr-input:nth-of-type(3) input{
    width: 94%;
    margin-right: 6%;
}


.tab-body.courier-delivery .addr-input label {
    font-size: 12px;
}

.tab-body.courier-delivery .addr-input input {
    width: 100%;
}

/*.tab-body.courier-delivery .addr-input:last-of-type {
    margin-right: 0;
}*/

.pay-method-block:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.pay-method-block input, .pay-method-block p {
    float: left;
    margin-right: 5px;
	margin-left: 5px;
}

.pay-image-block {
    height: 35px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    background: url("../../img/payments_ways.jpg") no-repeat top left;
}

.pay-comment-block {
    margin-top: 14px;
}

.pay-comment-block a {
    font-size: 14px;
    text-decoration: none;
    border-bottom-style: dashed;
	margin-left: 5px;
}


.pay-comment-block .textarea {
    display: none;
}

.pay-comment-block textarea {
    margin-top: 12px;
    padding: 10px;
    resize: none;
}
#comment{
	margin-left: 5px;
	margin-bottom: 5px;
}
.error-delivery-field{
}
.makeOrderBtn, .promocode-check-btn {
    margin-left: 0;
    width: 300px;
    height: 45px;
    font-size: 18px;
    background: #ffde00;
    background: -moz-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffde00), color-stop(100%, #ff9a00));
    background: -webkit-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -o-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: -ms-linear-gradient(top, #ffde00 0%, #ff9a00 100%);
    background: linear-gradient(to bottom, #ffde00 0%, #ff9a00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffde00', endColorstr='#ff9a00', GradientType=0);
    cursor: pointer;
}
.makeOrderWithAcquiringBtn {
    margin-left: 0;
    width: 300px;
    height: 45px;
    font-size: 18px;
    background: #4AE83A;
    background: -moz-linear-gradient(top, #4AE83A 0%, #14D100 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4AE83A), color-stop(100%, #14D100));
    background: -webkit-linear-gradient(top, #4AE83A 0%, #14D100 100%);
    background: -o-linear-gradient(top, #4AE83A 0%, #14D100 100%);
    background: -ms-linear-gradient(top, #4AE83A 0%, #14D100 100%);
    background: linear-gradient(to bottom, #4AE83A 0%, #14D100 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4AE83A', endColorstr='#14D100', GradientType=0);
    cursor: pointer;
}
.makeOrderWithAcquiringBtn {
    padding: 5px;
    border-radius: 5px;
    margin-left: 20px;
}
.makeOrderBtn {
    padding: 5px;
    border-radius: 5px;
    margin-left: 20px;
}

.agree-block {
    float: left;
    width: 50%;
    margin-top: 50px;
}

.agree-element {
    margin-bottom: 7px;
	padding-left: 5px;
}

.agree-element input {
    height: inherit;
}

.agree-element label {
    font-size: 14px;
}

/*Корзина настройка страницы*/
.cartPageMain{
	margin: 5px;
	padding: 10px;
	background-color: #FFF;
	border: 1px solid #CCC;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position:relative;
	min-height: 800px;
}
input, textarea, select, button{
	transition: border linear 0.2s, box-shadow linear 0.2s;
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	border: 1px solid #CCC;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#delivery-prices-info {
    font-size: 14px;
	border: 1px solid rgb(209, 209, 209);
	padding: 15px;
	background-color: #D9DBEC;    /*padding-right: 15px;*/
}
.loader{
	height: 32px;
	background-image: url(ajax-loader.gif);
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center center;
        height: 119px;
        display: none; 
}

#delivery-prices-info .delivery-prices-footnote p:last-child {
    margin-bottom: 5px;
}

.condition-list {
    list-style: inside;
}

.promocode-check-btn {
    width: 100px;
    height: 28px;
    font-size: 16px;
    margin-left: 30px;
}
.promo-check-red {
    color: red !important;
}
.promo-check-green {
    color: limegreen !important;
}

.promocode-info-span {
    color: #a9a9a9;
    display: block;
    font-size: .9em;
}

.promocode-any-msg {
    color: red !important;
    display: none;
}

.goods-achtung {
    font-size: 12px;
    color: red;
}
/*доставка*/
.region_departure{
    font-size: x-small;
}
.region_arrival{
    font-size: small;
    font-weight: bold;
}
.region_path{
    margin-bottom: 10px;
}

.cart-row-show-rest{
    text-align: center;
    vertical-align: middle;
    float: left;
    font-size: 16px;
    padding-left: 2px;
    width: 40px;
    height: 30px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    background: #E5E5E5;
    background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed));
    background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
    background: linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 3px;
    margin-left: 0px;
    padding-top: 7px;
    padding-bottom: 1px;
    text-shadow: 1px 1px 1px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=1);
    cursor: pointer;
}

.store-info table, .delivery-available table{
    width: 97%;
    margin-left: 3%;
    margin-top: 1%;
    margin-bottom: 1%;
    border-collapse: separate;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-spacing: 0px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.3);
}

.store-info table thead td, .delivery-available table thead td {
    color: #5c5c5c;
}

.border-top {
    text-align: left;
    border-top: 1px solid #c1c1c1;
}

.delivery-available td:first-of-type{
    padding-left: 5px;
}

.delivery-available td{
    padding-top: 5px;
    padding-bottom: 5px;
}

.delivery-available table{
    margin: 2%;
    border-collapse: collapse;
}

.delivery-available table tr{
    border: 1px solid #c1c1c1;
}

.warning-message{
    color: #e30001;
}

@media only screen and (max-width: 500px) {
    .store-info table, .delivery-available table {
        margin-left: 0;
    }
}

#total-manager-discount {
    display: block;
    position: relative;
    float: right;
}

.left-price-selector {
    display: inline-block;
    width: 160px;
    vertical-align: top;
}

.select-price .chosen-single{
    width: 160px;
    height: 24px;
    margin-bottom: 1px;
    border-radius: 3px;
    overflow: hidden;
    padding-left: 4px;
}

.select-price-percent, .select-price-number{
    display: block;
}

.price-selector .select-price-percent input, .select-price-number input{
    width: 99px;
    height: 24px;
    box-sizing: border-box;
}

.left-price-selector .select-price-percent input {
    width: 99px;
    height: 24px;
}

.price-selector .chosen-container{
    display: block!important;
}

.manager-price-set-btn {
    width: 60px;
    height: 24px;
    text-align: center;
    padding-top: 3px;
    display: inline-block;
    color: #000000;
    margin-left: 1px;
  vertical-align: top;
    background: #f7f7f7;
    font-size: 14px;
}

.left-price-selector .select-price-percent {
    position: relative;
    width: 160px;
    display: block;
}
.price-profit, .price-profit-total {
    color: red;
    font-weight: bold;
}

#total-profit {
    font-size: .9em;
}

.price-outpost {
    white-space: nowrap;
}

.total-profit-text {
    color: rgb(226, 13, 43);
    clear: both;
    font-size: .9em;
}

.total-profit-block {
    display: none;
}

.price-profit:after, .price-outpost:after, .price-profit-total:after, #total-profit:after {
    content: 'p.';
    margin-left: 2px;
    display: inline-block;

}