.rootSection {
  padding: 0 15px;
  position: relative;
}
.rootList {
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 15px;
}
.rootSection::after,
.imgHolderDiv::after {
  content: "";
  width: 30%;
  max-width: 80px;
  height: calc(100% - 40px);
  background: -o-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #f2f3f7 85.42%
  );
  background: linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #f2f3f7 85.42%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.rtl .rootSection::after {
  right: unset;
  left: 0;
}
.rootList::-webkit-scrollbar,
.imgList::-webkit-scrollbar {
  height: 7px;
}
.countryList::-webkit-scrollbar {
  width: 7px;
}
.rootList::-webkit-scrollbar-track,
.imgList::-webkit-scrollbar-track,
.countryList::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.rootList::-webkit-scrollbar-thumb,
.imgList::-webkit-scrollbar-thumb,
.countryList::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7px;
}
.rootList::-webkit-scrollbar-thumb:hover,
.imgList::-webkit-scrollbar-thumb:hover,
.countryList::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.rooteItem {
  white-space: nowrap;
  gap: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  align-items: center;
}
.rooteItem:last-child svg {
  display: none;
}
/* filterSection */
.filterSection {
  background-color: var(--clrF);
  border: 1px solid var(--clrE2);
  padding: 15px;
}
.titleText {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--clr21);
  padding-left: 15px;
  border-left: 2px solid var(--clrBlue1);
  height: fit-content;
  padding: 5px 0 5px 10px;
}
.rtl .titleText {
  padding: 5px 10px 5px 0;
  border-right: 2px solid var(--clrBlue1);
  border-left: none;
}
.typeFilterDiv,
.countryFilterDiv {
  flex-direction: column;
  gap: 7px;
  margin-top: 15px;
}
.countryFilterDiv {
  margin-top: 0;
}
.filterBtDiv {
  margin-top: 15px;
}
.typeTitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--clr21);
}
.typeLabel {
  border: 1px solid var(--bgClr);
  width: fit-content;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  gap: 7px;
  cursor: pointer;
}
.typeLabel:has(input:checked) {
  border-color: var(--clr21);
  color: var(--clr21);
}
.typeInput {
  display: none;
}
.otherCountriesMainDiv {
  margin-top: 20px;
  position: relative;
}
.showOtheCounteryBtn {
  padding: 7px 0;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.otherCountryCloserBtn {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: transparent;
  z-index: 960;
  cursor: default;
  display: none;
}
.otherCounteryPopUpDiv {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  box-shadow: 0px 0px 10px 0px #004bd733;
  z-index: 962;
  background-color: var(--clrF);
  padding: 7px;
  display: none;
}
.countryList {
  height: 180px;
  overflow-y: auto;
  margin-top: 7px;
  gap: 7px;
  padding: 0 10px 25px 0;
  position: relative;
}
.otherCountrrySearchInput {
  height: 45px;
  border: 1px solid var(--clrE2);
  background-color: var(--bgClr);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  padding: 0 50px 0 15px;
  background-image: url("/assets/icon/search.svg");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  width: 100%;
  outline: none;
  border: none;
}
.counteryItem {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  border: 1px solid var(--bgClr);
}
.counteryItem.hideCountry {
  display: none;
}
.otherCounteryPopUpDiv::after {
  content: "";
  width: 100%;
  height: 35px;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 5px;
  background-image: -o-linear-gradient(to top, var(--clrF) 30%, transparent);
  background-image: -moz-linear-gradient(to top, var(--clrF) 30%, transparent);
  background-image: -webkit-linear-gradient(
    to top,
    var(--clrF) 30%,
    transparent
  );
  background-image: linear-gradient(to top, var(--clrF) 30%, transparent);
}
.otherCountriesMainDiv.toggle .otherCountryCloserBtn {
  display: block;
}
.otherCountriesMainDiv.toggle .otherCounteryPopUpDiv {
  display: -webkit-flex;
  display: flex;
}
.countryList.empty::after {
  content: "No results found";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  color: var(--clr69);
  font-size: 15px;
  font-weight: 400;
}
.rtl .countryList.empty {
  content: "نتیجه ای یافت نشد.";
}
@media screen and (min-width: 768px) {
  .typeFilterDiv,
  .countryFilterDiv {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .typeTitle {
    margin-right: 25px;
  }
  .otherCountriesMainDiv {
    max-width: 300px;
  }
}
@media screen and (min-width: 968px) {
  .filterBtDiv {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px dashed var(--bgClr);
  }
  .otherCountriesMainDiv {
    margin-top: 0;
  }
  .showOtheCounteryBtn {
    font-size: 18px;
  }
}
/* resultSection */
.resultSection {
   background-color: var(--clrF);
  border: 1px solid var(--clrE2);
  padding: 15px;
}
.resultHeaderDiv {
  gap: 10px;
}
.customSelect {
  height: 48px;
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--clrC1);
  background-color: var(--bgClr);
  padding: 0 10px 0 45px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
}
.selectDiv::after {
  content: "";
  width: 25px;
  height: 25px;
  pointer-events: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/assets/icon/sort.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.resultList {
  margin-top: 20px;
  flex-wrap: wrap;
}
.resultItem {
  border-bottom: 1px dashed var(--clrE2);
  padding: 10px 0 25px;
  flex-wrap: wrap;
  width: 100%;
}
.resultItem:last-child {
  border-bottom: none;
  padding-bottom: 15px;
}
.resultText {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 5%;
  color: var(--clr5C);
  gap: 7px;
  padding: 5px 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.messageTitleDiv {
  align-items: flex-end;
  margin-top: 5px;
}
.messageTitleText {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
}
.requestText {
  background-color: var(--bgClr);
  padding: 15px;
  margin-top: 10px;
  color: var(--clr69);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0%;
}
.imgHolderDiv {
  width: 100%;
  margin-top: 10px;
  position: relative;
}
.imgHolderDiv::after {
  top: 0;
  height: 95%;
  transform: none;
  width: 20px;
  background: -o-linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #fff 85.42%);
  background: -moz-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #fff 85.42%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(242, 243, 247, 0) 0%,
    #fff 85.42%
  );
  background: linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #fff 85.42%);
}
.imgList {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 7px;
  width: 100%;
  padding-bottom: 10px;
}
.imgItem {
  min-width: calc(100% / 2.8);
  height: auto;
  aspect-ratio: 10.3/7.4;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border: 1px solid var(--clrC1);
}
.getNowLink {
  background-color: var(--clrBlue1);
  color: var(--clrF);
  width: fit-content;
  padding: 15px 20px;
  margin-top: 15px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
  gap: 10px;
  transition: opacity 0.3s;
}
.getNowLink:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .imgItem {
    min-width: calc(100% / 5);
  }
  .resultHeaderDiv {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .selectDiv {
    width: 320px;
  }
}
@media screen and (min-width: 968px) {
  .resultSection {
    padding: 20px;
  }
  .resultList {
    gap: 20px 0;
    position: relative;
  }
  .resultList::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: var(--clrF);
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
  }
  .resultItem,
  .resultItem:last-child {
    width: 50%;
    border-bottom: 1px dashed var(--clrE2);
  }
  .resultItem:nth-child(odd) {
    padding-right: 60px;
  }
  .resultItem:nth-child(even) {
    padding: 0 30px 0 30px;
  }
}
/* paginationDiv */
.paginationDiv {
  margin: 40px auto 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.prevPage,
.nextPage {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  gap: 10px;
  color: var(--clrBlue2);
}
.prevPage.deactive,
.nextPage.deactive {
  color: var(--clr5C);
}
.pageNumber,
.dotPage {
  height: 40px;
  width: 40px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: var(--clrBlue2);
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageNumber.currentPage {
  background-color: var(--clrD6);
}
.morePage {
  display: none;
}
@media screen and (min-width: 768px) {
  .morePage {
    display: -webkit-flex;
    display: flex;
  }
  .paginationDiv {
    margin-bottom: 40px;
  }
}
/* quotationsSection */
.quotationsSection {
  margin-top: 15px;
  width: 100%;
  background: radial-gradient(
    389.79% 62.15% at 55.49% 61.23%,
    #0055f3 0%,
    #062866 100%
  );
  background-image: -moz-radial-gradient(
    389.79% 62.15% at 55.49% 61.23%,
    #0055f3 0%,
    #062866 100%
  );
  background-image: -webkit-radial-gradient(
    389.79% 62.15% at 55.49% 61.23%,
    #0055f3 0%,
    #062866 100%
  );
  position: relative;
  padding: 30px 40px 35px;
}
.quotationsTitle {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--clrF);
}
.quotationsGrid {
  margin-top: 25px;
  flex-wrap: wrap;
  z-index: 10;
}
.quotationsForm {
  width: 100%;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.quotationsTitleInput,
.quotationsNumberInput {
  width: 100%;
  height: 48px;
  padding: 0 15px 0 45px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  background-image: url("/assets/icon/search.svg");
  background-size: 22px;
  background-position: left 15px center;
  background-repeat: no-repeat;
  outline: none;
  border: none;
  background-color: var(--clrF0);
}
.quotationsNumberInput {
  background-image: none;
  padding: 0 15px;
}
.quotationsNumberInput::-webkit-outer-spin-button,
.quotationsNumberInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quotationsNumberInput {
  -moz-appearance: textfield;
}
.quotationsSelect {
  background-color: var(--clrF0);
  width: 100%;
  height: 48px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  outline: none;
  border: none;
}
.quotationsSubmitBtn {
  height: 56px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: var(--clrF);
  background-color: var(--clrBlue1);
  border: 1px solid var(--clrF);
  width: 100%;
  gap: 10px;
  margin-top: 5px;
}
.quotationsReportDiv {
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.quotationsItem {
  width: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--clrF);
  padding: 25px 0;
  background-color: #ffffff26;
}
.quotationsItemInfoDiv {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quotationsItemReportText {
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--clrF);
}
.quotationsItemReportCat {
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--clrF);
}
.qShape1 {
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 1;
  pointer-events: none;
}
.rtl .qShape1 {
  left: unset;
  right: 0;
}
.qShape2 {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 1;
  pointer-events: none;
}
.rtl .qShape2 {
  right: unset;
  left: 0;
}
.qShape3,
.qShape4,
.qShape5 {
  display: none;
}
@media screen and (min-width: 968px) {
  .quotationsSection {
    padding: 30px 40px 70px;
    width: 94%;
  }
  .qShape1,
  .qShape2 {
    display: none;
  }
  .quotationsTitle {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    width: fit-content;
  }
  .quotationsGrid {
    align-items: flex-start;
    justify-content: space-between;
  }
  .quotationsForm {
    width: 40%;
    gap: 15px 25px;
  }
  .quotationsSelect,
  .quotationsNumberInput {
    width: calc(50% - 25px / 2);
  }
  .quotationsSubmitBtn {
    width: 65%;
    margin-top: 10px;
  }
  .quotationsReportDiv {
    width: 55%;
    margin-top: 0;
  }
  .quotationsItem {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3 - 20px * 2 / 3);
  }
  .qShape3,
  .qShape4,
  .qShape5 {
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .qShape3 {
    right: 0;
    top: 0;
  }
  .rtl .qShape3 {
    left: 0;
    right: unset;
  }
  .qShape4 {
    bottom: 0;
    right: 20%;
  }
  .rtl .qShape4 {
    left: 20%;
    right: unset;
  }
  .qShape5 {
    top: 0;
    left: 20%;
    display: none;
  }
  .rtl .qShape5 {
    left: unset;
    right: 20%;
  }
}
@media screen and (min-width: 1100px) {
  .quotationsSection {
    padding: 30px 60px 70px;
  }
  .quotationsReportDiv {
    width: 50%;
  }
  .qShape5 {
    display: block;
  }
}
.requestResultBtn{
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: 15px;
  font-size: 15px;
  width: 230px;
  background-color:#0c9e3cff;color: #fff;
  padding: 10px 16px;
  margin: auto;
}
.requestResultBtn.see-more{
  background-color:#004BD7;
  color: #fff;
  font-size: 13px;
}

.card-limit{

  >.card-body{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    >ul{
      font-size: 11px;
      list-style: none;
      text-align: justify;
      flex: 1 1 70%;
    }
    >div{
      /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
      border: 3px dashed #eee;
      border-radius: 10px;
      padding: 10px 20px;

      flex: 1 1 30%;
    }
  }
}

@media(max-width: 425px){
  .limit-modal-title{
    font-size: 20px !important;
  }
  .card-limit{
    >.card-body{
      >div{
        flex: 1 1 20%;
      }
      >ul{
        flex: 1 1 80%;
        font-size: 10px;
      }
    }
  }

  .modalContent.limitModal{
    
    padding: 5px;
 
  }
  .requestResultBtn{
    font-size: 12px;
  }
  .requestResultBtn.see-more{
    font-size: 9px;
  }
  .limitRequest-header-month{
    font-size: 14px;
  }
  .limitRequest-header-month-price-deprecate{
    font-size: 10px;
  }
  .limitRequest-header-month-price-other{
    font-size: 12px;
  }
  .limitRequest-header-month-price{
    font-size: 16px;
  }
  .limitRequest-currency-label{
    font-size: 10px;
  }
}
@media(max-width: 375px){
  
  .card-limit{
    >.card-body{
      >ul{
        font-size: 8px;
      }
    }
  }
  .modalContent.limitModal{
    
    padding: 5px;
 
  }
  .requestResultBtn{
    font-size: 10px;
  }
  .requestResultBtn.see-more{
    font-size: 8px;
  }
  .limitRequest-header-month{
    font-size: 14px;
  }
  .limitRequest-header-month-price-deprecate{
    font-size: 8px;
  }
  .limitRequest-header-month-price-other{
    font-size: 10px;
  }
  .limitRequest-header-month-price{
    font-size: 16px;
  }
  .limitRequest-currency-label{
    font-size: 10px;
  }
}
@media(max-width: 320px){
  .card-limit{
    >.card-body{
      flex-direction: column;
      >div{
        flex: 1;
        order: 2;
        width: 100%;
      }
      >ul{
        flex: 1;
        font-size: 10px;
        order: 1;
      }
    }
  }
  .modalContent.limitModal{
    
    padding: 5px;
 
  }
  .requestResultBtn{
    font-size: 10px;
  }
  .requestResultBtn.see-more{
    font-size: 8px;
  }
  .limitRequest-header-month{
    font-size: 12px;
  }
  .limitRequest-header-month-price-deprecate{
    font-size: 8px;
  }
  .limitRequest-header-month-price-other{
    font-size: 10px;
  }
}

.btn-translate{
  justify-content: center;
   align-items: center; 
   gap: 10px; 
   flex: 0 0 30%; 
   padding: 13px 16px;
   border: none;
   color: #1F14BD; 
   font-size: 16px; 
   font-weight: 500;
  line-height: 100%;
  background: none;
   position: relative;       /* required for pseudo-elements */
  overflow: hidden;         /* keep ripple inside */
  cursor: pointer;
  outline: none;
  flex-shrink: 0;     
}
/* Full-size ripple effect */
.btn-translate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #1f14bd56;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Animate ripple on click */
.btn-translate.ripple-active::after{
  animation: ripple-center 0.6s forwards;
}

/* Keyframes: grow + fade */
@keyframes ripple-center {
  0% {
    width: 0;
    height: 0;
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    width: 200%;
    height: 200%;
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.hidden{
  display: none !important;
}

.btn-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:10px;
  justify-content: center;
}

.loader {
  width: 24px;
  height: 24px;
  border: 5px solid #FFF;
  border-bottom-color: #1F14BD23;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 

.translate_container{
  flex-direction:  row;

  @media (max-width: 425px) {
    flex-direction: column;
  }
}

.btn-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transition: transform 0.2s ease;
}

.btn-arrow.down {
  border-top: 6px solid #000;
}

.btn-arrow.up {
  border-bottom: 6px solid #000;
}

.show-more-btn {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: background-color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.show-more-btn:hover {
  background-color: #eeeeee;
  border-color: #d5d5d5;
}

.show-more-btn:active {
  background-color: #e8e8e8;
}

.show-more-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}