/* MAIN SHOP INTERFACE */

.shop-interface {
    width: 100%;
    max-width: 656px;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    top: 50%;
}

.shop-interface div.item-container {
    height: 405px;
}

@media (max-width: 743px) {    
    .interface.shop-interface {
        width: 333px;
    }
}

@media (max-width: 400px) {    
    .interface.shop-interface {
        width: 251px;
    }
}

@media (max-height: 675px) {    
    .interface.shop-interface div.item-container {
        height: 321px;
    }
}

@media (max-height: 517px) {    
    .interface.shop-interface div.item-container {
        height: 159px;
    }
}

@media (max-height: 360px){
    .interface.shop-interface div.item-container{
        height: 117px;
    }
}

/* SHOP ITEM */

.interface.shop-item-interface h2 {
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
    background: #14a4dd;
    box-shadow: 0 1px 1px #000;
    text-shadow: 0px 1px 0px #515151;
    padding: 8px 11px 7px;
    margin: 0 4px 4px;
}

div.item-container {
    height: 483px;
    overflow-y: scroll;
}

div.item-container::-webkit-scrollbar-track {
    background-color: #cfcfcf;
    border-radius: 5px;
}

div.item-container::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

div.item-container::-webkit-scrollbar {
    width: 8px;
}

.item-holder {
    width: 76px;
    height: 76px;
    border: 1px solid #CCC;
    border-radius: 4px;
    float: left;
    margin: 0 3px 3px 0;
    position: relative;
    backface-visibility: hidden;
}

.item-holder.item-holder-loading {
    background: url('../images/mini-loader.png') no-repeat center center;
}

.item-holder.item-holder-empty {
    background: #f7f7f7;
    box-shadow: inset -1px 1px 0px 0px #e7e7e7;
}

.item-holder .item-quantity {
    position: absolute;
    font-size: 10px;
    top: 2px;
    right: 2px;
    background: #2ead90;
    color: #FFF;
    border-radius: 3px;
    width: 22px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
    z-index: 1;
}

.item-holder .childQuantity {
    position: absolute;
    font-size: 10px;
    top: 2px;
    right: 2px;
    background: #ffffff;
    color: #000;
    border-radius: 3px;
    width: 19px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
    box-shadow: 0 1px 2px #00000042;
}

.item-holder .item-equipped {
    position: absolute;
    font-size: 10px;
    top: 2px;
    left: 2px;
    background-color: #000000;
    color: #FFF;
    border-radius: 3px;
    width: 22px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
    z-index: 1;
    background-image: url(../assets/graphics/equipped-tick.png);
    background-repeat: no-repeat;
    background-position: 5px 4px;
}

.item-holder .supporterItem {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    right: 3px;
    background: url(../images/shop/icons/supporter-icon.gif) no-repeat;
    z-index: 1;
}

.shop-item-content-container .supporterItem {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    right: 4px;
    background: url(../images/shop/icons/supporter-icon.gif) no-repeat;
}

.shop-item-content-container .supporterNotice {
    font-size: 12px;
    background: #ffedc9;
    color: #71460d;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    margin: 0 0 4px 0;
    box-shadow: inset 0 0 2px #a1875b;
}

.item-holder .gemItem {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    right: 3px;
    background: url(../images/shop/icons/gem-icon.png) no-repeat;
    z-index: 1;
}

.shop-item-content-container .gemItem {
    width: 18px;
    height: 18px;
    position: absolute;
    top: -9px;
    right: 0;
    background: url(../images/shop/icons/gem-icon.png) no-repeat;
}

/* BUTTONS */

button.item-button {
    border: none;
    background: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

button.item-button:hover img{
    opacity: 0.7;
}

button.item-button img {
    max-width: 70px;
    max-height: 70px;
    min-width: 70px;
    min-height: 70px;
    /*
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges; 
    image-rendering: crisp-edges;
    */
    width: 70px; 
    height: 70px;
    backface-visibility: hidden;
}

/* SHOP ITEM */

.shop-item-interface{
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    top: 50%;
    left: 50%;
    backface-visibility: hidden;
    padding: 15px 12px;
}

.shop-item-content-container{
    position: relative;
    height: 100%;
    overflow-y: auto;
    max-height: calc(100vh - 112px);
    padding: 0 4px;
}

.shop-item-content-container::-webkit-scrollbar-track {
    background-color: #cfcfcf;
    border-radius: 5px;
}

.shop-item-content-container::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 4px;
}

