@import url("./btn.css");
.shop-card {
  background: #fff;
  transition: 0.5s;
  height: calc(100% - 16px);
  margin-bottom: 16px;
  border: 1px solid rgba(128, 128, 128, 0.16);
}

.shop-img {
  text-align: center;
  padding: 0;
}

.shop-img a {
  display: block;
  min-height: 180px;
  height: 180px;
  overflow: hidden;
}

.shop-item:hover .shop-img img {
  transform: scale(1.1);
}

.shop-dis {
  padding: 10px 10px;
}

.shop-dis p a {
  color: #777a7c;
}

.shop-dis p {
  margin-bottom: 5px;
}

.shop-dis-hd h4 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
}

.shop-dis h4 a {
  color: #2f2f2f;
}

.shop-dis-hd h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}
.ratings i {
  color: #ffb21d;
}
.shop-dis h4 {
  margin-bottom: 0px;
  font-size: 20px;
}
.ratings {
  margin-bottom: 8px;
}
.shop-dis h3 small {
  color: #777a7c;
  font-size: 16px;
  font-weight: 400;
}
.shop-filter {
  border: 1px solid #eee;
  background-color: #f8f8fb;
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 5px;
}
.shop-dis h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 0px;
}

.cart-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  transition: 0.5s;
  text-wrap: nowrap;
}
.cart-btn:hover {
  background: #0000;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.main-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  transition: 0.5s;
  text-wrap: nowrap;
}
.main-btn:hover {
  background: #0000;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.wishlist-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.wishlist-icon i {
  color: red;
}

.sidebar-list ul {
  list-style: none;
  max-height: 270px;
  overflow: auto;
  padding: 0px 4px;
}
.sidebar-list ul li {
  padding: 10px 0px;
}

.sidebar-block {
  margin-bottom: 20px;
}
.sidebar-list .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: #45484a;
}

.sidebar-list .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}

.sidebar-list .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 3px;
  outline: 1px solid #acacac;
  transition: all 0.2s ease;
}

.sidebar-list .checkbox:hover .checkmark {
  background: #f4f4f5;
  transition: all 0.2s ease;
}

.sidebar-list .checkbox input:checked ~ .checkmark {
  background: #3f7fed;
  outline: 1px solid rgb(95, 126, 240);
}

.sidebar-list .checkbox input[type="radio"] ~ .checkmark {
  border-radius: 50%;
}

.sidebar-list .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.sidebar-list .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.sidebar-block input[type="range"] {
  width: 100%;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.sidebar-block input[type="range"],
.sidebar-block input[type="range"]::-webkit-slider-runnable-track,
.sidebar-block input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: none;
}
.sidebar-block input[type="range"]::-webkit-slider-runnable-track {
  width: 200px;
  height: 1px;
  background: var(--primary-color);
}

.sidebar-block input[type="range"]:nth-child(2)::-webkit-slider-runnable-track {
  background: none;
}

.sidebar-block input[type="range"]::-webkit-slider-thumb {
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: -7px;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  z-index: 1;
}

.sidebar-block input[type="range"]:nth-child(1)::-webkit-slider-thumb {
  z-index: 2;
}

