:root {
  --select-two-border-color: #dfe1e8;
  --select-two-radius: 15px;
  --select-two-height: 50px;
  --select-two-padding-rendered: 0 15px 0 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container.select2-container--default {
  z-index: 9999;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--select-two-border-color);
  border-radius: var(--select-two-radius);
  height: var(--select-two-height);
  display: flex;
  align-items: center;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding: var(--select-two-padding-rendered);
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow::before {
  content: "\e90a";
  font-family: "icomoon";
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  color: #888;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #eef1f4;
  box-shadow: 0 2px 8px -1px rgba(13, 60, 95, 0.1);
  border-radius: 15px;
}

.select2-search--dropdown {
  padding: 10px 10px 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dfe1e8;
  padding: 4px;
  border-radius: 10px;
  height: 35px;
  margin: 0 0 5px;
  outline: none;
}

.select2-results {
  padding: 10px;
}

.select2-results__option {
  font-size: 14px;
  line-height: 27px;
  color: #8a929c;
  border-radius: 10px;
  padding: 3px 15px;
}
.select2-results__option:not(:last-child) {
  margin-bottom: 1px;
}
.select2-results__option.select2-results__option--selected, .select2-results__option.select2-results__option--highlighted {
  background-color: #1ebcc5 !important;
  color: #fff !important;
}

.icon-minuse:before {
  content: "\e9a0";
}
.icon-plus-2:before {
  content: "\e9a1";
}
.icon-shopping-cart-3:before {
  content: "\e9a2";
}
.icon-trash-2:before {
  content: "\e9a3";
}
.icon-angle-left-three:before {
  content: "\e9a4";
}
.icon-clock:before {
  content: "\e9a5";
}
.icon-edit:before {
  content: "\e9a6";
}
.icon-location-2:before {
  content: "\e9a7";
}
.icon-phone-6:before {
  content: "\e9a8";
}

.form-checkbox {
  margin-bottom: 32px;
}
.form-checkbox-label {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}
.form-checkbox-label, .form-checkbox-label::before, .form-checkbox-label::after {
  transition: all 0.3s ease-in-out;
}
.form-checkbox-label::before, .form-checkbox-label::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  transform: translateY(-50%);
}
.form-checkbox-label::before {
  content: "";
  background-color: #eef1f4;
}
.form-checkbox-label::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCA5IDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBkPSJNNC4wNzM5NCA2LjY4MDczQzMuNjY1ODkgNy4xMDY0MiAzLjAwMzgxIDcuMTA2NDIgMi41OTU5NiA2LjY4MDczTDAuMzA2MDMzIDQuMjkxNzlDLTAuMTAyMDExIDMuODY2MzEgLTAuMTAyMDExIDMuMTc1NiAwLjMwNjAzMyAyLjc1MDEyQzAuNzEzODc5IDIuMzI0NDMgMS4zNzU5NyAyLjMyNDQzIDEuNzg0MDEgMi43NTAxMkwzLjE0ODM2IDQuMTczMjVDMy4yNTEzNSA0LjI4MDQ5IDMuNDE4NTUgNC4yODA0OSAzLjUyMTc0IDQuMTczMjVMNy4yMTU5OSAwLjMxOTI2NUM3LjYyMzg0IC0wLjEwNjQyMiA4LjI4NTkyIC0wLjEwNjQyMiA4LjY5Mzk3IDAuMzE5MjY1QzguODg5OTEgMC41MjM2ODUgOSAwLjgwMTAzOSA5IDEuMDkwMUM5IDEuMzc5MTcgOC44ODk5MSAxLjY1NjUyIDguNjkzOTcgMS44NjA5NEw0LjA3Mzk0IDYuNjgwNzNaIiBmaWxsPSIjRkZGRkZGIi8+DQo8L3N2Zz4NCg==");
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
  opacity: 0;
}
.form-checkbox-input:checked + label {
  color: #1ebcc5;
}
.form-checkbox-input:checked + label::before {
  background-color: #1ebcc5;
}
.form-checkbox-input:checked + label::after {
  opacity: 1;
}