.shop-item-content-container::-webkit-scrollbar {
    width: 5px;
}

/* BUY INTERFACE */

.buy-confirm-interface{
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    top: 50%;
    left: 50%;
    backface-visibility: hidden;
}

img.buy-interface-image {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    display: block;
    margin: 20px auto;
}     

img.shop-item-full-preview-only {
    margin: 28px auto 28px;
    display: block;
}

.shop-item-interface .shop-item-desc {
    background: #e5e5e5;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    padding: 10px 10px;
    margin: 0 0 10px;
}

.shop-item-interface .shop-item-coins-balance {
    font-size: 12px;
    background: #ffedc9;
    color: #71460d;
    text-align: center;
    padding: 5px;
    border-radius: 0 0 4px 4px;
    margin: 0 0 10px 0;
    box-shadow: inset 0 0 2px #a1875b;
}

.shop-item-interface input.shop-item-quantity {
    width: calc(30% - 15px);
    float: left;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 11px 10px;
    font-size: 18px;
    height: 20px;
}

input.shop-item-buy,
button.shop-item-buy {
    width: calc(70% - 15px);
    float: right;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid #0e9161;
    background: #0e9161;
    color: #FFF;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    height: 44px;
}

input.shop-item-buy:hover,
button.shop-item-buy:hover {
    background: #26b17d;
}

.buy-interface-cost {
    background: #ffbc00;
    text-align: center;
    border: 1px solid #af6b17;
    padding: 11px;
    font-size: 16px;
    margin: 0 0 0px 0;
    border-radius: 4px 4px 0 0;
}

span.buy-interface-cost-amount {
    font-weight: 600;
}

img.buy-interface-full-preview-avatar-image {
    display: block;
    margin: -23px auto 13px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

img.buy-interface-full-preview-no-small-preview {
    margin: 21px auto 20px;
}

/* BUY CONFIRM */

.buy-confirm-text {
    background: #e5e5e5;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    padding: 10px 10px;
    margin: 10px 0 10px;
}

.buy-confirm-interface button {
    width: calc(50% - 2px);
    display: block;
    float: left;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #FFF;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    height: 44px;
}

.buy-confirm-interface button:first-of-type {
    margin-right: 2px;    
}

.buy-confirm-interface button:last-of-type {
    margin-left: 2px;    
}

button#buy-confirm-button {
    border: 2px solid #0e9161;
    background: #0e9161;
}

button#buy-confirm-button:hover {
    background: #26b17d;
}

button#buy-decline-button {
    border: 2px solid #d85254;
    background: #d85254;
}

button#buy-decline-button:hover {
    background: #fe7376;
}

/* VARIATION SELECTION */

.interface.select-item-color-interface {
    z-index: 3;
    width: 251px;
    padding: 15px 15px 12px 15px;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    top: 50%;
}

.interface.select-item-color-interface h2 {
    font-size: 16px;
    padding: 9px 10px 8px;
}

.select-item-color-content-container {
    overflow-y: scroll;
    height: 243px;
    backface-visibility: hidden;
}

.select-item-color-content-container::-webkit-scrollbar-track {
    background-color: #cfcfcf;
    border-radius: 5px;
}

.select-item-color-content-container::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.select-item-color-content-container::-webkit-scrollbar {
    width: 8px;
}

#gem-shop-item-interface input.shop-item-quantity {
    width: 66px;
}

#gem-shop-item-interface button.shop-item-buy {
    width: 182px;
    float: left;
    margin-left: 5px;
}

#gem-shop-item-interface button.shop-item-buy-gift {
    width: 44px;
    background-image: url(../images/gift-icon.png);
    background-repeat: no-repeat;
    background-position: 7px 2px;
}

