@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,200;1,300;1,500&display=swap');
:root{
	--orange: #ff7800;
	--black: #27272f;
	--light-color: #666;
	--box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
	--border: .2rem solid rgba(0,0,0,.1);
	--outline: .1rem solid rgba(0,0,0,.1);
	--outline-hover: 1rem solid var(--black);
}
html{
	scroll-behavior: smooth;
	scroll-padding-top:  7rem;
}
body, nav{
font-family: 'Poppins', sans-serif;
background-color: var(--black);
}
.nav-link{
	color: white;
}
.nav-link:hover{
	color: var(--orange);
}
.carousel-inner > .carousel-item >img{
height: 250px;
}
.card {
box-shadow: 2px 2px 5px 4px rgba(0, 0, 0, 0.25), -2px -2px 10px 4px rgba(0, 0, 0, 0.22);
transition: all .4s ease-in-out;
background-color: darkslategray;
}
.card:hover {
box-shadow: 0px -1px 14px 0px rgba(17,245,154,1);
/*transform: scale(1.01);*/
}
.fa-heart {
  font-size: 1em;
}

.btn:focus{
   outline: none;
   outline: none !important;
   box-shadow: none;
}

.dropdown-menu > li > a:hover {
    background-image: none;
    background-color: darkslategray;
}

input.form-control {
   background-color: #27272f;
   border: none;
   box-shadow: inset 0 0 5px grey; 
   border-radius: 20px;
}
.form-control:valid {
  background-color:  #27272f;
  border: none;
   box-shadow: inset 0 0 5px grey; 
   color: ghostwhite;
}

/****************/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: yellow; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
/******************/
/******Toaster******/

#liveToast, .toast-header{
background: rgb(18,126,79);
background: linear-gradient(90deg, rgba(18,126,79,1) 14%, rgba(19,177,13,1) 64%, rgba(252,176,69,1) 100%);
box-shadow: 2px 2px 5px 4px rgba(0, 0, 0, 0.25), -2px -2px 10px 4px rgba(0, 0, 0, 0.22);
transition: all .4s ease-in-out;
}
/*******************/
.btn-group .btn-facebook:hover{color:#3B5998;}
.btn-group .btn-twitter:hover{color:#55ACEE;}
.btn-group .btn-google:hover{color:#DD4B39;}

::-moz-selection { /* Code for Firefox */
  color: black;
  background: yellow;
}

::selection {
  color: black;
  background: yellow;
}




