/*
    FileName:   host-redeem-mode.css
    Copyright 2017-2021 Trinity Software Incorporated - All Rights Reserved
    REVISION HISTORY
    DATE        VER    WHO  Comments
    ----------  ----   ---  ---------------------------------------------------
    12/13/2021  1.0    DG   Added media queries to support new JS method of opening/closing side nav so we can control its size and position better on mobile
    12/22/2021  1.1    DG   Added margin under sidebar button, took off scrollbar on lower sidebar text, removed color from reward list links from skin
    12/22/2021  1.2    DG   Added more style to .slide-in-wrapper to darken background over page 
    12/22/2021  1.3    DG   Added dark overlay DIV style reverted last entry
    12/22/2021  1.4    DG   made mode title area text wrap earlier and have more line-height
    12/23/2021  1.5    DG   Worked on making slide in section smaller overall
    01/06/2022  1.6    DG   Fixing media queries for mobile & alignment issues
    01/11/2022  1.7    DG   Fixing alignment issues on bar text and adding prev page button support and z-index the rewards bar
    01/11/2022  1.8    DG   Fixing alignment issues on mobile and set button min-width
    01/11/2022  1.9    DG   Fixing alignment issues on mobile caused by flex needing a min-height
    01/11/2022  2.0    DG   new min-width on buttons
    01/14/2022  2.1    DG   show more of gift icon when panel is closed
*/


/* END REVISION HISTORY */

