﻿/* THIS IS THE CSS FOR ALL THE APPLICATION DECORATION */

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* FULL PAGE IMAGE IN LAYOUT */
.tuetr-bg {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: -1; /* BEHIND HEADER/FOOTER AND CONTENT */
    background-image: url('/static/tuetr.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* OPTIONAL: PARALLAX - LIKE EFFECT */
    opacity: 0.8; /* ADJUST FOR RELIABILITY */
    pointer-events: none; /* CLICKS GO THROUGH */
}

/* SHOW ONLY ON LARGE SCREENS (ADJUST BREAKPOINT AS NEEDED) */
@media (max-width: 991.98px) {
    .tuetr-bg {
        display: none;
    }
}

/* OPTIONAL: REDUCE CONTRAST OF THE IMAGE ON TOP OF CONTENT */
.tuetr-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.0); /* WEAK OVERLAY COLOUR/OPACITY IF NEEDED */
}

/* BODY */
body {
    margin-bottom: 60px;
    padding-bottom: 20px;
    background-color: #f8f4e8 !important;
    font-family: Arial, Helvetica, sans-serif, Verdana;
}

.bg-base {
    background-color: #f8f4e8;
}

.bg-stress {
    background-color: #ffffe6;
}

.bg-border {
    border-width: 3px;
    border-style: solid;
    border-color: #9954bb;
}

/* WHITE TOGGLER BUTTON WITH DASHES */
.navbar-toggler {
    background-color: #9955cc;
    border: 1px solid rgba(255,255,255,0.25);
}

/* WHITE DASHES ICON */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* FORMS */
.bg-form {
    background-color: #f8f4e8;
}

.big-checkbox input[type="checkbox"] {
    width: 20px;        /* ADJUST THE WIDTH AS NEEDED */
    height: 20px;       /* ADJUST THE HEIGHT AS NEEDED */
    transform: scale(1.5);      /* SCALE THE CHECKBOX */
    -webkit-transform: scale(1.5);      /* FOR SAFARI */
}

.large-input {
    font-size: 1.25rem;         /* INCREASE FONT SIZE */
    padding: 8px;       /* INCREASE PADDING */
}

.suggestions-container {
    padding-left: 20px;         /* ADJUST THE VALUE AS NEEDED */
    border: 1px solid #ccc;
    background-color: #fff;
    color: #21272E;
    max-height: 200px;
    overflow-y: auto;
}

.suggestions-container div {
    padding: 10px;
    cursor: pointer;
}

.suggestions-container div:hover {
    background-color: #f0f0f0;
}

/* FOOTER */
footer {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    white-space: nowrap;
}