@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Roboto");
html,
body,
* {
  box-sizing: border-box;
  font-size: 16px;
}


body {
  color: #333;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 2rem;
  background-color: #121212;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #ff2b63;
  margin-bottom: 0;
}

#sub-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #ff2b63;
}

.error {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #f5020f;
  display: none;
}

.btn {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: normal;
  padding: 12px 40px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  background-color: #121212;
  border: 3px var(--c, #ff2b63) solid;
  z-index: 2;
  cursor: pointer;
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--c, #ff2b63);
  z-index: -1;
  transition: height 0.3s ease;
}

.btn:hover::before {
  height: 100%;
}

.btn2 {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: normal;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  background-color: #242323;
  border: 3px var(--c, #ff2b63) solid;
  z-index: 2;
  cursor: pointer;
}

.btn2::before {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--c, #ff2b63);
  z-index: -1;
  transition: height 0.3s ease;
}

.btn2:hover::before {
  height: 100%;
}

.custom-file-container {
  box-sizing: border-box;
  position: relative;
  display: block;
}
.custom-file-container * {
  box-sizing: border-box;
}
.custom-file-container .label-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.custom-file-container .clear-button {
  color: #333;
  font-size: 26px;
  height: 26px;
  line-height: 26px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.custom-file-container .clear-button:hover {
  color: #777;
}
.custom-file-container .input-container {
  display: inline-block;
  height: 40px;
  margin-bottom: 8px;
  position: relative;
  width: 100%;
}
.custom-file-container .input-container:hover {
  cursor: pointer;
}
.custom-file-container .input-hidden {
  height: 40px;
  margin: 0;
  max-width: 100%;
  min-width: 300px;
  opacity: 0;
}
.custom-file-container .input-visible {
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #c0c0af;
  color: #333;
  height: 40px;
  left: 0;
  line-height: 1.5;
  overflow: hidden;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  z-index: 5;
}
.custom-file-container .browse-button {
  background-color: #edede8;
  border-left: 1px solid #c0c0af;
  color: #333;
  display: block;
  height: 38px;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
}
.custom-file-container .image-preview {
  background-color: #edede8;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 250px;
  overflow: auto;
  padding: 4px;
  transition: background 0.2s ease-in-out;
  width: 100%;
}
.custom-file-container .image-preview-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25);
  float: left;
  height: 90px;
  margin: 1.858736059%;
  position: relative;
  transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
  width: 29.615861214%;
}
.custom-file-container .image-preview-item.multi-item-clear-animation {
  opacity: 0;
}
.custom-file-container .image-preview-item-clear {
  background: #edede8;
  border-radius: 50%;
  box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25);
  height: 20px;
  left: -6px;
  margin-top: -6px;
  position: absolute;
  text-align: center;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  width: 20px;
}
.custom-file-container .image-preview-item-clear:hover {
  background: #e2e2da;
  cursor: pointer;
}
.custom-file-container .image-preview-item-clear-icon {
  color: #333;
  display: block;
  margin-top: -2px;
}

.custom-file-container {
  border-radius: 4px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 8px 12px;
  width: 300px;
}

.label-container > .clear-button {
  color: white;
}

.label-container > .clear-button:hover {
  color: darken(white, 10%);
}

.data {
  display: none;
  width: 50%;
  background-color: #242323;
  margin: auto;
  margin-top: 40px;
  border-radius: 4px;
  color: white;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 8px;
}


.data > button {
  margin-left: 20px;
}

.data > a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: white;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner .6s linear infinite;
}

.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted #242323; */
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #242323;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
  font-weight: 700;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #242323 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}