.basket-container {
    width: 90%;
    margin: 0 auto;
}

@media only screen and (max-width: 1100) {
    .basket-container {
        width: 100%;
    }
}

.basket-step-1 {
    margin-top: 50px;
    text-align: left;
    margin-bottom: 50px;
}

.basket-step-1 > div {
    margin-bottom: 5px;
}

.basket-title {
    margin-bottom: 30px;
}

.basket-title h3 {
    font-size: 22px;
}

.basket-note .row .col label {
    text-align: left;
    display: block;
}

.basket-note .row {
    margin-bottom: 20px;
}

.red-star {
    color: red;
}

.basket-order .basket-title {
    text-align: center;
    display: block;
}

.order-grid, .order-grid-1 {
    list-style: none;
    padding: 0;
    text-align: left;
}

.order-grid li, .order-grid-1 li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    margin-bottom: 1px solid #eee;
    padding: 5px;
}

.order-item {
    color: #777;
}

.order-price {
    color: #8224e3;
}

.kdv {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: normal;
    color: #777;
    font-size: 11px;
}

.kdv span {
    margin-bottom: 5px;
}

.kdv span:first-child {
    font-size: 15px;
    font-weight: bold;
}

.online-order {
    list-style: none;
    padding: 0;
    text-align: left;
}

.online-order li {
    margin-bottom: 25px;
}

.order-button > label > span > a {
    font-weight: bold;
}

.order-button__btn {
    display: block;
    margin-top: 15px;
}

.basket-grid {
    display: flex;
    flex-direction: column;
}

.basket-grid__title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: center;
}

.basket-grid__title .title-title {
    flex-basis: 40%;
}

.basket-grid__title .price-title {
    flex-basis: 20%;
}

.basket-grid__title .quantity-title {
    flex-basis: 20%;
}

.basket-grid__title .total-title {
    flex-basis: 20%;
}

.basket-grid__list {
    display: flex;
    flex-direction: column;
}

