.container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.background-image-container {
    position: relative;
    background-color: #ffffff;
}

.background-image-container #background-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.background-image-container #clothes-image {
    position: absolute;
}

.ui-icon-gripsmall-diagonal-se {
    background-image: url('images/resize.png')!important;
    background-position: center center;
    background-size: cover!important;
    width: 32px;
    height: 32px;
    right: 10px;
    bottom: 10px;
}

.container .file-input {
    text-align: left;
    background: #f7f7f7;
    padding: 10px;
    width: calc(100% - 20px);
    position: relative;
    border-radius: 3px;
    margin-bottom: 20px;
}

.container .file-input>[type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.container .button {
    background-color: transparent;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    transition: .3s;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 21px 13px;
    text-decoration: none!important;
    display: inline-block;
}

.container .file-input:hover>.button, .container .button:hover {
    background-color: #1A1A1A;
    border: 2px solid #1A1A1A;
    color: #FFF;
    text-decoration: none!important;
}

.container .file-input>.label {
    color: #333;
    white-space: nowrap;
    opacity: .3;
    margin-left: 15px;
}

.container .file-input.-chosen>.label {
    opacity: 1;
}