.sidebar-block .rangeslider {
  position: relative;
  height: 60px;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.sidebar-block .rangeslider input {
  position: absolute;
}

.sidebar-block .rangeslider span {
  position: absolute;
  margin-top: 30px;
  left: 0;
}

.sidebar-block .rangeslider .right {
  position: relative;
  float: right;
  margin-right: -5px;
}

/* Proof of concept for Firefox */
@-moz-document url-prefix() {
  .sidebar-block .rangeslider::before {
    content: "";
    width: 100%;
    height: 5px;
    background: #e3e3e3;
    display: block;
    position: relative;
    top: 14px;
  }

  .sidebar-block input[type="range"]:nth-child(1) {
    position: absolute;
    top: 35px !important;
    overflow: visible !important;
    height: 0;
  }

  .sidebar-block input[type="range"]:nth-child(2) {
    position: absolute;
    top: 35px !important;
    overflow: visible !important;
    height: 0;
  }
  .sidebar-block input[type="range"]::-moz-range-thumb {
    position: relative;
    height: 15px;
    width: 15px;
    margin-top: -7px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    z-index: 1;
  }

  .sidebar-block input[type="range"]:nth-child(1)::-moz-range-thumb {
    transform: translateY(-20px);
  }
  .sidebar-block input[type="range"]:nth-child(2)::-moz-range-thumb {
    transform: translateY(-20px);
  }
}

/****Shop Details Start****/
.single-item-title {
  font-size: 30px;
  font-weight: 600;
}

.single-item-rating {
  margin: 10px 0;
}

.single-item-rating i {
  color: rgb(255, 178, 29);
}

.rating-count {
  margin-left: 10px;
  display: inline-block;
}

.single-item-content h5 {
  margin-bottom: 15px;
}

.single-item-content span {
  font-weight: 400;
  margin-left: 10px;
  color: #666;
  font-family: "Roboto";
  font-size: 18px;
}

.single-item-action {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  margin-bottom: 20px;
}

.single-item-price del {
  color: #a6a6a6;
}

.single-item-details .nav-tabs {
  border-width: 2px;
}

.single-item-details .nav-tabs .nav-link {
  color: #30180d;
  font-size: 18px;
  padding: 15px 25px;
  font-weight: 500;
  border: none;
  background: 0 0;
  border-bottom: 2px solid transparent;
}

.single-item-details .nav-tabs .nav-link:hover,
.single-item-details .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.shop-left-sec .prdtSwiper .swiper-slide img,
.shop-left-sec .prdtSwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  padding: 10px;
}

/* .shop-left-sec {
	height: 650px;
} */
.shop-left-sec .swiper-button-next::after,
.shop-left-sec .swiper-button-prev::after {
  font-size: 30px;
}
.shop-left-sec .swiper-button-next,
.shop-left-sec .swiper-button-prev {
  color: #000;
}

.cart-qty button {
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 4px 13px;
}

.cart-qty input {
  width: 50px;
  padding: 4px 13px;
  border-radius: 4px;
  border: none;
  background: #f4f4f4;
  color: #000;
  text-align: center;
  border: 1px solid #ccc;
}

/****Shop Details End****/

/****Review Section Start****/

.blog-comments h3 {
  color: #000;
}
.blog-comments-wrapper {
  margin: 30px 0;
}
.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}
.blog-comments-single img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.blog-comments-content {
  padding: 0 0 0 20px;
}
.blog-comments-content h5 {
  color: #111;
}
.blog-comments-content span {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}
.blog-comments-content p {
  color: #555;
}
.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: var(--theme-bg-light);
}
.blog-comments-form h3 {
  margin-bottom: 20px;
  color: #111;
}
.blog-comments-form label {
  color: #464646;
  cursor: pointer;
  font-weight: 400;
}
.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: none;
}
.blog-comments-form {
  background: #f5f6f8;
  padding: 25px 30px;
  border-radius: 10px;
}
.blog-comments-form h3 {
  font-weight: 700;
  font-size: 22px;
}
.star-list {
  color: rgb(255, 178, 29);
}
.table-list-info a {
  display: flex;
  align-items: center;
}
.table-list-info img {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 6px;
}
.table td,
.table th {
  vertical-align: middle;
}
.act-btn {
  width: 34px;
  height: 34px;
  transition: all 0.5s ease-in-out;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  line-height: 34px;
  display: inline-block;
}
.act-btn:hover {
  opacity: 0.8;
}
.bg-grn {
  background: #198754;
  color: #fff;
}
/****Review Section End****/

/*****Cart Page Start*****/
.shop-cart thead tr th {
  text-transform: uppercase;
  font-weight: 600;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 10px;
}

.cart-img {
  width: 60px;
}

.cart-img img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.cart-qty button {
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 4px 13px;
}
.cart-qty input {
  width: 50px;
  padding: 4px 13px;
  border-radius: 4px;
  border: none;
  background: #f4f4f4;
  color: #000;
  text-align: center;
  border: 1px solid #ccc;
}

