@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*{
  margin: 0;
  padding:0;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

html{
  background-color: #1f1f21;
}

body {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: none; 
}

::-webkit-scrollbar-thumb {
  background: #333; 
  border-radius: 2px
}

::-webkit-scrollbar-thumb:hover {
  background: #666; 
}

/* -----Custom dropdown starts----- */  
.drop-down .selected{
  display: flex;
  background-color: #1f1f21; 
  border: 1px solid #2e2e31; 
  border-radius: 4px; 
  width: 328px; 
  margin: 0; 
  outline: none;
  justify-content: space-between;
  align-items: center;
  cursor:pointer; 
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
  
.drop-down .selected:hover{
  background-color: #1b1b1d; 
}
  
.drop-down .selected a{
  text-decoration: none;
  color:white;
}
  
.drop-down .selected a span{
  display:block; 
  margin: 12px 16px;
}
  
.drop-down .options{
  position: absolute;
  background-color: #1F1F21; 
  border: 1px solid #2e2e31; 
  border-radius: 4px; 
  padding-bottom: 10px; 
  display:none;
  list-style:none; 
  margin-top: 8px;
  width: 328px; 
  height: auto;
  overflow: overlay;
  max-height: 400px;
  animation: height cubic-bezier(0, 0, 0.33, 0.96) 0.1s;
  box-shadow: #00000050 0px 2px 16px;
}
  
@keyframes height{
  0%{height: 0px; overflow: hidden; opacity:0}
  100%{height: 492px; overflow: hidden; opacity:1}
}
  
.drop-down .selected span.value, .drop-down .options span.value{
  display: none;
}
  
.dropsection{
  font-size: 12px;
  text-transform: uppercase;
  color: #626264;
  padding: 16px 14px 10px 14px;
}
  
.drop-down .options div li a{
  padding: 12px 14px; 
  display:block;
  text-decoration:none;
  color:#ffffff;
  transition:0.2s ease;
  background:#1A1A1C;
}
  
.drop-down .options div li a:hover{
  background: #161619;
}
  
/* -----Custom dropdown ended----- */

a {
  text-decoration: underline;
  color: #a1a1a1;
}

.header{
  height: 60px;
  padding: 0px 16px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #131315;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  border-bottom: 1px solid #212121;
}

.headerbuttons{
  padding: 8px;
  background-color: #1f1f21;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin-left: 14px;
  cursor: pointer;
}

.material-icons{
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

#upload-btn {
  display: none;
}

.wrapper {
  height: 100vh;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  z-index: 9;
  bottom: 0;
  color: #636363;
}

object { 
  height: 500px;
  position: relative;
  pointer-events: none;
}

/* Slider starts */
.rangeSlider{
  position: absolute; 
  margin: 20px; 
  right: 30%; 
  transform: rotate(270deg); 
  padding: 12px 12px 16px 12px; 
  background-color: #19191b; 
  border-radius: 4px
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #313131;
  outline: none;
  opacity: 0.7;
  border-radius: 3px;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-right: 5px
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-right: 5px
}

/* ------------------------------------Install Snippet Started---------- */

#snackbar{
  position: absolute;
  right:0;
  bottom: 0;
  width: 280px;
  height: auto;
  background-color: rgb(7, 7, 5);
  color: #fff;
  box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
  transform: translateX(120%);
  margin: 10px;
  padding: 20px;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.18, 0.89, 0.50, 1.05);
  z-index: 10;
}

.snackbar-button{
  color: #fff;
  padding: 8px;
  margin: 0px;
  border-radius: 20px;
  border: 1px solid #2e2e2e;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}
.snackbar-button:hover{
  background-color: #2e2e2e;
}

#closeBtn{
  padding: 8px;
  margin: 0 0 0 10px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

#closeBtn:hover{
  background-color: #2e2e2e;
}

/* ------------------------------------Install Snippet Ended---------- */

/* @media only screen and (max-width : 768px){
  body {
    display: none;
  }
} */

@media only screen and (max-width: 1024px){
  .rangeSlider{
    right: -30px; 
    margin: 0;
  }
}

@media only screen and (max-width: 960px){
  .hide-on-mobile{
    display: none;
  }
  .drop-down .selected{
    width: 260px;
  }
  .drop-down .options{
    width: 260px;
  }
  .logoText{
    font-size: 13px;
  }
}

