﻿@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.btn-reply {
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    border-radius: 999px;
    height: 40px;
    overflow: hidden;
    transition: all 0.3s;
    border: none;
    padding: 0;
    text-decoration: none;
}

.reply-icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    height: 100%;
    padding: 0 6px;
    border-radius: 999px 0 0 999px;
}

.reply-text-section {
    padding: 0 16px;
    color: #fff;
}

.btn-4 {
    background: #34495e;
    color: #fff;
    border-radius: 999px;
}

.btn-4:hover {
    background: #34495e;
}

.btn-4:hover .reply-text-section {
    color: #cfd8e3;
}

.btn-4:hover .reply-icon-section {
    background: rgba(0,0,0,0.2);
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn-forumSearch {
    background: none !important;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

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

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-image: url(../images/wp4702128-718090007.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

@keyframes burstOut {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}

@keyframes ringExpand {
  0% {
    transform: scale(0.3);
    opacity: 0.9;
    border-width: 3px;
    box-shadow: 0 0 12px #ff4d6d, inset 0 0 8px rgba(255,77,109,0.3);
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
    border-width: 1px;
    box-shadow: 0 0 0px transparent;
  }
}

@keyframes ringExpandOuter {
  0% {
    transform: scale(0.3);
    opacity: 0.7;
    border-width: 2px;
    box-shadow: 0 0 16px #ff8fa3, inset 0 0 6px rgba(255,143,163,0.2);
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
    border-width: 0.5px;
    box-shadow: 0 0 0px transparent;
  }
}

@keyframes popWiggle {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.35); }
  50%  { transform: scale(0.9); }
  75%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}