@charset "UTF-8";
/*-----------------------------------------------------------------------------------
        Plugin Name: WPL Elementor
        File Name: frontend.css
        Author: Realtyna
        Version: 1.0.0
-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------

[CONTENT]

1. Default Styles
2. Widgets
---2.1  Sticky Compare
/*-------------------------------------- 1.  Default Styles --------------------------------------*/

/*-------------------------------------- 2.1  Sticky Compare --------------------------------------*/
.wpl-el-sticky-compare {
    position: fixed;
    top: -30%;
    left: 0;
    right: 0;
   	padding: 30px 15px;
    background-color: #0445ee;
    color: #ffffff;
    z-index: 9999999;
    opacity: 0;
    -webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.wpl-el-sticky-compare .wpl-el-bs-container {
    padding: 0;
}

.wpl-el-sticky-compare .wpl-el-sticky-title {
    color: #ffffff;
}

.wpl-el-sticky-compare.wpl-el-sticky-compare-visible {
    top: 0;
    opacity: 1;
}

.admin-bar .wpl-el-sticky-compare.wpl-el-sticky-compare-visible {
    top: 32px;
}

.wpl-el-sticky-compare .wpl-el-compare-fixed-link {
	color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    border: solid 2px #fff;
    border-radius: 10px;
    text-decoration: none;
}

.wpl-el-sticky-compare .wpl-el-compare-fixed-link:hover {
	background-color: rgb(51, 51, 51);
}