/* common css start here */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000;
    background-color: #F7F7FA;
}

.blContaner{
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto;
}

ul{
  margin: 0;
  padding: 0;
}
img{
  max-width: 85%;
}

a{
  text-decoration: none;
}
.blBtn{
  display: inline-block;
  border-radius: 12px;
  height: 50px;
  font-weight: 600;
  border: 0;
  padding: 15px 25px;
  background: #f9f9f9;
  color: #222;
  cursor: pointer;
}
.blBtn.primery{
  background: linear-gradient(40.27deg, #4084AD -16.4%, #265C81 118.06%);
  color: #fff;
}
.blBtn.primeryBorder{
  color: #265C81;
  border: solid 1px #265C81;
}
.blBtn.btnRed{
  background-color: #e62e04;
  color: #fff;
}

.blBtn.secondry {
  border: solid 1px #337096;
  color: #347197;
  background-color: #fff;
  font-weight: 500;
}

.blSwitch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 25px;
}

.blSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.blSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #B5C2CB;
  -webkit-transition: .4s;
  transition: .4s;
}

.blSlider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 3px;
  background-color:#fff;
  -webkit-transition: .4s;
  transition: .4s;
}

.blSwitch input:checked + .blSlider {
  background-color: #F8DEB4;
}
.blSwitch input:checked + .blSlider:before{
  background-color:#E1771A;
}

.blSwitch input:focus + .blSlider {
  box-shadow: 0 0 1px #F8DEB4;
}

.blSwitch input:checked + .blSlider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

/* Rounded sliders */
.blSlider.blRound {
  border-radius: 34px;
}