span.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.bulk-discounts-container {
    font-size: 12px;
    text-align: center;
    background: #ffdede;
    border: 1px solid #d28d8d;
    border-radius: 4px;
    padding: 8px;
    margin: 0 0 8px 0;
}

.bulk-discounts-container h4 {
    margin: 0;
    background: #e45b5b;
    color: #FFF;
    padding: 3px;
    border-radius: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.bulk-discounts-container p {
    margin: 8px 0;
    padding: 0 5px;
    color: #842c2c;
}

ul.bulk-discounts-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.bulk-discounts-list li {
    background: #FFF;
    margin: 2px 0 0 0;
    padding: 4px;
    border-radius: 2px;
    color: #282828;
    font-size: 14px;
    font-weight: 600;
}

.shop-item-content-container .discount-applied {
    background: #c4edde;
    padding: 7px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    margin: 0 0 8px;
    font-weight: 600;
    color: #0d6947;
    border: 1px solid #0d6947;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item-content-container  img.discount-applied-tick {
    margin-right: 7px;
}

@media (max-width: 561px) {
    #gem-shop-item-interface input.shop-item-quantity {
        width: 38px;
    }

    #gem-shop-item-interface button.shop-item-buy {
        width: calc(100% - 114px);
    }
    
    #gem-shop-item-interface button.shop-item-buy-gift {
        width: 44px;
    }
}

/* INVENTORY */

.inventory-interface {
    width: 818px;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    top: 50%;
}

.inventory-interface div.item-container {
    height: 483px;
    backface-visibility: hidden;
}

#inventory-interface .ui-tabs-nav li a,
.shop-interface .ui-tabs-nav li a {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 5px;
}

div#inventory-interface .ui-tabs-nav li.ui-state-active a {
    background: #b25af0;
}

.shop-interface .ui-tabs-nav li.ui-state-active a {
    background: #009fed;
    color: #FFF;
}

#inventory-interface .ui-tabs-nav li.ui-state-disabled {
    opacity: 0.6;
}

#inventory-interface .ui-tabs-nav li.ui-state-disabled a {
    cursor: not-allowed;
}

#item-equip-interface {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 65px);
    max-width: 250px;
}

#item-equip-interface p {
    text-align: center;
    font-size: 14px;
}

@media (max-width: 896px) {    
    .inventory-interface {
        width: 494px;
    }
}

@media (max-width: 561px) {  
    .shop-item-interface .shop-item-desc{
        font-size: 13px;
    }  

    .inventory-interface {
        width: 332px;
    }
}

@media (max-width: 400px) {   
    .shop-interface h2 {
        font-size: 18px;
    }

    .inventory-interface {
        width: 251px;
    }
}

@media (max-height: 625px) {    
    .inventory-interface div.item-container {
        height: 321px;
    }
}

@media (max-height: 460px) {    
    .inventory-interface div.item-container {
        height: 159px;
    }
}

@media (max-height: 360px){
    .inventory-interface div.item-container{
        height: 159px;
    }
}

/* EXCHANGE SHOP */

.exchange-item-interface input.shop-item-buy {
    width: 100%;
}

label.item-requirements-info-label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    background: #535252;
    padding: 4px 6px;
    margin-top: 5px;
    width: auto;
    border-radius: 4px 4px 0 0;
}

.item-requirements-container {
    overflow: hidden;
    padding: 5px 10px;
    background: #e9e9e9;
    margin-bottom: 13px;
    border-radius: 0 0 4px 4px;
}

.item-requirements-item-holder {
    margin: 4px 0;
    overflow: hidden;
}

.item-requirements-item-image-holder {
    backface-visibility: hidden;
    float: left;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 1px 1px 6px #00000030;
}

.item-requirements-item-image-holder img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

.item-requirements-item-text {
    float: right;
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    height: 70px;
    background: #f9f9f9;
    padding-left: 10px;
    font-size: 14px;
}

.exchange-item-interface .shop-item-content-container {
    overflow-y: scroll;
    padding-right: 8px;
    max-height: 450px;
}

.exchange-item-interface .shop-item-content-container::-webkit-scrollbar-track {
    background-color: #e9e9e9;
    border-radius: 5px;
}

