html {
  height: 100%;
  width: 100%;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scrollbar-color: #46a3b3 #000000;
}

*{
    /* font-family: "EB Garamond", serif; */

  font-family: "Platypi", serif;
  transition: all 0.3s ease-in-out;
  
}

body{
  /* background-image: radial-gradient(circle, #ffffff, #000000);
  background-repeat: no-repeat;
  background-attachment: fixed; */
  background-color: white;
  color: black;
  padding-top: 50px;
}

.load-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #ffffff;
  border-radius: 50%;
  border-top: 16px solid #000000;
  border-bottom: 16px solid #000000;
  -webkit-animation: spin 2s ease-in-out infinite;
  animation: spin 2s ease-in-out infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 10px;
  background: black;
  text-align: left;
  font-weight: bold;
  color: white;
  z-index: 1;
}

header button{
  position: fixed;
  top: 15px;
  left: 10px;
}

header span{
  font-size: 200%;
  font-weight: bold;
  float: left;
  margin-left: 70px;
  margin-top: 10px;
}

nav{
  float: right;
  margin-right: 80px;
  margin-top: 25px;
  word-spacing: 30px;
}

nav a{
  text-decoration: none;
  color: white;
}

.address_bar{
  position: relative;
  top: 45px;
}

.address_bar a{
  color: black;
  text-decoration: none;
}

@keyframes updownanimationimage{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(40px);
  }
  100%{
    transform: translateY(0);
  }
}

#bot{
  padding-top: 50px;
  animation: updownanimationimage 3s infinite;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 700px){
  header{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
  header span{
    margin-left: 0px;
  }

  header button{
    position: fixed;
    top: 15px;
    left: 10px;
    z-index: 2;
  }

  nav{
    float: none;
    word-spacing: 3vw;
    font-size: 14px;
    margin: 0px;
    margin-top: 10px;
  }
  
}

.logo{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 10px;
}

.main{
  margin-left: 20px;
  margin-right: 20px
}

.main h1{
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  /* color: white; */
}

.login_box{
  display: block;
  background: #30211c;
  padding-bottom: 10px;
  border: 1px solid white;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  height: 50px;
}


button{
  /* background: linear-gradient(90deg, #000000 0%, #8e5343 99%, #945542 100%); */
  background-color: black;
  color: white;
  border-radius: 10px;
  padding: 15px;
  padding-left: 50px;
  padding-right: 50px;
  cursor: pointer;
  border: 1px solid white;
}
button:hover{
  /* background: linear-gradient(270deg, #000000 0%, #8e5343 99%, #945542 100%); */
  /* color: white; */
  box-shadow: 0 0 10px rgb(173, 250, 255, 0.5);
}

.outerlog{
  height: 370px;
  width: 350px;
  border: 2px solid black;
}

#email{
  margin-top: 10px;
  text-align: left;
  margin-bottom: 25px;
  padding-right: 45px;
  padding-top: 10px;
  
}

.loginfo{
  margin-top: 50px;
}

#pass{
  margin-top: 10px;
  text-align: left;
  padding-right: 45px;
  padding-top: 10px;
  margin-bottom: 25px;
}



.login_button{
  margin-top: 25px;
  text-align: center;
}



/* ----------------------------Feedback Form-------------------------------- */

.feedback{
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: left;
  border: #000000 dotted 2px;
  padding: 50px;
  border-radius: 10px;
  background: #30838952;
  box-shadow: 0 0 10px rgba(0, 83, 89, 0.266);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-evenly;
  width: max-content;
}

@media screen and (max-width: 600px) {
  .feedback{
    margin-top: -10px;
    width: 60vw;
    background: #30838952;
    box-shadow: none;
    border: none;
  }
}

#feedback-form label{
  font-size: 18px;
  font-weight: bold;
}

#feedback-form input, #feedback-form textarea, #feedback-form select{
  padding: 5px;
  border-radius: 5px;
}




/* -------------------------------------------------------------------------- */

.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card{
  position: relative;
  width: 400px;
  height: 300px;
  margin: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

.card .content{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.card:hover{
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.chat_bot{
  position: fixed;
  bottom: 10px;
  right: -75px;
  width: 10px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chat_bot i{
  position: relative;
  left: -5px;
}

.chat_bot img{
  padding-top: 2px;
  padding-bottom: 2px;
  width: 50px;
  height: 50px;
}

.chat_bot:hover{
  right: -20px;
}

@media only screen and (max-width: 700px){
  .card{
    width: 300px;
    height: 200px;
  }
  .chat_bot{
    right: 0px;
    border-radius: 100%;
    background: transparent;
    border: none;
  }
  .chat_bot i{
    display:none;
  }
  .chat_bot img{
    width: 60px;
    height: 60px;
  }

  @keyframes chat_botmover{
    0%{
      transform: translateY(0);
    }
    50%{
      transform: translateY(10px);
    }
    100%{
      transform: translateY(0);
    }
  }

  .chat_bot{
    animation: chat_botmover 2s infinite;
    transition: all 0.3s ease-in-out;
  }

  .chat_bot:hover{
    right: 0px;
  }
  
}




/* -------------------U styles --------------------------------------------------------- */


a{
  text-decoration: none;
  color: rgb(17, 21, 254);
}



.notes_viewer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.notes{
  padding: 20px;
  background: rgb(143, 190, 214,0.5);
  border: 2px solid #46a3b3;
  border-radius: 20px;
  margin: 20px;
  width: 95%;
  height: auto;
}

.full_screen{
  float: right;
  cursor: pointer;
  margin: 5px;
  display: inline;
  width: max-content;
}

/* .full_screen_exit{
  cursor: pointer;
  padding: 10px;
  color: white;
  background: #000000a6;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 20;
} */

.thanks{
  font-size: 0.3cm;
  color: #212121;
}

.new_version_requestor{
  background: #46a3b369;
  color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}

.new_version_requestor h3{
  font-size: medium;
}

#split_pdfs_side_by_side{
  display: inline;
  cursor: pointer;
  width: max-content;
  text-align: center;
}

#exit_split_pdfs_side_by_side{
  display: none;
  cursor: pointer;
  width: max-content;
  text-align: center;
}

@media only screen and (max-width: 900px){
  .notes{
    padding: 20px;
    background: rgb(143, 190, 214,0.5);
    border: 2px dotted #46a3b3;
    border-radius: 20px;
  }
  #split_pdfs_side_by_side{
    display: none;
  }

  #exit_split_pdfs_side_by_side{
    display: none;
  }

  .notes{
    width: 90%;
    height: auto;
  }
}


#footer::before{
  content: "© 2024 First Gear. All Rights Reserved.";
  font-size: 0.3cm;
  color: #212121;
  text-align: center;
  padding-bottom: 20px;
}
