@import url('https://fonts.googleapis.com/css2?family=Workbench&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Doto:wght@100..900&display=swap');

body {
  background-color: #e0e0e0;
  margin: 0;
}

/*#login-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}*/

#tagline-container {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  filter: url(#threshold) blur(0.6px);
}

#text1, #text2 {
  position: absolute;
  display: inline-block;
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
  font-size: 5vh;
  text-align: center;
  color: black;
  user-select: none;
}

#filters {
  display: none;
}

#main-select-container {
  justify-content: center;
  align-items: center;
  height: 5vh;
  width: 100vw;
  gap: 1vw;
}

.main-select-button {
  height: 100%;
  width: 7vw;
  border: 1px solid white;
  border-radius: 3vh;
}

#header-container {
  border-radius: 2vh;
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
  width: calc(100vw - 6vh);
  margin-left: 3vh;
  margin-right: 3vh;
  height: 10vh;
  margin-top: 3vh;
  margin-bottom: 3vh;
  display: flex;
  justify-content: space-between;
}

#main-container {
  width: 100vw;
  height: 84vh;
  padding-left: 3vh;
  padding-right: 3vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3vh;
  flex-wrap: nowrap;
}

#main-left-container {
  box-sizing: border-box;
  height: 100%;
  border-radius: 2vh;
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  width: calc(50% - 1.5vh);
  margin-right: 1.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  transform: scale(100%);
  border: 1px solid rgba(208, 208, 208, 0);
  transition: all 0.3s ease-in-out;
}

#main-left-container:hover {
  transform: scale(101%);
  border: 1px solid #fcb59c;
  box-shadow:  20px 20px 60px #8a8a8a,
              -20px -20px 60px #ffffff;
  transition: all 0.3s ease-in-out;
}

.main-left-container-active {
  border: 1px dashed blue !important;
}

.main-left-container-full {
  border: 1px solid rgb(208, 208, 208) !important;
  transform: scale(100%) !important;
  box-shadow:  20px 20px 60px #8a8a8a,
              -20px -20px 60px #ffffff !important;
  transition: all 0.3s ease-in-out;
}

#main-right-container {
  height: 100%;
  width: calc(50% - 1.5vh);
  margin-left: 1.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#main-right-top-sub-container {
  margin-bottom: 1.5vh;
  border: 1px solid #000000;
}

#main-right-bottom-sub-container {
  margin-top: 1.5vh;
}

@media (max-aspect-ratio: 1/1) {

  #main-container {
    width: 100vw;
    height: 84vh;
    padding-left: 3vh;
    padding-right: 3vh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3vh;
    flex-wrap: wrap;
  }

  #main-left-container {
    height: calc(50% - 0.75vh);
    border-radius: 2vh;
    background: #e0e0e0;
    box-shadow:  20px 20px 60px #bebebe,
                -20px -20px 60px #ffffff;
    width: 100%;
    margin-bottom: 1.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 0px;
  }

  #main-right-container {
    height: calc(50% - 0.75vh);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
  }
}

#main-upload-text {
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

#main-left-sub-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#main-upload-icon {
  background-image: url("images/upload.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 6em;
  aspect-ratio: 1 / 1;
}

#logo-conatiner {
  height: 100%;
  width: 10vw;
  display: flex;
  margin-left: 2vw;
  justify-content: center;
}

.main-right-sub-container {
  background: #e0e0e0;
  box-shadow:  20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
  width: 100%;
  height: calc(50% - 1.5vh);
  border-radius: 2vh;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.main-right-sub-container:hover {
  box-shadow:  20px 20px 60px #8a8a8a,
              -20px -20px 60px #ffffff;
  transition: all 0.2s ease-in-out;
}

.main-right-sub-background {
  height: 100%;
  width: 100%;
  z-index: 50;
  top: 0;
  position: absolute;
}

.main-right-sub-foreground {
  height: 70%;
  width: 100%;
  z-index: 50;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  padding-left: 2em;
  padding-top: 1em;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  top: 0;
}

.sub-right-header {
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.5em;
}

.sub-right-subheader {
  font-family: 'Yantramanav', sans-serif;
  color: #000000d1;
  font-weight: 200;
}

.sub-right-text-container {
  width: 100%;
}

.sub-right-value {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-style: italic;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;
  color: black;
  font-size: 5em;
}

#header-right-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  padding-right: 1vw;
  padding-left: 1vw;
  margin-right: 1em;
}
#header-left-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  padding-right: 1vw;
  padding-left: 1vw;
  margin-right: 1em;
}

.header-button {
  height: 50%;
  min-height: 40px;
  border-radius: 2vh;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
  border: 1px solid rgb(119, 119, 119);
  background: #e0e0e0;
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2vw;
  padding-left: 2vw;
  cursor: pointer;
  transform: scale(100%);
  transition: all 0.2s ease-in-out;
}

.header-button:hover {
  transform: scale(103%);
  background: #cdcdcd;
  transition: all 0.2s ease-in-out;
}

#header-search {
  height: 40%;
  min-height: 40px;
  border-radius: 2vh;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
  background: #e0e0e0;
  border: 1px solid rgb(208, 208, 208);
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  padding-left: 10px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2vw;
  padding-left: 2vw;
  cursor: text;
  width: 250px;
  transition: all 0.3s ease-in-out;
  transform: scale(100%);
}