.btn-success-5 {
  background-color: #ee273a;
  color: #fff;
}
.btn-success-5:hover, .btn-success-5:focus, .btn-success-5:active {
  background-color: #70a834;
  color: #fff;
}
.btn-outline-success-2 {
  color: #ee273a;
}
.btn-outline-success-2, .btn-outline-success-2:hover, .btn-outline-success-2:focus, .btn-outline-success-2:active {
  border: 1px solid #ee273a;
}
.btn-outline-success-2:hover, .btn-outline-success-2:focus, .btn-outline-success-2:active {
  background-color: #ee273a;
  color: #fff;
}

.cart-three-empty {
  padding: 50px 0;
  border-radius: 25px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='25' ry='25' stroke='%23DDE2E9' stroke-width='6' stroke-dasharray='21%2c 21' stroke-dashoffset='38' stroke-linecap='square'/%3e%3c/svg%3e");
}
.cart-three-empty .text {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.5;
}
.cart-three-item {
  padding: 30px;
  border-radius: 25px;
}
.cart-three-item::before, .cart-three-item::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: inherit;
  z-index: -1;
}
.cart-three-item::before {
  top: 0;
  right: 0;
  box-shadow: 2px -2px 30px #edf0f5;
}
.cart-three-item::after {
  bottom: 0;
  left: 0;
  box-shadow: -2px 2px 30px #edf0f5;
}
.cart-three-item:not(:last-child) {
  margin-bottom: 20px;
}
.cart-three-item .image,
.cart-three-item .detail {
  flex: 0 0 auto;
  width: 100%;
}
.cart-three-item .image {
  max-width: 120px;
}
.cart-three-item .offer {
  min-width: 38px;
  height: 18px;
  line-height: 20px;
  background-color: #e14f4f;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  top: 1px;
  right: 10px;
  z-index: 3;
}
.cart-three-item .detail {
  max-width: calc(100% - 120px);
  padding-right: 20px;
}
.cart-three-item .detail .remove {
  top: 3px;
  left: 10px;
}
.cart-three-item .detail .title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	color: #0e1935;
	padding-left: 20px;
	max-height: 3rem;
	overflow: visible;
}
.cart-three-item .detail .title dl{
  font-size: 14px !important;
  font-weight: 400 !important;
}
.cart-three-item .detail .title dl dt{
  margin-bottom: 0!important;
  display: inline !important;
}
.cart-three-item .detail .title dl dd{
  margin-bottom: 0!important;
  margin-left: 12px !important;
  display: inline !important;
}
.cart-three-item .detail .title dl p{
  margin-bottom: 0!important;
  display: inline !important;
}
.cart-three-item .detail ul {
  gap: 9px 20px;
  margin: 5px 0;
}
.cart-three-item .detail ul li {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #0e1935;
}
.cart-three-item .detail ul li span {
  opacity: 0.8;
}
.cart-three-item .detail ul li i {
  font-size: 14px;
}
.cart-three-item .detail ul li img {
  width: 17px;
  height: 19px;
}
.cart-three-item .detail ul li i,
.cart-three-item .detail ul li img {
  margin-left: 5px;
}
.cart-three-item .detail .profit {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #d2d7df;
  color: #8a929c;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.cart-three-item .detail .profit span {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  margin-left: 5px;
}
.cart-three-item .detail .price {
  font-size: 11px;
  line-height: 17px;
  font-weight: 400;
  color: #0e1935;
  margin-left: 20px;
}
.cart-three-item .detail .price span {
  margin-left: 2px;
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
}
.cart-three-item .detail .price-origin {
  font-size: 11px;
  font-weight: 400;
  color: #8a929c;
  line-height: 17px;
}
.cart-three-item .detail .price-origin span {
  font-size: 14px;
  line-height: 20px;
  margin-left: 3px;
}
.cart-three-item .detail .quantity {
  width: -moz-fit-content;
  width: fit-content;
  height: 47px;
  border-radius: 10px;
  padding: 3px 8px 4px;
}
.cart-three-item .detail .quantity .increment {
  font-size: 8px;
  color: #000;
}
.cart-three-item .detail .quantity input {
  margin: 0 7px;
  width: 30px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #dfe1e8;
  direction: ltr;
  border-radius: 10px;
  font-size: 15px;
  color: #000;
  padding: 10px 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.cart-three-item .detail .quantity .decrement {
  font-size: 2px;
  color: #bcc1c8;
}
.cart-three-sidebar-content {
  box-shadow: 0 4px 30px #edf0f5;
  border-radius: 25px;
  padding: 90px 35px 35px;
  margin-bottom: 20px;
}
.cart-three-sidebar-content::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMwIiBoZWlnaHQ9Ijc1IiB2aWV3Qm94PSIwIDAgMjMwIDc1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KPHBhdGggZD0iTTIzMCAwSDBWMTBDMjYuMjI1OCAxMC42NjA1IDQzLjY5MDkgMjAuNDkwMSA1Mi4wNDk5IDI3LjkzNTZDNjAuNDA4OCAzNS4zODExIDg0LjUxODYgNjEuOTI1OSA4NC41MTg2IDYxLjkyNTlDMTAxLjAzOCA3OS4yMTkgMTI4LjYyNyA3OS4yMTkgMTQ1LjE0NiA2MS45MjU5QzE0NS4xNDYgNjEuOTI1OSAxNjkuMTQ2IDM1LjQ1NzggMTc3LjU0OSAyOC4wMDQyQzE4NS45NTMgMjAuNTUwNiAyMDMuNjc1IDEwLjY2MjUgMjMwIDEwVjBaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMjIxXzMpIiBzdHlsZT0iIi8+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8yMjFfMyIgeDE9IjExNSIgeTE9IjAiIHgyPSIxMTUiIHkyPSI3NC44OTU3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+DQo8c3RvcCBzdG9wLWNvbG9yPSIjRkFGQkZCIiBzdHlsZT0ic3RvcC1jb2xvcjojRkFGQkZCO3N0b3AtY29sb3I6Y29sb3IoZGlzcGxheS1wMyAwLjk4MDQgMC45ODQzIDAuOTg0Myk7c3RvcC1vcGFjaXR5OjE7Ii8+DQo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGNEY2RjgiIHN0eWxlPSJzdG9wLWNvbG9yOiNGNEY2Rjg7c3RvcC1jb2xvcjpjb2xvcihkaXNwbGF5LXAzIDAuOTU2OSAwLjk2NDcgMC45NzI1KTtzdG9wLW9wYWNpdHk6MTsiLz4NCjwvbGluZWFyR3JhZGllbnQ+DQo8L2RlZnM+DQo8L3N2Zz4NCg==") 0 0/cover;
          mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMwIiBoZWlnaHQ9Ijc1IiB2aWV3Qm94PSIwIDAgMjMwIDc1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KPHBhdGggZD0iTTIzMCAwSDBWMTBDMjYuMjI1OCAxMC42NjA1IDQzLjY5MDkgMjAuNDkwMSA1Mi4wNDk5IDI3LjkzNTZDNjAuNDA4OCAzNS4zODExIDg0LjUxODYgNjEuOTI1OSA4NC41MTg2IDYxLjkyNTlDMTAxLjAzOCA3OS4yMTkgMTI4LjYyNyA3OS4yMTkgMTQ1LjE0NiA2MS45MjU5QzE0NS4xNDYgNjEuOTI1OSAxNjkuMTQ2IDM1LjQ1NzggMTc3LjU0OSAyOC4wMDQyQzE4NS45NTMgMjAuNTUwNiAyMDMuNjc1IDEwLjY2MjUgMjMwIDEwVjBaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMjIxXzMpIiBzdHlsZT0iIi8+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8yMjFfMyIgeDE9IjExNSIgeTE9IjAiIHgyPSIxMTUiIHkyPSI3NC44OTU3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+DQo8c3RvcCBzdG9wLWNvbG9yPSIjRkFGQkZCIiBzdHlsZT0ic3RvcC1jb2xvcjojRkFGQkZCO3N0b3AtY29sb3I6Y29sb3IoZGlzcGxheS1wMyAwLjk4MDQgMC45ODQzIDAuOTg0Myk7c3RvcC1vcGFjaXR5OjE7Ii8+DQo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGNEY2RjgiIHN0eWxlPSJzdG9wLWNvbG9yOiNGNEY2Rjg7c3RvcC1jb2xvcjpjb2xvcihkaXNwbGF5LXAzIDAuOTU2OSAwLjk2NDcgMC45NzI1KTtzdG9wLW9wYWNpdHk6MTsiLz4NCjwvbGluZWFyR3JhZGllbnQ+DQo8L2RlZnM+DQo8L3N2Zz4NCg==") 0 0/cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  width: 230px;
  height: 75px;
  background-image: linear-gradient(180deg, #fafbfb 0%, #f4f6f8 100%);
  transform: translate(-50%, -10px);
}
.cart-three-sidebar-content img {
  transform: translate(-50%, -15px);
}
.cart-three-sidebar-content .price {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  color: #0e1935;
}
.cart-three-sidebar-content .price div {
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}
.cart-three-sidebar-content .price div span {
  font-size: 18px;
  line-height: 33px;
}
.cart-three-sidebar-content .price.profit {
  color: #e14f4f;
  margin-top: 10px;
}
.cart-three-sidebar-content .divider {
  margin: 30px 0;
  border: 0;
  background: url("./../images/kaveh/dashed-line.svg") 0 0 repeat-x;
  height: 2px;
}
.cart-three-sidebar-content .divider::before, .cart-three-sidebar-content .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 34px;
  border-radius: 50%;
  --dir: 90deg;
  background-image: linear-gradient(var(--dir), #f4f6f8 0%, #fafbfb 100%);
}
.cart-three-sidebar-content .divider::before {
  right: 0;
  transform: translate(48px, -50%);
}
.cart-three-sidebar-content .divider::after {
  left: 0;
  transform: translate(-48px, -50%);
  --dir: -90deg;
}
.cart-three-sidebar-content p {
  font-size: 12px;
  line-height: 22px;
  color: #0e1935;
  margin-bottom: 10px;
}
.cart-three-sidebar .btn-cart {
  padding: 18px 10px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  border-radius: 10px;
}
.cart-three-sidebar .btn-cart i {
  font-size: 8px;
  font-weight: 400;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .cart-three-item {
    padding: 12px;
    border-radius: 15px;
  }
  .cart-three-item .offer {
    position: relative !important;
    top: 0;
    right: 0;
    margin-right: 5px;
  }
  .cart-three-item .detail .price {
    margin-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .cart-three-item > div {
    padding-bottom: 90px;
  }
  .cart-three-item .image {
    max-width: 100px;
  }
  .cart-three-item .detail {
    max-width: calc(100% - 100px);
  }
  .cart-three-item .detail .title {
    font-size: 14px;
    line-height: 22px;
  }
  .cart-three-item .detail .bottom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

.checkout-two-header {
  padding: 25px 0 15px;
  background-color: #fff;
  border-bottom: 2px solid #dfe1e8;
  box-shadow: 0 2px 8px 1px #e4e9ec;
  z-index: 2;
  margin-bottom: 32px;
}
.checkout-two-header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 40px;
  z-index: 99;
}
.checkout-two-header-steps li {
  flex: 0 0 auto;
  max-width: 33.333333%;
  z-index: 3;
}
.checkout-two-header-steps li:nth-child(2) {
  z-index: 2;
}
.checkout-two-header-steps li:last-child {
  z-index: 1;
}
.checkout-two-header-steps li:not(:last-child) > div {
  padding-left: 13px;
}
.checkout-two-header-steps li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  height: 302px;
  width: 100vw;
  transform: translateY(17px);
  z-index: -3;
}
.checkout-two-header-steps li:not(:last-child) > div::after {
  content: "\e9a4";
  font-family: "icomoon";
  font-size: 11px;
  color: #bcc1c8;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}
.checkout-two-header-steps li > div {
  font-size: 15px;
  line-height: 27px;
  color: #b0b7bf;
  z-index: 3;
}
.checkout-two-header-steps li > div span {
  width: 35px;
  height: 18px;
  line-height: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(13, 60, 95, 0.1);
  margin-left: 10px;
}
.checkout-two-header-steps li.active > div, .checkout-two-header-steps li.visited > div {
  color: #0e1935;
}
.checkout-two-header-steps li.active > div span, .checkout-two-header-steps li.visited > div span {
  border: 1px solid #ee273a;
  box-shadow: none;
}
.checkout-two-header-steps li.active::before {
  border-bottom: 2px solid #ee273a;
}
.checkout-two-header-steps li.active::before, .checkout-two-header-steps li.active:last-child::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 38.89%, #ee273a30 100%);
}
.checkout-two-header-steps li.active:nth-child(2)::before {
  width: 100%;
}
.checkout-two-header-steps li.active:last-child::before {
  right: 0;
  left: auto;
  transform: translate(12px, 17px);
  width: 49vw;
  background: transparent;
}
.checkout-two-header-steps li.active:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translate(17px, 12px);
}
.checkout-two-header-steps li.active:not(:last-child):after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 8px solid #fff;
  background-color: #ee273a;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: translateY(28px);
}
.checkout-two-header-steps li.active > div span {
  color: #0e1935;
}
.checkout-two-header-steps li.visited::before {
  background: #ee273a30;
  border-bottom: 2px solid #ee273a;
}
.checkout-two-header-steps li.visited::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 5px solid #fff;
  background-color: #ee273a;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: translateY(23px);
}
.checkout-two-header-steps li.visited > div span {
  color: #fff;
  background-color: #ee273a;
}
.checkout-two-box {
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 10px;
}
.checkout-two-send-order i {
  font-size: 20px;
  margin-left: 10px;
}
.checkout-two-send-order .title {
  font-size: 18px;
  line-height: 27px;
  color: #0e1935;
}
.checkout-two-send-order .title span {
  font-weight: 500;
}
.checkout-two-select-address-heading {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfe1e8;
}
.checkout-two-select-address-heading-title {
  font-size: 18px;
  line-height: 27px;
  color: #0e1935;
}
.checkout-two-select-address-heading .new-address {
  color: #1ebcc5;
  font-size: 14px;
  line-height: 22px;
}
.checkout-two-select-address-heading .new-address i {
  font-size: 13px;
  margin-left: 3px;
}
.checkout-two-select-address-empty {
  margin-top: 20px;
  padding: 50px 0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='25' ry='25' stroke='%23DDE2E9' stroke-width='6' stroke-dasharray='21%2c 21' stroke-dashoffset='38' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 25px;
}
.checkout-two-select-address-empty .title {
  margin: 20px 0;
  font-size: 18px;
  line-height: 27px;
  color: #0e1935;
}
.checkout-two-select-address-empty .btn {
  padding: 6px 50px;
  border-radius: 10px;
  min-width: 140px;
  font-size: 14px;
  font-weight: 500;
}
.checkout-two-select-address-empty .btn i {
  font-size: 11px;
  margin-left: 5px;
}
.checkout-two-select-address-item {
  cursor: pointer;
}
.checkout-two-select-address-item:not(:last-child) {
  margin-bottom: 10px;
}
.checkout-two-select-address-item input {
  opacity: 0;
  z-index: 5;
  cursor: pointer;
}
.checkout-two-select-address-item > div {
  border-radius: 15px;
  border: 1px solid #dfe1e8;
  padding: 30px 25px 30px 35px;
}
.checkout-two-select-address-item > div,
.checkout-two-select-address-item > div .right .radio,
.checkout-two-select-address-item > div .right .radio::before,
.checkout-two-select-address-item > div .info .edit {
  transition: all 0.3s ease-in-out;
}
.checkout-two-select-address-item > div .right {
  padding: 15px 0 15px 25px;
  border-left: 1px solid #dfe1e8;
}
.checkout-two-select-address-item > div .right .radio {
  background-color: #fff;
  border: 1px solid #dfe1e8;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.checkout-two-select-address-item > div .right .radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #179299;
  opacity: 0;
}
.checkout-two-select-address-item > div .info {
  padding-right: 35px;
  flex: 1 0 1%;
}
.checkout-two-select-address-item > div .info .address {
  font-size: 15px;
  color: #0e1935;
  line-height: 27px;
  margin-bottom: 5px;
}
.checkout-two-select-address-item > div .info .address i {
  font-size: 18px;
  margin-left: 5px;
}
.checkout-two-select-address-item > div .info .address span {
  font-weight: 500;
}
.checkout-two-select-address-item > div .info ul {
  gap: 30px;
}
.checkout-two-select-address-item > div .info ul li {
  font-size: 13px;
  color: #0e1935;
  opacity: 0.8;
}
.checkout-two-select-address-item > div .info ul li i {
  margin-left: 5px;
}
.checkout-two-select-address-item > div .info .edit {
  left: 20px;
  font-size: 14px;
  color: #8a929c;
}
.checkout-two-select-address-item input:checked + div {
  background-color: #e0f4f9 !important;
  border-color: #8edde2;
}
.checkout-two-select-address-item input:checked + div .right .radio {
  border-color: #179299;
}
.checkout-two-select-address-item input:checked + div .right .radio::before {
  opacity: 1;
}
.checkout-two-select-address-item input:checked + div .info .edit {
  color: #179299;
}
.checkout-two-type-send .title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfe1e8;
  font-size: 18px;
  line-height: 27px;
  color: #0e1935;
}
.checkout-two-type-send .nav {
  margin-left: 50px;
}
.checkout-two-type-send .nav li {
  padding: 20px;
  height: 60px;
  border-radius: 15px;
  border: 1px solid #dfe1e8;
  background-color: #fff;
  font-size: 15px;
  color: #0e1935;
  line-height: 27px;
}
.checkout-two-type-send .nav li,
.checkout-two-type-send .nav li .radio,
.checkout-two-type-send .nav li .radio::before {
  transition: all 0.3s ease-in-out;
}
.checkout-two-type-send .nav li:not(:last-child) {
  margin-bottom: 10px;
}
.checkout-two-type-send .nav li input {
  opacity: 0;
  z-index: 5;
  cursor: pointer;
}
.checkout-two-type-send .nav li .radio {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #dfe1e8;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}
.checkout-two-type-send .nav li .radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #179299;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.checkout-two-type-send .nav li img {
  margin-left: 10px;
}
.checkout-two-type-send .nav li.active {
  background-color: #e0f4f9;
  border-color: #8edde2;
}
.checkout-two-type-send .nav li.active .radio {
  border-color: #179299;
}
.checkout-two-type-send .nav li.active .radio::before {
  opacity: 1;
}
.checkout-two-type-send .tab-pane > * {
  font-size: 14px;
  line-height: 27px;
}
.checkout-two-type-send .tab-pane .danger {
  color: #e14f4f;
  font-weight: 700;
}
.checkout-two-type-send .tab-pane .dark {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.checkout-two-type-send .tab-pane .gray {
  color: #b0b7bf;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .checkout-two-type-send .nav {
    margin-left: 0;
  }
  .checkout-two-type-send .nav li {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-two-header-steps li:not(:last-child) > div::after {
    content: "\e90c";
  }
  .checkout-two-header-steps li.active:not(:last-child)::after {
    left: -6px;
  }
  .checkout-two-header-steps li.visited::after {
    left: 0;
  }
  .checkout-two-type-send .nav {
    gap: 12px;
  }
  .checkout-two-type-send .nav li {
    flex: 1 0 1%;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-two-header-steps li > div {
    font-size: 12px;
    line-height: 18px;
  }
  .checkout-two-header-steps li.active:not(:last-child):after {
    width: 18px;
    height: 18px;
    border-width: 5px;
    transform: translateY(25px);
  }
  .checkout-two-header-steps li.visited::after {
    width: 14px;
    height: 14px;
    border-width: 4px;
  }
  .checkout-two-box {
    padding: 20px;
  }
  .checkout-two-send-order {
    padding: 20px 25px;
    background: linear-gradient(320.55deg, #e6e9ee 67.96%, #ced3db 132.36%, #ced3db 132.36%);
  }
  .checkout-two-send-order .title {
    font-size: 14px;
  }
  .checkout-two-send-order img {
    width: 28px;
    height: 28px;
  }
  .checkout-two-select-address-items {
    overflow: auto hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 20px;
    gap: 12px;
  }
  .checkout-two-select-address-items::-webkit-scrollbar {
    display: none;
  }
  .checkout-two-select-address-item {
    max-width: calc(50% - 6px);
    width: 100%;
    flex: 0 0 auto;
  }
  .checkout-two-select-address-item:not(:last-child) {
    margin: 0;
  }
  .checkout-two-select-address-item > div {
    padding: 13px 10px 50px;
    border-radius: 15px;
    height: 100%;
  }
  .checkout-two-select-address-item > div .right {
    position: absolute;
    top: 16px;
    right: 10px;
    border: 0;
    padding: 0;
  }
  .checkout-two-select-address-item > div .info {
    padding-right: 0;
  }
  .checkout-two-select-address-item > div .info .address {
    padding-right: 24px;
    text-align: right;
  }
  .checkout-two-select-address-item > div .info ul {
    gap: 4px 12px;
  }
  .checkout-two-select-address-item > div .info .edit {
    top: auto !important;
    transform: unset !important;
    bottom: 10px;
    left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .checkout-two-select-address-item {
    max-width: calc(80% - 6px);
  }
  .checkout-two-type-send .nav li {
    padding: 12px;
    font-size: 12px;
    line-height: 18px;
  }
}

.shadow-cart::before, .shadow-cart::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 25px;
  z-index: -1;
}
.shadow-cart::before {
  top: 0;
  right: 0;
  box-shadow: 2px -2px 30px #edf0f5;
}
.shadow-cart::after {
  bottom: 0;
  left: 0;
  box-shadow: -2px 2px 30px #edf0f5;
}

.modal-new-address .modal-dialog {
  --bs-modal-width: 790px;
}
.modal-new-address .modal-content {
  padding: 10px 15px 5px;
  --bs-modal-border-radius: 25px;
}
.modal-new-address .modal-header {
  padding: 15px 0;
  border-bottom: 1px solid #dfe1e8;
}
.modal-new-address .modal-title {
  font-size: 18px;
  line-height: 27px;
  color: #0e1935;
}
.modal-new-address .modal-close {
  font-weight: 900;
  font-size: 24px;
}
.modal-new-address .modal-body {
  padding: 25px;
}
.modal-new-address form .row {
  margin: 0 -5px;
  gap: 10px 0;
}
.modal-new-address form .row > * {
  padding: 0 5px;
}
.modal-new-address form .form-group .form-control {
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid #dfe1e8;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  background-color: #fff;
}
.modal-new-address form .form-group .form-control-placeholder {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: #8a929c;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.modal-new-address form .form-group .form-control-placeholder span {
  color: #e14f4f;
  font-size: 20px;
  height: 8px;
  width: 8px;
  margin-right: 4px;
}
.modal-new-address form .form-group .form-control.focused + .form-control-placeholder {
  opacity: 0;
  visibility: hidden;
}
.modal-new-address form .form-group .label {
  padding: 5px 10px;
  top: 6px;
  right: 32px;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  color: #1ebcc5;
  transition: all 0.3s linear;
}
.modal-new-address form .form-group .form-control.focused ~ .label {
  top: -9px;
  right: 20px;
  font-size: 12px;
  line-height: 1;
  opacity: 1;
}
.modal-new-address form .note {
  margin: 10px 5px;
  font-size: 14px;
  line-height: 21px;
  color: #0e1935;
  font-weight: 500;
}
.modal-new-address form .btn {
  min-width: 200px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding: 16px 12px;
  margin-top: 10px;
  border-radius: 10px;
}
.modal-new-address form .btn i {
  font-size: 8px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .modal-new-address {
    overflow: hidden;
  }
  .modal-new-address .modal-dialog {
    --bs-modal-margin: 0;
    align-items: flex-end;
    height: 100vh;
  }
  .modal-new-address .modal-content {
    --bs-modal-border-radius: 20px 20px 0 0;
    max-height: 50vh;
    transform: translateY(50vh);
    transition: all 0.3s linear;
  }
  .modal-new-address .modal-body {
    overflow: hidden auto;
    margin-left: -15px;
    padding: 20px 0 12px 15px;
  }
  .modal-new-address.show .modal-content {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 575px) {
  .modal-new-address form .form-group .form-control-placeholder {
    font-size: 12px;
    line-height: 18px;
  }
  .cartcouponkaveh{
    width: 100% !important;
    display: block !important;
  }
  .cartcouponkaveh #coupon_code {
    width: 100% !important;
    display: block !important;
    margin-bottom: 5px !important;
  }
  .cartcouponkaveh button{
    width: 100% !important;
    display: block !important;
    margin-bottom: 5px !important;
  }
}
.fs18{
  font-size: 18px;
}
.cart-three-sidebar .woocommerce-Price-currencySymbol{
  font-size: 14px !important;
}
.cart-three-sidebar span.woocommerce-Price-amount.amount {
	color: #0e1935;
}
.cart-three-sidebar-content .profit .woocommerce-Price-currencySymbol {
	color: #dd3333 !important;
}
.cart-three-sidebar-content .profit span.woocommerce-Price-amount.amount {
	color: #dd3333 !important;
}
.cartcouponkaveh button{
  padding: 15px 30px !important;
	border-radius: 15px !important;
  color: #fff !important;
}
.cartcouponkaveh #coupon_code {
	padding: 10px 15px;
	border-radius: 15px !important;
	border: 1px solid #dfe1e8;
	font-size: 14px;
	font-weight: 700;
	background-color: #fff;
	margin-left: 10px;
	margin-right: 0;
	top: -5px;
	position: relative;
}
.woocommerce a.remove {
	width: unset !important;
	color: red !important;

}
.woocommerce a.remove:hover {
	color: red !important;
	
}
.cart-three-item .detail .profit span.woocommerce-Price-amount.amount {
	color: #8a929c !important;
}
.cart-three-item .detail .profit span.woocommerce-Price-currencySymbol{
  color: #8a929c !important;
  font-size: 14px;
	font-weight: 400;
}
.cart-three-item .detail span.woocommerce-Price-currencySymbol{
  font-size: 14px!important;
	font-weight: 400!important;
}
.kplustwo,.kminustwo{
	display: none !important;
}
.cart-three-item .kplustwo,.cart-three-item .kminustwo{
	display: inline !important;
}
.cart-three-item .quantity .input-text.qty.text {
	font-size: 16px !important;
	font-weight: 700 !important;
	width: auto;
	height: auto;
	background: transparent;
	padding: 0;
	margin: 4px 0;
	position: static;
	border: 1px solid #dfe1e8;
	border-radius: 12px;
	line-height: 32px;
}
.cart-three-item .quantity.d-flex {
	height: 47px;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(13, 60, 95, 0.1);
	padding: 3px 8px 4px;
}

@media only screen and (max-width: 768px) {
  .cart-three-item .quantity .input-text.qty.text {
    font-size: 13px !important;
    font-weight: 700 !important;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    margin: 2px 0;
    position: static;
    border: none;
    border-radius: 12px;
    line-height: 0;
  }
  .quantity .input-text.qty.text {
    width: 20px !important;
  }
  .cart-three-item .quantity.d-flex {
    padding: 0px!important;
  }
}