.lb-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000000000;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    animation: overlay-fade-in .4s linear;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lb-modal {
    display: block;
    width: 100%;
    max-width: 280px;
    height: 100%;
    max-height: 320px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .lb-modal {
        max-width: 385px;
        max-height: 445px;
    }
}

.lb-modal__container {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lb-modal__bg-image {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.lb-modal__title {
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    width: 184px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 50px;
    z-index: 2;
    padding: 0 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lb-modal__title.low {
    color: #381501;
}

.lb-modal__title.middle {
    color: #333333;
}

.lb-modal__title.top {
    color: #381501;
}

.lb-modal__title.low.freebie {
    color: #00379A;
}

.lb-modal__title.middle.freebie {
    color: #850049;
}

@media screen and (min-width: 768px) {
    .lb-modal__title {
        font-size: 20px;
        line-height: 26px;
        top: 60px;
        width: 217px;
    }
}

.lb-modal__button {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: inline-block;
    width: auto;
    min-width: 90px;
    height: 30px;
    padding: 5px 10px;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 50px;
    z-index: 2;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lb-modal__button.low {
    color: #FFFFFF;
    box-shadow: 0px 4px 7px 0px rgba(58, 33, 19, 0.70);
    background: linear-gradient(0deg, #92644B -37.33%, #613A25 17.48%, #9E7056 70.79%, #D9A386 112.09%);
}

.lb-modal__button.low:hover {
    background: linear-gradient(0deg, #A8755A -37.33%, #75462D 17.48%, #AE7C60 70.79%, #EBB496 112.09%);
}

.lb-modal__button.low:active {
    background: linear-gradient(180deg, #613A25 16.54%, #9E7056 79%, #D9A386 127.4%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}

.lb-modal__button.low:disabled {
    color: #6B432D;
    background: linear-gradient(180deg, #613A25 16.54%, #9E7056 79%, #D9A386 127.4%);
    box-shadow: none;
}

.lb-modal__button.low.freebie {
    color: #FFFFFF;
    background: linear-gradient(0deg, #1164C7 -37.33%, #003572 17.48%, #1861A4 70.79%, #2DB0FA 112.09%);
    box-shadow: 0px 4px 7px 0px rgba(2, 26, 62, 0.70);
}

.lb-modal__button.low.freebie:hover {
    color: #013675;
    background: linear-gradient(0deg, #1272E2 -37.33%, #003E87 17.48%, #1D74C5 70.79%, #6AC9FF 112.09%);
    box-shadow: 0px 4px 7px 0px rgba(2, 26, 62, 0.70);
}

.lb-modal__button.low.freebie:active {
    color: #013675;
    background: linear-gradient(180deg, #023878 16.54%, #105BA7 79%, #51ADEC 127.4%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}

.lb-modal__button.low.freebie:disabled {
    color: #013675;
    background: linear-gradient(180deg, #053F81 16.54%, #115AA6 79%, #2982D0 127.4%);
}

.lb-modal__button.middle {
    color: #FFFFFF;
    background: linear-gradient(360deg, #909090 -32.39%, #575757 16.87%, #B9B9B9 79.64%, #D3D4D3 106.61%);
    box-shadow: 0px 4px 7px 0px #575757;
}

.lb-modal__button.middle:hover {
    background: linear-gradient(0deg, #E3E3E3 -32.39%, #6A6A6A 16.87%, #D2D3D2 79.64%, #E3E3E3 106.61%);
}

.lb-modal__button.middle:active {
    background: linear-gradient(180deg, #505050 0%, #D7D7D7 139.47%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}

.lb-modal__button.middle:disabled {
    color: #5F5F5F;
    background: linear-gradient(180deg, #505050 0%, #D7D7D7 139.47%);
    box-shadow: none;
}


.lb-modal__button.middle.freebie {
    color: #FFFFFF;
    background: linear-gradient(0deg, #D60FA9 -37.33%, #720052 17.48%, #A4187C 70.79%, #FF29B6 112.09%);
    box-shadow: 0px 4px 7px 0px rgba(62, 2, 38, 0.70);
}

.lb-modal__button.middle.freebie:hover {
    background: linear-gradient(0deg, #E212A8 -37.33%, #870059 17.48%, #C51D8C 70.79%, #FF6ACC 112.09%);
}

.lb-modal__button.middle.freebie:active {
    background: linear-gradient(180deg, #750255 16.54%, #9D1577 79%, #D735A0 127.4%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}

.lb-modal__button.middle.freebie:disabled {
    color: #690347;
    background: linear-gradient(180deg, #81055E 16.54%, #A6117C 79%, #DF2BAD 127.4%);
}

.lb-modal__button.top {
    color: #FFFFFF;
    background: linear-gradient(0deg, #EDC96A -32.39%, #9F6C0C 13.95%, #DFB83C 76.23%, #FFFFA0 106.61%);
    box-shadow: 0px 4px 7px 0px #8B5A04;
}

.lb-modal__button.top:hover {
    background: linear-gradient(0deg, #FFFFB4 -32.39%, #BB8217 13.95%, #FFD85C 76.23%, #FFFFB4 106.61%);
    box-shadow: 0px 4px 7px 0px #8B5A04;
}

.lb-modal__button.top:active {
    background: linear-gradient(0deg, #EFCA54 -12.17%, #9F6C0C 100%);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}

.lb-modal__button.top:disabled {
    color: #A47211;
    background: linear-gradient(360deg, #EFCA54 -12.17%, #9F6C0C 100%);
    box-shadow: none;
}

@media screen and (min-width: 768px) {
    .lb-modal__button {
        font-size: 14px;
        line-height: 20px;
        min-width: 110px;
        height: 40px;
        padding: 6px 12px;
        bottom: 70px;
    }
}

/*Gifts*/

.lb-gifts {
    background: linear-gradient(180deg, #755F52 -8.5%, #D0C6C1 10.3%, #FFFFFF 24.58%, #FFFFFF 46.96%, #FFFFFF 70.04%, #D0C6C1 86.7%, #755E52 106%);
    border-radius: 15px;
    display: block;
    width: 222px;
    height: 90px;
    position: absolute;
    transform: translateX(-50%);
    top: 98px;
    left: 50%;
    overflow: hidden;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .lb-gifts {
        width: 310px;
        height: 120px;
        top: 140px;
    }
}

.lb-gifts-container {
    display: block;
    width: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lb-gift-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .lb-gift-item {
        height: 120px;
    }
}

.lb-gift-item:before, .lb-gift-item:after {
    content: '';
    display: block;
    width: 6px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.lb-gift-item.green:before, .lb-gift-item.green:after {
    background: linear-gradient(180deg, #00491F 0%, #2ECC71 41.15%, #2ECC71 59.37%, #00491F 100%);
}

.lb-gift-item.lightBlue:before, .lb-gift-item.lightBlue:after {
    background: linear-gradient(180deg, #015165 0%, #00CCFE 41.15%, #00CCFE 59.37%, #015165 100%);
}

.lb-gift-item.blue:before, .lb-gift-item.blue:after {
    background: linear-gradient(180deg, #001048 0%, #002ABF 41.15%, #002ABF 59.37%, #001048 100%);
}

.lb-gift-item.purple:before, .lb-gift-item.purple:after {
    background: linear-gradient(180deg, #370062 0%, #8500EE 41.15%, #8500EE 59.37%, #370062 100%);
}

.lb-gift-item.orange:before, .lb-gift-item.orange:after {
    background: linear-gradient(180deg, #291100 0%, #FF6B00 41.15%, #FF6B00 59.37%, #291100 100%);
}

.lb-gift-item.gold:before, .lb-gift-item.gold:after {
    background: linear-gradient(180deg, #000 4%, #B38020 15.52%, #FBDB7B 23.2%, #E3BC5C 27.04%, #D1A545 29.92%, #C49434 32.8%, #BC8A2A 36.64%, #BA8727 41.44%, #FFFF9F 63.52%, #FFFF9F 80.8%, #FDF696 81.76%, #F3C060 82.72%, #000 100%);
}

.lb-gift-item:before {
    left: 0;
}

.lb-gift-item:after {
    right: 0;
}

.lb-gift-item-image {
    display: block;
    margin: auto;
    max-height: 60px;
}

@media screen and (min-width: 768px) {
    .lb-gift-item-image {
        max-height: 65px;
    }
}

.lb-gifts-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    line-height: 20px;
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    left: 50%;
    bottom: 97px;
    z-index: 2;
    width: 220px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 768px) {
    .lb-gifts-name {
        font-size: 14px;
        bottom: 139px;
        width: 306px;
        text-align: center;
    }
}

.lb-gifts-name.low {
    color: #704832;
}

.lb-gifts-name.middle {
    color: #929292;
}

.lb-gifts-name.top {
    color: #866019;
}

.lb-gifts-name.low.freebie {
    color: #00144e
}

.lb-gifts-name.middle.freebie {
    color: #51003a
}

@keyframes overlay-fade-in {
    from {
        opacity: 0;
    }
}
