/*
Theme Name: Rummy Bonus App Theme
Author: Automattic
Description: Rummy Bonus App Theme block theme assembled by @automattic/blocks-engine.
Version: 0.1.0
Requires at least: 6.5
Requires PHP: 8.0
License: GPL-3.0-or-later
Text Domain: rummy-theme
Tags: block-theme, full-site-editing
*/
/* wp-compat: neutralize WP wrapper interference for carried source CSS */
/* NOTE deliberately NO .wp-block-template-part{display:contents} here: our
   parts use tagName header/footer, so the wrapper IS the semantic element —
   display:contents would destroy the box that source header{}/footer{} rules
   lay out (class specificity beats the element selector regardless of order).
   NOTE also deliberately NO blanket child-margin zeroing: the source relies on
   browser-default element margins (p, h1-h6, ul) — zeroing layout children
   collapsed the source's vertical rhythm. Blocks render as the same semantic
   elements, so the defaults already match. */
:where(body) { margin: 0; }
/* WP renders site-title as a <p> (default margins the source brand <a> never
   had) and wraps tables in a margined <figure>. Zero-spec so source rules win.
   The table figure is emitted CLASSLESS (block-library's .wp-block-table
   td/th rules would out-rank source element rules), so target it via :has. */
:where(.wp-block-site-title) { margin: 0; }
:where(figure:has(> table)) { margin: 0; }
/* Structural transparency for core/navigation: the source styles nav > a
   directly, while WP renders nav > ul > li > a. Collapsing the list boxes
   makes the anchors direct flex items of <nav>, so the source nav rules
   (display/gap/wrap/justify) drive the exact same geometry. Class-level
   specificity is required — block-library sets display:flex on these at
   (0,1,0)+ and a zero-spec :where loses (probe: anchors stayed inside the
   ul, justify-content flex-start left-packed the rows). Safe: source
   stylesheets never target wp-* classes. */
nav.wp-block-navigation ul, nav.wp-block-navigation li { display: contents; }
/* WP sets .wp-block-post-content{display:flow-root}, which BLOCKS the
   margin collapse the source layout relies on (last section margin-bottom
   collapsing with the footer margin-top — walrus probe: footer sat 88px
   lower). Class-level specificity is required to beat WP's own class rule;
   safe because no source stylesheet targets a wp-* class. */
.wp-block-post-content { display: block; }
/* core/button renders TWO boxes: the source button class lands on the
   .wp-block-button WRAPPER (core/button stores className there; the fixer
   strips it off the inner link), so the carried .btn/.btn-* rules style the
   wrapper pill — while the inner .wp-block-button__link still carries BOTH WP's
   default button chrome (fill bg + padding + radius) AND the carried source
   button class the emitter writes onto the link (a .btn box-shadow of 6px 6px 0
   ink casts a hard offset shadow behind the label — the double-border bug). Strip the
   inner link's whole box (incl. box-shadow) so the carried wrapper style renders
   once. The lib-cta marker (emit-blocks) scopes this to carried
   buttons so genuine native core/button blocks keep their chrome; class-level
   specificity beats WP's :where()/global-styles button defaults, and source
   stylesheets never target wp-* classes. */
.wp-block-button.lib-cta > .wp-block-button__link {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}
/* wp-compat: reveal gates need JS that is not carried yet, so render them visible */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger > *,
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}
@import url(../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(style.css);
@import url(footer.css);

a,
body {
    color: #333
}

.html {
    font-size: 100px;
}

.s_txt {
    color: #003a92;
    line-height: .36rem;
    font-weight: 700;
    font-size: .2rem
}

.s_span {
    color: green;
    font-weight: 900
}

.s_em {
    color: red;
    font-size: .24rem;
    font-weight: 900;
    opacity: .8
}

.s_grade i {
    display: inline-block;
    width: .2rem;
    height: .26rem;
    background-position: -1.94rem -1.7rem;
    position: relative;
    top: .0rem;
    margin-right: .04rem
}

.s_grade {
    color: #00acee;
    line-height: .32rem;
    font-weight: 900
}

.s_name {
    font-size: .3rem;
    color: #454545;
    line-height: .48rem;
    font-weight: 700
}

.s_info {
    margin: 0 .28rem 0 .18rem
}

.s_num {
    display: block;
    width: .36rem;
    height: .58rem;
    font-weight: 700;
    font-size: .32rem;
    color: #cecece;
    line-height: .45rem;
    text-align: center;
    position: relative;
    top: .35rem;
    left: 0;
    margin-right: .2rem
}

.s_img {
    display: block;
    width: 1.18rem;
    height: 1.18rem;
    border-radius: .18rem
}

#searchResults {
    padding-left: 10px;
    padding-right: 10px
}

