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;
}

/*Custom*/

.photo-zoom-page {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 16px;
}

.photo-viewer {
    position: relative;
    width: 360px;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
    touch-action: none;
    border-radius: 8px;
    background: #111827;
}

.photo-preview {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.photo-watermark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform: rotate(-25deg);
    color: rgba(255, 255, 255, 0.45);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.zoom-lens {
    position: absolute;
    display: none;
    border: 2px solid #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 5;
}