

/* chat root colors ======== */

:root {
  --orange: #E74B23;
  --green: #7DBF1D;
  --bg-light: #ffffff;
}

ul, ol {
  list-style: none;
}
.navbar ol li {
  padding: 0;
}
/* The popup chat - hidden by default */
.chat-popup {
  display: block;
  position: fixed;
  height:60%;
  bottom: -60%;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 999;
  -moz-transition: bottom 1s ease;
  -webkit-transition: bottom 1s ease;
  -o-transition: bottom 1s ease;
  transition: bottom 1s ease;
}

/* Add styles to the form container */
.form-container {
  width: 300px;
  padding: 0 10px;
  background-color: white;
  height: 100%;
  position: relative;
}
.chat-header {
  background-color: var(--orange);
}
.chat-header img {
  width: 80px;
}
.chat-header .name_title .online {
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 10px;
  display: inline-block;
}
.chat-header .name_title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.chat-header .arrow .btn {
  padding: 0;
}
.chat-header .arrow i {
  font-size: 25px;
  color: #fff;
}
/* chat message box =========== */
.chat_indication {
  width: 100px;
  height: 75px;
  background-color: #E74B23;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  position: fixed;
  bottom:180px;
  line-height: 50px;
  right: 80px;
  z-index: 999;
}
.chat_indication:after {
  content: " ";
  position: absolute;
  right: 0px;
  bottom: -19px;
  bottom: -25px;
  border-top: 36px solid #E74B23;
  border-right: 1px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: none;
}
.btn-cht-cls {
  background-color: transparent;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.btn-cht-cls:focus{
  outline: none;
}
input[type="checkbox"].hide-input:checked + .chat_indication {
  display:none
}
input.hide-input {
  position: fixed;
  left: -999em;
}
.chat_msg {
  background-color: #E4E4E4;
  height: 80%;
  padding: 10px;
  position: relative;
}
.box {
  width: 100%;
  height: 75px;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}
.box.arrow-bottom:after {
  content: " ";
  position: absolute;
  left: 0px;
  bottom: -19px;
  border-top: 30px solid #fff;
  border-right: 15px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: none;
}

/* Full-width textarea */
.chattextarea {
  width: 100%;
  padding: 5px 15px;
  margin: 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  height: 56px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 99;
}
/* When the textarea gets focus, do something */
.chattextarea:focus {
  background-color: #ddd;
  outline: none;
}

.chat_ques {
  height: 250px;
  width: 100%;
  position: absolute;
  background-color: #fff;
  border-bottom: 1.5px solid #ddd;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 9;
  -moz-transition: bottom 1s ease;
  -webkit-transition: bottom 1s ease;
  -o-transition: bottom 1s ease;
  transition: bottom 1s ease;
}
.chat_ques .control .btn {
  padding: 0;
  color: var(--orange);
  font-size: 30px;
}
.questions {
  width: 100%;
  height: 200px;
  overflow-y: auto;
}
.questions .ques_btn {
  background-color: var(--orange);
  padding: 8px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 8px;
}
.chat_ques .control .btn:focus {
  background-color: #ddd;
  outline: none;
}
#quesopen {
  display: none;
}

/* Filter Style for Mobile view */
.btn-filter-mob {
color: #108489;
font-size: 16px;
font-weight: 500;
display: none;
}
.btn-filter-mob.show {
  border: none;
  color: #108489;
}
.filter-menu-dropdown {
  background-color: transparent;
  position: relative;
  border: none;
  display: block;
}
.filter-menu-dropdown h5 {
font-size: 16px;
font-weight: 500;
width: 100%;
color: #121212;
}
.filter-menu-dropdown .btn-select {
  background-color: #E74B23;
  text-align: center;
  color: #fff;
  min-height: 45px;
  width: 100%;
}
.filter-menu-dropdown .form-control,  .filter-menu-dropdown .form-select {
background-color: #fff;
border: none;
}
/* .filter-menu-dropdown  .form-select {
  width: 60%;
} */

.filter-menu-dropdown .form-control:focus, .filter-menu-dropdown .form-select:focus {
  border-color: transparent;
  outline: none;
  box-shadow:none;
}
/* filter style end */

/* map popup design  ============= */
.tractors-map-info {
  /* border-radius: 8px; */
  /* position: relative; */
  /* padding: 12px; */
  /* background-color: #fff; */
/*  position: absolute;*/
/*  left: 40%;*/
/*  top: 20%;*/
  /* z-index: 99; */
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-wrap: break-word !important;
}
#map-product-slide .carousel-control-next, .carousel-control-prev {
  color: #E74B23;
  font-size: 20px;
}
.tractors-map-info .tractors-content h5 {
  font-size: 20px;
  font-weight: bold;
}
.tractors-map-info p {
  font-size: 13px;
  line-height: 22px;
}
.tractors-content .driver-info {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #23262F;
  align-items: center;
}
.tractors-content .driver-info img {
  width: 40px;
}
.tractors-content ul {
  list-style: none;
  padding: 0 4px;
  margin: 0 !important;
}
.tractors-content ul li {
  color: #23262F;
  font-size: 14px;
  margin-bottom: 8px;
}
.tractors-content .btn-save, .tractors-content .btn-share {
  color: #E74B23;
  font-size: 25px;
  padding: 0;
}
.tractors-content .btn-see-ad {
  border:1px solid #E74B23;
  min-width: 150px;
  min-height: 40px;
}
/* map style end ========== */

/* multidropwon for category =========== */
  .btn-category {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 15px;
}
.btn-subcategory {
  border: 0;
  border-radius: 0;
  padding: 8px 10px;
  margin-left: 0 !important;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  white-space: nowrap;
}
.btn-subcategory:hover {
  background-color: #108489;
  color: #fff;
}
.dropstart .btn-subcategory::before {
  float: left;
}
button.btn-category:active {
  outline: none;
  border: none;
  }
  
button.btn-category:focus, .btn-category {outline:0;border: none;}

.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}
.technique-drop {
  transform: translate3d(0, -40px, 0);
}
.construction-drop {
  transform: translate3d(0, -80px, 0);
}
.dropdown-menu .dropdown-item:hover {
  background-color: #108489;
  color: #fff;
  width: 90%;
}
.dropend li:last-child a.dropdown-item  {
  border-bottom: none !important;
}
/* Multi Dropdown style end =========== */

/* user dropdown style ======== */
.user_dropdown_menu > ul li a {
  color: #000;
}
.user_dropdown_menu > ul li a i {
  color: #556270;
}
.user_dropdown_menu > ul li a:hover {
  color: #ffffff !important;
  background-color: transparent;
  /* color: #E74B23 !important; */
}

/* Media Query ============== */

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}

@media screen and (max-width: 600px) {
  #footer .footer-top .social-links a {
    margin-right: 8px;
  }
  .help-box img {
    width: 80px;
  }
  .chat-popup {
    z-index: 999;
  }
  .tractors-content .btn-see-ad {
    font-size: 14px;
    min-width: 120px;
  }
  .tractors-content .btn-save, .tractors-content .btn-share {
    font-size: 20px;
  }
  .tractors-map-info {
    min-width: 280px;
    width: 100%;
    left: 0;
    top: 0;
  }
  .chat_indication {
    height: 56px;
    width: 110px;
    line-height: 24px;
    bottom: 120px;
    right: 60px;
  }  
  .user_mob_profile {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0px;
    margin: 0 auto;
    align-items: center;
    /* border-right: none !important; */
    border: 1px solid #E74B23 !important;
    border-radius: 5px;
  }
  .user_menus_group {
    display: inline-block;
    border: none !important;
  }
  .user_dropdown_menu {
    display: block;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    box-shadow: none !important;
    z-index: 5;
  }
  .user_dropdown_menu > ul {
    position: relative;
    display: block;
    width: 100%;
  }
  .user_dropdown_menu > ul li {
    padding: 4px 0 !important;
  }
  .user_dropdown_menu > ul li a {
    color: #000;
  }
  .user_dropdown_menu > ul li a i {
    color: #556270;
  }
}

/* account ads show css */

.img-box {
  width: 120px;
  height: 120px;
  background: #f7f8f9;
  border: 1px dashed #aeb5c4;
  }

.btn-green{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    min-width: 156px;
    min-height: 50px;
    background: #108489;
    border: 1px solid #108489;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.btn-green:hover{
    background: #FFFFFF;
    border: 1px solid #108489;
    border-radius: 4px;
    color: #108489;
}

/* account ads show css end here */
