html, body {
    background-color: #F5F3F3;
    color: #434A51;
    font-family: "Rubik", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.image {
    height: 400px;
    width: 400px;

    &-ph {
        border: #696969 2px dashed;
    }
}


.wrapper {
    text-align: center;
    display: flex;
    height: 100vh;
    width: 100vw;
}

.upload-control {
    background-color: #DEDEDE;
}

.results {
    background-color: #F5F3F3;
}

.col {
    display: flex;
    width: 50vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.issue {
    display: flex;
    justify-content: center;
    color: white;
    margin-bottom: 2px;

    & > div {
        padding: 15px;
    }

    &-icon {
        margin-right: 2px;
    }

    &-description {
        display: flex;
        width: 22vw;
    }

    &-confidence {
        margin-left: auto;
    }
}

.identified-issues {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-bottom: 20px;
}

.form-input {
    border: none;
    padding: 10px;
}

.form-label {
    margin-right: auto;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 500;
    font-color: #5C6267;
    text-transform: uppercase;
}

.upload-btn {
    width: 100px;
    height: 30px;
    border: none;
    text-transform: uppercase;
    color: #F2F3F3;
    background-color: #434A51;
}

.all-clear {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    color: #fff;
    line-height: 200px;
    text-align: center;
    background: #24A52D;
}


/* Loader styles */
.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: .3em solid #5C6267;
    border-right: .3em solid #5C6267;
    border-bottom: .3em solid #DEDEDE;
    border-left: .3em solid #DEDEDE;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