.exchange-item-interface .shop-item-content-container::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.exchange-item-interface .shop-item-content-container::-webkit-scrollbar {
    width: 8px;
}

.exchange-item-interface .shop-item-content-container .supporterItem {
    top: 5px;
    right: 7px;
}

.npc-shop div.item-container{
    height: 324px;
}

.npc-shop #yarnblooms-exchanged-amount {
    text-align: center;
    background: #00a1e9;
    color: #FFF;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin: 4px 0 0 0;
}

@media (max-width: 500px) {  
    .item-requirements-item-image-holder {
        width: 50px;
        height: 50px;
    }
    
    .item-requirements-item-image-holder img {
        max-width: 100%;
        image-rendering: smooth; /* Standard property */
        image-rendering: -moz-crisp-edges; /* Mozilla Firefox */
        image-rendering: -webkit-optimize-contrast; /* Google Chrome, Safari, Opera */
        image-rendering: optimizeQuality; /* Microsoft Edge */
    }
    
    .item-requirements-item-text {
        width: calc(100% - 60px);
        height: 50px;
        font-size: 12px;
    }

    .npc-shop .buy-confirm-interface button{
        font-size: 11px;
    }
}

@media (max-height: 520px) {  
    .exchange-item-interface{
       height: 100%;
       max-height: calc(100vh - 65px);
    }
    
    .exchange-item-interface .shop-item-content-container {
        padding-right: 8px;
        height: calc(100vh - 108px);
    }
}

/* GEM SHOP */

div#gem-shop {
    width: 357px;
}

#gem-shop .ui-tabs-nav {
    overflow: hidden;
}

#gem-shop .ui-tabs-nav li a {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 5px;
}

#gem-shop .ui-tabs-nav li.ui-state-active a {
    background: #d647e5;
    color: #FFF;
}

#gem-shop .tab-container {
    background: #FFF;
    box-shadow: inset 0 0 4px #000;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.gem-option {
    width: calc(50% - 25px);
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    text-align: center;
    color: #FFF;
    padding: 10px;
    border-radius: 5px;
    background: #131313;
}

.gem-option-title {
    font-size: 21px;
    font-weight: 600;
    color: #f86eff;
    text-transform: uppercase;
}

.gem-option-price {
    font-size: 15px;
    margin: 0 0 5px 0;
}

.gem-option-price-info {
    font-size: 14px;
    color: #f7d44b;
    background: #2f2d2d;
    border-radius: 4px;
    margin: 3px 0;
    padding: 5px;
}

.gem-option-price-info strong {
    display: block;
    background: #3d3d3d;
    box-shadow: 0px 1px 1px #000;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 0 3px;
    margin-bottom: 5px;
    color: #FFF;
}

.gem-option button {
    border: 2px solid #edba00;
    background: #edba00;
    display: block;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 7px 0 0;
    padding: 10px 5px 8px;
    cursor: pointer;
    box-shadow: 0px 1px 1px #000;
    color: #000 !important;
}

.gem-option button:hover {
    background: #ffd436;
}

.gem-option:nth-child(5),
.gem-option:nth-child(6){
    margin-bottom: 0;
}

div#gems-paypal-content-container {
    max-height: calc(100vh - 180px);
    padding-right: 5px;
    overflow: visible;
    overflow-y: scroll;
}

div#gems-paypal-content-container::-webkit-scrollbar-track {
    background-color: #cfcfcf;
    border-radius: 5px;
}

div#gems-paypal-content-container::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

div#gems-paypal-content-container::-webkit-scrollbar {
    width: 8px;
}

p#gems-paypal-intro {
    text-align: center;
    font-size: 14px;
    margin: 2px 0 18px 2px;
    padding: 10px;
    background: #FFF;
    box-shadow: 0px 1px 4px #000;
    border-radius: 5px;
}

.gem-shop-category-tile-name {
    background: #000;
    width: 100%;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 4px 4px 6px;
}

.gem-shop-category-tile {
    width: calc(50% - 18px);
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    background: #e5e5e5;
    border: 1px solid #000;
    height: 120px;
    display: flex;
    align-items: self-end;
    justify-content: center;
    background: rgb(227,227,227);
    background: linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(249,249,249,1) 100%);
    cursor: pointer;
}

