/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */


 .main-container {
    display: flex;
    max-width: 1920px;
}

.drag-and-drop-div {
    width: 100%;
    display: flex;
}

.section-values-field {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.section-values-field ul {
    max-height: 700px;
    overflow: hidden scroll;
    width: 320px;
}

.mockup-field {
    width: 60%;
    display: flex;
    gap: 50px;
}

.mockup-image {
    max-height: 700px;
    width: 100%;
    max-width: 400px;
    background-size: 400px 700px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.mockup-image ul {
    margin: 50px 0 0;
    height: 640px;
    width: 320px;
    overflow: hidden scroll;
    border-radius: 0 0 40px 40px;
}

.section-values-field li {
    height: auto;
}

#sortable li {
    height: auto;
}

.background-li {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.value-description {
    padding-left: 10px;
}

.section-img {
    width: 300px;
}

.ui-draggable-dragging {
    width: 300px;
}

.remove-section-field {
    background-color: rgba(251, 88, 123, 0.5);
    height: 20%;
    width: 30%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: .5s;
}

.remove-section-field.ui-droppable-active {
    background-color: rgb(251, 88, 124);
    transition-duration: .5s;
}

.remove-section-field.ui-droppable-hover {
    background-color: red;
    transition-duration: .5s;
}

@media (min-width: 1279px) and (max-width: 1700px) {
    .section-values-field ul {
        margin-top: 0;
        max-height: 450px;
        overflow: hidden scroll;
        width: 200px;
    }
    
    .mockup-field {
        width: 60%;
        display: flex;
        gap: 50px;
    }
    
    .mockup-image {
        max-height: 450px;
        width: 100%;
        max-width: 280px;
        background-size: 280px 450px;
    }
    
    .mockup-image ul {
        margin: 30px 0 0;
        height: 415px;
        width: 200px;
        border-radius: 0 0 25px 25px;
    }
    
    .background-li {
        width: 190px;
    }

    .section-img {
        width: 190px !important;
    }
    
    .ui-draggable-dragging {
        width: 190px !important;
    }
}