.blSlider.blRound:before {
  border-radius: 50%;
}
.scrollNone{
  overflow: hidden;
}
/* width */
::-webkit-scrollbar {
width: 4px;
}
/* Track */
::-webkit-scrollbar-track {
background: #F1F1F1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: linear-gradient(40.27deg, #4084AD -16.4%, #265C81 118.06%);
            border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(40.27deg, #34749C -16.4%, #1B5378 118.06%);
}


.checkboxCnt {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  line-height: 24px;
  cursor: pointer;
  font-size: 14px;
  color: #2D3840;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxCnt input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: solid 1px #5E7384;
  border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.checkboxCnt input:checked ~ .checkmark {
  background-color: #E1771A;
  border: solid 1px #E1771A;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxCnt input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxCnt .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.blVisibleDesktop{
  display: block;
}
.blVisiblMobile{
  display: none;
}

.attachementCnt{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.attachement {
  background: linear-gradient(40.27deg, #4084AD -16.4%, #265C81 118.06%);
  color: white;
  padding: 0;
  margin: 0 5px 0 0;
  font-family: sans-serif;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  line-height: 16px;
  align-items: center;
  justify-content: start;
  width: 150px;
}
.attachementCnt .attachBtn{
  padding: 8px;
}

.attachInfo{
  font-size: 12px;
  color: #888;
  font-style: italic;
}
.attachList{
  display: inline-block;
}
.attachList ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.attachList ul li {
    border: 1px solid #999;
    padding: 0px 25px 0px 8px;
    margin: 4px 5px 4px 0;
    color: #333;
    border-radius: 2px;
    background-color: #eee;
    position: relative;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
}
.attachList ul li .crossAtc {
    width: 22px;
    height: 22px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0px;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* common css end here */

/* form css start */
.blFormGroup {
    margin-bottom: 15px;
    width: 100%;
}
.blFormGroup .blLabel{
  font-weight: 500;
  line-height: 28px;
  color: #265C81;
  margin-bottom: 5px;
}
.blFormGroup .blFormCnt {
    position: relative;
}
.blFormGroup .blFormCnt input[type=text], .blFormGroup .blFormCnt input[type=tel], .blFormGroup .blFormCnt input[type=number], .blFormGroup .blFormCnt input[type=password] , .blFormGroup .blFormCnt select, .blFormGroup .blFormCnt textarea {
    background-color: #fff;
    border: solid 1px #D2DAE0;
    border-radius: 8px;
    line-height: 31px;
    height: 48px;
    font-size: 14px;
    padding: 5px 15px 5px 15px !important;
    width: 100%;
    color: #1A1A1A;
    outline: none;
    font-family: "Poppins", sans-serif;
}
.blFormGroup .blFormCnt textarea.blTextArea{
    height: 112px;
    resize: none;
}

.blFormGroup .intl-tel-input{
        width: 100%;
    display: flex;
    justify-content: end;
}
.blFormGroup .intl-tel-input input{
        width: calc(100% - 92px) !important;
}
.blFormGroup .intl-tel-input .flag-container{
    width: 85px;
}
.blFormGroup .intl-tel-input .selected-flag{
width: 100% !important;
background-color: #fff !important;
border: solid 1px #D2DAE0;
    border-radius: 8px;
}

.blMobileCnt .blFloatingLabel{
    left: 105px !important;
}
.blMobileCnt input{
    padding-left: 135px !important;
}

.blMobileCnt .intl-tel-input{
    width: 100%;
}
.blMobileCnt .intl-tel-input .flag-container .selected-flag{
    width: 85px !important;
}
.blMobileCnt .intl-tel-input .selected-flag .iti-arrow{
    right: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #555;
}

.blMobileCnt .blFloatingLabel.active{
    top:7px;
    left:15px;
    padding: 0px 2px;
    color: #959595;
}
.blMobileCnt .blFloatingLabel.active2{
    top:7px !important;
    left:15px;
    padding: 0px 2px;
    color: #959595;
}

.blFormGroup .blFloatingLabel {
    font-family: "Poppins", sans-serif;
    color: #4D4D4D;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    display: block;
    position: absolute;
    top: 12px;
    left: 15px;
    transition: 0.4s ease all;
    pointer-events: none;
}

.blFormGroup input:focus ~ .blFloatingLabel,
.blFormGroup textarea:focus ~ .blFloatingLabel, 
.blFormGroup textarea:not(:focus):valid ~ .blFloatingLabel,
.blFormGroup input:not(:focus):valid ~ .blFloatingLabel{
    top:7px;
    left:15px;
    padding: 0px 2px;
    color: #959595;
}
/* form css end */

/* header css start here */
header{
  box-shadow: 0px 2px 3px 0px #C6C6C640;
  padding: 14px 0;
  background-color: #fff;
}
header .blContaner{
  max-width: 1400px;
}
.blHeaderCnt{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.searchAndFilter{
  display: flex;
  align-items: center;
  width: 60%;
  flex-wrap: wrap;
}
.searchAndFilter .searchError{
  color: red;width: calc(100% - 125px); padding-left: 118px; display: none;
}
.blSearch{
  position: relative;
  width: calc(100% - 125px);
  border-radius: 30px;
  height: 50px;
  border: solid 1px #222;
  display: flex;
}
.blSearch .searchSection{
display:flex;
width:100%;
}
.blSearch .blName{
  border-radius: 30px 0 0 30px;
  width: 118px;
  background-color: #ECF0F3;
  font-weight: 500;
  color: #616161;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blSearch .blSerchCnt{
  width: calc(100% - 242px);
}
.blSearch .blSerchCnt input{
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 0;
  padding: 16px;
  outline: none;
  font-weight: 500;
  color: #000;
  font-family: "Poppins", sans-serif;
}
.blSearch .blSerchBtnCnt{
  display: flex;
  align-items: center;
 }
.blSearch .blSerchBtnCnt .blMicrophone{
  margin-right: 5px;
  height: 24px;
}
.blSearch .blSerchBtnCnt .blSearchBtn{
  width: 118px;
  border-radius: 30px;
  background-color: #EC001F;
  color: #fff;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  outline: none;
}
.blSearch .blSerchBtnCnt .blSearchBtn img{
  margin-right: 10px;
}

.blSearch .blSerchBtnCnt .mobileSearch{
  display: none;
}

.blHeadfillter{
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #4084AD;
  border-radius: 8px;
  color: #4084AD;
  height: 40px;
  width: 105px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 20px;
}
.blHeadfillter:hover{
  background-color: #eef3f6;
}
.blHeadfillter img{
  margin-right: 5px;
}

.blUserSection{
  display: flex;
  align-items: center;
}

.blNotLogin{
  display: flex;
  align-items: center;
}
.blNotLogin .blLoginAnch {
    color: rgb(8, 47, 74);
    font-size: 16px;
    line-height: 21px;
}
.blNotLogin .blSignUp{
    background-color: rgb(29, 103, 141);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    padding: 8px 12px;
    margin-left: 10px;
}

.blLogInUser{
    position: relative;
    display: flex;
  }
  .blLogInUser img{
    border-radius: 100%;
    cursor: pointer;
    width: 40px;
    height: 40px;
  }
.blAfterloginCnt {
  width: 345px;
  position: absolute;
  z-index: 999;
  right: 0;
  top: 40px;
  padding: 25px;
  border: solid 1px #ececec;
  background-color: #fff;
  border-radius: 0 3px 3px 3px;
  box-shadow: 2px 3px 4px #e1e1e1;
  display: none;
}
.blAfterloginCnt:before {
  content: '';
  border-color: transparent;
  border-bottom-color: transparent;
  border-bottom-color: #e4e4e4;
  border-style: dashed dashed solid;
  border-width: 0 8.5px 8.5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -8px 0 0 320px;
}
.blAfterloginCnt:after {
  content: '';
  border-color: transparent;
  border-bottom-color: transparent;
  border-bottom-color: #fff;
  border-style: dashed dashed solid;
  border-width: 0 8.5px 8.5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -6px 0 0 320px;
}
.blAfterloginCnt .blSignedWhiteArea {
    padding: 0 0 0.9375rem 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: solid 1px #eaeaea;
    display: flex;
    justify-content: space-between;
}
.blAfterloginCnt .blSignedWhiteArea .blSignedUserName {
    color: #4a4a4a;
    font-size: 15px;
    font-size: 0.9375rem;
}
.blLoginNot{
  display: flex;
  align-items: center;
}

.blAfterloginCnt .blSignedWhiteArea .signedOut {
    color: #1686ce;
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
    text-align: right;
}
.blAfterloginCnt .blMyTiArea {
  margin: 10px 0;
    color: #ce241b;
    text-decoration: none;
    border-bottom: solid 1px #ce241b;
    padding: 0 0 0.125rem 0;
    display: inline-block;
}
.blAfterloginCnt ul.myTradeindia {
    padding: 0.75rem 0;
    width: 100%;
    box-sizing: border-box;
}
.blAfterloginCnt ul.myTradeindia li {
    list-style: none;
}
.blAfterloginCnt ul.myTradeindia li a {
    padding: 0.3125rem 0;
    font-size: 14px;
    color: #747474;
    display: block;
    transition: all 0.2s;
}
.blAfterloginCnt .submitBuyReq {
    width: 100%;
    border-top: solid 1px #eaeaea;
    padding: 0.9375rem 0 0 0;
}

.blAfterloginCnt .submitBuyReq .submitHeading {
    width: 100%;
    padding: 0 0 0.3125rem 0;
}
.blAfterloginCnt .submitBuyReq .submitHeading a {
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s;
}
.blAfterloginCnt .submitBuyReq .submitQuote {
    width: 100%;
    font-size: 12px;
    color: #999;
}

.blGrigMenu {
    position: relative;
    padding-right: 5px;
    margin-left: 20px;
    height: 16px;
    cursor: pointer;
}

.blOtherMenu {
    position: absolute;
    right: 0;
    top: 30px;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(238, 240, 243);
    padding: 16px 16px 0 16px;
    width: 312px;
    box-sizing: border-box;
    box-shadow: rgba(187, 194, 205, 0.25) 3px 31px 40px;
    display: none;
    z-index: 5;
}
.blOtherMenu .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}
.blOtherMenu .pbrBtn {
    border: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    height: 44px;
    padding: 0px 14px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    background: linear-gradient(40.27deg, rgb(64, 132, 173) -16.4%, rgb(38, 92, 129) 118.06%);
    color: rgb(255, 255, 255);
    width: 100%;
}
.blOtherMenu .subTitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: rgb(45, 56, 64);
    margin-bottom: 8px;
}
.blOtherMenu .subTitle img {
    margin-right: 5px;
}
.blOtherMenu .menuList {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.blOtherMenu .menuList li {
    display: inline-block;
    width: calc(33.33% - 6px);
    margin-bottom: 9px;
    text-align: center;
    vertical-align: top;
}
.blOtherMenu .menuList li:nth-child(3n) {
    margin-right: 0px;
}
.blOtherMenu .menuList li:nth-last-child(-n+3) {
    margin-bottom: 0px;
}
.blOtherMenu .menuList li a .listItem {
    background-color: rgba(29, 104, 141, 0.08);
    border: 1px solid rgb(210, 218, 224);
    border-radius: 8px;
    height: 81px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blOtherMenu .menuList li a .listItem .itemName {
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    color: rgb(45, 56, 64);
    margin: 8px 0;
    word-break: break-word;
}
.blDownloadApp {
    background: rgb(247, 250, 254);
    border-top: 1px solid rgb(210, 218, 224);
    border-radius: 0px 0px 8px 8px;
    display: block;
    width: calc(100% + 32px) !important;
    margin-left: -16px;
    margin-top: 16px;
    font-size: 16px !important;
    line-height: 24px !important;
    color: rgb(45, 56, 64);
    padding: 16px;
    display: flex;
    align-items: center;
}
.blDownloadApp img {
    margin-right: 5px;
}

/* header css end here */
.blBreadcrumbs {
    display: block;
    margin-top: 10px;
}
.blBreadcrumbs ul{
  list-style: none;
  display: flex;
  align-items: center;
}
.blBreadcrumbs li {
    list-style: none;
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 12px;
}
.blBreadcrumbs li:after {
    width: 4px;
    height: 4px;
    display: inline-block;
    margin-left: 10px;
    content: '';
    border-width: 1px;
    border-style: solid;
    border-color: transparent #5E7384 #5E7384 transparent;
    transform: rotate(-45deg);
}
.blBreadcrumbs li:last-child::after{
  display: none;
}
.blBreadcrumbs li a {
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-size: .75rem;
    color: #5E7384;
}
.blPageHeahing{
  font-size: 20px;
  font-weight: 500;
  color: #2D3840;
  line-height: 30px;
  margin: 0;
}
.blPageHeahing .blTotalBuyer{
  font-size: 12px;
  line-height: 16px;
}

.blDivider{
  height: 1px;
  width: 100%;
  background-color: #D2DAE0;
  margin: 20px 0;
}

.mainFilters .blTitle{
font-weight: 600;
font-size: 14px;
color: #323A43;
margin-bottom: 15px;
}
.mainFilters .checkBoxMainCnt{
  display: flex;
  flex-wrap: wrap;
}
.mainFilters .checkboxCnt{
  margin-bottom: 20px;
  width: 33.33%;
}
.mainFilters .blFormGroup .blFormCnt select{
  height: 56px !important;
  background: url(https://st.tistatic.com/ver9479/css/tradeindia/design2024/images/chevron-down.svg) no-repeat calc(100% - 10px) 14px;
  appearance: none;
  padding-top: 22px !important;
}
.mainFilters .blFloatingLabel{color: #8195A5; top: 6px;}

.mainFilters .btnCnt{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.mainFilters .btnCnt .blBtn{
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainFilters .btnCnt .blBtn img{
  margin-left: 5px;
}


.blPopUpBg { width: 100%;  height: 100%; background: rgba(0,0,0,.5); position: fixed; left: 0; top: 0; display: none; z-index: 99;}
.poupMainCnt{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
}
.blPopUp{
  padding:30px 15px 15px 15px; 
  height: auto; 
  display: block; 
  width: 480px; 
  background-color: #fff;  
  border-radius: 20px; 
  }
  .blPopUp .blPopupTitle {
      font-weight: 600;
      font-size: 28px;
      color: #082F4A; 
      position: relative; 
      margin-bottom: 15px;
  }
  .blPopUp .blPopupClose{width: 32px; height: 32px; border-radius: 100%; background-color: #D2DAE0; position: absolute; right: 0; top: -15px; display: flex; align-items: center; justify-content: center; cursor: pointer;}



/* search page css start */

.searchResult .totalResult{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.searchResult .totalResult .blPageHeahing{
  font-size: 18px;
  font-weight: normal;
}
.searchResult .totalResult .blPageHeahing .reText{
  font-weight: bold;
}
.searchResult .totalResult .blBtn{
  padding: 8px 40px;
  height: 40px;
}
.searchResult .topCities{
  display: flex;
  align-items: center;
  border: 1px solid #D2DAE0;
  border-radius: 22px;
  padding: 17px 24px;
  margin: 0 0 45px 0;
}
.searchResult .topCities .tcTitle{
font-size: 16px;
font-weight: 500;
color: #000;
margin-right: 12px;
}

.searchResult .topCities .citiesList .checkboxCnt{
  margin-right: 16px;
  color: #7F8174;
  line-height: 18px;
  padding-left: 22px;
}
.searchResult .topCities .citiesList .checkboxCnt.active{
  color: #1A0DAB;
}
.searchResult .topCities .citiesList .checkboxCnt .checkmark{
  width: 18px;
  height: 18px;
}
.checkboxCnt .checkmark:after {
  left: 5px;
  top: 1px;
}
/* search page css end */


/* login css start */
.blPopUpLoginBg { 
  width: 100%;  
  height: 100%; 
  position: fixed; 
  left: 0; 
  top: 0; 
  background: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(8px); 
  display: block !important;
  z-index: 99;
}

.poupMainCnt.loginPopup{border: none;} 
.blPopUp.loginPopup{
  border: solid 2px rgb(241, 176, 84);
  box-shadow: rgba(109, 103, 89, 0.06) 0px 2px 30px 9px;
  width: 424px;
  position: relative;
}
.blPopUp.loginPopup .blPopupTitle{
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: rgb(38, 92, 129);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blPopUp.loginPopup .logSubTitle{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgb(45, 56, 64);
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.blPopUp.loginPopup .logInDtl{
  padding: 16px;
  position: relative;
}
.blPopUp.loginPopup .blFormGroup .blFormCnt input[type=text]{
  padding: 15px !important;
}
.blPopUp.loginPopup .whatsAppUpdate{
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: rgb(94, 115, 132);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.blPopUp.loginPopup .whatsAppUpdate input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.blPopUp.loginPopup .whatsAppUpdate .whatappIconText{
  display: flex;
  align-items: center;
}
.blPopUp.loginPopup .btnCnt .blBtn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blPopUp.loginPopup .loginWithText {
  color: #265c81;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  margin-top: 16px;
}
.blPopUp.loginPopup .createAccount{
color: #265c81;
cursor: pointer;
font-size: 14px;
font-weight: 600;
text-align: center;
margin-top: 16px;
position: absolute;
bottom: -55px;
width: calc(100% - 32px);
}
.poupMainCnt.loginPopup .backBtn{
border: 0px;
  width: auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  background: none;
  color: rgb(38, 92, 129);
  position: absolute;
  top: -36px;
  left: 0;
}
.poupMainCnt.loginPopup .backBtn svg{
margin-right: 10px;
}
.poupMainCnt.loginPopup .otpSection{ padding: 16px;}
.poupMainCnt.loginPopup .otpSection .imgCnt{
text-align: center;
}
.poupMainCnt.loginPopup .otpSection .otpTitle{
font-size: 20px;
font-weight: 500;
line-height: 28px;
text-align: center;
}
.poupMainCnt.loginPopup .otpSection .otpSubTitle{
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: rgb(94, 115, 132);
text-align: center;
}
.poupMainCnt.loginPopup .otpSection .otpMobileNumber{
font-size: 16px;
line-height: 24px;
font-weight: 600;
color: rgb(0, 0, 0);
text-align: center;
}
.poupMainCnt.loginPopup .otpSection .otpChangeNumber{
  font-weight: 400;
  color: rgb(225, 119, 26);
  text-decoration: underline;
  cursor: pointer;
}
.poupMainCnt.loginPopup .otpSection .otpInputs .blFormCnt{
text-align: center;
margin-top: 20px;
}
.poupMainCnt.loginPopup .otpSection .otpInputs .blFormCnt .otpInput{
padding: 10px !important;
  box-shadow: rgba(224, 220, 215, 0.52) 0px 5px 13px;
width: 70px;
height: 70px;
font-weight: 700;
font-size: 18px;
text-align: center;
margin: 0 5px;
}
/* Chrome, Safari, Edge, Opera */
.poupMainCnt.loginPopup .otpSection .otpInputs .blFormCnt input.otpInput::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
.poupMainCnt.loginPopup .otpSection .otpInputs .blFormCnt input[type=number].otpInput {
-moz-appearance: textfield;
}
.poupMainCnt.loginPopup .otpSection .resentOtpBox{
display: flex;
justify-content: space-between;
margin-top: 20px;
margin-bottom: 10px;
}
.poupMainCnt.loginPopup .otpSection .resentOtpBox{
font-size: 12px;
line-height: 16px;
font-weight: 400;
color: rgb(129, 149, 165);
}
.poupMainCnt.loginPopup .otpSection .resentOtpBox .reSendOtp{
color: rgb(225, 119, 26);
cursor: pointer;
}

.poupMainCnt.loginPopup .otpSection .otpTimerCnt svg {
  animation: 2s linear 0s infinite normal none running rotateImg;
}
@keyframes rotateImg {
0% {
  transform: rotate(360deg);
}
100% {
    transform: rotate(0deg);
}
}
.poupMainCnt.loginPopup .otpSection .otpTimerCnt .otpTimer{
color: #000;
font-size: 14px;
} 

.poupMainCnt.loginPopup .emailPassSection{
padding: 16px;
}

.poupMainCnt.loginPopup .forgotPassLinkCnt{
text-align: right;
margin-top: 15px;
}
.poupMainCnt.loginPopup .forgotPassLinkCnt a{
color: #265c81;
cursor: pointer;
font-size: 12px;
text-decoration: underline;
}
.blFormCnt.blMobileCnt.forgetOverflow{
overflow: hidden;
}
.blFormCnt.blMobileCnt.forgetOverflow .flag-container{
left: -100px;
}
.blFormCnt.blMobileCnt.forgetOverflow .flag-container.lft0{
left: 0;
}
.blPopUp.loginPopup .blFormGroup .blFormCnt input[type=text].forgotInpWidth{
width: 100% !important;
padding-left: 55px !important;
background: url(https://tiimg.tistatic.com/new_website1/ti-new-login/mail-icon.png) no-repeat 16px 15px;
}


/* login css end */

@media (max-width: 767px) {
  .blVisibleDesktop{
    display: none;
  }
  .blVisiblMobile{
    display: block;
  }

   /* login css start mobile*/
.poupMainCnt.loginPopup{
  border: solid 2px rgb(241, 176, 84);
  box-shadow: rgba(109, 103, 89, 0.2) 0px 2px 30px 9px;
} 
.blPopUp.loginPopup{
  border: none;
  box-shadow: none;
}
.poupMainCnt.loginPopup .backBtn{
  top: -65px;
}
.blPopUp.loginPopup .createAccount{
  position: unset;
  margin-top: 0;
  width: 100%;
}
/* login css end mobile*/
  .poupMainCnt{ position:inherit; padding:30px 15px 15px 15px; height: auto; display: block; width: 100%; background-color: #fff;  position: fixed; border-radius: 40px 40px 0 0; right: 0; bottom: -100%; top: inherit; z-index: 100; margin-right: inherit; transition: all 0.5s;}
.poupMainCnt .blPopUp{width: 100%; padding: 0;}
.poupMainCnt.mobileCat{display: flex;}
.blPopUp .blPopupTitle{font-weight: 500; font-size: 16px; }
.poupMainCnt.blPopupOpen {bottom: 0;}

.blPopUp .blPopupScroll{max-height: 560px; overflow-y: auto;}
.blSearch{
  width: 100%;
}
  .blSearch .blSerchCnt{
    width: calc(100% - 40px);
  }
  .searchAndFilter .searchError{
    padding-left: 0;
    width: 100%;
    line-height: 16px;
  }
  .blSearch .blSerchCnt input{
    border-radius: 30px 0 0 30px;
  }
  .blSearch .blSerchBtnCnt .blMicrophone{
    width: 24px;
    margin-right: 0;
  }
  .blSearch .blSerchBtnCnt{
    width: 40px;
  
  }
  .blSearch .blSerchBtnCnt .mobileSearch{
    height: 32px;
    display: block;
  }
  .blGrigMenu{
    display: none;
  }
  .blSearch .blSerchBtnCnt .blSearchBtn{
    display: none;
  }
  .blSearch .blName{
    display: none;
  }
  .blHeadfillter{
    display: none;
  }
  .error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none; /* Initially hidden */
  }
  .error-message.show {
      display: block; /* Show when necessary */
  }
}