.grid-list {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.grid-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-list__item .item-close {
    flex-basis: 5%;
}

.grid-list__item .item-img {
    flex-basis: 20%;
}

.grid-list__item .item-title {
    flex-basis: 15%;
}

.grid-list__item .item-price {
    flex-basis: 20%;
}

.grid-list__item .item-count {
    flex-basis: 20%;
}

.grid-list__item .item-total {
    flex-basis: 20%;
}

.item-count {
    display: flex;
    justify-content: center;
}

.item-count .minus {
    flex-basis: 20%;
}

.item-count input {
    flex-basis: 20%;
    width: 50px;
}

.item-count .plus {
    flex-basis: 20%;
}



/** Basket Css **/

.basket-area {
    margin-top: 70px;
    width: 99%;
    margin: 0 auto;
}

.basket-area__title {
	display: -ms-flex;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: center;
	padding: 15px 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	font-weight: 500;
    background: #e8e8e8;
}

.basket-area__title label {
    margin: 0;
}

.basket-area__list {
	padding: 0 5px;
	margin: 0;
	list-style: none
}

.basket-area__list li {
	display: -ms-flex;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd
}

.basket-area__list li:last-child {
	border-bottom: none
}

.basket-image {
	flex-basis: 10%;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center
}

.basket-image img {
	border-radius: 6px;
	width: 65%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.basket-details {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.basket-details span {
    font-size: 12px;
    margin-bottom: 2px;
    line-height: 14px;
    font-weight: 500;
}

.basket-details span b {
}

.basket-details span:first-child {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
}

.basket-price {
	flex-basis: 20%;
}

label.basket-price {
    text-align: center;
}

.basket-quantity {
	flex-basis: 10%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.basket-quantity svg {
    margin-left: 3px;
}

.basket-quantity .basketCounter {
    border: 1px solid transparent;
    border-radius: 5px;
    width: 80px;
    text-align: center;
}

.basket-quantity input:focus {
    border: 1px solid #ddd;
}

.basket-removal {
	flex-basis: 3%;
    padding: 0 0 0 15px;
}

.basket-removal .remove-all {
    border: 2px solid transparent;
    width: 100%;
    min-width: 130px;
    border-radius: 5px;
    padding: 5px 10px;
    transition: all .3s;
}

.basket-removal .remove-all:hover {
    border: 2px solid #8224e3;
}

.basket-removal,
.basket-removal .remove-product {
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center
}

.basket-removal .remove-product {
	background-color: #fff;
	font-size: 12px;
	padding: 7px 8px;
	border-radius: 3px;
	border: none;
	color: #000;
	cursor: pointer
}

.basket-removal .remove-product:hover {
	background-color: #8224e3;
    color: #fff;
}

.basket-line-price {
    flex-basis: 42%;
    text-align: right;
    padding: 0 87px 0 0;
}

.totals {
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
    /*margin: 20px 0 0 0;*/
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.totals__list {
    flex-basis: 50%;
	padding: 50px 15px;
    margin: 3px 0 0 0;
	list-style: none;
    background-color: #e8e8e8;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
}

.totals__list li {
    position: relative;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
    width: 80%;
}

.totals__list li.paymCheck {
  justify-content: center;
}

.totals__list li.paymCheck .text {
  flex-basis: 100%;
  font-size: 12px;
}

.totals__list li.paymCheck .checkbox-div {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.totals__list li.paymCheck .checkbox-div input {
  margin: 0;
}

.totals__list li:last-child {
    width: 80%;
}

.totals__list li .text {
	position: relative;
	font-size: 16px;
	text-align: left;
	flex-basis: 40%
}

.totals__list li .text label {
  margin: 0;
}

.totals__list li .basket-btn {
	width: 100%;
	padding: 10px 25px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	margin-top: 15px;
	transition: all .4s;
	font-weight: 500;
}

.totals__list li .basket-btn:hover {
	background-color: #000
}

.total-left {
    flex-basis: 50%;
    /*padding: 50px 15px;*/
}

.total-left span {
    font-size: 18px;
    font-weight: 300;
}

.total-left__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.total-left__list li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 15px;
}

.total-left__list li .left-img {
    flex-basis: 20%;
}

.total-left__list li .left-img img {
    width: 65px;
    height: 65px;
    border-radius: 5px;
}

.total-left__list .total-left__info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    flex-basis: 80%;
}

.basket-area__bottom {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 15px 90px;
    border-top: 1px solid #ddd;
    background: #e8e8e8;
}

.basket-coupon {
    height: 35px;
    flex-basis: 40%;
    width: 40%;
}

.basket-coupon form {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.basket-coupon a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    border-radius: 0 3px 3px 0;
    padding: 0 10px;
    border: 1px solid #8224e3;
    font-size: 1rem;
    height: 30px;
}

.basket-coupon input {
    width: 60%;
    height: 40px;
    border: 1px solid #8224e3;
    border-right: none;
    border-radius: 5px 0px 0px 5px;
}

.basket-coupon a:hover {
    background-color: #8224e3;
    color: #fff;
}

.cuopon-form {
    display: flex;
    justify-content: center;
}

#couponcode {
    border-radius: 5px 0 0 5px;
    border-right: none;
    border-left: 1px solid #8224e3;
    border-bottom: 1px solid #8224e3;
    border-top: 1px solid #8224e3;
}

.cuopon-form button {
    border-radius: 0px 5px 5px 0;
    border-left: none;
    height: 40px;
}

.coupon-delete__box {
    position: absolute;
    right: 0;
    top: 0;
}

.coupon-delete__box button {
    border: none;
    border-radius: 5px;
    background: #8224e3;
    color: #fff;
    font-size: 11px;
    box-shadow: 4px 3px 0px #bfbfbf;
    transition: all .4s;
}

.coupon-delete__box button:hover {
    box-shadow: none;
}

.basket-address .input-group {
	margin-bottom: 25px
}

.basket-address .input-group input,
.basket-address .input-group select,
.basket-address .input-group textarea {
	flex-basis: 50%;
	margin: 0 10px
}

.basket-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px !important;
    width: 90%;
    margin: 155px auto 0;
    border: 3px solid #ddd;
    background-color: #e8e8e8;
    border-radius: 5px;
}

.basket-banner__text {
    text-align: center;
    flex-basis: 75%;
}

.basket-banner__text.full-basis {
  flex-basis: 100%;
}

.basket-banner__text h1 {
    font-size: 20px;
}

.basket-banner__text h1 span {
    background-image: url(../img/marker-draw-2.png);
    background-size: 53px 23px;
    background-position: 3px 2px;
    background-repeat: no-repeat;
    font-weight: 300;
    color: #fff;
    padding: 0 12px;
}

.basket-banner__text h4 {
    font-size: 14px;
    color: #777;
}

.basket-banner__text.full-flex {
    flex-basis: 100%;
}

.basket-banner__btn {
    flex-basis: 25%;
    border-left: 1px solid #ddd;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-banner__btn a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-btn {
    background-color: #fff !important;
    border: 1px solid #8224e3 !important;
    color: #000 !important;
    line-height: 20px;
    padding: 9px 20px;
}

.basket-btn:hover {
    background-color: #8224e3 !important;
    color: #fff !important;
}

.basket-btn img {
    width: 20px;
    margin-right: 10px;
}

.checkout {
    width: 100%;
    margin-top: 45px;
    font-size: 20px;
    padding: 15px 20px !important;
}

.basket-bottom {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

.basket-bottom li {
    flex-basis: 25%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
}

.basket-bottom li:nth-child(1) {
    flex-basis: 20%;
}

.basket-bottom li:nth-child(4) {
    flex-basis: 30%;
}

.basket-bottom li:nth-child(1) img {
    width: 40px;
}

.basket-bottom__img {
    width: 35%;
    text-align: right;
}

.basket-bottom__img img {
    width: 45px;
    margin-right: 20px;
}

.basket-bottom__text h3 {
    font-size: 18px;
}

.basket-bottom__text p {
    font-size: 14px;
    color: #616161;
    height: 5px;
}

.kupon-box {
    width: 33%;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    display: none;
}

.basket-note h3 {
    font-size: 18px;
}

.adress-box {
    border: 2px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    display: none;
}

.shiping-box h4 {
    font-size: 18px;
}

.shiping-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.shiping-list li {
    position: relative;

}

.shiping-list li button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.shiping-list li.block button {
    pointer-events: none;
}

.shiping-list li.active {
    background-color: #ddd;
}

.shiping-list .check {
    height: 40px;
}

.shiping-list li .check__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    color: #000;
    background: transparent;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 13px;
    margin: 0;
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Checked */

.shiping-list li .check__input:checked + .check__box {
    border: 2px solid #9013fe !important;
    font-size: 13px;
    font-weight: bold;
}

.gift-row {
    padding: 25px 0;
}

.gift-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gift-list li {
    margin-bottom: 15px;
    position: relative;
}

.gift-list li .check__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    color: #000;
    background: transparent;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 13px;
    margin: 0;
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Checked */

.gift-list li .check__input:checked + .check__box {
    border: 2px solid #9013fe !important;
    font-size: 13px;
    font-weight: bold;
}

.transfer-banner {
    width: 100%;
    max-width: 980px;
    text-align: center;
    border: 3px dashed black;
    margin: 120px auto 50px;
    padding: 25px 0;
}

.transfer-banner.error-banner {
    border-color: red;
    color: red;
}

.transfer-banner h1 {
    font-size: 30px;
}

.transfer .container {
    width: 100%;
    max-width: 980px;
}

.transfer__detail,
.transfer__info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.banka__info {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.transfer__info {
    justify-content: space-around;
}

.transfer__detail-item,
.transfer__info-item,
.banka__info-item {
    text-align: center;
    border-right: 1px solid #ddd;
    flex-basis: 25%;
    height: 65px;
}

.banka__info-item h4 {
    font-size: 18px;
}

.banka__info-item p {
    font-size: 16px;
}

.transfer__info-item {
    flex-basis: 50%;
}

.transfer__detail-item:last-child,
.transfer__info-item:last-child {
    border: none;
}

.transfer__detail-item h3,
.transfer__info-item h3 {
    font-size: 18px;
    color: #777;
}

.transfer__detail-item p,
.transfer__info-item p {
    font-weight: bold;
}

.transfer__header {
    text-align: center;
    margin: 50px 0;
}

.transfer__header h2 {
    color: #2d2a2a;
    font-size: 26px;
}

.transfer__header h3 {
    font-size: 16px;
    color: #777;
}

.transfer__order {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}

.transfer__order-header {
    font-size: 24px;
}

.transfer__order-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    border-bottom: 1px solid #ddd;
}

.transfer__order-item:last-child {
    border-bottom: none;
}

.transfer__order-item h4 {
    font-size: 16px;
    font-weight: bold;
}

.transfer__order-item p {
    font-size: 14px;
    color: #777;
}

.transfer__order-item p.transfer-kdv {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.transfer__order-item p.transfer-kdv > span > span {
    color: #777;
    font-weight: normal;
}

.transfer__order-item li {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.transfer__order-item li > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.transfer__order-item li > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.error-text {
    width: 100%;
    text-align: center;
    color: #000;
}

.error-text h5 {
    margin: 15px 0;
}

.kosular-btn {
    font-weight: bold;
}

.basket-checkbox {
    margin-bottom: 10px;
}

option:disabled {
    background: #eee;
}

.basket-modal {
    background: rgba(0, 0, 0, 0.199);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 20px;
    z-index: 100;
}

.basket-modal .basket-form {
    position: relative;
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    padding: 25px;
    margin: 50px auto;
    border-radius: 5px;
}

.basket-modal .row {
    margin-bottom: 15px;
}
.close-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    font-size: 18px;
    padding: 15px;
    color: #fff;
}

.basket-note {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.form__info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.form__info-list li {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    height: 73px;
}
.form-list__group {
    display: flex;
    flex-direction: row;
}
.form-list__group li:nth-child(1) {
    flex-basis: 49%;
    width: 49%;
    margin-right: 1%;
}
.form-list__group li:nth-child(2) {
    flex-basis: 49%;
    width: 49%;
    margin-left: 1%;
}
.form__info-list li div {
    border: 1px solid #ddd;
    background: #ddd;
    padding: 10px 5px 10px 10px;
    margin-bottom: 10px;
    border-radius: 2px;
}
.form__info-list li span {
    font-size: 12px;
    color: #777;
    padding: 0px 5px 0px 10px;
}
.squaredThree {
    width: 20px;
    position: relative;
    margin: 20px auto;
}
.squaredThree label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#222222), to(#45484d));
    background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
    border-radius: 4px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
}
.squaredThree label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #fcfff4;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.squaredThree label:hover::after {
    opacity: 0.3;
}
.squaredThree input[type=checkbox] {
    visibility: hidden;
}
.squaredThree input[type=checkbox]:checked + label:after {
    opacity: 1;
}


@media only screen and (max-width: 768px) {
    .transfer__detail, .transfer__info {
        flex-direction: column !important;
    }
    .transfer__detail-item, .transfer__info-item {
        border-right: none;
    }
    .payment-footer_box-img img {
        width: 100%;
    }
    .cuopon-form {
        width: 100%;
        margin-bottom: 20px;
    }
}
