/* Theme Buttons  & elements*/


 html, body {
  overflow: -moz-scrollbars-none; 
  -ms-overflow-style: none;       
  scrollbar-width: none;          
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
} 

:root {
  scroll-behavior: smooth;
} 


/* Input form 01  */

.inp_field{
  padding: 5px;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  border-bottom-right-radius: 10px;
}

/* Input form 02 */

.inp_field_dev{
  padding: 5px;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
   border-top: 1px solid white;
  border-left: 1px solid white;
  border-top-left-radius: 10px;
  padding: 10px;
}

.inp_btn{
  width: fit-content;
  background-color: transparent;
  padding-inline: 15px;
  font-family: "Inter";
  border: none;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  border-bottom-right-radius: 10px;
    border-top: transparent;
  border-left: transparent;
  transition: 1s all ;
}
.inp_btn:hover{
  border-right: transparent;
  border-bottom: transparent;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-top-left-radius: 10px;
}
.inp_field_select{
  padding: 5px;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  border-bottom-right-radius: 10px;

}


select option{
  background-color: black;
  color: white;
  border: none;
}

.user-icon{
  padding: 5px;
  padding-inline: 10px;
   background-color: green; 
  margin-left: 30px;
  border-radius: 50px;
  width: fit-content;
  position: fixed;
  top: 24px;
  right: 30px;
}
.avatar-img{
  height: 50px;
  width: 50px;
    padding: 5px;
  padding-inline: 10px;
  /* background-color: green; */
  margin-left: 30px;
  border-radius: 50px;
  width: fit-content;
  position: fixed;
  top: 24px;
  right: 30px;
}


@media (max-width:700px) {
  .user-icon{
    position: fixed;
    top:80%;
    right: 20px;
  }
  .avatar-img {
    position: fixed;
    top:80%;
    right: 20px;
  }
  
}

textarea{
  background-color: black;
  color: white;
  border: none;
  outline: none;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-top-left-radius: 10px;
}

.check-box label , input{
  cursor:pointer;
}

.inp_field_pass{
  padding: 5px;
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
}


#msg-box{
  font-size: 12px;
  padding: 10px;
  padding-inline: 30px;
  position: fixed;
  width: fit-content;
  bottom: 50px;
  right: 20px;
  z-index: 1050;
  background-color: black;
  border-top: 2px solid rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  animation: side 1s ;
}
@keyframes side {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.fade-out {
  transition: 1s all;
  opacity: 0%;
}
.fade-in{
  transition: 1s all;
  opacity: 100%;
}


/* Fonts + Headings */

.font-1 {
  font-family: "Inter ", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: white;
}

.scrollbar{
  display: none;
}


.hidden {
    display: none;
}
label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

body {
  font-family: sans-serif;
  margin: 0;
  color: white !important;
  padding: 0;
  background-color: black !important;
}
.font{
  font-family: "Inter ", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: white;
  font-size: 40px;
}

.content{
  /* background-color: red; */
  padding: 20px;
  margin-top: 100px;
  background-image: linear-gradient( to top,  black 2% ,rgb(14, 15, 15)94%);   
}

.element{
  padding: 4px ;
  padding-inline:9px ;
  height: 0;
  width: fit-content;
  border-radius: 30px;
  background-color: #02b8cc;
}

.content-btn{
  background-color: transparent;
  border: 1px solid gray;
  font-size: 12px;
  border-radius:14px ;
  padding: 6px;
  padding-inline: 12px;
  transition: 0.5s all;
}
.content-btn:hover{
  background-color: rgba(55, 55, 55, 0.451);
}
.content-btn-01{
  background-color: white;
  color: black;
  border: 1px solid gray;
  font-size: 12px;
  margin-left: 12px;
  border-radius:14px ;
  padding: 6px;
  padding-inline: 12px;
  transition: 0.5s all;
}
.content-btn-01:hover{
  background-color: rgba(255, 255, 255, 0.17);
  color: white;
}

.divider{
  width: 80%;
  height: 1px ;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.123);
}
