:root {
    /*Custom colors*/
    --hambug-pink: #f29dc7;
    --hambug-yellow: #ecefac;
    --hambug-gold: #d1cc38;
    --hambug-purple: #a316c2;
    --hambug-blue: #8e9fdc;
}

/*Hambug Company Website themed Bootstrap buttons*/
.accordion-button:not(.product-details-page), .accordion-button:not(.product-details-page):hover, .accordion-button:not(.product-details-page):focus {
    box-shadow: none;
    padding-bottom: 0px;
    padding-top: 0px;
    border: none;
}

    .accordion-button:not(.product-details-page)::after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff' style='filter: drop-shadow(0px 0.5px 2px black);'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    }

.accordion-item:not(.product-details-page) {
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 3px ridge white;
}


.btn-outline-books {
    color: var(--hambug-gold);
    border-color: var(--hambug-gold);
}

    .btn-outline-books:hover {
        color: #fff;
        background-color: var(--hambug-gold);
        border-color: var(--hambug-gold);
    }

.btn-outline-games {
    color: var(--hambug-purple);
    border-color: var(--hambug-purple);
}

    .btn-outline-games:hover {
        color: #fff;
        background-color: var(--hambug-purple);
        border-color: var(--hambug-purple);
    }

.btn-outline-records {
    color: var(--hambug-blue);
    border-color: var(--hambug-blue);
}

    .btn-outline-records:hover {
        color: #fff;
        background-color: var(--hambug-blue);
        border-color: var(--hambug-blue);
    }

.btn-close:focus {
    box-shadow: none;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-primary:visited, .btn-primary:focus-within, .btn-primary:focus-visible, .btn-primary:target {
    color: white;
    background-color: var(--hambug-pink);
    border-color: var(--hambug-pink);
    box-shadow: none;
}

    .btn-primary:disabled {
        color: white;
        background-color: gray;
        border-color: gray;
        box-shadow: none;
    }


/*Modal sizing*/
.modal-content {
    min-height: 50vh;
}

/*These are the selection cards that we use to select items throughout the sight*/
.selectionCard {
    width: 330px;
    height: 220px;
    margin: 20px;
    border-style: inset;
}

    .selectionCard:hover {
        width: 350px;
        height: 240px;
        margin: 10px;
        border-style: outset;
    }

.selectionCardAlbum {
    width: 330px;
    height: 330px;
    margin: 20px;
    border-style: inset;
}

    .selectionCardAlbum:hover {
        width: 350px;
        height: 350px;
        margin: 10px;
        border-style: outset;
    }

.selectionCardBook {
    width: 207px;
    height: 330px;
    margin: 20px;
    border-style: inset;
}

    .selectionCardBook:hover {
        width: 227px;
        height: 350px;
        margin: 10px;
        border-style: outset;
    }

@media (max-width: 993px) {
    .selectionCard, .selectionCard:hover, .selectionCardAlbum, .selectionCardAlbum:hover {
        margin-right: auto;
        margin-left: auto;
    }
}

/*Makes links not styled. https://stackoverflow.com/questions/22429881/how-to-unstyle-anchor-when-using-bootstrap*/
.link-unstyled, .link-unstyled:link, .link-unstyled:hover {
    color: inherit;
    text-decoration: inherit;
}

.nav-link, .nav-link:hover {
    color: black;
}


.textEllipses {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    max-width: 100%;
}

.video_iframe_wr {
    height: 0;
    padding-bottom: 56.25%; /* A ratio of 560/315 (that is, 1920/1080)*/
    position: relative;
}

    .video_iframe_wr > iframe {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

.pressKitNav {
    color: darkslategray;
    text-decoration: none;
}

    .pressKitNav:hover {
        color: darkslategray;
        text-decoration: none;
        background-color: lightgray;
    }

html {
    font-size: 14px;
}

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

@media (min-width: 1600px) {
    .footerTextPadding {
        margin-left: -100px;
    }
}

@media (max-width: 993px) {
    .headerSocials {
        display: none !important;
    }

    .footerTextPadding {
        margin-left: 40px;
    }
}

@media (min-width: 993px){
    .headerSocialsSmallScreen{
        display: none !important;
    }
}

@media(max-width: 650px) {
    .footerTextPadding {
        margin-left: 100px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

a.hyperlink-nostyle {
    color: inherit;
    text-decoration: none;
}

/*
    Change Hambug Company description layout based on screen size
*/
@media(max-width: 650px) {
    .smallScreenHambugCompanyDescription {
        display: inline !important;
    }

    .largeScreenHambugCompanyDescription {
        display: none !important;
    }
}
