﻿body {
    margin: 0 0 55px 0;
}

.nav-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #f4f6f9;
    display: flex;
    overflow-x: auto;
}

.navbt {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #E7F5FF;
    display: flex;
    overflow-x: auto;
}

.navbt__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 13px;
    color: #B3B3B3;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}

.navbt__link:hover {
    background-color: #eeeeee;
}

.navbt__link--active {
    color: #00AEEF;
}

.navbt__icon {
    font-size: 18px;
}

.navbt-badge {
    FONT-VARIANT: JIS04;
    font-size: .6rem;
    font-weight: 300;
    padding: 2px 4px;
    position: absolute;
    /* right: 0px; */
    top: 3px;
}

.content-menu {
    margin-top: calc(3.5rem + 1px);
}

.progress-bar.animate {
    width: 100%;
}

.image-preview {
    width: 300px;
    min-height: 100px;
    border: 2px solid #dddddd;
    margin-top: 10px;

    display: flexbox;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #cccccc;
}

.image-preview__image {
    display: none;
    width: 100%;
}

.img-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.img-container img {
    width: 100%;
    height: auto;
}

.img-container .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.img-container .mini {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: rgb(214, 255, 222);
    color: rgb(3, 172, 14);
    font-size: 10px;
    padding: 2px 4px;
    border: none;
    border-radius: 5px;
    text-align: center;
    height: 20px;
    width: 70px;
}

.img-container .btn:hover {
    background-color: black;
}

