

label {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}


.mb {
    margin-bottom: 1rem;
}


.messages_errors {
    color: red;
}


.image-selector > *:nth-child(1) {
    text-align: center;
}

.image-selector {
    min-height: 200px;
    border-radius: 20px;
    background: whitesmoke;
}
.image-selector.active {
    outline: .2em dashed darkgray;
}

.image-selector label {
    margin: 1rem;
    display: inline-block;
    border: 1px solid #d3d3d3;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 1rem;
    cursor: pointer;
}

.image-selector input[type=file]{
    display: none;
}

.image-selector img {
    max-width: 200px;
    max-height: 200px;
}

.image-selector-errors {
    color: red;
}



body.freezed::after {
    content: "";
    display: block;
    position: fixed;
    z-index: 100000000;
    background: black;
    opacity: .2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}