* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1 {
    text-align: center;
    margin: 30px 0;
}
body {
    background: var(--background);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.container {
    margin: 0 auto;
    max-width: 1230px;
    padding: 0 15px;
}
:root {
    --background: #101010;
    --background-secondary: #747474;
    --mark: #ffffff30;
}
.btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150px;
    margin-left: 10px;
}
p {
    margin: 10px 0;
}
button {
    border: none;
    font-family: inherit;
    outline: none;
}
.unwrapBtn {
    width: 25px;
    height: 25px;
    border: solid #fff;
    border-right: 0;
    border-top: 0;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: .3s;
    background: transparent;
    margin-bottom: 10px;

}
.unwrapBtn--active {
    transform: rotate(-225deg);
    margin-bottom: -10px;
}
.order__item {
    max-width: 100%;
    height: 100px;
    margin: 30px 30px 0;
    background-color: var(--background-secondary);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: .2s;
}
.order__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.unwrap {
    height: fit-content;
}
.hidden {
    display: none;
}

.orders {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
}

.remove {
    border-radius: 10px;
    height: 70px;
    max-width: 100px;
    padding: 10px;
    background-color: #e8b2ff;
    font-family: inherit;
    color: black;
    box-shadow: 0 0 5px 0 #383838;
    cursor: pointer;
    transition: .2s;
    margin-left: 15px;
}
.remove:hover {
    box-shadow: 0 0 10px 0 #383838;
}
#createNew, #send {
    display: block;
    background: greenyellow;
    border-radius: 10px;
    margin: 30px auto;
    padding: 20px;
    font-family: inherit;
    cursor: pointer;
}


/* File form */

.file-form{
    width: 100%;
    height: 250px;
    border: 4px dashed #fff;
    position: relative;
    margin-top: 20px;
}
.file-form p {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20%;
    text-align: center;
    line-height: 2;
    color: #ffffff;
    font-family: Arial;
}
.file-form input {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
}

/* Images */

.images {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.images img {
    border-radius: 5px;
    margin-top: 10px;
    max-width: 45%;
}
.img-container {
    display: flex;
    flex-wrap: wrap;
}
.img__item img {
    width: 150px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}
.img__item {
    border-radius: 10px;
    width: 150px;
    aspect-ratio: 1/1;
    position: relative;
    margin: 10px;
}
.img__item:hover .delete-btn {
    opacity: 1;
}
.delete-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    padding: 4px;
    background-color: rgb(44, 45, 46);
    border-radius: 0 5px 0 5px;
    opacity: 0;
    cursor: pointer;
    transition: .1s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.delete-btn svg {
    fill: #fff;
}




/* Media */

.mark {
    background: var(--mark);
}

@media (max-width: 500px) {
    h2 {
        font-size: 17px;
    }
}

@media (max-width: 400px) {
    h2 {
        font-size: 15px;
    }
    .unwrapBtn {
        height: 20px;
        width: 20px;
        margin-bottom: 3px;
    }
    .unwrapBtn--active {
        margin-bottom: -10px;
    }
}

@media (max-width: 320px) {
    h2 {
        font-size: 13px;
    }
}