﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.no-padding {
    margin: -.5rem !important;
    
}

.template {
    display: none !important;
}

.navbar-nav .nav-link {
    border-radius: 10px !important;
    border: 2px solid #f9f9f9 !important;
    padding: 1px 10px 1px 10px !important;
    font-size: 11pt !important;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.navbar-nav .nav-link:hover {
    background-color: #f9f9f9 !important;
    color: #f19dc2 !important
}

.tab {
    display: none;
}

.popover {
    white-space: nowrap;
}

/* FILLER ADS */

.display:not(:first-of-type), .display-group:not(:first-of-type) {
    border-top: 1px solid #ccc;
    margin-top: 25px;
}

.display .ads, .display-group .ads {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
}

.filler {
    border: 3px solid rgb(30,140,200);
    border-radius: 10px;
    margin: 10px;
    height: 100px;
    max-height: 100px;
    cursor: pointer;
    overflow: hidden;
}

.fillerad {
    min-width: 174px;
    width: 174px;
    height: 100px;
    max-height: 100px;
    overflow: hidden;
}

.fillerad.add i {
    margin: auto;
    font-size: 57px;
    margin-left: 54px;
}

.fillerad.video {
    overflow: hidden;
}

.fillerad.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative; /* magic sauce */
    z-index: 5;
    left: 0;
    top: 0;
}

.fillerad.image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fadeIn {
    animation: fadeInFromNone 0.5s ease-out;
    animation-fill-mode: forwards;
}


@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* DROP ZONE FOR FILES */

.image-drop {
    background-size: cover;
    background-position: center;
}

.dropzone {
    border: 3px dashed #00a1f1;
    background-color: #F0F8FF;
    min-height: 80px;
    border-radius: 8px;
    width: 100%;
    padding: 5%;
    text-align: left;
}

    .dropzone button {
        background: transparent;
        padding: 5px;
        color: #00a1f1;
        font-weight: bold;
        border: none;
    }

    .dropzone .dz-message {
        font-weight: bold;
        text-align: center;
        width: 100%;
    }

        .dropzone .dz-message .note {
            font-size: 18px;
            font-weight: 200;
            display: block;
            padding: 40px;
        }

.dz-progress {
    margin-top: 15px;
    height: 20px;
    text-align: center;
}

.dz-upload {
    height: 10px;
    padding: 10px;
    background: #00a1f1;
    color: #fff;
    width: 60%;
    border-radius: 5px;
}

.dz-success-mark {
    display: none;
}

.dz-error-mark {
    display: none;
}

.image-drop .dz-preview {
    display: none;
}