.sorting-grip {
    width: 14px;
    position: absolute;
    background-image: url(/Content/css/images/mini-hero-bg.png);
    background-repeat: no-repeat;
    background-position: -500px -500px;
}

.sorting-grip:hover {
    background-repeat: repeat;
    background-position: top left;
    background-color: #C5DBEC;
    cursor:move;
}

.highlight:hover .sorting-grip {
    background-repeat: repeat;
    background-position: top left;
    background-color: #C5DBEC;
    cursor: move;
}



@media(max-width: 249px)
{
    .left_menu_wrapper {
        display: flex;
        flex-direction: column;
    }

    .close-span-right {
        width: 0px;
        visibility: hidden;
    }
   

    .close-span-top {
        align-self:end;
        margin-left: 0.5em;
        background-color: #3E4650;
        width: 3.5em;
        height: 3.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: visible;
    }
}

@media(min-width:250px ) and (max-width:992px) {

    .left_menu_wrapper {
        display: flex;
        flex-direction: row;
    }

    .close-span-top {
        width: 0px;
        visibility: hidden;
    }

    .close-span-right {
        margin-left: 0.5em;
        background-color: #3E4650;
        width: 3.5em;
        height: 3.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: visible;
    }
}

@media(min-width:993px) {

    .close-span-top {
        width: 0px;
        visibility: hidden;
    }

    .close-span-right {
        width: 0px;
        visibility: hidden;
    }
}

.menu-close-icon {
    max-width: 1.45em;
    max-height: 1.45em;
}


.previewImage {
/*    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;*/
}




div.gallery {
    border: 1px solid #ccc;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #fff;
}

    div.gallery:hover {
        border: 1px solid #777;
    }

    div.gallery img {
        width: 100%;
        height: 170px;
        margin-bottom:1em;
        padding: 0;
        object-fit: cover;
    }

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    margin-top: 2em;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}



.gridPreview {
    display: grid;
    grid-template-columns: repeat(auto-fill, 120px);
    grid-gap: 1rem;
    justify-content: center;
    align-content: flex-start;
    /* boring properties: */
    list-style: none;
    width: 90vw;
    height: 90vh;
    margin: 4vh auto;
    padding: 0;
    overflow: auto;
}

.progress
{
    margin: 1em;
}

.buttonsContainerDropzone {
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.actionButton {
    align-self: center;
    margin: 0.25em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 3px;
    color: black;
    width: 100%;
    border: solid 1.7px #fff;
}

.dropzoneActions
{
    display:flex;
    flex-direction: column;
}

.actionButtonOuter {
    margin-top: 0.5em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 3px;
    color: black;
    border: solid 1.7px #fff;
}

.textContentDropzone
{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.actionIcon{

    margin-right: 0.45em;
}

.dropzoneDesc{

    font-size: 1.1rem;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.startAction {
    background-color: #00AACA;
    margin-top:1em;
    margin-bottom: .5em;
}

.cancelAction {
    background-color: #F4F6F8;
}

.deleteAction {
    background-color: #E63946;
}

.cropAction {
    background-color: #C1C1C1;
}

.actionButton:hover, .actionButtonOuter:hover {

    color:black;
    border: solid 1.7px #777;
}

.groupContainer {
    display: grid;
    grid-template-columns: 1fr;
    /*    grid-template-rows: auto auto auto auto;
*/ grid-gap: 10px;
    align-content: space-evenly;
    position: relative;
    grid-template-areas:
        "a a a a a a a a a"
        "b b b b b b b b b"
        "c c c c c c c c c"
        "n n n n n n n n n"
        "e e e e e e e e e";
}

.gridUploader {
    grid-area: a;

}

.dropzoneActions {
    grid-area: b;

}

#previewFilesUploaded {
    grid-area: n;
    align-self: center;
}



.cropContainer {
    grid-area: e;
}

.cropContainer {
    min-height: 300px;
    width: 90vw;
    align-self: center; /* Put the item around the center */
}

.cropImage {
    display: block;
    /* This rule is very important, please don't ignore this */
    max-width: 100%;
}

.cropContainer {
    display: grid;
    grid-template-rows: auto auto auto;
    /*    grid-template-rows: auto auto auto auto;
*/ grid-gap: 10px;
    align-content: space-evenly;
    position: relative;
    grid-template-areas:
        "t t t t t t t t t"
        "z z z z z z z z z"
}

.cropActions {
    margin-top: 2em;
    grid-area: l;
    align-self: start;
}


.cropImageContainer {
    grid-area: z;
}

#cropImage {
    max-height: 450px;
    max-width: 450px;
}

.cropRatio {
    border-radius: 2px;
    text-align: center;
    width: 3.6em;
    height: 3.6em;
    margin-top: .75em;
    background-color: #00AACA;
    color: white;
    border:none;
}

.saveOptions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.cropDimensions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}



.saveCrop {
    border-radius: 2px;
    text-align: center;
    height: 3.6em;
    margin-top: .75em;
    background-color: #5CB85C;
    color: white;
    border: none;
    padding-left: .5em;
    padding-right: .5em;
    min-width: 6em;
    margin-left: 1em;
}

.saveCrop:hover {

    color: white !important;
    border: solid 1.7px #777 !important;
}

.cropRatio:hover {
    color: white !important;
    border: solid 1.7px;
}


.selectedRatio {
    border: 1.4px dashed black;
}

.selectedRatio {
    border: 1.4px dashed black !important;
}

.saveOptions
{
    margin-bottom: 1em;
}


/*Carousel*/
.carousel-inner img {
    width: 100%;
    height: 100%;
}

#custCarousel .carousel-indicators {
    position: static;
    margin-top: 20px;
}

    #custCarousel .carousel-indicators > li {
        width: 100px;
    }

    #custCarousel .carousel-indicators li img {
        display: block;
        opacity: 0.5;
    }

    #custCarousel .carousel-indicators li.active img {
        opacity: 1;
    }

    #custCarousel .carousel-indicators li:hover img {
        opacity: 0.75;
    }

.carousel-item img {
    width: 80%;
}