.search_li {
    padding-top: .17rem;
    padding-bottom: .17rem;
    border-bottom: .007rem solid #e3e3e3;
    align-items: center
}

.search_btn {
    display: block;
    line-height: .55rem;
    margin: 0 Auto;
    border-radius: .06rem;
    color: #fff;
    font-size: .24rem;
    text-align: center;
    width: 2.05rem;
    height: .55rem;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    Border-radius: .1rem
}

.headerNav,
.wrap {
    width: 100%;
    max-width: 7.5rem
}

body,
header {
    position: relative
}

.headerNav,
.headerNav .mask {
    top: .9rem;
    position: absolute
}

blockquote,
body,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
td,
th,
ul {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400
}

ol,
ul {
    list-style: none
}

em,
i {
    font-style: normal;
    font-weight: 400
}

img {
    display: block;
    border: 0
}

* {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none
}

html {
    font-size: 100px
}

body {
    line-height: 2.2;
    font-size: .24rem;
    margin: 0;
    font-family: "Microsoft Yahei", Arial, Tahoma, Helvetica, SimSun, "Hiragino Sans GB", sans-serif;
    background-color: #e0e0e0
}

body,
html {
    width: 100%
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
}

.flex {
    display: flex
}

.flex_grow {
    -moz-flex-grow: 1;
    flex-grow: 1
}

.wrap {
    min-width: 3.2rem;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden
}

.hide {
    display: none
}

.VungoPro_in li a,
.icon_i,
header .logo2 i,
header i,
nav li a {
    display: block
}

header {
    height: .54rem;
    background: #fff;
    font-size: .32rem;
    font-weight: 700;
    padding: .17rem 0
}

.headerNav {
    left: 50%;
    margin-left: -3.75rem;
    z-index: 98
}

.headerNav ul {
    flex-wrap: wrap;
    padding: .05rem 0 .25rem;
    z-index: 99;
    position: absolute;
    background: #f2fff7
}

.headerNav ul li a,
header.green_bg {
    background: #003a92;
    color: #fff;
    font-size: .32rem
}

.headerNav ul li {
    margin: .2rem 0 0 .2rem
}

.headerNav ul li a {
    display: block;
    width: 2.22rem;
    height: .72rem;
    line-height: .72rem;
    border-radius: .1rem;
    text-align: center
}

.headerNav ul li a i {
    display: inline-block;
    width: .38rem;
    height: .38rem;
    position: relative;
    margin-right: .1rem
}

