@font-face {
  font-family: "Degular";
  src: url("https://www.rho.co/fonts/DegularFamily/Degular_44510.otf");
}

@font-face {
  font-family: "Basier";
  src: url("https://www.rho.co/fonts/BasierCircle/BasierCircle-Regular.woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #8dcec0;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
  font-family: "Degular", Verdana, Tahoma;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-family: "Degular", Verdana, Tahoma;
}

h1 {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: #080a0a;
  font-weight: bold;
}

a:hover {
  color: #272d2d;
}

#root,
#__next {
  isolation: isolate;
}

#email {
  width: 100%;
  background-color: rgb(223, 223, 223);
  border: 0;
  height: 44px;
  padding: 10px;
}

.container {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 0;
}

.wrapper {
  display: flex;
  justify-content: center;
  width: 600px;
  padding: 32px 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ededed;
  font-family: "Basier", Verdana, Tahoma;
}

.contacts {
  font-size: 0.8rem;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 0;
}

.submit-button {
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #080a0a;
  color: #8dcec0;
  border: 0;
  height: 44px;
  width: 100%;
  cursor: pointer;
  margin-top: 12px;
}

.submit-button:hover {
  background-color: #272d2d;
}

.description {
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 24px 0;
}

.additional-info {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 24px 0;
}

.hidden {
  display: none;
}

.label-email {
  font-size: 0.8rem;
  float: left;
}

.form-control {
  /* margin: 10px 0; */
}

.mainSection {
  width: 90%;
}

.text {
  font-weight: bold;
}
.icon,
.text {
  vertical-align: middle;
  display: inline-block;
}

.list-document {
  list-style-position: inside;
  padding: 0;
}

.item-document {
  background: url(/static/images/file.svg) no-repeat left 8px;
  padding: 5px 0px 5px 30px;
  list-style: none;
}

.company-name {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.due-documents {
  font-size: 0.8rem;
  padding: 8px 0;
}

.files-list {
  padding: 8px 0;
}

/* Dropzone style */

.dropzone {
  text-align: center;
  cursor: pointer;
}

.dz-message {
  border: 1px solid #ededed;
  padding: 24px 0;
  margin: 24px 0 12px;
}

.dz-preview {
  height: 50px;
  display: flex;
  align-items: center;
}

.dz-image {
  width: 50px;
  border: 1px solid #ededed;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview .dz-image {
  width: 30px;
  height: 40px;
}

.dz-size {
  display: none;
}

.dz-filename {
  font-size: 0.7rem;
  padding-left: 10px;
}

.dz-error-message {
  font-size: 0.7rem;
  color: red;
  padding: 0 10px;
}

.dz-success-mark {
  display: none;
}

.dz-error-mark {
  display: none;
}

.dz-remove {
  font-size: 0.8rem;
  padding-right: 10px;
  margin-left: auto;
  font-weight: bold;
}

.dropzone-previews {
  max-height: 200px;
  overflow: auto;
}

.dropzone .dz-preview {
  position: relative;
}
.dropzone .dz-preview .dz-progress {
  opacity: 0.2;
  z-index: 1000;
  position: absolute;
  pointer-events: none;
  height: 80%;
  width: 100%;
  -webkit-transform: scale(1);
  border-radius: 2px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #8dcec0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

@media only screen and (max-width: 600px) {
  .wrapper {
    width: 100%;
  }
  h1 {
    font-size: 1.5rem;
  }
  .description {
    font-size: 0.7rem;
  }
  .desktop-text {
    display: none;
  }
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}