.constructor-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constructor-modal__inner {
    padding: 0 15px 15px;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 4px 0 #717171;
    max-height: 90%;
    overflow: auto;
    background-color: #fff;
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 10px;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b9b9b9;
}

.constructor-modal__header {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.constructor-modal__title {
    margin-top: 0;
    margin-bottom: 0;
}

.constructor-modal__close {
    position: sticky;
    top: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #d3d3d3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constructor-modal__line {
    width: 3px;
    height: 70%;
    background-color: #d3d3d3;
    position: absolute;
    transform: rotate(45deg);
    border-radius: 10px;
}

.constructor-modal__line:last-of-type {
    transform: rotate(-45deg);
}

.constructor-modal__image {
    margin-bottom: 20px;
}