.cart-summary {
  float: right;
}
.cart-summary ul {
  list-style: none;
}
.shop-cart tr td h5 {
  margin-bottom: 0;
  font-size: 18px;
}
.shop-cart tr td {
  color: #000;
  vertical-align: middle;
  border-bottom: 1px solid #f4f4f4;
  border-top: none;
  position: relative;
  padding: 12px 10px;
  font-size: 16px;
}

.shop-cart tbody tr td {
  border-bottom: 1px solid #f4f4f4;
}

.cart-remove {
  color: #111;
}

.cart-coupon {
  margin-bottom: 25px;
}

.cart-coupon .form-group {
  position: relative;
}

.cart-coupon .form-control {
  box-shadow: none;
  padding: 15px 110px 15px 14px;
  border-radius: 4px;
  height: 59px;
}

.cart-coupon .form-control:focus {
  border-color: var(--primary-color);
}

.coupon-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 11px 14px;
  color: var(--color-white);
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  text-align: center;
}

.coupon-btn:hover {
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.cart-summary {
  float: right;
}

.cart-summary li {
  margin-bottom: 10px;
  width: 310px;
}

.custom-form .form-group {
  margin-bottom: 20px;
}

.cart-summary li span {
  float: right;
}

.cart-summary li strong {
  color: #000;
}

.cart-total {
  padding-top: 10px;
  border-top: 1px solid #f4f4f4;
}

.cart-total span {
  font-weight: 700;
  color: var(--primary-color);
}

/*****Cart Page End*****/

/**** checkout page css Start****/
.checkout {
  padding: 100px 0px;
}

.checkout .address-wrap .add-new {
  cursor: pointer;
}

.checkout .address-wrap .add-new h4 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.checkout .summery-wrap {
  position: sticky;
  top: 80px;
}

.address-box {
  height: 100%;
  padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid #f0f3f8;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.address-box.add-new {
  cursor: pointer;
}

.address-box.checked {
  border-color: var(--primary-color);
}

.address-box h3 {
  margin-bottom: 15px;
}

.address-box .plus-icon {
  padding: 10px;
  background-color: #fafafa;
  border-radius: 100px;
}

.address-box .plus-icon svg {
  width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
  height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
  stroke: var(--primary-color);
}

.address-box .radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.address-box .option-wrap {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.address-box .option-wrap .edit,
.address-box .option-wrap .delet {
  cursor: pointer;
}

.address-box .option-wrap .edit svg,
.address-box .option-wrap .delet svg {
  width: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  height: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  stroke: #767676;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.address-box .option-wrap .edit svg:hover,
.address-box .option-wrap .delet svg:hover {
  stroke: #262834;
}

.address-box .address-detail {
  padding: 0 30px;
  margin-top: 18px;
  margin-bottom: -3px;
}

.address-box .address-detail p {
  margin-bottom: 5px;
}

.address-box .address-detail > span {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.address-box .address-detail ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 19px;
}

.address-box .address-detail ul li {
  font-size: 16px;
  color: #262834;
  display: list-item;
}

.address-box .address-detail .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.order-summery-box .order-summery {
  padding-left: 0px;
}

.summery-wrap .grand-total-wrap .checkout-btn {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: calc(20px + (23 - 20) * ((100vw - 320px) / (1920 - 320)));
  padding: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.summery-wrap .coupon-box {
  margin-bottom: 20px;
  padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
  background-color: #f5f5f5;
}

.summery-wrap .coupon-box .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summery-wrap .coupon-box .btn {
  padding: 5px 10px;
  margin-top: 0px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  border: 1px solid var(--primary-color);
  color: #fff !important;
  background: var(--primary-color);
}

.summery-wrap .coupon-box h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: #222;
}

.summery-wrap .font-danger {
  color: #ff5353 !important;
  font-size: 14px;
  text-decoration: none;
}

.summery-wrap .coupon-box h4 svg {
  width: 18px;
  height: 18px;
}

.summery-wrap .cart-title {
  font-size: 16px;
  font-weight: 500;
  color: #262834;
  margin-bottom: 10px;
  margin-top: -1px;
}

.summery-wrap .order-summery li {
  padding: calc(3px + (5 - 3) * ((100vw - 320px) / (1920 - 320))) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.summery-wrap .order-summery li span {
  font-size: 14px;
  border: none;
  color: #767676;
  font-weight: normal;
}

.content-color {
  color: #767676 !important;
  font-size: 14px;
}

.content-color a {
  text-decoration: none;
}

.summery-wrap .order-summery li:last-child {
  padding: 10px 0;
  margin-top: 8px;
  border-top: 1px solid #c4c4c4;
  margin-bottom: -5px;
}

.summery-wrap .order-summery li:last-child span {
  color: #262834;
  font-weight: 600;
}

.summery2 {
  background-color: #fafafa;
  padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.summery2 ul li {
  display: block;
  color: #767676;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
}

.summery2 ul li:not(:first-child) {
  margin-top: 4px;
}

.summery2 p {
  line-height: calc(20px + (25 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: -4px;
  font-weight: 400;
}

.summery-wrap .grand-total-wrap {
  background-color: #f5f5f5;
  padding: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.radio-box input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.badges.badges-theme {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  font-size: 14px;
}

.badges.badges-pill {
  padding: 3px 10px;
  border-radius: 100px;
}

.radio-box input[type="radio"] + .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: #262834;
  cursor: pointer;
}

.radio-box input[type="radio"] + .radio-label:before {
  content: "";
  background: transparent;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  display: inline-block;
  width: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  height: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  position: relative;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio-box input[type="radio"]:checked + .radio-label:before {
  background-color: var(--primary-color);
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.radio-box input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color);
}

.radio-box input[type="radio"]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
  border-color: var(--primary-color);
  background: #363636;
}

.radio-box input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

.checkout .modal-body {
  padding: 0px 15px;
}

.checkout .modal-title {
  color: var(--primary-color);
  font-weight: 600;
}

.checkout .modal-dialog {
  max-width: 700px;
}

.input-box .form-control {
  height: 50px;
  text-align: left;
}

.input-box label {
  margin-bottom: 10px;
}

.checkout .modal-content {
  border-radius: 25px;
}

.checkout .modal-footer {
  padding: 25px 15px;
}

.checkout .btn-box {
  display: flex;
  column-gap: 15px;
}

.checkout .modal-header {
  position: relative;
}

.checkout .modal-header .btn_close {
  position: absolute;
  right: -50px;
  top: -5px;
  opacity: 1;
  background: var(--primary-color);
  border: 0px;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.modal-header .btn_close {
  position: absolute;
  right: -50px;
  top: -5px;
  opacity: 1;
  background: #fa8c0b;
  border: 0px;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/***checkout page css ***/

/****Payment Method CSS Start****/
.outline-btn {
  background: #0000;
  color: var(--primary-color);
}
.checkout .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.accordion .accordion-item {
  background-color: #fff !important;
  line-height: 23px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
}

.accordion .accordion-item:not(:first-of-type) {
  margin-top: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.payment-section
  .accordion
  .accordion-item
  .accordion-body
  .filter-row
  .filter-col {
  border: #f0f3f8;
  background-color: rgba(229, 229, 229, 0.3);
  padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 5px;
  font-weight: 600;
  color: #767676;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.payment-section .accordion .accordion-button {
  background: #0000 !important;
  box-shadow: none !important;
  font-weight: 700;
}

.payment-section .accordion-button:focus {
  border-color: #0000 !important;
  box-shadow: none !important;
}

.payment-section
  .accordion
  .accordion-item
  .accordion-body
  .filter-row
  .filter-col
  .payment-card {
  width: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
  height: auto;
  margin-left: auto;
}

.payment-section
  .accordion
  .accordion-item
  .accordion-body
  .radio-box
  label
  span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/****Thank You Page Start****/
.thank-card-inr {
  padding: 50px 20px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;
}

.thank-check-icn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #29bf6c;
  color: #fff;
  display: inline-block;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 58px;
}

.thank-card-inr h4 {
  font-size: 44px;
  margin-bottom: 6px;
}

/****Thank You Page End****/