.headerNav .mask {
    width: 7.5rem;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.menu {
    margin-right: .2rem;
    margin-top: -.06rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none
}

.menu:active {
    opacity: .7
}

header.green_bg {
    position: relative
}

header.green_bg a {
    color: #fff
}

header .logo2 {
    width: 1.78rem
}

.hlogo {
    height: .55rem;
    line-height: .4rem;
    margin-top: auto;
    margin-left: .2rem
}

header .share-link {
    display: inline;
    cursor: pointer;
    margin-top: -.035rem;
    margin-right: .2rem;
    width: 1.5rem;
    height: .6rem;
    background-image: url("https://allrummyapps.com/Z_img/share-btn_allrummyapp.webp");
    background-size: 100% 100%;
}

.btn {
    background-color: #e80000
}

.btn:hover {
    background-color: red;
    opacity: .9;
    -webkit-transform: scale(.96)
}

.LootEarning_Com,
.VungoPro_in,
.ranking_list .sort,
.ranking_list .sort div {
    background-color: #fff
}

.icon_i {
    background-image: url(assets/allrummyapp.webp);
    background-size: 6rem 6rem
}

.udfoot {
    text-align: center
}

nav {
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    overflow: hidden
}

nav li {
    display: inline-block;
    width: 20%;
    border-bottom: .04rem solid transparent;
    padding: .2rem 0 .28rem
}

nav li a {
    height: .1rem;
    line-height: .1rem;
    border-right: 1px solid #e7e7e7;
    text-align: center;
    color: #000;
    font-size: .27rem
}

nav li.current {
    border-color: red;
    background-color: #dbdbdb
}

nav li.current a {
    color: red
}

nav li:last-child a {
    border: 0
}

nav ul {
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0;
    font-weight: 700;
    overflow-x: -moz-scrollbars-none;
    -ms-overflow-style: none
}

nav ul::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    -webkit-appearance: none;
    border-radius: 0
}

.nav_bar {
    width: 100%;
    overflow: hidden
}

.ranking_list {
    width: 100%;
    margin: auto
}

.ranking_list .sort {
    position: relative;
    width: 100%;
    height: 2.25rem;
    overflow: hidden;
    justify-content: center;
    align-items: center
}

.ranking_list .sort img {
    width: 100%;
    height: 2.srem;
    display: block
}

.ranking_list .sort label {
    position: absolute;
    width: 100%;
    margin-top: -.2rem;
    justify-content: center;
    align-items: center
}

.ranking_list .sort span {
    display: block;
    width: .24rem;
    height: .05rem;
    background-color: #fff;
    margin: 0 .22rem
}

.ranking_list .sort h3 {
    font-size: .48rem;
    color: #fff;
    margin: 0 .23rem;
    letter-spacing: .02rem
}

.ranking_list .sort .ico_l,
.ranking_list .sort .ico_r {
    width: .15rem;
    height: .14rem;
    background-position: -.85rem -1.8rem;
    position: relative
}

.ranking_list .sort div {
    position: absolute;
    z-index: 1;
    bottom: -.04rem;
    width: 2.72rem;
    height: .4rem;
    border-top-left-radius: .1rem;
    border-top-right-radius: .1rem
}

.VungoPro_in li {
    position: relative;
    text-align: center;
    margin-bottom: .3rem
}

.VungoPro_in li img {
    display: block;
    width: 1.24rem;
    height: 1.24rem;
    border-radius: .24rem;
    margin: 0 auto
}

.VungoPro_in li p {
    color: #ababab;
    font-size: .22rem;
    line-height: .42rem;
    width: 90%;
    margin: auto;
    overflow: hidden;
    white-space: nowrap
}

.VungoPro_in li .name {
    height: .6rem;
    line-height: .6rem;
    color: #454545;
    font-size: .25rem;
    font-weight: 700
}

.VungoPro_in ul li .grade {
    color: rgb(0, 176, 12);
    line-height: .25rem
}

.VungoPro_in ul li .grade span {
    color: #9a9b9b;
    font-weight: 700;
    font-size: .19rem;
    line-height: .35rem
}

.VungoPro_in ul li .grade i {
    display: inline-block;
    width: .3rem;
    height: .26rem;
    background-position: 0 -1.72rem;
    position: relative;
    top: .01rem;
    margin-right: .001rem
}

.VungoPro_in li .btn {
    display: block;
    width: 1.9rem;
    height: .55rem;
    text-align: center;
    line-height: .55rem;
    margin: .16rem auto 0;
    border-radius: .06rem;
    color: #fff;
    font-size: .24rem;
    font-weight: 700
}

.VungoPro_in li:nth-child(2) img {
    width: 1.4rem;
    height: 1.4rem
}

.VungoPro_in li:nth-child(2) {
    padding-top: .1rem;
    width: 35%
}

.VungoPro_in li:first-child,
.VungoPro_in li:nth-child(3) {
    padding-top: .45rem;
    width: 32.5%
}

