/* Sticky footer styles
-------------------------------------------------- */

@font-face {
    font-family: 'Roboto';
    src: url(https://fonts.googleapis.com/css?family=Roboto);
}

html, body {
    font-family: 'Roboto', sans-serif; /*Specify your font name here*/
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
    text-align: center;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;

}

.container {
    width: auto;
    max-width: 680px;
    padding: 0 15px;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */


/*
    DEMO STYLE
*/


.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}


.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    min-height: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #2c3e50;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 15px;
    background: #fafafa;
    color: #e66700;
}


#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #2c3e50;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: #fff;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #2c3e50;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
    background: #2c3e50;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #2c3e50;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #2c3e50;
    color: #fff;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 2px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #content {
        width: 100%;
    }

    #content.active {
        width: calc(100% - 250px);
    }

    #sidebarCollapse span {
        display: none;
    }
}

@media (max-width: 1350px) {

    .text-average {
        line-height: 12px !important;
    }
}

.img-xs {
    height: 80px;
}

.ean-page {
    width: 180px;
}

.view-prices-modal {
    cursor: pointer;
    color: #0787ff;
}


.block_select2 {
    max-width: 250px !important;
    overflow-y: auto !important;
    overflow-x: auto !important;


}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.input_xs {
    width: 120px !important;
}

.gradient-card {
    background: #555555; /* fallback for old browsers */


}

.break {
    word-break: break-all;
}


.margin-imag-avatar > input {
    display: none;
}

.label {
    cursor: pointer;


}

.progress {
    display: none;
    margin-bottom: 1rem;
}


.img-container-crop img {
    max-width: 100%;
}

.flag-country {
    width: 25px;
}

.cursor_pointer {
    cursor: pointer;
}

.modal-content {
    max-height: calc(100vh - 80px);
    overflow-y: auto;

}

@media (max-width: 480px) {

    .modal {
        height: calc(100vh - 80px); /* Set a default max height of the modal (adjusted later)*/
        position: fixed; /* Display modal in the centre of your screen */
        overflow-y: scroll; /*  Ensure that the modal is scroll-able */
        -webkit-overflow-scrolling: touch; /* Avoid having to use 2 finger scroll on iOS    */
    }

    .modal.fade.in {
        top: 5px; /* Use more screen real estate */
    }

    .modal-body {
        /* Increase the max height of the modal body to try & avoid both it,
         * and the modal container having scroll bars which results in odd behavior */
        max-height: 2400px;
    }
}

/* Now adjust the height so it handles various screen sizes & orientations */
/* You could make this as granular as you like, or have it more granular at common screen sizes
 * but it should start at the height we set on .modal (i.e. 500px) & work down */
@media (max-width: 480px) and (max-height: 500px) {
    .modal {
        height: 450px
    }
}

@media (max-width: 480px) and (max-height: 450px) {
    .modal {
        height: 400px
    }
}

@media (max-width: 480px) and (max-height: 400px) {
    .modal {
        height: 350px
    }
}

@media (max-width: 480px) and (max-height: 350px) {
    .modal {
        height: 300px
    }
}

@media (max-width: 480px) and (max-height: 300px) {
    .modal {
        height: 250px
    }
}

@media (max-width: 480px) and (max-height: 250px) {
    .modal {
        height: 200px
    }
}

@media (max-width: 480px) and (max-height: 200px) {
    .modal {
        height: 150px
    }
}

.tabled {
    border-style: dashed;
    border-width: 1px;
    min-width: 60px;
    min-height: 60px;
    color: #898989;
}

.cron-text {
    margin-left: -80px !important;
}

.text-separator-cron {
    word-spacing: 16px !important;
}

.led-box {
    display: inline-flex;
}

.led-green {

    width: 15px;
    height: 15px;
    background-color: #ABFF00;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #89FF00 0 2px 12px;
    margin-right: 14px;
    margin-top: 5px;
}

.led-red {

    width: 15px;
    height: 15px;
    background-color: #F00;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 12px;
    -webkit-animation: blinkRed 0.5s infinite;
    -moz-animation: blinkRed 0.5s infinite;
    -ms-animation: blinkRed 0.5s infinite;
    -o-animation: blinkRed 0.5s infinite;
    animation: blinkRed 0.5s infinite;
    margin-right: 14px;
    margin-top: 5px;
}

.highlight-code {
    top: 20px;
    background-color: rgba(226, 237, 237, 0.21);
    padding: 20px;
    line-height: 6px;
    margin-top: 30px;
    border-radius: 5px;
}

.cron-caja {
    top: 10px;
    background-color: rgba(226, 237, 237, 0.4);
    padding: 20px;
    border-radius: 10px;
}

.fa-star-half {
    color: #ffbf00 !important;
}

.fa-star {
    color: #ffbf00 !important;

}

.inline-price-td {
    width: 230px;
}

.inline-price {
    display: inline-flex;
    width: 230px;
}

.inline-price > .badge {
    height: 18px;
}

.inline-date {
    width: 250px;
}

.inline-date-div {
    display: inline-flex;
    width: 250px;
    height: 25px;
}

.inline-review {
    width: 200px;
}

.inline-review-data {
    width: 200px;
    height: 30px;
}

.inline-name-country {
    width: 140px;
}

.inline-name-country-data {
    width: 140px;
}

.flag-country-views {
    width: 15px;
}

.flag-badge {
    top: 5px;
    display: block;
    position: relative;
}

.text-average {
    font-size: 13px;
    line-height: 3px;
}

#vmap {
    width: 100%;
    height: 100%;
}
