/* =========================
   Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-size: 14px;
    line-height: 1.47;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    min-width: 1000px;
    user-select: auto;
}

a,
button,
input,
li,
p,
ul {
    list-style: none;
    text-decoration: none;
    border: none;
    background: none;
    outline: none;
}

/* =========================
   Flex Utilities
========================= */
.flex { display: flex; }
.flex_1 { flex: 1; }
.direction-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.shrink_1 { flex-shrink: 1; }
.shrink_0 { flex-shrink: 0; }

/* =========================
   Layout
========================= */
.page-wrapper {
    height: 100%;
}

.header {
    height: 51px;
    padding: 0 20px;
}

.header-linkouts {
    position: relative;
}

.linkouts-list > li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-out {
    padding: 36px 15px 7px 61px;
    cursor: pointer;
    position: relative;
    filter: grayscale(100%);
}

.link-out:hover {
    filter: none;
}

.link-out-icon {
    margin-right: 5px;
}

/* =========================
   Main Content
========================= */
.main-content {
    height: 100%;
    position: relative;
    overflow: auto;
}

.searchContent {
    margin: 70px 10px 0;
    width: 640px;
}

/* =========================
   Timer
========================= */
.timer-widget {
    margin-bottom: 20px;
    min-height: 20px;
}

.currenttime {
    color: #747477;
    font-size: 14px;
}

.time {
    font-weight: 300;
    font-size: 3.625rem;
    color: #949192;
    line-height: 1;
    text-transform: uppercase;
}

/* =========================
   Google-Style Search
========================= */

.search-form {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    height: 56px;
    padding: 0 60px 0 24px;
    font-size: 18px;
    border-radius: 50px;
    border: 1px solid #dfe1e5;
    background: #fff;
    cursor: text;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hover elevation */
.search-input:hover {
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
}

/* Focus elevation */
.search-input:focus {
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    border-color: rgba(223,225,229,0);
}

/* Placeholder styling */
.search-input::placeholder {
    color: #9aa0a6;
    transition: opacity 0.2s ease;
}

.search-input:focus::placeholder {
    opacity: 0.4;
}

/* Search Button (inside input) */
.search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    color: #202124;
}

.search-button svg {
    fill: currentColor;
}

/* =========================
   Footer
========================= */
.footer ul {
    display: flex;
    padding: 20px 10px;
}

.footer ul li {
    padding: 0 10px;
    font-size: 10px;
}

.footer ul li a {
    color: #a7a7a7;
}

.footer ul li a:hover {
    text-decoration: underline;
}