.VungoPro_in li .num1 {
    width: .7rem;
    height: .56rem;
    background-position: -3.54rem -.9rem;
    position: absolute;
    z-index: 2;
    top: -.66rem;
    left: 50%;
    margin-left: -.25rem
}

.VungoPro_in li .num2,
.VungoPro_in li .num3 {
    width: .7rem;
    height: .56rem;
    position: absolute;
    z-index: 2;
    top: -.3rem;
    left: 50%;
    margin-left: -.25rem
}

.VungoPro_in li .num2 {
    background-position: -4.37rem -.9rem
}

.VungoPro_in li .num3 {
    background-position: -5.23rem -.9rem
}

.LootEaning_Notice_Slider marquee {
    position: relative;
    width: auto;
    background: #fff200;
    color: #000;
    font-family: Sofia, sans-serif;
    font-weight: 600;
    font-variant: small-caps;
    line-height: .5rem;
    border: 1px dashed #d60000
}

.LootEarning_Com {
    padding: .11rem .2rem .3rem
}

.LootEarning_Com .tab_menu {
    height: .68rem;
    line-height: .68rem;
    text-align: center;
    color: #000;
    font-size: .28rem;
    border: .007rem solid #003a92
}

.LootEarning_Com .tab_menu span {
    flex: 1;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    background-color: #eaeaea;
    border-right: .007rem solid #003a92;
    border-left: .007rem solid #003a92;
    cursor: pointer;
    font-weight: 600
}

.LootEarning_Com .tab_menu span:last-child {
    border-right: 0
}

.LootEarning_Com .tab_menu span.current {
    color: #fff;
    background-color: #003a92;
    font-weight: 600;
    opacity: 2.5
}

.LootEarning_Com ul li {
    padding-top: .17rem;
    padding-bottom: .17rem;
    border-bottom: .007rem solid #e3e3e3;
    align-items: center
}

.LootEarning_Com ul li img {
    display: block;
    width: 1.18rem;
    height: 1.18rem;
    border-radius: .18rem
}

.LootEarning_Com .allrummyapp_closed_stamp {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(../other-closed-rummy-application/image/closed-rummy-app-stamp.webp);
    background-size: 100% 100%;
    margin-left: .545rem;
    opacity: 80%
}

.LootEarning_Com ul li .info {
    margin: 0 .28rem 0 .18rem
}

.LootEarning_Com ul li .info p {
    display: block;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: .22rem
}

.LootEarning_Com ul li .info .name {
    font-size: .3rem;
    color: #454545;
    line-height: .48rem;
    font-weight: 700
}

.LootEarning_Com ul li .info .grade {
    color: rgb(0, 176, 12);
    line-height: .32rem;
    font-weight: 900
}

.LootEarning_Com ul li .info .grade span {
    color: green;
    font-weight: 900
}

.LootEarning_Com ul li .info .grade em {
    color: red;
    font-size: .24rem;
    font-weight: 900;
    opacity: .8
}

.LootEarning_Com ul li .info .grade i {
    display: inline-block;
    width: .2rem;
    height: .26rem;
    background-position: -1.94rem -1.7rem;
    position: relative;
    top: .0rem;
    margin-right: .04rem
}

.LootEarning_Com ul li .info .txt {
    color: #0063d3;
    line-height: .36rem;
    font-weight: 700;
    font-size: .2rem
}

.LootEarning_Com ul li .num {
    display: block;
    width: .36rem;
    height: .58rem;
    font-weight: 700;
    font-size: .32rem;
    color: #cecece;
    line-height: .45rem;
    text-align: center;
    position: relative;
    top: .35rem;
    left: 0;
    margin-right: .2rem
}

.LootEarning_Com ul li .btn {
    display: block;
    line-height: .55rem;
    margin: 0 Auto;
    border-radius: .06rem;
    color: #fff;
    font-size: .24rem;
    text-align: center;
    width: 2.05rem;
    height: .55rem;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    Border-radius: .1rem
}

.All_Rummy_Sticky-Ads_App {
    position: fixed;
    bottom: 0;
    width: 7.5rem;
    background: rgb(0 0 0/55%);
    z-index: 1;
    display: flex
}

