body {
  font-family: "Open Sans", sans-serif;
  background: #000;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff3e3d;
  border-top-color: #000;
  border-bottom-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: #000;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .hero-btn {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 40px 5px 40px;
  transition: 0.5s;
  margin: 10px 5px;
  color: #a7a5a5;
  border: 6px solid #a7a5a5;
  border-style: outset;
  text-decoration: none;
  text-transform: uppercase;
}

#hero .hero-btn:hover {
  background: transparent;
  color: #ff3e3d;
  border-color: #ff3e3d;
  border-style: inset;
  transition: .5s;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: unset;
    text-align: center;
  }
  .buyerInfo_videoWrp {
    /* height: unset !important; */
  }
  .SB-loadPopup.modal.show .modal-dialog {
    height: unset !important;
  }
  .SB_login {
    padding: 20px !important;
  }
  #login {
    width: 100% !important;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
  .SB_dashboard_sellers_btn button {
    margin: 2px !important;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.buyerInfo_videoWrp {
  height: 80vh;
}
.buyerInfo_video {
  width: 100%;
  height: 100%;
}

.SB-loadPopup.modal.show .modal-dialog {
  height: 90vh;
}
.SB-loadPopup.modal.show .modal-dialog .modal-content {
  height: 100%;
}
.SB-loadPopup.modal .modal-dialog .modal-content .modal-header button {
  background: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.SB-loadPopup.modal .modal-dialog .modal-content .modal-body {
  position: relative;
}
.SB-loadPopup.modal .modal-dialog .modal-content .modal-body video {
  height: 100%;
  width: 100%;
}
.SB-loadPopup {
  -webkit-animation: scale-in-ver-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}

.SB-loadPopupHide {
  -webkit-animation: scale-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: scale-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
 @-webkit-keyframes scale-out-bottom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
}
@keyframes scale-out-bottom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #000000;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/* login form */
/* login form */
.SB_login {
  padding: 50px;
}
#login input[type="text"],
#login input[type="email"],
#login input[type="tel"],
#login input[type="url"],
#login textarea,
#login button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#login {
  background: #242424;
  padding: 10px;
  box-shadow: 0 0 10px #ff3d3dad;
  width: 40%;
  margin: auto;
  border: 1px solid #ff3e3d;
  border-radius: 10px;
}

#login h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #fff;
}

#login h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#login input[type="text"],
#login input[type="email"],
#login input[type="password"] {
  font-size: 12px;
  width: 100%;
  border: 1px solid #ff3e3d;
  background: #ff3e3d24;
  margin: 0 0 5px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

#login input[type="text"]:hover,
#login input[type="email"]:hover,
#login input[type="tel"]:hover,
#login input[type="url"]:hover,
#login textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #ff3e3d;
}

#login textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#login button[type="submit"] {
  cursor: pointer;
  width: 50%;
  background: transparent;
  margin: auto;
  padding: 8px;
  font-size: inherit;
  color: #a7a5a5;
  border: 4px solid #a7a5a5;
  border-style: outset;
}

#login button[type="submit"]:hover {
  background: transparent;
  color: #ff3e3d;
  border-color: #ff3e3d;
  border-style: inset;
  transition: .5s;
}

#login button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#login input:focus,
#login textarea:focus {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #fff;
}

:-moz-placeholder {
  color: #fff;
}

::-moz-placeholder {
  color: #fff;
}

:-ms-input-placeholder {
  color: #fff;
}


/* -------------Dashboard---------- */
/* -------------Dashboard---------- */
.SB_dashboard_sidebar {
  background: #242424;
  padding: 10px;
  box-shadow: 0 0 10px #ff3d3dad;
  margin: auto;
  border: 1px solid #ff3e3d;
  border-radius: 10px;
  overflow: hidden;
}
.SB_dashboard_sidebar ul {
  list-style: none;
  padding-left: unset;
  margin-bottom: unset;
}
.SB_dashboard_sidebar ul li {
  margin-bottom: 8px;
}
.SB_dashboard_sidebar ul li:last-child {
  margin-bottom: unset;
}
.SB_dashboard_sidebar ul li a,
.SB_dashboard_sellers_modal .modal-footer .sellers_modal_btn  {
  width: 100%;
  display: inline-block;
  background-color: #ff3e3d6e;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  text-decoration: unset;
  border: 1px solid #ff3e3d;
}
.SB_dashboard_sidebar ul li a:hover,
.SB_dashboard_sidebar ul li a.active,
.SB_dashboard_sellers_modal .modal-footer .sellers_modal_btn:hover {
  background-color: #ff3e3d;
  box-shadow: 0 0 5px #ff3e3d;
  border: 1px solid #ff3e3d;
}

.SB_dashboard_sellers {
  background: #242424;
  box-shadow: 0 0 10px #ff3d3dad;
  margin: auto;
  border: 1px solid #ff3e3d;
  border-radius: 10px;
  /* overflow: hidden; */
  padding: 10px;
}
.SB_dashboard_sellers .table {
  color: #fff;
  margin-bottom: unset;
}
.SB_dashboard_sellers .table>:not(caption)>*>* {
  border-bottom: 1px solid #ff3e3d;
  background: #822f2e;
}

.SB_dashboard_sellers_modal {
  -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    opacity: 1;
  }
}
.SB_dashboard_sellers_modal .modal-footer .sellers_modal_btn {
  width: auto !important;
}
.SB_dashboard_sellers_btn button {
  padding: 4px 6px;
  font-size: 12px;
  margin: 0 1px;
}
