/* Fonts Import */

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap");

*,
*::before,
*::after,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #fff;
  --dark-color: #1b1b20;
  --light-color: #b4b4b4;
  --border-color: #0289d15d;
  --second-color: #2196f3;
  --third-color: #03a9f4;
  --primary-font: "Rubik", sans-serif;
}
html {
  scroll-behavior: smooth !important;
}
::-webkit-scrollbar {
  width: 0.625rem;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}
::-webkit-scrollbar-thumb {
  background: var(--second-color);
  border-radius: 1px !important;
}
body {
  font-family: "Rubik", sans-serif;
  color: #1b1b20;
  background: var(--primary-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  color: #fff !important;
}

.navbar {
  background: var(--second-color);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.navbar .navbar-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}
.navbar .navbar-brand img {
  width: 41px;
  height: 41px;
  margin-top: -6px;
  object-fit: contain;
}

.info h5 {
  font-size: 0.97rem !important;
  font-weight: 500;
  padding: 0 4rem;
}
.info .or_section {
  color: #d4d4d4;
}

.upload-wrapper {
  background: #fff !important;
  border-radius: 25px;
  padding: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  height: 100%;
  max-width: 460px;
}
.drop-zone {
  width: 100%;
  min-height: 220px;
  border: 2px dashed var(--border-color);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.dragged.drop-zone {
  background: var(--primary-color);
  border-color: var(--second-color);
}
.icon-container {
  position: relative;
  width: 70px;
  height: 90px;
}
.upload-wrapper .drop-zone .icon-container img {
  width: 70px;
  position: absolute;
  transform-origin: bottom;
  transition: transform 250ms ease-in-out;
  user-select: none;
}
.upload-wrapper .drop-zone .icon-container .center {
  z-index: 2;
}
.icon-container .right,
.icon-container .left {
  filter: grayscale(0.8);
  transform: scale(0.9);
}
.dragged .icon-container .right {
  transform: rotate(10deg) translateX(20px) scale(0.9);
}
.dragged .icon-container .left {
  transform: rotate(-10deg) translateX(-20px) scale(0.9);
}
.dragged .icon-container .center {
  transform: translateY(-5px);
}
.upload-wrapper .drop-zone h5 {
  font-size: 1rem;
}
.drop-zone .title #fileInput {
  display: none;
}
.drop-zone .title .browseBtn,
.my-btn-color {
  background: var(--second-color) !important;
  border-color: var(--second-color) !important;
  transition: all 0.3s ease;
}
.drop-zone .title .browseBtn:hover,
.my-btn-color:hover {
  background: var(--third-color) !important;
}
.mybtn-outline {
  border-color: var(--second-color) !important;
  color: var(--second-color) !important;
}
/* .mybtn-outline:hover{
    color: #fff !important;
    background:var(--second-color) !important;
    border-color: var(--second-color) !important;
} */
.progress-container {
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: var(--primary-color);
  border: 1px solid #e7e7e7;
  margin-top: 0px !important;
  padding: 0 !important;
  display: none;
  transition: all 0.2s ease-in-out;
}

.progress-bar {
  max-width: 100%;
  background: var(--second-color);
}
.uploadingStatus .title {
  font-weight: 500;
}
.progress-bar .percent {
  color: #fff;
  font-size: 14px;
}
.progress {
  background: inherit !important;
}
.file-info-wrapper h6 {
  margin-bottom: 0 !important;
  font-size: 15px;
  margin-top: 3px;
}
.file-info-wrapper p {
  font-size: 13px;
  text-align: left !important;
  margin-bottom: 5px !important;
}
.link-container {
  width: 100%;
  height: 40px;
  border: 2px dashed var(--border-color);
  border-radius: 5px;
  background: #f5fcff;
}

.clipBoard {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 8px;
  font-size: 18px;
  background: #f5fcff;
}
.clipBoard:focus {
  border: none;
  outline: none;
}
.link-container img {
  width: 22px;
  margin-right: 5px;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.2s ease;
  user-select: none;
}
.link-container img:hover {
  opacity: 1;
}
.form-container {
  background: #fff;
  padding: 10px;
  padding-right: 15px;
  border-radius: 10px;
  text-align: left !important;
}

.sharing-container {
  margin-top: 0px !important;
  display: none;
}
.shareHeading {
  font-size: 1.2rem;
  font-weight: 600;
}
.sharing-container p {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
}
.my-toast {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 60px);
  background: var(--third-color);
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: medium;
  user-select: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s,
    bottom 0.2s,
    visibility 0.2s;
}
.my-toast--visible {
  bottom: 13%;
  opacity: 1;
  visibility: visible;
  z-index: 1111;
}

.or_section {
  overflow: hidden;
  text-align: center;
}
.or_section:before,
.or_section:after {
  background-color: #d4d4d4;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  width: 40%;
  vertical-align: middle;
}
.or_section::before {
  right: 0.5em;
  margin-left: -50%;
}
.or_section:after {
  left: 0.5em;
  margin-right: -50%;
}
#uploading {
  display: none;
}
#uploadSuccessful {
  display: none;
}
/* animation */
.animated-check {
  height: 24px;
  width: 24px;
  margin: 0 5px;
}
.animated-check path {
  fill: none;
  stroke: #198754;
  stroke-width: 3;
  stroke-dasharray: 23;
  stroke-dashoffset: 23;
  animation: draw 1s linear forwards;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.qrCode {
  fill: var(--second-color);
  margin-top: -5px;
  transition: all 0.5s ease;
}

.qrBtn:hover > .qrCode {
  fill: #fff !important;
}
@media (max-width: 409px) {
  .button-wrapper button:first-child {
    margin-bottom: 15px !important;
  }
}
.modal-dialog {
  top: 10%;
}
@media (max-width: 575px) {
  .modal-dialog {
    padding: 2rem !important;
    top: 0% !important;
  }
}

.recentUpload {
  position: fixed;
  bottom: -5px;
  background: #005191;
  z-index: 100;
  right: 3%;
  padding: 10px 20px;
  border-radius: 6px 6px 0 0;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.recentUpload:hover {
  bottom: 0px;
}
.inputBoxReset {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 500;
  width: 70% !important;
  text-overflow: ellipsis;
}
.inputBoxReset:focus,
.inputBoxReset:active {
  border: none;
  outline: none;
}
.modalCopysvg {
  cursor: pointer;
}
.recentUpload {
  display: none;
}
.recentUploadHeading {
  font-size: 1.6rem;
  font-weight: 100;
}
.recentUploadpara {
  font-size: 14px;
  font-weight: 100px;
}
.th-custom {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #444444 !important;
}
.custom-border {
  border: 1px solid #ececec;
  border-radius: 50px;
  margin: 3rem 0 !important;
}
.tr-custom > tr > td {
  font-size: 14px !important;
  font-weight: 100 !important;
}
.modal-backdrop.show {
  opacity: 0.95 !important;
  background: rgba(0, 0, 0, 0.85);
}
@media (max-width: 991px) {
  .tr-custom > tr > td {
    font-size: 12px !important;
    font-weight: 100 !important;
  }
  .th-custom {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #444444 !important;
  }
}
.heading-Center {
  font-size: 1.5rem;
  font-weight: 500;
}

.text-fix {
  font-size: 1rem !important;

  font-weight: 400;
}
.img-resoultion-fix {
  width: 7%;
}
@media (max-width: 991px) {
  .img-resoultion-fix {
    width: 10%;
  }
}
@media (max-width: 572px) {
  .img-resoultion-fix {
    width: 13%;
  }
}
.custom-settings {
  border: none !important;
  background: inherit;
  text-align: justify;
  box-shadow:
    rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.custom-card-text {
  color: #212529e8;
  font-weight: 500;
  text-align: center;
}
.text-p-my {
  color: #333 !important;
}
@media (max-width: 520px) {
  .textWrapper h2 {
    font-size: 26px !important;
  }
  .textWrapper h3 {
    font-size: 18px !important;
  }
  .text-fix {
    font-weight: 500;
  }
}
@media (max-width: 992px) {
  .box-shadow2 {
    box-shadow: none !important;
  }
}
.box-shadow1 {
  box-shadow:
    rgba(136, 165, 191, 0.48) 6px 2px 16px 0px,
    rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.box-shadow2 {
  box-shadow:
    -6px -6px 20px rgba(255, 255, 255, 1),
    6px 6px 20px rgba(99, 99, 99, 0.13);
}
.box-shadow3 {
  box-shadow:
    rgba(27, 31, 35, 0.04) 0px 1px 0px,
    rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.card {
  min-height: 24rem !important;
}
.accordion-button:not(.collapsed) {
  color: #fff !important;
  background: var(--second-color) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/accordionArrow.svg") !important;
}
.accordion {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px !important;
}
.scroll-to-top {
  position: fixed;
  background: var(--second-color);
  padding: 0.9rem;
  bottom: 8%;
  right: 3%;
  transform: rotate(180deg);
  border-radius: 10px;
  cursor: pointer;
  box-shadow:
    rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  transition: all 0.3s ease;
}
.download-wrapper {
  background: #fff;
  box-shadow:
    rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  border-radius: 25px;
  padding: 2rem;
  height: 100%;
}
.btn-primary {
  color: #fff;
  background-color: var(--third-color);
  border-color: var(--third-color);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--second-color) !important;
  border-color: var(--second-color) !important;
}
.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 144, 255, 0.5) !important;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #ffffff !important;
  background-color: var(--second-color) !important;
  border-color: var(--second-color) !important;
}

.filename {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
