/*----------------------------------------*/
/*  INFO
/*----------------------------------------*/

/*  Media Queries:          320px, 480px, 768px, 1024px, 1200px
*/

/*----------------------------------------*/
/*  BODY
/*----------------------------------------*/

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/*----------------------------------------*/
/*  FLEX
/*----------------------------------------*/

.bb-flex {
    display: flex;
}

.bb-flex-column {
    display: flex;
    flex-direction: column;
}

.bb-flex-row {
    display: flex;
    flex-direction: row;
}

.bb-flex-left {
    align-items: flex-start;
    text-align: left;
}

.bb-flex-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bb-flex-right {
    align-items: flex-end;
    text-align: right;
}

.bb-flex-top {
    justify-content: flex-start;
    text-align: top;
}

.bb-flex-bottom {
    justify-content: flex-end;
    text-align: bottom;
}

/*----------------------------------------*/
/*  ELLIPSIS
/*----------------------------------------*/

.ellipsis-default {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*----------------------------------------*/
/*  NAVIGATION
/*----------------------------------------*/

.bb-out {
    width: 100%;
    margin: 25px 0;
}

.bb-in {
    max-width: 1300px;
    margin: 0 auto;
    gap: 25px;
    padding: 0 25px;
    height: 50px;
}

.bb-products {
    flex-grow: 1;
    background: #171d24;
    border: 1px solid #171d24;
    border-radius: 5px;
    height: 100%;
}

.bb-product-link {
    height: 100%;
    background: transparent;
}
.bb-product-link:first-child {
    border-radius: 5px 0 0 5px;
}
.bb-product-link:last-child {
    border-radius: 0 5px 5px 0;
}
.bb-product-link:hover {
    background: #202831;
}

/*----------------------------------------*/
/*  BOTTIE LOGO
/*----------------------------------------*/

.bb-bottie-logo,
.bb-bottie-logo-mobile {
    min-height: 40px;
}

.bb-bottie-logo-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .bb-bottie-logo-mobile {
        display: flex;
    }

    .bb-bottie-logo {
        display: none;
    }
}

@media (max-width: 380px) {
    .bb-products,
    .bb-bottie-logo-mobile {
        display: none;
    }

    .bb-bottie-logo {
        display: flex;
    }

    .bb-logo {
        flex-grow: 1;
        justify-content: flex-start;
    }
}

@media (max-width: 340px) {
    .bb-bottie-logo-mobile {
        display: flex;
    }

    .bb-bottie-logo {
        display: none;
    }
}

/*----------------------------------------*/
/*  PRODUCT LOGOS
/*----------------------------------------*/

.bb-product-img-mobile {
    display: none;
}

@media (max-width: 768px) {
    .bb-product-img-mobile {
        display: flex;
    }

    .bb-product-img {
        display: none;
    }
}

/*----------------------------------------*/
/*  BUTTON
/*----------------------------------------*/

.bb-mobile-button,
.bb-button {
    display: block;
    background: #0074e0;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    text-transform: none;
    border: 3px solid #0074e0;
    padding: 8px 18px;
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin: 0 auto 0 auto !important;
    height: 50px;
    cursor: pointer;
    max-width: 130px;
}
.bb-mobile-button:hover,
.bb-button:hover {
    background: #0074e0;
    color: #fff;
    border: 3px solid #47a6ff;
}
.bb-mobile-button:disabled,
.bb-button:disabled {
    background-color: #43474b;
    border: 3px solid #323538;
    color: #818181;
}

.bb-mobile-button {
    display:none;
}

@media (max-width: 480px) {
    .bb-button {
        display: none;
    }
    
    .bb-mobile-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/*----------------------------------------*/
/*  ACCOUNT BUTTON
/*----------------------------------------*/

.bb-account-button {
    width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.bb-account-button-loggedin {
    background: #171d24 !important;
    border: 3px solid #204970 !important;
    color: #fff !important;
    height: 50px;
    padding: 7px 15px;
}
.bb-account-button-loggedin-username {
    font-size: 16px;
    justify-content: center;
    line-height: 17px;
}
.bb-account-button-loggedin-info {
    display: inline-block;
    font-size: 10px;
    font-weight: 1;
    justify-content: center;
    margin-top: 1px;
}
.bb-account-button-loggedin:hover{
    color: #0074e0 !important;
    border: 3px solid #47a6ff !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .bb-account-button {
        width: 100% !important;
    }
}

/*----------------------------------------*/
/*  MOBILE MENU
/*----------------------------------------*/

.bb-mobile-menu {
    display: none;
    width: auto;
    height: 50px;
}

@media (max-width: 768px) {
    .bb-btn-hideable {
        display: none;
    }
    
    .bb-mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: right;
    }
}