/*! elementor - v3.29.0 - 04-06-2025 */
:root {
--e-is-device-mode: 0;
}
.e-is-device-mode {
--e-is-device-mode: 1;
}
#elementor-responsive-bar {
position: sticky;
height: calc(40px * var(--e-is-device-mode));
align-self: stretch;
flex-shrink: 0;
transition: height 0.2s ease-in-out, opacity 0.1s;
left: 0;
top: 0;
z-index: 100;
opacity: var(--e-is-device-mode);
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.33), 0 0 2px 1px rgba(0, 0, 0, 0.25), 0 0 6px -3px rgba(255, 255, 255, 0.5);
}
#elementor-responsive-bar:before {
content: "";
position: absolute;
inset: 0;
z-index: -1;
transform: scaleX(var(--e-preview-scale, 1));
}
.e-responsive-bar-switcher__option {
cursor: pointer;
text-align: center;
width: 22px;
height: 22px;
margin: 0 4px;
line-height: 22px;
border-radius: 3px;
font-size: 16px;
transition: var(--e-a-transition-hover);
}
.e-responsive-bar-switcher__option:hover {
color: var(--e-a-color-primary-bold);
background-color: #310132;
}
.e-responsive-bar-switcher__option[aria-selected=true] {
background-color: #3f444b;
color: #F9FAFA;
}
.e-responsive-bar-switcher__option input {
display: none;
}
.e-responsive-bar-switcher__option:not(:last-child) {
margin-inline-end: 6px;
}
.e-responsive-bar__button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: none;
border: 0 none;
cursor: pointer;
color: inherit;
}
.e-responsive-bar__button:focus:not(:focus-visible) {
outline: none;
}
.e-responsive-bar__button:hover {
color: #F1F2F3;
background-color: #3f444b;
}
.e-responsive-bar--pipe {
position: relative;
}
.e-responsive-bar--pipe::before {
content: "";
display: block;
height: 20px;
width: 1px;
background-color: #BABFC5;
position: absolute;
inset-inline-end: -5px;
top: calc(50% - 10px);
}
.e-responsive-bar__input-size {
background-color: transparent;
color: #BABFC5;
border: 1px solid #BABFC5;
padding: 0 3px;
width: 60px;
font-size: 12px;
line-height: 16px;
height: 18px;
margin: auto 8px auto 4px;
text-align: center;
}
.e-responsive-bar__input-size-separator {
color: #BABFC5;
}
.e-responsive-bar__input-size[disabled] {
background-color: transparent;
color: #818A96;
cursor: default;
-moz-appearance: none;
appearance: none;
-webkit-appearance: none;
}
#e-responsive-bar {
width: 100%;
margin-block-start: calc(-40px + 40px * var(--e-is-device-mode));
z-index: 1;
transition: margin-block-start 0.2s ease-in-out;
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
justify-content: space-between;
color: #BABFC5;
background-color: #1f2124;
}
#e-responsive-bar__center, #e-responsive-bar__end, #e-responsive-bar-scale, #e-responsive-bar-switcher {
display: flex;
justify-content: center;
align-items: center;
font-size: 13px;
background-color: #1f2124;
padding: 2px 0;
}
#e-responsive-bar__end {
justify-self: end;
}
@media (min-width: 1400px) {
#e-responsive-bar {
grid-template-columns: 1fr auto 1fr;
}
#e-responsive-bar::before {
content: "";
}
}
#e-responsive-bar__close-button, #e-responsive-bar__settings-button {
width: 22px;
height: 22px;
border-radius: 3px;
margin: 7px 5px;
font-size: 16px;
}
#e-responsive-bar__size-inputs-wrapper {
display: flex;
align-items: center;
margin-inline-end: 8px;
color: #BABFC5;
}
#e-responsive-bar-switcher {
padding: 0 20px;
}
#e-responsive-bar-scale {
padding: 0 20px;
}
#e-responsive-bar-scale__value-wrapper {
margin: 0 14px;
min-width: 32px;
text-align: center;
}
#e-responsive-bar-scale__plus, #e-responsive-bar-scale__minus, #e-responsive-bar-scale__reset {
cursor: pointer;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 3px;
transition: all 0.3s;
}
#e-responsive-bar-scale__plus:hover, #e-responsive-bar-scale__minus:hover, #e-responsive-bar-scale__reset:hover {
color: #F1F2F3;
background-color: #3f444b;
}
#e-responsive-bar-scale__minus:before {
content: "";
display: block;
width: 13px;
height: 2px;
background-color: #BABFC5;
border-radius: 3px;
}
#e-responsive-bar-scale__minus:hover:before {
background-color: #F1F2F3;
}
#e-responsive-bar-scale__reset {
margin: 0 8px;
}
/*# sourceMappingURL=responsive-bar.css.map *//**
* Twenty Twenty-Five functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package WordPress
* @subpackage Twenty_Twenty_Five
* @since Twenty Twenty-Five 1.0
*/
// Adds theme support for post formats.
if ( ! function_exists( 'twentytwentyfive_post_format_setup' ) ) :
/**
* Adds theme support for post formats.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_post_format_setup() {
add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
}
endif;
add_action( 'after_setup_theme', 'twentytwentyfive_post_format_setup' );
// Enqueues editor-style.css in the editors.
if ( ! function_exists( 'twentytwentyfive_editor_style' ) ) :
/**
* Enqueues editor-style.css in the editors.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_editor_style() {
add_editor_style( get_parent_theme_file_uri( 'assets/css/editor-style.css' ) );
}
endif;
add_action( 'after_setup_theme', 'twentytwentyfive_editor_style' );
// Enqueues style.css on the front.
if ( ! function_exists( 'twentytwentyfive_enqueue_styles' ) ) :
/**
* Enqueues style.css on the front.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_enqueue_styles() {
wp_enqueue_style(
'twentytwentyfive-style',
get_parent_theme_file_uri( 'style.css' ),
array(),
wp_get_theme()->get( 'Version' )
);
}
endif;
add_action( 'wp_enqueue_scripts', 'twentytwentyfive_enqueue_styles' );
// Registers custom block styles.
if ( ! function_exists( 'twentytwentyfive_block_styles' ) ) :
/**
* Registers custom block styles.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_block_styles() {
register_block_style(
'core/list',
array(
'name' => 'checkmark-list',
'label' => __( 'Checkmark', 'twentytwentyfive' ),
'inline_style' => '
ul.is-style-checkmark-list {
list-style-type: "\2713";
}
ul.is-style-checkmark-list li {
padding-inline-start: 1ch;
}',
)
);
}
endif;
add_action( 'init', 'twentytwentyfive_block_styles' );
// Registers pattern categories.
if ( ! function_exists( 'twentytwentyfive_pattern_categories' ) ) :
/**
* Registers pattern categories.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_pattern_categories() {
register_block_pattern_category(
'twentytwentyfive_page',
array(
'label' => __( 'Pages', 'twentytwentyfive' ),
'description' => __( 'A collection of full page layouts.', 'twentytwentyfive' ),
)
);
register_block_pattern_category(
'twentytwentyfive_post-format',
array(
'label' => __( 'Post formats', 'twentytwentyfive' ),
'description' => __( 'A collection of post format patterns.', 'twentytwentyfive' ),
)
);
}
endif;
add_action( 'init', 'twentytwentyfive_pattern_categories' );
// Registers block binding sources.
if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) :
/**
* Registers the post format block binding source.
*
* @since Twenty Twenty-Five 1.0
*
* @return void
*/
function twentytwentyfive_register_block_bindings() {
register_block_bindings_source(
'twentytwentyfive/format',
array(
'label' => _x( 'Post format name', 'Label for the block binding placeholder in the editor', 'twentytwentyfive' ),
'get_value_callback' => 'twentytwentyfive_format_binding',
)
);
}
endif;
add_action( 'init', 'twentytwentyfive_register_block_bindings' );
// Registers block binding callback function for the post format name.
if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) :
/**
* Callback function for the post format name block binding source.
*
* @since Twenty Twenty-Five 1.0
*
* @return string|void Post format name, or nothing if the format is 'standard'.
*/
function twentytwentyfive_format_binding() {
$post_format_slug = get_post_format();
if ( $post_format_slug && 'standard' !== $post_format_slug ) {
return get_post_format_string( $post_format_slug );
}
}
endif;
https://www.riowallfashion.com/post-sitemap.xml
2025-06-16T01:37:09+00:00
https://www.riowallfashion.com/page-sitemap.xml
2025-05-10T11:21:44+00:00
https://www.riowallfashion.com/product-sitemap.xml
2025-06-16T07:29:17+00:00
https://www.riowallfashion.com/wcpcsu-custom-post-sitemap.xml
2024-12-21T15:41:49+00:00
https://www.riowallfashion.com/avada_portfolio-sitemap.xml
2020-01-30T23:30:50+00:00
https://www.riowallfashion.com/avada_faq-sitemap.xml
2024-07-06T17:02:08+00:00
https://www.riowallfashion.com/category-sitemap.xml
2025-06-16T01:37:09+00:00
https://www.riowallfashion.com/post_tag-sitemap.xml
2022-08-03T14:52:33+00:00
https://www.riowallfashion.com/fusion_tb_category-sitemap.xml
2024-12-25T15:09:17+00:00
https://www.riowallfashion.com/product_cat-sitemap.xml
2025-06-16T07:29:17+00:00
https://www.riowallfashion.com/portfolio_category-sitemap.xml
2020-01-30T23:30:50+00:00
https://www.riowallfashion.com/element_category-sitemap.xml
2024-12-20T16:06:20+00:00
https://www.riowallfashion.com/slide-page-sitemap.xml
2024-10-28T06:20:26+00:00
https://www.riowallfashion.com/author-sitemap.xml
2025-01-28T15:44:54+00:00