.gem-shop-category-tile-inactive .gem-shop-category-tile-name {
    background: #b9b9b9;
}

.gem-shop-category-tile.gem-shop-category-tile-inactive {
    background: #dddddd;
    box-shadow: inset 0 0 3px #00000045;
    cursor: default;
}

.gem-shop-category-tile:not(.gem-shop-category-tile-inactive):hover {
    background: #FFF;
}

.gem-shop-category-tile:not(.gem-shop-category-tile-inactive):hover .gem-shop-category-tile-name {
    background: #d647e5;
}

.gem-shop-category-instructions {
    width: calc(100% - 17px);
    background: #009fed;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    padding: 6px 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: 0 1px 1px #002637;
    text-shadow: 1px -1px 0 #0075a9;
}

button#gems-shop-back-btn {
    position: relative;
    width: calc(100% - 8px);
    margin: 0 0 6px 0;
    padding-left: 51px;
}

button#gems-shop-back-btn:before {
    content: "";
    position: absolute;
    display: block;
    width: 32px;
    height: 23px;
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -36px 0;
    top: 6px;
    left: 57px;
    pointer-events: none;
}

div#gem-shop-cat-limited-time {
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: 0 -40px;
}

div#gem-shop-cat-halloween {
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -159px -40px;
}

div#gem-shop-cat-super-rares{
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -318px -40px;
}

div#gem-shop-cat-christmas{
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -477px -40px;
}

div#gem-shop-cat-valentines{
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -636px -40px;
}

div#gem-shop-cat-easter{
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -795px -40px;
}

.gem-shop-category-tile {
    background-repeat: no-repeat;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

#gem-shop .ui-tabs-nav li {
    position: relative;
}

#gem-shop .ui-tabs-nav li:first-child a{
    padding-left: 35px;
}

#gem-shop .ui-tabs-nav li:last-child a{
    padding-left: 38px;
}

#gem-shop .ui-tabs-nav li:first-child:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 20px;
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: 0 0;
    top: 8px;
    left: 44px;
    pointer-events: none;
}

#gem-shop .ui-tabs-nav li.ui-state-active:first-child:before {
    background-position: 0 -20px;
}

#gem-shop .ui-tabs-nav li:last-child:before {
    content: "";
    position: absolute;
    display: block;
    width: 21px;
    height: 20px;
    background-image: url(../images/shop/icons/gem-shop-icons.png);
    background-position: -15px 0;
    top: 8px;
    left: 38px;
    pointer-events: none;
}

#gem-shop .ui-tabs-nav li.ui-state-active:last-child:before {
    background-position: -15px -20px;
}

.buy-interface-cost.buy-interface-gems {
    background: #d647e5;
    color: #FFF;
    border-color: #882293;
}

.shop-item-coins-balance.shop-item-gems-balance {
    background: #f9d0fb;
    box-shadow: inset 0 0 2px #8b368f;
    color: #8a2590;
}

.gem-option-bundle-image {
    width: 128px;
    height: 128px;
    overflow: hidden;
    background-image: url(../images/shop/icons/gem-bundles.png);
    background-repeat: no-repeat;
    margin: 0 auto;
}

.gems-bundle-50 {
    background-position: 0 0;
}

.gems-bundle-100 {
    background-position: -128px 0;
}

.gems-bundle-250 {
    background-position: 0 -128px;
}

.gems-bundle-500 {
    background-position: -128px -128px;
}

.gems-bundle-750 {
    background-position: 0 -256px;
}

.gems-bundle-1000 {
    background-position: -128px -256px;
}

.gems-bundle-1000:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/shop/icons/gem-bundle-1000-sparkles.gif);
}

#gem-shop-item-variations {
    position: relative;
    transform: none;
    left: inherit;
    top: inherit;
}

.points-required-label {
    background: #14a4dd;
    color: #FFF;
    font-size: 11px;
    text-align: center;
    padding: 3px;
    border: 1px solid #006187;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
}

