@import url("/css/combain.css");

/* kolumnerna måste bli olika stora */
/* app titeln ska bli större i förhållande till allt annat */

@media (min-width: 992px) {

    /* #app-table {
        -webkit-transform: scale(0.9) !important;
           -moz-transform: scale(0.9) !important;
                transform: scale(0.9) !important;
    }*/
    #app-table * {
        font-size: 1vw !important;
        line-height: 1vw !important;
    }

    img {
        width: 3vw !important;
        height: auto !important;
    }

    .app-icon {
        border-radius: 1vw !important;
        width: 10vw !important;
    }

    .container-fluid {
        padding: 2vw !important;
        padding-right: 50vw !important;
    }

    .app-col {
        padding-bottom: 2vw !important;
    }

    .star-ratings-css {
        margin-left: 9% !important;
    }

    .star-customer-css {
        margin-left: 18% !important;
    }

}

.app-icon {
    border-radius: 4vw;
    box-shadow: 0.75vw 0.75vw 2vw grey;
}

.star-ratings-css {
    unicode-bidi: bidi-override;
    color: #c5c5c5;
    font-size: 3vw;
    height: 3vw;
    width: 12vw;
    margin-left: 0;
    margin-top: 0;
    position: relative;
    padding: 0;
    text-shadow: 0px 1px 0 #a2a2a2;
}

.star-ratings-css-top {
    color: #999;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star-ratings-css-bottom {
    padding: 0;
    display: block;
    z-index: 0;
}

.selected-icon {
    filter: opacity(60%);
}

img {
    width: 25%;
    height: auto;
    /*  margin-left: 50%; */
}

.app-icon {
    width: 80%;
    height: auto;
    margin-left: 0%;
}

.container-fluid {
    padding: 5%;
}

.app-details> p {
    filter: opacity(80%);
    font-size: 2vw;
    line-height: 2vw;
}

.app-name * {
    font-size: 3vw;
    line-height: 3vw;
}

/* .row > td {
    margin: auto !important;
} */

.app-col {
    padding-bottom: 7.5%;
}

.app-col-right {
    margin: auto;
}

.download-icon {
    margin-right: 8%;
    margin-bottom: 8%;
    cursor: pointer;
}

#edit-icon {
    margin-bottom: 8%;
    cursor: pointer;
}

#remove-icon {
    margin-right: 6%;
    cursor: pointer;
}

.upload-html-text {
    height: 3%;
}

.upload-html-textarea {
    height: 6%;
}

#upload-app-file {
    height: 1%;
}

.customer-dwnld-icon * {
    cursor: pointer;
    margin-left: 7%;
}

.star-customer-css {
    margin-left: 9%;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar, .snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show, .snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
				     *   However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.copyicon {
    height: 1.25em !important;
    width: 1.25em !important;
    margin-right: 0.25em;
}

.copydiv {
    cursor: pointer;
}