html {
    height: 100%;
}

body {
    background-color: #dce2f2;
    padding: 0;
    margin: 0;
    height: calc(100vh - 164px);
    font-family: 'Barlow', sans-serif;
    color: #555;
    overflow-x: hidden;
}

header {
    margin-bottom: 10px;
}

.logo-font {
    text-transform: uppercase;
}

.text-black {
    color: #000 !important;
}

.border-black {
    color: #000 !important;
}

#home-page-image {
    width: 25%;
}

.platform-selector {
    height: 25%;
    position: relative;
}

.platform-selector h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    -ms-transform: translateY(-50%, -50%);
}

.platform-link {
    color: white;
    text-decoration: none;
}

.platform-link:hover {
    color: #1a1919;
}

.product-card {
    margin-top: 20px;
    margin-bottom: 105px;
}

.card-img-container {
    overflow: hidden;
}

.btn-black {
    background: black;
    color: white;
}

.btn-outline-black {
    background: white;
    color: black !important;
    border: 1px solid black;
}

.btn-outline-black:hover,
.btn-outline-black:active,
.btn-outline-black:focus {
    background: black;
    color: white !important;
}

.update-link,
.remove-item {
    text-decoration: none;
    cursor: pointer;
}

#policy-container {
    padding-bottom: 100px;
}

#returns-policy {
    margin-bottom: 2%;
}

#front-page-hero-img {
    border-radius: 20%;
}

#xbox-container {
    background-color: #107c10;
}

#ps-container {
    background-color: #0070cc;
}

#pc-container {
    background-color: #e70014;
}

#board-container {
    background-color: #960d88;
}

#all-product-selector {
    background-color: #d66163;
}

#template-header {
    background-color: #9DD6A8;
    border-bottom: 1px solid black;
}

#template-footer {
    background-color: #BDBDBD;
    border-top: 1px solid black;
}

#footer-list {
    margin-bottom: 0;
}

#education-disclaimer {
    color: black;
}

#bag-quantity-selector {
    max-width: 30%;
}

/* toasts */
.message-container {
    position: fixed;
    top: 72px;
    right: 15px;
    z-index: 999;
}

.custom-toast {
    overflow: visible;
}

.toast-capper {
    height: 2px;
}

/* Allauth */

.allauth-form-inner-content p {
    margin-top: 1.5rem;
    color: #6C757D;
}

.allauth-form-inner-content label:not([for='id_remember']) {
    display: none;
}

.allauth-form-inner-content button {
    border: 1px solid black;
}

.allauth-form-inner-content button:hover {
    background-color: #BDBDBD;
}

/* Media Queries */

@media (min-width: 768px) {
    .platform-selector {
        height: 50%;
    }
}

@media (max-width: 767px) {
    .platform-selector {
        height: 60px;
    }
    .custom-toast {
        width: 90%;
        margin-left: 3%;
    }
    #bag-container {
        font-size: 0.85rem;
    }
}