/* Custom Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #da8979;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #98234b;
}
/* Custom Scrollbar */

/* Navbar */
.dropdown .dropdown-menu a:hover {
  color: #fff;
  background-color: #961e47;
  border-color: #fff;
}

.buy-prod-profile-navbar {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: block;
  margin-left: 20px;
}

.sosbtn {
  background-color: #961e47;
  color: white;
  margin-top: 30px;
  width: 40%;
}

.sosbtn:hover {
  color: white;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

label {
  transform: translate(10px, 20px);
  padding-left: 5px;
  padding-right: 5px;
  background-color: white;
  font-size: 14px;
}

input,
textarea {
  border-radius: 10px;
  border: 2px solid #e9afa3;
}

input:focus,
textarea:focus {
  border-color: #842243;
}

input,
textarea {
  padding: 10px;
}

textarea {
  resize: none;
}

#submit-btn {
  padding: 5px;
  width: 50%;
  border-radius: 10px;
  background-color: #961e47;
  color: white;
  height: 40px;
  margin-top: 10px;
  width: 50%;
  box-shadow: none;
}

#submit-btn:hover {
  background-color: #842243;
  box-shadow: none;
}

.category-btn {
  padding: 5px;
  border-radius: 10px;
  width: 100%;
  height: 47px;
  background-color: white;
  color: black;
  margin-top: 10px;
  border: 2px solid #e9afa3;
  box-shadow: none;
}

.category-btn:focus {
  box-shadow: none;
  border: 2px solid #961e47;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Toggle Switch */

.switch {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #961e47;
}

input:focus + .slider {
  box-shadow: 0 0 1px #961e47;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  height: 80px;
  background-color: #fcd5ce;
}

/* Media Queries */
@media (min-width: 1281px) {
  .max-img-mq {
    margin-top: 45px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .max-img-mq {
    margin-top: 45px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #user-navbar-name {
    padding-left: 20px;
  }
  .max-img-mq {
    margin-top: 45px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  #user-navbar-name {
    padding-left: 20px;
  }
  .max-img-mq {
    text-align: center;
  }
}

#preloader {
	position: fixed;
	height : 100vh;
	z-index : 100;
	text-align: center;
	background: white url('/images/preloader.gif')center center no-repeat;
}
