﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */

.status-label {
    display: inline;
    margin-right: 10px;
}

input,
select,
textarea {
    max-width: 280px;
}

.form-error {
    color:red;
}
.form-feedback {
    color: black;
}
.full-width {
    max-width:unset;
}

.store-panel-title {
    display: block;
    text-decoration: none !important;
    margin-top:-15px;
    padding-top:15px;
    margin-bottom:-15px;
    padding-bottom:15px;
}
.store-panel-title:hover {
    text-decoration:none !important;
}
.store-panel-title h4 {
    width:unset;
}
.store-panel-title .counter {
    margin-right:40px;
    font-weight: bold;
}

.panel-heading-date {
    margin-left: 20px;
}
.bumper-right {
    margin-right: 4px;
}
.bumper-left {
    margin-left: 4px;
}
.panel-heading-store-name {
    display: inline;
}

.required-field:before 
{
    content: "*";
    font-weight: bold;
    color: red; 
}

.btn-less-playlists {
    margin-bottom: 20px;
}

.users-table .user-role {
    width: 14px;
    margin-left: 10px;
}

.custom-table {
    width:1200px;
}

.custom-textbox {
    max-width: 500px;
}

.btn.outline {
	color: #333333;
}

.btn.custom-font {
    font-size: 16px;
}

i:hover { cursor: pointer; }

.nav-link {
    color: #333333;
}

.navbar-logo-container {
    float: left;
    height: 50px;
    padding: 0 15px 0 0;
    font-size: 18px;
    line-height: 20px;
}

.form-control.description_deal {
    max-width:500px;
}


.image-preview-modal-body {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-preview-container {
    position: absolute;
}

.loading-interstitial {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-interstitial div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #F5F5F5;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-interstitial div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.loading-interstitial div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.loading-interstitial div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.loading-interstitial div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.store-group-panel-title {
    display: block;
    text-decoration: none !important;
    margin-left: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: black;
}

.store-group-panel-title:hover {
    text-decoration: none !important;
}

.store-group-link {
    cursor: pointer;
    text-decoration: none !important;
}

.store-group-thumb {
    padding: 15px;
    width: 100%;
}

.input-note {
    font-size:11px;
}

#importButton.disabled {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}


.tracker-image {
    position:absolute;
    right: 50%;
    bottom:10px;
    width: 20px;
    height: 20px;    
    display:inline;
    -webkit-animation: spin 8s linear infinite;
    -moz-animation: spin 8s linear infinite;
    animation: spin 8s linear infinite;
}
.tracker-image.disabled {
    visibility: hidden;
}
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}