.All_Rummy_Sticky-Ads_App-close {
    width: 1.1rem;
    height: .33rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -.338rem;
    background-color: #fff;
    border: .01rem solid #000
}

.All_Rummy_Sticky-Ads_App .All_Rummy_Sticky-Ads_App-close span {
    width: 4rem;
    font-size: .25rem;
    color: #000;
    font-weight: 700;
    margin-left: .05rem;
    cursor: pointer;
    line-height: .26rem
}

.All_Rummy_Sticky-Ads_App .All_Rummy_Sticky-Ads_App-close i {
    font-size: .25rem;
    float: left;
    color: #000;
    margin-top: .01rem;
    margin-left: .08rem;
    line-height: .26rem
}

.All_Rummy_Sticky-Ads_App-content img {
    width: 7.425rem;
    background-color: #fff;
    padding: .03rem .03rem;
    border: .5px solid #000;
    border-radius: .05rem
}

.AllRummyApps_WhatsApp_Follow a {
    position: fixed;
    cursor: pointer;
    top: 3.2rem;
    right: 0;
    width: 1.8rem;
    height: 1rem;
    background-size: 100% 100%;
    z-index: 999
}

.AllRummyApp_icon {
    position: absolute;
    width: .45rem;
    height: .45rem;
    background-image: url(https://allrummystore.com/wp-content/uploads/2023/12/whatsapp-all-rummy-app.png);
    background-size: 100% 100%;
    background-color: #00786a;
    margin-left: 3.8rem;
    margin-top: -.6rem;
    border: solid #fff .06rem;
    border-radius: 1rem
}

.telegram_icon {
    position: absolute;
    width: .45rem;
    height: .45rem;
    background-image: url(https://allrummyapp.com.co/wp-content/uploads/2023/12/telegram-all-rummy-app.webp);
    background-size: 100% 100%;
    margin-left: 3.8rem;
    margin-top: -.6rem;
    border: solid #fff .06rem;
    border-radius: 1rem
}

 input:focus {outline-offset: -2px;}#submitsearch{border: 1px solid rgb(138, 134, 134);margin-left: -82px;padding: 5px;border-radius: 19px;cursor: pointer;padding-left: 10px;padding-right: 8px;padding-top: 4px;display: none;box-shadow: 0 0 1px black;margin-right:110px;}#searchInput {width: 78%;margin:10px !important;border: 1px solid #000;border-radius: 30px;font-size: 16px;background-color: white;background-image:url('../cdn2.iconfinder.com/data/icons/ios-7-icons/50/477210.png');background-position: 10px 7px;background-repeat: no-repeat;padding: 8px 20px 8px 40px;-webkit-transition: width 0.8s ease-in-out;transition: width 0.8s ease-in-out;outline: none;opacity: 0.9;}.share-img {height: 0.55rem;margin-top: auto;margin-bottom: auto;}.hide-heading {display: none;}.rounded{border-radius: .25rem;}.items-center{align-items: center;}.inline-flex{display: inline-flex;}.bg-blue-500{--tw-bg-opacity: 1;background-color: rgb(63 131 248/var(--tw-bg-opacity));}.font-semibold{font-weight: 600;}.py-2{padding-bottom:.5rem;padding-top:.5rem;}.px-4{padding-left: 1rem;padding-right: 1rem;}.text-white{--tw-text-opacity: 1;color: rgb(255 255 255/var(--tw-text-opacity));}.justify-center{justify-content: center;}.justify-center{align-items: center;}.Dont_Copy_AllRummyApp_Com {padding-left: 0.3rem;padding-right: 0.3rem;}.Dont_Copy_AllRummyApp_Com img {display: block;margin-left: auto;margin-right: auto;width: 90%;height: auto;object-fit: fill;margin-top: 0.3rem;}.Dont_Copy_AllRummyApp_Com h1 {font-size: 0.45rem;text-align: center;font-weight: 700;}.Dont_Copy_AllRummyApp_Com h2 {font-size: 0.40rem;text-align: center;font-weight: 700;}.Dont_Copy_AllRummyApp_Com h3 {font-size: 0.35rem;text-align: center;font-weight: 700;}.Dont_Copy_AllRummyApp_Com p {font-size: 0.3rem;margin-top: 0.1rem;margin-bottom: .2rem;line-height: 0.48rem;}.Dont_Copy_AllRummyApp_Com ul {padding-left: 0.4rem;}.Dont_Copy_AllRummyApp_Com li {font-size: 0.3rem;list-style: decimal;margin-top: 0.2rem;margin-bottom: -0.2rem;padding-left: 0.05rem;padding-right: 0.3rem;}.Dont_Copy_AllRummyApp_Com .devider {width: 100%;border-bottom: 1px solid #606280;}.Dont_Copy_AllRummyApp_Com a {color: red;}table, th, td {border:1px solid black;text-align: center;font-weight: 700;}.wrap .all-rummy-app-share-link {text-align: center;padding-top: 0.06rem;padding-bottom: 0.9rem;padding-left: 0.1rem;}.wrap .all-rummy-app-share-link span {margin: 0.1rem;font-size: 0.3rem;width: 30%;font-weight: 600;color: #fff;cursor: pointer;border: 1px dotted #ff2525;}.wrap .all-rummy-app-share-link span:hover {color: #e9e9e9;}.all-rummy-app-share-link span:first-child {float: left;background-color: #08c;border-radius: 0.1rem;}.all-rummy-app-share-link span:nth-child(2) {float: left;background-color: #25d366;border-radius: 0.1rem;}.all-rummy-app-share-link span:nth-child(3) {float: left;background-color: #3b5998;border-radius: 0.1rem;}.recomended h2 {color: white;background-color: #d10000;font-size: 0.35rem;font-weight: 600;text-align: center;margin-top: 0.15rem;margin: 0 0.05rem;border-radius: 0.1rem;border: 2px solid #000;}.telegram {transition: .3s;}.telegram:hover {transform: scale(.93);}.telegram a p i {animation: blinking 0.5s infinite;}@keyframes blinking {0% {opacity: .5;}50% {opacity: 1;}100% {opacity: .5;}}

.fa-facebook,.fa-pinterest{margin-right:.1rem;color:#fff;padding:10px 20px;border-radius:5px}.footer-right{height:1rem;margin-top:2px}.footer-right .fa{font-size:15px;width:5px;height:.2rem;text-align:center;text-decoration:none;border-bottom:.04rem solid #f2fff7;border-radius:.1rem;display:flex;justify-content:center;align-items:center}.footer-right .fa:hover{opacity:.9;border-bottom:.01rem solid #f2fff7}.fa-facebook{--tw-bg-opacity:1;background-color:rgb(63 131 248/var(--tw-bg-opacity))}.fa-pinterest{background:#e60023}.fa-whatsapp{padding:10px 60px 15px 10px;background:#0da000;color:#fff;margin-right:.1rem}.fa-twitter,.fa-youtube{margin-right:.1rem;color:#fff;margin-left:.1rem}.fa-youtube{background:red;border-radius:5px;padding:10px 20px}.fa-twitter{background:#4ea0df}.footer-right a:hover{transform:scale(1.1);-webkit-transform:scale(1.1)}.footer p.footer-links a:hover{text-decoration:underline}@media (max-width:600px){.footer-distributed .footer-left,.footer-distributed .footer-right{text-align:center}.footer-distributed .footer-right{float:center;margin:0 auto 20px}.footer-distributed .footer-left p.footer-links{line-height:1.8}}.VungoPro marquee{position:relative;font-family:Sofia,sans-serif;font-variant:small-caps;line-height:.35rem;font-size:.3rem;border:1px dashed}.footer{display:flex;flex-direction:column;align-items:center;padding:.2rem 0 0;background-color:#003a92;color:#fff;font-size:.3733rem}.footer .devider{width:100%;border-bottom:1px solid #606280}.footer .links{display:flex;justify-content:center;flex-wrap:wrap;margin-top:.2rem;margin-bottom:.05rem}.footer .links a{display:flex;align-items:center;height:.32rem;margin-bottom:.1rem;padding:0 .3rem;font-size:.2rem;font-weight:600;text-decoration:none;color:#fff;border:1px solid #c1c1c1;border-radius:.08rem;margin-right:.2rem}.links a:hover{font-weight:600;color:#c1c1c1}.footer .links a.border{border-right:auto}.footer p{margin:0;font-size:.25rem}.footer button{font-weight:600;font-size:.32rem;cursor:pointer}.footer button svg{fill:currentColor;width:1.25rem;height:1.25rem;display:block;vertical-align:middle}

blockquote {
      margin: .12rem;
      display: block;
      background-color: rgba(112, 112, 112, .133)
    }

    blockquote h2 {
      margin: .1rem 0 .1rem 0;
      font-size: .35rem;
      font-weight: 700;
      line-height: .45rem;
      padding: .1rem .1rem .1rem .1rem;
      border-left: #00f .04rem solid;
      border-right: #00f .04rem solid;
      color: red;
      text-transform: capitalize
    }

    blockquote p {
      font-size: .3rem;
      line-height: .42rem;
      padding: .1rem .1rem .1rem .1rem;
      text-transform: capitalize
    }

    .blockquote-download img {
      width: 60%;
      margin-left: 20%
    }

    .blockquote-logo img {
      width: 30%;
      margin-left: 35%
    }

    .AllRummyApps-Item-List li {
      counter-increment: item;
      line-height: .42rem;
      font-size: .3rem;
      margin-left: .4rem
    }

    .AllRummyApps-Item-List li:before {
      content: counter(item) ". ";
      padding: .02rem
    }

    @keyframes jumpAnimation {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-20px)
      }

      100% {
        transform: translateY(0)
      }
    }

    #jumpingImage {
      animation: jumpAnimation .5s infinite
    }