.slide-in-left {
    height: 100%;
    width: 550px;
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 13px 33px rgba(0, 0, 0, 0.4);
    box-shadow: 0 13px 33px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

    .slide-in-left.mySidenav_revealed {
        right: 0;
    }

.slide-in-left {
    right: -480px;
}

    .slide-in-left a:hover {
        color: #000;
    }

    .slide-in-left .closebtn {
        font-size: 50px;
        color: white;
        z-index: 5;
    }

.slide-in-wrapper {
    overflow: hidden;
}

.slide-in-overlay {
    background-color: rgba(0, 0, 0, 0.62);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
    height: 100%;
}

@media screen and (max-height: 450px) {
    .slide-in-right {
        padding-top: 15px;
    }
}

.side-header {
    background-color: #7ae3d8;
    background: #74ebd8;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#74ebd8), to(#9faee6));
    background: -o-linear-gradient(left, #74ebd8, #9faee6);
    background: linear-gradient(to right, #74ebd8, #9faee6);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 30px 30px 30px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hamberger-icon {
    display: none;
}

.side-header-title {
    margin-left: 15px;
    color: white;
    padding-right: 45px;
}

.pre-title {
    font-size: 18px;
}

.main-title {
    font-size: 33px;
}

.side-header-title .main-title {
    line-height: 40px;
}

.side-bar-icon {
    cursor: pointer;
    display: block
}

.right-dark {
    height: 100%;
    background-color: rgba(68, 68, 68, 0.20);
    width: 70px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .right-dark a {
        text-decoration: none;
        margin-top: 40px;
    }

.slide-in-content {
    display: block;
    padding: 15px 80px 30px 15px;
}

.list-headers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: solid 1px #ccc;
    padding-bottom: 15px;
}

    .list-headers .un {
        font-size: 14px;
        color: red;
    }

    .list-headers .re {
        font-size: 14px;
        color: green;
    }

.hp-instructions {
    font-size: 14px;
    margin-bottom: 50px;
    max-height: 300px;
    /*            overflow-y: auto;*/
}

.rewards-list-container {
    margin-bottom: 45px
}

.reward-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

    .reward-item a {
        text-decoration: none;
    }

    .reward-item img {
        width: 40px;
        height: 78px;
    }

.reward-item-button:link,
.reward-item-button:visited {
    background-color: #95bfe2;
    color: white !important;
    font-size: 16px;
    padding: 10px;
    width: 80%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reward-item-button:hover,
.reward-item-button:active {
    background-color: #c1cdfa;
    color: white;
}

.un-arrow {
    fill: red;
}

.re-arrow {
    fill: #3ecc1c;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 7777;
}

.reward-bar {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #eaeaea), color-stop(50%, #74ebd8));
    background: -o-linear-gradient(right, #eaeaea 50%, #74ebd8 50%);
    background: linear-gradient(to left, #eaeaea 50%, #74ebd8 50%);
}

.reward-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reward-cell {
    padding: 15px;
    border-left: 1px solid #9faee6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    min-height: 140px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    /*
    -webkit-box-pack: center;   
    -ms-flex-pack: center;   
    justify-content: flex-center;
*/
    background-color: #eaeaea;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .reward-cell p {
        margin: 5px;
    }

.title-cell {
    color: white;
    background-color: #7ae3d8;
    background: #74ebd8;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#74ebd8), to(#9faee6));
    background: -o-linear-gradient(left, #74ebd8, #9faee6);
    background: linear-gradient(to right, #74ebd8, #9faee6);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-left: none;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .title-cell img {
        width: 40px;
        margin-right: 10px
    }

a.reward-button:link,
a.reward-button:visited {
    background-color: #9faee6;
    padding: 3px 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    margin: 2px 0;
    min-width: 180px !important;
}

a.reward-button:hover,
a.reward-button:active {
    background-color: #c1cdfa;
    color: white;
}

a.reward-button.unredeem-reward:link,
a.reward-button.unredeem-reward:visited {
    background-color: #575757;
    padding: 3px 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    margin: 2px 0;
}

a.reward-button.unredeem-reward:hover,
a.reward-button.unredeem-reward:active {
    background-color: #838383;
    color: white;
}

a.reward-button.prev-page:link,
a.reward-button.prev-page:visited {
    background-color: #65bfb6;
    padding: 3px 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    margin: 2px 0;
}

a.reward-button.prev-page:hover,
a.reward-button.prev-page:active {
    background-color: #9ee8e0;
    color: white;
}





.slide-in-left a.reward-button:link,
.slide-in-left a.reward-button:visited {
    background-color: #9faee6;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin: 0 auto;
    display: block;
    max-width: 200px;
    font-size: 16px;
    margin-bottom: 30px !important;
}

.slide-in-left a.reward-button:hover,
.slide-in-left a.reward-button:active {
    background-color: #c1cdfa;
    color: white;
}

.title-cell .pre-title {
    font-size: 12px;
}

.title-cell .main-title {
    font-size: 21px;
    max-width: 250px
}

.cell-4 {
    padding-right: 150px
}

.cell-2 {
    border: none;
}

.mobile-open {
    display: none;
}

/*
div.trunc {
    white-space: nowrap;
    width: 400px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    position: relative;
    z-index: 99999999;
}

div.trunc:hover {
    overflow: visible;
    margin-bottom: 25px
}

div.trunc:hover span {
    background-color: white;
    border: 1px solid #000000;
    color: #444;
    z-index: 99999999;
    padding: 5px;
    display: inline-block;
    position: fixed;
    border-radius: 10px;
    width: 350px;
    white-space: pre-wrap;
}
*/

@media only screen and (max-width: 700px) {
    .right-dark {
        width: 40px;
    }

    .mobile-open {
        display: inline;
        position: relative;
        right: 0;
    }

    .reward-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .reward-cell,
    .title-cell {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%;
    }

    .reward-cell {
        border-left: 0px solid #9faee6;
        min-height: 30px;
        padding: 5px;
        text-align: center;
    }

    .title-cell {
        border-bottom: none;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .cell-2,
    .cell-3 {
        width: 50%;
        min-height: 100px;
    }

    .cell-4 {
        width: 100%;
        border: none;
        border-top: 1px solid #9faee6;
    }

    .reward-cell p {
        font-size: 13px;
    }

    .slide-in-left {
        /*                width: 395px;*/
        width: 94%
    }

        .slide-in-left.mySidenav_revealed {
            right: 0;
        }

    .slide-in-left {
        right: -500px;
        /*        right: -600px;*/
    }
}

@media only screen and (max-width: 1000px) {
    .reward-cell p {
        font-size: 13px;
    }

    .reward-bar {
        background: #eaeaea !important;
    }
}


/*
@media only screen and (max-width: 1000px) {
   
}
*/