#header-search:hover {
  box-shadow:  20px 20px 60px #8a8a8a,
              -20px -20px 60px #ffffff;
  transform: scale(102%);
  transition: all 0.3s ease-in-out;
}

#header-search-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-right-value-description {
  background: #000000cf;
  border: 1px solid rgb(196 196 196);
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 0.4em;
  font-family: 'Yantramanav', sans-serif;
  color: #ffffffd1;
  font-weight: 200;
}

.sub-right-text-top-container {
  width: 100%;
}

.sub-right-text-bottom-container {
  width: 100%;
}

.main-logo-width {
  width: 100%;
}

#homeFileInput {
  display: none;
}

#main-left-files-container {
  height: 100%;
  width: 100%;
  display: none;
  position: relative;
}

#main-left-files-header {
  height: 6vh;
  width: 100%;
  position: absolute;
  z-index: 10;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(119, 119, 119);
  background-color: #d4d4d4;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1vh;
  padding-right: 1vh;
  padding-left: 1vh;
  border: 1px solid rgb(208, 208, 208);
  border-radius: 0vh 0vh 2vh 2vh;
}

#main-left-files-scroll-container {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 6em;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none; 
  padding-top: 6vh;
  padding-left: 1em;
  padding-right: 1em;
}

#main-left-files-scroll-container::-webkit-scrollbar {
  display: none; 
}

.file-upload-container {
  width: calc(100% - 2em);
  border-radius: 2vh;
  margin-top: 1em;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
  background: #e0e0e0;
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
  border: 1px solid rgb(208, 208, 208);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 1em;
  position: relative;
  height: auto;
}

.file-upload-container:hover {
  border: 1px solid rgb(119, 119, 119);
  transition: all 0.2s ease-in-out;
}

#main-left-files-scroll-cover {
  content: "";
  width: 100%;
  height: 6em;
  position: absolute;
  bottom: 0;
  background: linear-gradient(360deg,rgb(224, 224, 224) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.main-left-files-title {
  background: #000000cf;
  border: 1px solid rgb(196 196 196);
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 0.4em;
  font-family: 'Yantramanav', sans-serif;
  color: #ffffffd1;
  font-weight: 200;
  display: none;
}

#main-left-files-title-count {

}

#main-left-files-title-size {

}

#ready-to-upload {
  font-family: 'Yantramanav', sans-serif;
  color: #000000d1;
  font-weight: 200;
  position: absolute;
  left: 0;
  margin-left: 1em;
}

.file-upload-title {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.8em;
}

.file-upload-sub-title {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  font-family: 'Yantramanav', sans-serif;
  color: #000000d1;
  font-weight: 300;
  font-size: 0.7em;
}

.file-upload-titles-container {
  width: 60%;
}

.file-upload-thumbnail-container {
  width: 5em;
  border-radius: 1vh;
  height: 4em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  margin-right: -0.5em;
  box-shadow: 20px 20px 60px #8a8a8a, -20px -20px 60px #ffffff;
  background: #e0e0e0;
  border: 1px solid rgb(0, 0, 0);
  overflow: hidden;
}

.file-upload-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.file-upload-thumbnail-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-upload-thumbnail-audio {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.file-upload-thumbnail-container-audio {
  width: 50%;
  border-radius: 1vh;
  height: 4em;
  background: #e0e0e0;
  overflow: hidden;
  margin-right: -1em;
  margin-top: -1em;
  margin-bottom: -1em;
  position: relative;
  border-radius: 1em;
}

.file-upload-thumbnail-container-audio-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,rgb(224, 224, 224) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.file-upload-type {
  background: #000000cf;
  border: 1px solid rgb(196 196 196);
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 0.4em;
  font-family: 'Yantramanav', sans-serif;
  color: #ffffffd1;
  font-weight: 200;
}

#main-right-advance-container {
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  display: none;
}

#main-right-advance-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-advance-button {
  width: 90%;
  height: 10vh;
  border-radius: 3vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
  border: 1px solid rgb(119, 119, 119);
  background: #e0e0e0;
}

#main-right-advance-sub-container {
  width: 100%;
  border-radius: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-advance-button:hover {
  background: black;
  color: white;
  cursor: pointer;
}

#main-right-advance-link-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 95%;
  height: 10vh;
  border-radius: 3vh;
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
  box-shadow: 11px 11px 22px #bebebe, -11px -11px 22px #ffffff;
  border: 1px solid rgb(119, 119, 119);
  background: #e0e0e0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  box-sizing: border-box;
}

#main-right-advance-link-prefix {
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
}

#main-right-advance-link-input {
  width: 100%;
  outline: none;
  border: none;
  background: none;
  font-family: 'Yantramanav', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1.2em;
}

#main-right-advance-link-input:focus {
  outline: none;
}

#main-right-advance-link-copy {
  height: 5vh;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  background-image: url("images/copy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-size: 70%;
  transform: scale(100%);
  transition: all ease-in-out 0.1s;
  cursor: pointer;
}

#main-right-advance-link-copy:hover {
  transform: scale(107%);
  transition: all ease-in-out 0.1s;
}