@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --primary: #00B1D9;
  --secondary: #15253C;
  --filterPrimary: invert(52%) sepia(87%) saturate(2059%) hue-rotate(154deg) brightness(95%) contrast(101%);
  --filterSecondary: invert(12%) sepia(39%) saturate(901%) hue-rotate(174deg) brightness(92%) contrast(94%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

.dir_ltr {
  direction: ltr;
}

.d_inline_block {
  display: inline-block;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

.bg-grad1 {
  background-image: linear-gradient(to bottom, #EDF5F9, #fff);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f054";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f053";
}

.butn {
  position: relative;
  padding: 0.6rem 1.7rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-weight: bold;
}
.butn i {
  margin-inline-end: 7px;
}
.butn.sm_butn {
  padding: 0;
  width: 40px;
  height: 40px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid rgba(21, 37, 60, 0.1882352941);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #333;
}
.butn.white_border_butn {
  background-color: transparent;
  border: 1px solid #C5C9CE;
  color: #5B6677;
}
.butn:hover {
  background-color: #01303a;
  border: 1px solid #01303a;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon20 {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec_title {
  position: relative;
  font-weight: 900 !important;
}
.sec_title::after {
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  content: "";
  display: block;
  margin-top: 15px;
  position: absolute;
  inset-inline-start: 0;
  bottom: -20px;
}
.sec_title.text-center::after {
  inset-inline-start: unset;
  left: 50%;
  transform: translateX(-50%);
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  background-image: linear-gradient(to bottom, #E7F3F9, #EDF5F9);
  padding: 1.5rem 1rem;
}
.navs-container .navbar .bg_white_box {
  background-color: #fff;
  border-radius: 45px;
  padding: 0.5rem 2rem;
}
.navs-container .navbar .nav-link {
  font-size: 16px;
  margin: 0 10px;
  color: var(--secondary);
}
.navs-container .navbar .nav-link.active {
  color: var(--primary);
}
.navs-container .navbar .nav_end .lang_butn {
  color: var(--secondary);
}
.navs-container .navbar .nav_end .lang_butn .flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-inline-end: 5px;
}
.navs-container .navbar .nav_end .dropdown-menu {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
  border-radius: 10px;
  font-size: 13px;
  border: 0;
}
.navs-container .navbar .nav_end .dropdown-menu a {
  padding: 0.6rem 1rem;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background-image: linear-gradient(150deg, #15253C, #15253C, #11425C);
}
.footer .content {
  margin-bottom: 30px;
}
.footer .content .logo {
  width: 205px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .content .p {
  line-height: 2;
}
.footer .content h5 {
  color: #A1A8B1 !important;
}
.footer .content .links .item {
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer .content .links .item .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.footer .foot {
  background-color: #fff;
  padding: 25px 0;
}
.footer .foot .copyright_p {
  color: var(--secondary);
  font-size: 13px;
}
.footer .foot .copyright_p .alyom_logo {
  margin-inline-start: 5px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .foot .social_links a {
  margin-inline-end: 15px;
}
.footer .foot .social_links a .icon {
  filter: var(--filterSecondary);
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-image: linear-gradient(to bottom, #EDF5F9, #fff);
}
.header .txt_box .title {
  font-weight: 800;
  font-size: 62px;
}
.header .txt_box .p {
  color: #596575;
  line-height: 1.7;
}
.header .img_box {
  position: relative;
}
.header .img_box .secImg {
  height: 400px;
  border-radius: 125px;
}
.header .img_box .clouds {
  position: absolute;
  top: -50px;
  inset-inline-end: 5%;
  width: 62%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .search_box {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 7px;
  position: absolute;
  bottom: 100px;
  inset-inline-start: 0;
  background-color: #fff;
  box-shadow: 0 12px 24px 0 rgba(27, 27, 27, 0.0784313725);
}
.header .search_box .search_icon {
  font-size: 25px;
  color: #596575;
  text-align: center;
}
.header .search_box .form-group .label {
  font-size: 11px;
  color: #596575;
}
.header .search_box .form-group .form-control {
  height: 30px !important;
  font-size: 13px;
  border: none !important;
  padding-block: 0 !important;
  border-left: 1px solid #eee !important;
}
.header .search_box .butn {
  width: 100%;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.auctions_sec {
  background-image: linear-gradient(to bottom, rgba(239, 243, 246, 0.6196078431), rgba(1, 162, 237, 0.0941176471));
}
.auctions_sec .auc_card {
  position: relative;
  border-radius: 15px;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 40px;
  min-height: calc(100% - 40px);
}
.auctions_sec .auc_card .img_box {
  height: 200px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.auctions_sec .auc_card .img_box .badge {
  position: absolute;
  inset-inline-end: 10px;
}
.auctions_sec .auc_card .img_box .badge.top_bagde {
  top: 10px;
}
.auctions_sec .auc_card .img_box .badge.sec_bagde {
  top: 50px;
}
.auctions_sec .auc_card .card-body .loc {
  font-size: 14px;
}
.auctions_sec .auc_card .card-body .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.auctions_sec .auc_card .card-body .data_item .icon {
  font-size: 25px;
  color: #5B6677;
  margin-inline-end: 15px;
}
.auctions_sec .auc_card .card-body .data_item .data_cont {
  width: calc(100% - 40px);
}
.auctions_sec .auc_card .card-body .offer_countdown {
  border-radius: 15px;
  padding: 8px;
  background-color: #EBF7FE;
  display: flex;
  justify-content: space-between;
}
.auctions_sec .auc_card .card-body .offer_countdown .timer_label {
  color: #596575;
  margin-inline-end: 25px;
  font-size: 10px;
}
.auctions_sec .auc_card .card-body .offer_countdown .timer .time-box {
  text-align: center;
  margin-inline-end: 5px;
}
.auctions_sec .auc_card .card-body .offer_countdown .timer .time-box .count {
  border-radius: 5px;
  width: 38px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px dashed rgba(0, 177, 217, 0.3882352941);
  font-size: 14px;
  color: var(--secondary);
}
.auctions_sec .auc_card .card-body .offer_countdown .timer .time-box .label {
  font-size: 12px;
  color: #596575;
}
.auctions_sec .auc_card .pop-btn {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 15px auto -25px;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 30px;
  border: 4px solid #DBF1FB;
}
.auctions_sec .auc_card .pop-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.modal .modal-content {
  border: 0;
  border-radius: 30px;
  padding: 20px;
}

.up_group {
  position: relative;
}
.up_group .input-group-append {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 150px;
  font-size: 12px;
  min-height: calc(100% - 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: #fff;
  pointer-events: none;
  padding: 10px;
  border-radius: 30px !important;
}
.up_group .file {
  position: absolute;
  opacity: 0;
  right: 2px;
  bottom: 2px;
  width: 150px;
  min-height: 50px;
  z-index: 20;
  cursor: pointer;
  border-radius: 30px;
}
.up_group .input_ques {
  min-height: 50px;
  width: 100% !important;
  display: block !important;
  border-radius: 30px !important;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  padding: 8px 20px;
  font-size: 13px;
  background-color: #fff;
  padding-right: 170px !important;
}
.up_group .input_ques::-moz-placeholder {
  color: rgba(153, 153, 153, 0.6);
}
.up_group .input_ques::placeholder {
  color: rgba(153, 153, 153, 0.6);
}

.badge {
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  color: var(--secondary);
}
.badge.yellow_badge {
  background-color: #FFEBBC;
}
.badge.green_badge {
  background-color: #CEFFBC;
}
.badge.blue_badge {
  background-color: #BCDFFF;
}
.badge.red_badge {
  background-color: #FFBCBC;
}
.badge.gray_badge {
  background-color: #E7E9EC;
}
.badge.primary_badge {
  background-color: var(--primary);
  color: #fff;
}

.features_sec .item {
  border-radius: 15px;
  padding: 35px 2vw;
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 25px;
  height: calc(100% - 25px);
}
.features_sec .item .icon {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 35px;
}
.features_sec .item .title {
  color: var(--secondary);
  font-size: 21px;
  margin-bottom: 20px;
}
.features_sec .item .p {
  color: #596575;
}

.banner_sec .inner .secImg {
  height: 240px;
  border-radius: 15px;
}

.swiper-controls-st1 {
  position: relative;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  height: 35px;
  width: 190px;
  margin-bottom: 5px;
}
.swiper-controls-st1 .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px !important;
  right: unset;
}
.swiper-controls-st1 .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 25px;
  margin: 0 5px;
}
.swiper-controls-st1 .swiper-button-next,
.swiper-controls-st1 .swiper-button-prev {
  background-color: transparent;
  bottom: 1px !important;
  z-index: 20;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  transition: all 0.3s linear;
}
.swiper-controls-st1 .swiper-button-next::before,
.swiper-controls-st1 .swiper-button-prev::before {
  color: var(--primary) !important;
  font-size: 11px !important;
  transition: all 0.3s linear;
}
.swiper-controls-st1 .swiper-button-next:hover,
.swiper-controls-st1 .swiper-button-prev:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper-controls-st1 .swiper-button-next:hover::before,
.swiper-controls-st1 .swiper-button-prev:hover::before {
  color: #fff !important;
}

.movables_sec .item {
  position: relative;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 20px;
}
.movables_sec .item .secImg {
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 30px auto;
}
.movables_sec .item .title {
  text-align: center;
  color: var(--secondary);
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header .bread .item {
  position: relative;
  margin-inline-end: 10px;
  color: var(--primary);
}
.pg_header .bread .item::after {
  content: "\f053";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  margin-inline-start: 10px;
  color: var(--primary);
}
.pg_header .bread .item.active {
  color: #9EA4AF;
}
.pg_header .bread .item.active::after {
  display: none;
}

/**********************************************
    Start Edit auction_det Page 
**********************************************/
.auction_det .product_imgs {
  height: 540px;
  position: relative;
  width: 100% !important;
  border-radius: 20px;
}
.auction_det .product_imgs .gallery-top {
  height: 100%;
  width: 100% !important;
  position: relative;
  background-color: var(--secondary);
  border-radius: 20px;
}
.auction_det .product_imgs .gallery-top .secImg {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
}
.auction_det .product_imgs .gallery-top .swiper-slide {
  width: 100% !important;
}
.auction_det .product_imgs .gallery-thumbs {
  padding: 15px 6vw;
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: rgba(21, 37, 60, 0.5568627451);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
}
.auction_det .product_imgs .gallery-thumbs .secImg {
  width: 100%;
  height: 85px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(238, 238, 238, 0.0941176471);
}
.auction_det .product_imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: #fff;
}
.auction_det .product_imgs .badge {
  position: absolute;
  inset-inline-end: 10px;
  z-index: 8;
}
.auction_det .product_imgs .badge.top_bagde {
  top: 10px;
}
.auction_det .product_imgs .badge.sec_bagde {
  top: 50px;
}
.auction_det .txt_box {
  padding: 35px 2vw;
}
.auction_det .txt_box .p {
  font-size: 18px;
  line-height: 2;
}
.auction_det .txt_box .table {
  margin-bottom: 0;
  border-radius: 15px;
}
.auction_det .txt_box .table thead,
.auction_det .txt_box .table tbody,
.auction_det .txt_box .table tfoot,
.auction_det .txt_box .table tr,
.auction_det .txt_box .table td,
.auction_det .txt_box .table th {
  border-color: #eee !important;
  text-align: center;
}
.auction_det .txt_box .table thead tr {
  background-color: #EBF7FE;
  border-radius: 15px;
  text-align: center;
}
.auction_det .txt_box .table thead tr th {
  color: var(--primary);
  font-size: 16px;
  padding: 1rem 1rem;
}
.auction_det .txt_box .table thead tr th:nth-child(1) {
  border-radius: 0 15px 0 0;
}
.auction_det .txt_box .table thead tr th:last-child {
  border-radius: 15px 0 0 0;
}
.auction_det .txt_box .table tbody tr:last-child td:nth-child(1) {
  border-radius: 0 0 15px 0;
}
.auction_det .txt_box .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: var(--secondary);
}
.auction_det .txt_box .table td.id {
  color: rgba(21, 37, 60, 0.831372549);
  font-weight: 300;
}
.auction_det .txt_box .table td.price {
  font-weight: bold;
}
.auction_det .txt_box .table td.price .sar {
  width: 13px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 3px;
}
.auction_det .txt_box .table tr:last-child td {
  border-bottom: 1px solid transparent !important;
}
.auction_det .txt_box .file_card {
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auction_det .txt_box .file_card .pdf_icon {
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.auction_det .txt_box .file_card .txt_cont {
  width: calc(100% - 165px);
}
.auction_det .txt_box .file_card .txt_cont .title {
  color: var(--secondary);
  font-size: 15px;
}
.auction_det .txt_box .file_card .txt_cont .file_size {
  color: rgba(21, 37, 60, 0.6078431373);
  font-size: 13px;
}
.auction_det .txt_box .file_card .show_butn {
  width: 100px;
  border-radius: 25px;
  color: #fff;
  background-color: #5B6677;
  height: 40px;
  margin-inline-start: 15px;
  font-size: 14px;
}
.auction_det .data_box {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
}
.auction_det .data_box .countdown_box {
  background-color: #BAFBC9;
}
.auction_det .data_box .countdown_box .timer .time-box {
  width: 85px;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 15px;
}
.auction_det .data_box .countdown_box .timer .time-box .count {
  color: #28A745;
}
.auction_det .data_box .countdown_box .timer .time-box .label {
  font-size: 12px;
  color: rgba(21, 37, 60, 0.4862745098);
}
.auction_det .data_box .countdown_box .timer .colon {
  margin: 0 5px;
  color: var(--secondary);
  font-weight: bold;
}
.auction_det .data_box .price_box {
  background-color: var(--secondary);
}
.auction_det .data_box .price_box .form-group {
  position: relative;
}
.auction_det .data_box .price_box .form-group .form-control {
  height: 55px !important;
  background-color: #27364B;
  border-radius: 15px;
  border-color: transparent;
  border-top: 2px solid rgba(125, 134, 147, 0.7019607843);
}
.auction_det .data_box .price_box .form-group .form-control::-moz-placeholder {
  color: #7D8693;
}
.auction_det .data_box .price_box .form-group .form-control::placeholder {
  color: #7D8693;
}
.auction_det .data_box .price_box .form-group .red_butn {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  height: 55px;
  background-color: #F54336;
  color: #fff;
  border-radius: 15px;
  font-size: 13px;
  font-weight: bold;
  padding-inline: 1rem;
}
.auction_det .data_box .rescue_box {
  background-color: #F5E4D3;
}
.auction_det .data_box .comp_box {
  background-color: #D8EEF9;
}
.auction_det .data_box .comp_box .logo_box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auction_det .data_box .comp_box .logo_box .logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.auction_det .data_box .comp_box .txt_cont {
  margin-inline-start: 15px;
  width: calc(100% - 95px);
}
.auction_det .data_box .comp_box .txt_cont .title {
  font-size: 18px;
}
.auction_det .data_box .comp_box .txt_cont .p {
  font-size: 13px;
  color: rgba(17, 66, 92, 0.6784313725);
}
.auction_det .data_box .comp_box hr {
  width: calc(100% - 200px);
  background-color: rgba(1, 47, 58, 0.3764705882);
}
.auction_det .data_box .comp_box .label {
  color: rgba(1, 47, 58, 0.3764705882);
  font-size: 11px;
}
.auction_det .data_box .comp_box .data {
  font-weight: bold;
}
.auction_det .data_box .countdown_box_done {
  background-color: #FFD7D7;
}

/**********************************************
    Start Edit auctions Page 
**********************************************/
.linear_bg {
  background-image: linear-gradient(to bottom, #EDF5F9, rgba(1, 162, 237, 0.1568627451));
}

.auctions_pg .sec_head .form-control {
  height: 50px !important;
  border-radius: 45px;
}
.auctions_pg .sec_head .search_butn {
  position: absolute;
  inset-inline-end: 15px;
  top: 13px;
  color: rgba(21, 37, 60, 0.5803921569);
}
.auctions_pg .sec_head .nav {
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid var(--primary);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: auto;
}
.auctions_pg .sec_head .nav .nav-link {
  color: var(--primary);
  border-radius: 0;
  height: 50px;
  padding-inline: 1.5rem;
}
.auctions_pg .sec_head .nav .nav-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 10px !important;
  background-color: transparent;
  color: #999;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}
.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
    Start Edit profile Page 
**********************************************/
.profile_pg {
  background-image: linear-gradient(to bottom, #EDF5F9, rgba(1, 162, 237, 0.1568627451));
}
.profile_pg .prof_box {
  text-align: center;
}
.profile_pg .prof_box .avatar_box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  display: block;
  margin: 0 auto 15px auto;
  border: 2px solid rgba(85, 85, 85, 0.2392156863);
}
.profile_pg .prof_box .avatar_box .avatar {
  border-radius: 50%;
}
.profile_pg .prof_box .number {
  color: #5A6575;
  font-size: 17px;
  font-weight: 500;
}
.profile_pg .prof_box .number .icon {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(39%) sepia(20%) saturate(393%) hue-rotate(176deg) brightness(93%) contrast(90%);
  margin-inline-end: 5px;
}
.profile_pg .butns_row {
  padding-bottom: 0px;
  border-bottom: 1px solid #ccc;
}
.profile_pg .butns_row .nav-link {
  color: #697482;
  font-size: 15px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  padding-bottom: 1rem;
}
.profile_pg .butns_row .nav-link .icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto 15px auto;
  filter: invert(39%) sepia(20%) saturate(393%) hue-rotate(176deg) brightness(93%) contrast(90%);
}
.profile_pg .butns_row .nav-link.active {
  background-color: transparent !important;
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.profile_pg .butns_row .nav-link.active .icon {
  filter: var(--filterPrimary);
}
.profile_pg .tab_box {
  position: relative;
  padding: 25px 2vw;
}
.profile_pg .dashboard_tab .data_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 25px;
}
.profile_pg .dashboard_tab .data_card .content {
  position: relative;
  z-index: 5;
}
.profile_pg .dashboard_tab .data_card .content .icon_box {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  color: var(--cardColor);
  font-size: 22px;
  margin-bottom: 15px;
}
.profile_pg .dashboard_tab .data_card .content .label {
  font-size: 18px;
  color: #11425C;
}
.profile_pg .dashboard_tab .data_card .content .num {
  color: var(--cardColor);
  font-size: 35px;
  font-weight: bold;
}
.profile_pg .dashboard_tab .data_card .content .num .sar {
  filter: invert(50%) sepia(92%) saturate(951%) hue-rotate(307deg) brightness(102%) contrast(102%);
}
.profile_pg .dashboard_tab .data_card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/pattern-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 4;
}
.profile_pg .dashboard_tab .data_card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: var(--cardColor);
  opacity: 0.1;
}
.profile_pg .dashboard_tab .table {
  margin-bottom: 0;
  border-radius: 15px;
}
.profile_pg .dashboard_tab .table thead,
.profile_pg .dashboard_tab .table tbody,
.profile_pg .dashboard_tab .table tfoot,
.profile_pg .dashboard_tab .table tr,
.profile_pg .dashboard_tab .table td,
.profile_pg .dashboard_tab .table th {
  border-color: #eee !important;
  text-align: center;
}
.profile_pg .dashboard_tab .table thead tr {
  background-color: var(--secondary);
  border-radius: 15px;
  text-align: center;
}
.profile_pg .dashboard_tab .table thead tr th {
  color: #fff;
  font-size: 16px;
  padding: 1rem 1rem;
}
.profile_pg .dashboard_tab .table thead tr th:nth-child(1) {
  border-radius: 0 15px 0 0;
}
.profile_pg .dashboard_tab .table thead tr th:last-child {
  border-radius: 15px 0 0 0;
}
.profile_pg .dashboard_tab .table tbody tr:last-child td:nth-child(1) {
  border-radius: 0 0 15px 0;
}
.profile_pg .dashboard_tab .table tbody tr:last-child td:last-child {
  border-radius: 0 0 0 15px;
}
.profile_pg .dashboard_tab .table td {
  vertical-align: middle;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: var(--secondary);
  background-color: #fff;
}
.profile_pg .dashboard_tab .table td.id {
  color: rgba(21, 37, 60, 0.831372549);
  font-weight: 300;
}
.profile_pg .dashboard_tab .table td.price {
  font-weight: bold;
}
.profile_pg .dashboard_tab .table td.price .sar {
  width: 13px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 3px;
}
.profile_pg .dashboard_tab .table tr:last-child td {
  border-bottom: 1px solid transparent !important;
}
.profile_pg .personal_tab .inner {
  border-radius: 15px;
}
.profile_pg .personal_tab .inner .head_box {
  padding: 10px 15px !important;
  border-radius: 15px 15px 0 0;
  position: relative;
  background-image: linear-gradient(150deg, #15253C, #15253C, #11425C);
}
.profile_pg .personal_tab .inner .card-body {
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}
.profile_pg .personal_tab .inner .card-body .form-group {
  margin-bottom: 25px;
}
.profile_pg .personal_tab .inner .card-body .form-group .label {
  color: #5B6677;
  font-size: 15px;
}
.profile_pg .personal_tab .inner .card-body .form-group .p {
  color: #5B6677;
}
.profile_pg .personal_tab .inner .card-body .form-group .form-control {
  height: 45px !important;
  border-radius: 15px;
}
.profile_pg .personal_tab .inner .card-body .form-group .edit_name_butn {
  position: absolute;
  inset-inline-end: 15px;
  top: 10px;
  color: var(--primary);
}
.profile_pg .personal_tab .inner .card-body .form-group .show_pass {
  position: absolute;
  inset-inline-end: 15px;
  top: 16px;
  cursor: pointer;
  color: #888;
  z-index: 10;
  font-size: 13px;
}
.profile_pg .personal_tab .inner .card-body .form-group .butn {
  padding: 0.7rem 2rem !important;
}
.profile_pg .personal_tab .inner .card-body .form-group .profile-container {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
.profile_pg .personal_tab .inner .card-body .form-group .profile-container .profile-pic {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ccc;
}
.profile_pg .personal_tab .inner .card-body .form-group .profile-container .remove-btn {
  position: absolute;
  top: -5px;
  left: -5px;
  background: white;
  border: none;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.profile_pg .personal_tab .inner .card-body .form-group .profile-container .upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.345);
  text-align: center;
  padding: 2px 0;
  font-size: 12px;
  cursor: pointer;
  border-radius: 0 0 50% 50%;
}
.profile_pg .auctions_tab .nav {
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid var(--secondary);
  width: -moz-fit-content;
  width: fit-content;
}
.profile_pg .auctions_tab .nav .nav-link {
  color: var(--secondary);
  border-radius: 0;
  height: 50px;
  padding-inline: 1.5rem;
}
.profile_pg .auctions_tab .nav .nav-link.active {
  background-color: var(--secondary);
  color: #fff !important;
}

.background_unset {
  background-image: unset !important;
}

/**********************************************
    Start Edit another Page 
**********************************************/
.auth_pg {
  background-color: #EDF5F9;
}
.auth_pg .inner {
  padding: 70px 3vw;
  border-radius: 15px;
  position: relative;
  text-align: center;
  background-image: linear-gradient(to bottom, #fff, rgba(0, 177, 217, 0.4235294118));
}
.auth_pg .inner .authImg {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}
.auth_pg .inner .title {
  line-height: 1.5;
}
.auth_pg .inner .p {
  color: #596575;
}
.auth_pg .inner .foot_card {
  border-color: #99A0AA !important;
  padding: 15px 20px;
  border-radius: 45px;
}
.auth_pg .inner .foot_card h5 {
  font-size: 18px;
}
.auth_pg .inner .foot_card a {
  color: #11998E;
  font-weight: bold;
}
.auth_pg .inner .foot_card a i {
  color: rgba(89, 101, 117, 0.7058823529);
  margin-inline-end: 5px;
}
.auth_pg .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/pattern-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  opacity: 0.4;
}

/**********************************************
    Start Edit add_auction Page 
**********************************************/
.add_auction_pg {
  background-image: linear-gradient(to bottom, #EDF5F9, #fff);
}
.add_auction_pg .form-group {
  margin-bottom: 35px;
}
.add_auction_pg .form-group .label {
  font-weight: bold;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.7rem;
}
.add_auction_pg .form-group .form-control {
  background-color: rgba(232, 237, 243, 0.7529411765);
  border-color: #E8EDF3;
  border-radius: 15px;
}
.add_auction_pg .form-group input,
.add_auction_pg .form-group select {
  height: 50px !important;
}
.add_auction_pg .form-group .categ_radios .form-check {
  position: relative;
  padding: 0 !important;
}
.add_auction_pg .form-group .categ_radios .form-check * {
  cursor: pointer;
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-label {
  width: 100%;
  text-align: center;
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-label .img_box {
  height: 100px;
  border-radius: 15px;
  border: 2px solid rgba(221, 221, 221, 0.5960784314);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-label .img_box .categImg {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-label .title {
  color: var(--secondary);
  font-weight: 500;
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-input:checked ~ .form-check-label .img_box {
  background-color: rgba(0, 177, 217, 0.0588235294);
  border-color: var(--primary);
}
.add_auction_pg .form-group .categ_radios .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  border-radius: 0;
}
.add_auction_pg .form-group .categ-content {
  display: none;
}
.add_auction_pg .form-group .box_radios {
  display: flex;
  flex-wrap: wrap;
}
.add_auction_pg .form-group .box_radios .form-check {
  width: 100%;
  position: relative;
  padding: 0 !important;
}
.add_auction_pg .form-group .box_radios .form-check * {
  cursor: pointer;
}
.add_auction_pg .form-group .box_radios .form-check .form-check-label {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 2px solid rgba(221, 221, 221, 0.5960784314);
  margin: 6px;
  font-size: 14px;
  font-weight: 500;
  padding-inline: 0.5rem;
}
.add_auction_pg .form-group .box_radios .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--primary);
  background-color: rgba(0, 177, 217, 0.0588235294);
  color: var(--primary);
}
.add_auction_pg .form-group .box_radios .form-check .form-check-input {
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  border-radius: 0;
  margin: 0 !important;
}
.add_auction_pg .form-group .uploading_wrapper .upload-box {
  border: 1px dashed var(--primary);
  border-radius: 10px;
  padding: 25px;
  margin: 10px auto;
  width: 100%;
  cursor: pointer;
  color: var(--primary);
  text-align: center;
}
.add_auction_pg .form-group .uploading_wrapper .preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}
.add_auction_pg .form-group .uploading_wrapper .preview-container .file-preview {
  position: relative;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  width: 135px;
  text-align: center;
  background: #f5f5f5;
}
.add_auction_pg .form-group .uploading_wrapper .preview-container .file-preview img,
.add_auction_pg .form-group .uploading_wrapper .preview-container .file-preview video {
  max-width: 100%;
  height: 100px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.add_auction_pg .form-group .uploading_wrapper .preview-container .delete-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #eee;
  color: rgb(252, 35, 35);
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(255, 0, 0, 0.212);
  font-size: 15px;
}
.add_auction_pg .form-group .uploading_wrapper .preview-container .file-name {
  font-size: 12px;
  margin-top: 10px;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.add_auction_pg .form-group .editor_wrapper .editor {
  height: 150px;
}
.add_auction_pg .form-group .editor_wrapper .ql-container.ql-snow {
  border: 1px solid transparent;
  border-radius: 15px;
}
.add_auction_pg .form-group .editor_wrapper .ql-toolbar.ql-snow {
  border: 1px solid rgba(204, 204, 204, 0.3843137255);
  border-radius: 15px 15px 0 0;
  padding: 16px 8px;
}
.add_auction_pg .form-group .editor_wrapper .ql-editor {
  border-radius: 0 0 15px 15px;
  border: 1px solid rgba(204, 204, 204, 0.3843137255);
  background-color: rgba(232, 237, 243, 0.7529411765);
  text-align: start;
}
.add_auction_pg .form-group .terms_nav .nav-link {
  padding: 0.5rem 2rem;
  border-radius: 25px;
  color: #596575;
  font-size: 13px;
}
.add_auction_pg .form-group .terms_nav .nav-link.active {
  background-color: #5A6575;
  color: #fff;
}
.add_auction_pg .form-group .map iframe {
  height: 160px;
  border-radius: 20px;
}
.add_auction_pg .butns .butn {
  min-width: 200px;
  height: 55px;
}
.add_auction_pg .form-box {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  padding: 4vw;
}
.add_auction_pg .add-button-container .btn {
  position: relative;
  color: var(--primary);
  border: 2px dashed var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  margin-top: 15px;
  box-shadow: none;
}
.add_auction_pg .add-button-container .btn:hover {
  background-color: rgba(17, 153, 142, 0.0823529412);
}
.add_auction_pg .alert {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}
.add_auction_pg .alert li {
  margin: 8px 0;
}
.add_auction_pg .alert a {
  text-decoration: underline !important;
  color: var(--primary);
}

.steps-numbers {
  position: relative;
  display: inline-flex;
}
.steps-numbers .item {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0.8;
  padding-inline-start: 120px;
}
.steps-numbers .item::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  height: 2px;
  width: 80px;
  background-color: #888;
  opacity: 0.2;
}
.steps-numbers .item .num {
  position: relative;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  font-size: 16px;
  margin-inline-end: 15px;
  flex-shrink: 0;
  display: inline-block;
  color: #888;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.steps-numbers .item .text {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #888;
}
.steps-numbers .item.active {
  opacity: 1;
}
.steps-numbers .item.active::after {
  opacity: 1;
  background-color: var(--primary);
}
.steps-numbers .item.active .num {
  background-color: #fff;
  color: var(--primary);
  border-color: #fff;
}
.steps-numbers .item.active .text {
  color: var(--primary);
}
.steps-numbers .item:first-of-type {
  padding-inline-start: 0;
}
.steps-numbers .item:first-of-type::after {
  display: none;
}

.accordion-products .accordion-item {
  border: 0;
  margin-top: 15px;
}
.accordion-products .accordion-item .accordion-button {
  border-radius: 12px !important;
  border: 1px solid rgba(12, 99, 228, 0.2);
  box-shadow: none;
}
.accordion-products .accordion-item .accordion-button h6 {
  margin-bottom: 0;
}
.accordion-products .accordion-item .accordion-button .delete-btn {
  position: absolute;
  left: 60px;
  top: 13px;
  font-size: 12px;
  padding: 3px 20px;
  border-radius: 30px;
}
.accordion-products .accordion-item .accordion-body {
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 15px;
  margin-top: 10px;
}

/**********************************************
    Start Edit auction single
**********************************************/
.auction-single {
  position: relative;
}
.auction-single img {
  max-width: 100%;
  max-height: 100%;
}
.auction-single .auction-det-item {
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
  background-color: #fff;
  background: radial-gradient(63.39% 76.31% at 23.41% -10.27%, rgba(21, 37, 60, 0.1333333333) 10%, #fff 83%), #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.0666666667);
  border-radius: 20px;
}
.auction-single .auction-det-item .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}
.auction-single .auction-det-item .txt {
  position: relative;
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 10px;
}
.auction-single .auction-info {
  position: relative;
}
.auction-single .auction-info .prv-link {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  color: var(--primary);
  text-decoration: underline !important;
}
.auction-single .products {
  position: relative;
}
.auction-single .products .accordion {
  position: relative;
}
.auction-single .products .accordion .accordion-item {
  border: 0;
  border-radius: 15px;
  margin-top: 10px;
  background-image: linear-gradient(to bottom, #EDF5F9, #fff);
}
.auction-single .products .accordion .accordion-item .accordion-button {
  position: relative;
  padding: 20px;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}
.auction-single .products .accordion .accordion-item .accordion-button .prod-title {
  position: relative;
  display: flex;
}
.auction-single .products .accordion .accordion-item .accordion-button .prod-title .num {
  position: relative;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--secondary);
  border-radius: 10px;
  margin-inline-end: 15px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
}
.auction-single .products .accordion .accordion-item .accordion-button .prod-title h5 {
  position: relative;
  color: var(--secondary);
  font-weight: bold;
  margin-top: 3px;
  margin-bottom: 30px;
}
.auction-single .products .accordion .accordion-item .accordion-button .prod-title .tag {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 20px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  color: var(--secondary);
  border-radius: 10px;
  margin-inline-end: 10px;
  margin-top: 10px;
}
.auction-single .products .accordion .accordion-item .inf-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 50px;
}
.auction-single .products .accordion .accordion-item .inf-list li {
  position: relative;
  width: 50%;
  margin: 10px 0;
  font-size: 14px;
}
.auction-single .products .accordion .accordion-item .prod-imgs {
  position: relative;
  display: flex;
  justify-content: end;
}
.auction-single .products .accordion .accordion-item .prod-imgs .img {
  position: relative;
  display: block;
  width: 35%;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  margin-inline-start: -20%;
  border: 3px solid #fff;
  transition: all 0.5s ease;
}
.auction-single .products .accordion .accordion-item .prod-imgs:hover .img {
  margin-inline-start: -10%;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */