@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');

/* body {
  font-family: 'Roboto', sans-serif;
} */

.gm-header {
}

.home-bg {
  background: #edf1f4;
}
.cursor {
  cursor: pointer;
}

nav.navbar.navbar-inverse.gm-header {
  background: white;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  /* z-index: 99999; */
  min-height: auto;
}

.top-head img {
  float: right;
  padding-top: 2px;
  padding-right: 3px;
  float: left;
  width: 22px;
}

.top-head p {
  margin: 0;
}

.top-head p {
  margin: 0;
  float: right;
}

.top-head {
  background: rgb(47, 55, 62);
  margin: 0;
  text-align: right;
  color: white;
  padding: 10px 115px;
  padding-bottom: 30px;
}

.brand-logo img {
  max-width: 234px;
  margin-top: 2px;
}
.sec-header {
  padding: 0;
  position: relative;
  min-height: 75px;
}

.gm-header .dropdown {
}

.gm-header .dropdown button {
  background: transparent;
  border: none;
  padding-right: 0;
}
.gm-header .notification-drop .dropdown button {
  padding-right: 6px;
}

ul.nav.navbar-nav.navbar-right {
  padding-top: 15px;
}

.sec-header {
  padding: 0;
  position: relative;
  min-height: 75px;
}

.gm-header.navbar-inverse .navbar-nav > li > a {
  font-size: 14px;
  padding: 10px 20px;
  color: #868686;
  font-family: 'MarkPro-Medium';
}

.gm-header.navbar-inverse .navbar-nav > .active > a,
.gm-header.navbar-inverse .navbar-nav > .active > a:focus,
.gm-header.navbar-inverse .navbar-nav > li > a:hover {
  background: none;
  color: #005dab;
  position: relative;
}

.gm-header.navbar-inverse .navbar-nav > .active > a::after {
  position: absolute;
  content: '';
  width: 58%;
  height: 4px;
  background: #005dab;
  left: 50%;
  bottom: -22px;
  transform: translate(-50%, -50%);
  display: none;
}

span.f20 {
  font-size: 20px;
}

.ban-bg {
  background-image: url(../images/banner.png);
  min-height: 208px;
  background-position: center;
  background-size: cover;
  position: relative;
  max-height: 226px;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #005dab;
  z-index: 0;
  display: none;
}

.ban-bg h2 {
  margin: 0;
  color: #ffffff;
  position: relative;
  padding: 74px 20px;
  padding-bottom: 2px;
}

section.resultbg {
  background: white;
  margin-bottom: 30px;
}

ul.sort-ul {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

ul.sort-ul li {
  float: left;
  padding: 0px 10px;
  padding-bottom: 5px;
  padding-top: 15px;
  float: none;
  display: inline-block;
  vertical-align: text-top;
  max-width: 220px;
}
.resultbg .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  width: 94%;
  text-overflow: ellipsis;
}
ul.sort-ul li:last-child {
  padding-right: 0;
  max-width: 268px;
}

.grid-btn {
  background: #ffffff;
  border: none;
  padding: 7px 2px;
  color: #0059a4;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}
.grid-btn span,
.list-btn span {
  padding-right: 2px;
}

.list-btn {
  border: none;
  padding: 7px 2px;
  color: #595959;
  border-radius: 5px;
  background: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}
.list-btn.active {
  color: #0059a4;
}
.list-btn.active .list-svg path {
  fill: #0059a4;
}
svg.list-svg {
  margin-top: 4px;
  float: left;
  margin-right: 6px;
}

.grid-btn:focus {
  outline: -webkit-focus-ring-color auto 0px;
}
.list-btn:focus {
  outline: -webkit-focus-ring-color auto 0px;
}
ul.sort-ul li p {
  margin: 0;
  padding-top: 7px;
  color: gray;
  font-size: 15px;
  font-weight: 600;
}

.sort-ul .dropdown button {
  background: #005dab;
  border-color: #005dab;
}

section.resultbg p {
  padding-top: 22px;
  /* color: #77787b; */
  font-size: 15px;
  font-weight: 600;
}

/*  */
.site-check .check-box {
  display: block;
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #6b6b6b;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom checkbox */
.site-check .check-box .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.site-check .check-box:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.site-check .check-box input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.site-check .check-box .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.site-check .check-box input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.site-check .check-box .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fil-box {
  /* background: white; */
  /* padding: 10px 0px; */
  padding-top: 0px;
  float: left;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0px 0px 15px 2px rgb(0, 0, 0, 0.176);
}

.check-box-section {
  padding: 10px 20px;
}
.back-head {
  border-radius: 3px 3px 0 0;
}
.back-head h5 {
  background: #2f373e;
  color: white;
  padding: 14px 20px;
  text-align: center;
  border-radius: 3px 3px 0 0;
}

.side-bar-se {
  /* margin-top: -172px; */
  padding-bottom: 60px;
}
/*  */
.side-bar-se .panel-title a {
  display: block;
  padding: 11px 15px 9px 15px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  border: 1px solid #ffffff;
  border-radius: 0;
  font-size: 18px;
  color: #303030;
  position: relative;
  font-weight: 400;
  font-family: 'MarkPro-Medium';
}

.side-bar-se .panel-title a:before {
  content: '\f068';
  font-family: 'Font Awesome 5 Free';
  line-height: 35px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  color: #009ff2;
  text-align: center;
  text-shadow: none;
  position: absolute;
  top: 6px;
  right: 15px;
}

.side-bar-se .panel-title a.collapsed:before {
  content: '\f067';
  color: #303030;
}

.side-bar-se .panel-body {
  padding: 0px 15px;
  font-size: 15px;
  color: #222;
  line-height: 20px;
  border: none;
}

.side-bar-se .panel-body p {
  margin-bottom: 0;
}

.main-content .panel-default > .panel-heading {
  color: #005dab;
  background-color: #ffffff;
  border-color: #fff;
  border-radius: 0;
  border: none !important;
  padding: 0px;
}

.side-bar-se .panel-group .panel {
  margin-bottom: 0;
  border-radius: 3px;
  background: #ffffff;
  padding: 0;
  border: none;
  margin-top: 6px;
  box-shadow: none;
  overflow: hidden;
}

.side-bar-se .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #fff;
  padding: 0;
  max-height: 270px;
  overflow-y: auto;
}

.rating-rat {
  padding: 10px 22px;
  margin-bottom: 10px;
}

.rating-rat span {
  font-size: 18px;
  padding: 10px 10px;
  color: #cecece;
}

.rating-rat span.checked {
  color: #005dab;
}

.right-side-content h2 {
  margin: 0;
  font-size: 18px;
  padding-top: 10px;
}

.right-side-content {
}

.right-side-content .input-group .form-control,
.sort-ul .input-group .form-control {
  background: #f0f9fd;
  border-radius: 0px 3px 3px 0px;
  box-shadow: none;
  border: 1px solid #afb7bc;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  border-left: 0px;
}

.right-side-content .input-group .form-control::placeholder,
.sort-ul .input-group .form-control::placeholder {
  color: #77787b;
}

.right-side-content .input-group-addon,
.sort-ul .input-group-addon {
  background: #f0f9fd;
  border: 1px solid #afb7bc;
  padding: 11px;
  color: #77787b;
  border-right: 0px;
}
.product-card {
  background: white;
  padding: 15px;
}
.pro-img {
  padding: 10px;
}
.top-content p {
  font-weight: 600;
  color: #005dab;
}
.product-star {
  padding: 0;
  padding-bottom: 10px;
}
.product-star span {
  color: #005dab;
}
.bot-content p {
  color: #77787b;
}
.site-btn {
  background: #005dab;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 3px;
}
.w100 {
  width: 100%;
}
.w50 {
  width: 49%;
}
.w50.line-btn {
  padding: 16px 4px;
  text-align: center;
}
a.w50.line-btn:focus {
  text-decoration: none;
}
.Portuguese .w50.line-btn {
  font-size: 10px;
}
.Spanish .w50.line-btn {
  font-size: 12px;
}
.liststyle .w50.line-btn {
  width: 48%;
}

.product-btn a:hover {
  text-decoration: none;
}
/* .w50:first-child {
  margin-right: 4px;
}
.w50:last-child {
  margin-left: 4px;
} */
.mt-20 {
  margin-top: 20px;
}
.site-footer footer {
  background: #2f373e;
  padding: 35px;
}
.site-footer footer ul {
  padding: 0px;
  padding-left: 75px;
  list-style: none;
  color: white;
  line-height: 30px;
}
.site-footer footer .footlogo img {
  background: transparent;
  padding: 10px;
  margin-top: 0;
  padding-left: 0;
}
.site-footer footer ul li {
}
.site-footer footer ul li a {
  color: white;
  /* font-weight: 500; */
  font-size: 14px;
  font-family: 'DINPro-Bold';
}
.site-footer footer p {
  color: #dcdddf;
  line-height: 25px;
  font-size: 14px;
  font-family: 'DINPro';
}
.site-footer footer h4 {
  color: white;
  margin-top: 7px;
  font-size: 17px;
}
.lastbot {
  background: #222b2c;
  padding: 10px;
  text-align: center;
  color: gray;
  font-weight: 500;
}
.right-side-content {
  margin-bottom: 75px;
}
.product-list.liststyle .pro-img img {
  max-height: 85px;
  /* margin-left: 0; */
  margin-top: 0;
}
.product-list.liststyle .pro-img {
  padding: 0;
}
.product-list.liststyle .left-con {
  margin-top: 4px;
}
.product-list.liststyle .product-btn {
  margin-top: 10px;
}

section.login-screen {
  padding: 136px 0px;
}
.login-box {
  padding: 50px 0px;
  padding-bottom: 0;
}

.login-box .form-control {
  height: 40px;
  background: #f0f9fd;
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid #afb7bc;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.login-box label {
  color: #77787b;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: 'MarkPro-Medium';
}
.login-box a {
  color: #0059a4;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: 'MarkPro-Medium';
}
.login-box .site-check .check-box .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
}
.main-btn {
  font-weight: 500;
  font-size: 16px;
  padding: 15px 10px;
}
.mt-b-20 {
  margin-bottom: 20px;
  margin-top: 10px;
}
/* RESPONSIVE */

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 992px) {
  .product-star span {
    color: #005dab;
    font-size: 11px;
  }
  .top-content p {
    font-weight: 600;
    color: #005dab;
    font-size: 12px;
  }
  .site-footer footer {
    background: #2f373e;
    padding: 20px;
  }
  .site-btn {
    background: #005dab;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .mt-10-res-991 {
    margin-top: 20px;
  }
  .top-content p {
    font-weight: 600;
    color: #005dab;
    font-size: 12px;
  }
  .brand-logo img {
    max-width: 230px;
  }
}
@media screen and (max-width: 767px) {
  .row.top-content {
    text-align: center;
  }
  .mt-20 {
    margin-bottom: 20px;
  }
  .my-auction-side {
    position: relative;
    float: left;
    width: 100%;
    top: 0;
  }
  .bot-content {
    text-align: center;
  }
  .side-bar-se {
    position: relative;
    top: 0;
  }
  .product-card {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .mt-20 {
    margin-top: 0px;
  }
  .site-footer footer ul {
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .brand-logo img {
    max-width: 220px;
    margin-top: 0px;
  }
  .ban-bg {
    max-height: 100%;
  }
  .quick-box {
    width: 33%;
    float: left;
  }
  .sec-header {
    padding: 0;
    position: relative;
    min-height: 60px;
  }
  .gm-header.navbar-inverse .navbar-toggle {
    border-color: #005dab;
    top: 8px;
  }
  .gm-header.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #005dab;
  }
  .product-card {
    background: white;
    padding: 15px;
    margin-top: 20px;
  }
  .gm-header .navbar-collapse.collapse.in {
    margin-top: 10px;
    border-color: white;
  }
  .gm-header.navbar-inverse .navbar-collapse,
  .gm-header.navbar-inverse .navbar-form {
    border-color: transparent;
  }
  .gm-header.navbar-inverse .navbar-nav > li > a {
    /* text-align: center; */
  }
  .gm-header.navbar-inverse .navbar-nav > .active > a::after {
    position: absolute;
    content: '';
    width: 24%;
    height: 4px;
    background: #005dab;
    left: 19%;
    bottom: 0;
    transform: translate(-50%, -50%);
    display: none;
  }
  .ban-bg h2 {
    margin: 0;
    color: #ffffff;
    position: relative;
    padding: 30px 6px;
    text-align: center;
  }
  .gm-header .dropdown button {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
  }
  .gm-header .dropdown button img {
    margin: unset;
    margin-left: 15px;
  }
  .notification-drop .dropdown.open {
    background: #fcfcfc;
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 23px;
  }
  .notification-drop .dropdown.open button a {
    color: #005dab;
  }
  ul.sort-ul {
    width: 100%;
  }
}
.product-list {
  margin-top: 0;
  padding-left: 14px;
  padding-right: 20px;
}
.site-body h3.hmtitl {
  font-family: 'DINPro-CondBold';
  font-size: 34px;
  margin-top: 18px;
  margin-bottom: 0;
}
.site-body h3.hmtitl span {
  font-size: 15px;
  font-family: 'DINPro-Bold';
  color: #595959;
  /* margin-left: 8px; */
}
@media screen and (max-width: 500px) {
  /*  */
}

/*ECX css New for dashboard*/
.ecxDashWrapper h2 {
  font-family: 'Open Sans';
}

.ecxDashWrapper .row .nav.nav-pills {
  display: flex;
}

.ecxDashWrapper .row .nav.nav-pills li {
  background: transparent;
}

.ecxDashWrapper .row .nav.nav-pills li.active a {
  background: transparent;
  border-bottom: 2px solid #009ff2;
  color: #009ff2;
  border-radius: 0;
  font-size: 20px;
}

.ecxDashWrapper .row .nav.nav-pills li a {
  color: black;
}

.ecxDashWrapper .dshPgHdr {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 15px;
  padding-left:  0;
}

.ecxDashbrdWrapper .usrImgWrapper {
  text-align: center;
  padding-top: 35px;
}

.ecxDashbrdWrapper .usrImgWrapper .imgContainer {
  position: relative;
  width: 200px;
  height: 200px;
  margin: auto;
}

.ecxDashbrdWrapper .usrImgWrapper .imgContainer .pfrlPic {
  border-radius: 100%;
}

.ecxDashbrdWrapper .dshInrWrapper {
  padding-top: 30px;
}

.ecxDashbrdWrapper .btn.edtBtn {
  width: 40px;
  height: 40px;
  border-radius: 35px;
  background: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 23px;
  bottom: 0;
}

.btn:focus {
  outline: none;
}

.ecxDashbrdWrapper .usrImgWrapper .usrName {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  color: #3399ff;
}

label {
  font-weight: normal;
}

.ecxDashbrdWrapper .intl-tel-input {
  height: 100%;
}

.inputWrapper .intl-tel-input input:focus + .inputWrapper label,
.inputWrapper .intl-tel-input .dropdown button:focus + .inputWrapper label,
.inputWrapper
  .intl-tel-input
  input:not(:placeholder-shown)
  + .inputWrapper
  label {
  top: 2px !important;
  font-size: 12px !important;
}

.ecxDashbrdWrapper .divHeading {
  font-size: 20px;
  text-transform: uppercase !important;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 0;
}

.divHeading.lctHdng {
  margin: 20px 0;
}

.ecxDashbrdWrapper .site-label {
  font-family: 'Open Sans';
  font-weight: normal;
  font-size: 15px;
}

.xs-mb {
  margin-bottom: 20px !important;
}