.points-required-value {
    background: #d7f3ff;
    border-left: 1px solid #72abc2;
    border-right: 1px solid #72abc2;
    padding: 7px 5px 6px;
    text-align: center;
    font-weight: 600;
    color: #1278a0;
}

.points-required-balance {
    font-size: 12px;
    background: #c7efff;
    color: #105f7e;
    text-align: center;
    padding: 5px;
    border-radius: 0 0 4px 4px;
    margin: 0 0 6px 0;
    box-shadow: inset 0 1px 3px #72abc2;
    border-left: 1px solid #72abc2;
    border-right: 1px solid #72abc2;
    border-bottom: 1px solid #72abc2;
}

.toggle {
	display: flex;
	border: 2px solid #000000;
	border-radius: 4px;
	overflow: hidden;
	font-family: sans-serif;
	margin: 11px 0;
}

.toggle-button {
	flex: 1;
	padding: 8px 16px;
	background: white;
	color: #000000;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.toggle-button:not(.active):hover {
	background: #e0e0e0;
}

.toggle-button.active {
	background: #000000;
	color: white;
}

.shop-item-dual-currency-option div {
    background: #e5e5e5;
    display: inline-block;
    font-weight: 600;
    padding: 7px 8px 8px;
    border-radius: 100%;
    width: 18px;
    height: 17px;
    line-height: 18px;
    border: 1px solid #9f9f9f;
    font-size: 12px;
}

.shop-item-dual-currency-option {
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 0 6px 0;
    position: relative;
}

.shop-item-dual-currency-option:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
    background: linear-gradient(to right,  #ffffff 0%,#a6a6a6 50%,#ffffff 100%); 
}

.shop-item-badge-requirement {
    border: 1px solid #cccccc;
    background: #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    padding: 10px 10px;
    margin: 0 0 10px;
}

.shop-item-badge-requirement h3 {
    margin: 0;
    background: #000;
    color: #FFF;
    border-radius: 3px;
    padding: 5px;
    font-size: 12px;
    text-transform: uppercase;
}

p.shop-item-badge-requirement-text {
    font-size: 12px;
}

.shop-item-badge-requirement-badge-name {
    font-weight: 600;
}

img.shop-item-badge-requirement-image {
    border: 2px solid #000;
    border-radius: 4px;
}

.shop-item-content-container .choose-seed-entry-rarity-container {
    float: left;
    margin: 0 2px;
}

.shop-item-content-container .choose-seed-entry-rarity-value {
    font-size: 12px;
    color: #FFF;
    text-shadow: 0 1px 0px #000;
}

.shop-item-content-container .shop-item-seed-info {
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 9px;
}

@media (max-height: 675px) {    
    #gem-shop div.item-container {
        height: calc(100vh - 250px);
    }
}

@media (max-width: 435px) {    
    div#gem-shop {
        width: 273px;
    }

    #gem-shop .ui-tabs-nav li:first-child:before {
        left: 21px;
    }
    
    #gem-shop .ui-tabs-nav li:first-child a {
        padding-left: 32px;
    }
    
    #gem-shop .ui-tabs-nav li:last-child:before {
        left: 18px;
    }
    
    button#gems-shop-back-btn:before {
        left: 15px;
    }
    
    button#gems-shop-back-btn {
        padding-left: 54px;
        width: calc(100% - 5px);
    }

    #gem-shop .gem-shop-category-tile-name {
        font-size: 12px;
        padding: 4px 4px 4px;
    }

    #gem-shop .gem-shop-category-tile {
        background-position: -22px -40px;
    }

    #gem-shop div#gem-shop-cat-halloween {
        background-position: -179px -40px;
    }

    #gem-shop div#gem-shop-cat-super-rares {
        background-position: -339px -40px;
    }

    #gem-shop div#gem-shop-cat-christmas {
        background-position: -499px -40px;
    }

    #gem-shop div#gem-shop-cat-valentines {
        background-position: -656px -38px;
    }

    #gem-shop div#gem-shop-cat-easter {
        background-position: -820px -38px;
    }

    #gem-shop .gem-option {
        width: calc(100% - 25px);
        float: none;
    }
    
    #gem-shop .gem-option:nth-child(5) {
        margin-bottom: 5px;
    }
}