blockquote {
      margin: .12rem;
      display: block;
      background-color: rgba(112, 112, 112, .133)
    }

    blockquote h2 {
      margin: .1rem 0 .1rem 0;
      font-size: .35rem;
      font-weight: 700;
      line-height: .45rem;
      padding: .1rem .1rem .1rem .1rem;
      border-left: #00f .04rem solid;
      border-right: #00f .04rem solid;
      color: red;
      text-transform: capitalize
    }

    blockquote p {
      font-size: .3rem;
      line-height: .42rem;
      padding: .1rem .1rem .1rem .1rem;
      text-transform: capitalize
    }

    .blockquote-download img {
      width: 60%;
      margin-left: 20%
    }

    .blockquote-logo img {
      width: 30%;
      margin-left: 35%
    }

    .rummygamesstores-Item-List li {
      counter-increment: item;
      line-height: .42rem;
      font-size: .3rem;
      margin-left: .4rem
    }

    .rummygamesstores-Item-List li:before {
      content: counter(item) ". ";
      padding: .02rem
    }

    @keyframes jumpAnimation {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-20px)
      }

      100% {
        transform: translateY(0)
      }
    }

    #jumpingImage {
      animation: jumpAnimation .5s infinite
    }

/* WP admin-bar accommodation (generated) — shift fixed/sticky top-anchored
   chrome below the admin bar and re-assert the document bump so the bar
   never overlaps page content for logged-in viewers. */
body.admin-bar { --wp-admin-bar-h: 32px; }
@media screen and (max-width: 782px) { body.admin-bar { --wp-admin-bar-h: 46px; } }
html:has(body.admin-bar) { margin-top: 32px !important; }
@media screen and (max-width: 782px) { html:has(body.admin-bar) { margin-top: 46px !important; } }
body.admin-bar .AllRummyApps_WhatsApp_Follow a { top: calc((3.2rem) + var(--wp-admin-bar-h, 0px)) !important; }
/* blocks-engine: carried full-bleed sections own their spacing; keep WP block gap for editor-added blocks. */
:where(.is-layout-flow, .is-layout-constrained) > .wp-block-group.alignfull{margin-block-start:0}
