/*
==============================
BASICS
==============================
*/

::selection {
    background: #263238;
    color: #fff;
}

/*
==============================
SCROLLBAR
==============================
*/

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #263238;
  border-radius: 10px;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*
==============================
NAV BAR
==============================
*/

.brand-logo {
    /* position: absolute; */
    color: #fff;
    display: inline-block;
    font-weight: 700;
    font-size: 2.1rem;
    padding: 0;
    transition: 1s;
}

.brand-logo:hover {
    color: #26a69a;
}

.flex {
    display: flex;
    align-items: center;
    height: 84px;
}

/*
==============================
SECTION
==============================
*/

.nextButton, 
.backButton {
    position: fixed;
    top: 50%;
    z-index: 999;
}

.nextButton {
    right: 30px;
}

.backButton {
    left: 30px;
}

section {
    margin: 15px 0;
    position: relative;
}

.mason-sizer, 
.mason-item { 
    width: calc(50% - 15px); 
    margin-bottom: 15px;
}

.mason-item {
    background: #efefef;
    padding: 15px;
    transition: transform 1s;
    box-shadow: 0px 3px 5px #ccc;
}

.mason-item h2 {
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-top: 10.63px 0;
}

.mason-item p {
    margin-top: 0px;
}

.mason-item img {
    width: 100%;
}

.mason-item:hover {
    transform: scale(1.025);
}

.mason-item .btn {
    float: right;
}

.dateSpan {
    color: #999;
    font-family: monospace;
    font-size: 1.78rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 0;
}

.dateSpan::before {
    content: ' ';
}

/*
==============================
INPUT FIELD
==============================
*/

#refreshDate {
    cursor: pointer;
}

input {
    color: #fff;
    font-weight: 300;
}

input:hover {
    color: #26a69a;
}

.datepicker-date-display {
    background: #263238;
}

.datepicker-controls .select-month input {
    color: #000;
    width: 100%;
}

.datepicker-controls .select-year input {
    display: none;
}

.datepicker-date-display .year-text {
    display: none;
}

/*
==============================
FOOTER
==============================
*/

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer a:hover {
    color: #26a69a;
    transition: 1.5s all;
}

footer a:hover::after {
    color: #26a69a;
    content: ' »'
}