<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.searchbar{
    margin: auto;
    height: 60px;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px;
    max-width: 400px;
}

.search_input{
    color: #000;
    border: 0;
    outline: 0;
    background: none;
    width: 80%;
    caret-color:red;
    line-height: 40px;
    transition: width 0.4s linear;
}

.searchbar:hover &gt; .search_icon{
    background: white;
    transition: background .2s linear, color .2s linear;
    color: #e74c3c;
    text-decoration: none;
}

.search_icon{
    transition: background .2s linear, color .2s linear;
    background: #000;
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color:white;
    text-decoration:none;
}

*{
    font-family: 'Poppins', sans-serif;
}
h1{
    letter-spacing: .05em;
}

.wtl-article{
    max-width: 1000px;
}

.wtl-review p{
    line-height: 33px;
    color: #45484b;
    font-size: 18px;
    letter-spacing: 1px;
}

.wtl-list .list-group-item{
    border: none;
    background-color: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 10px;
    padding: 25px 20px;
}

.wtl-list .list-group-item &gt; h5{
    margin-bottom: 0;
}

.wtl-article p{
    line-height: 33px;
    color: #45484b;
    font-size: 18px;
    letter-spacing: 1px;
}

.wtl-signto input{
    font-size: 16px;
    padding: 32px 30px;
    border-radius: 100px;
}

@media screen and (max-width: 991px){
    .navbar-mobile {
        background-color: rgba(0,0,0,0.9) !important;
        transition: background-color 0.3s ease-in-out;
    }
}

.image-box {
    position: relative;
}

.image-box__background,
.image-box__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/*
The background image div sizes and positions the background itself.
It's also at the bottom-most position in our "div stack" (z-index 1)

We set the image url via a CSS custom property, that's set via the style attribute in our HTML
*/
.image-box__background {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: var(--image-url);

    z-index: 1
}

/*
The overlay div is just a colored element with some opacity.
It's above the background image in our stack, so it appears to
darken the image
*/
.image-box__overlay {
    background: rgba(0, 0, 0, 0.6);

    z-index: 2;
}

/*
The content div is at the top of our stack.
We'd probably add some padding or flexbox properties here as well,
to place the content appropriately
*/
.image-box__content {
    position: relative;
    z-index: 3;
    color: white;
    min-height: 360px;
    padding-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtl-card{
    border-width: 0;
    border-radius: 12px !important;
}

.wtl-card h5.card-title{
    font-size: 19px;
    font-weight: 600 !important;
}

.wtl-card p.card-text{
    margin-top: 0.92857143em;
    font-size: 14px;
}

.wtl-card:before {
    -webkit-box-shadow: 0 10px 90px 10px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 10px 90px 10px rgba(0,0,0,0.05);
    box-shadow: 0 10px 90px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease-in-out;
    transition: -moz-box-shadow 0.3s ease-in-out;
    transition: -webkit-box-shadow 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: 12px !important;
}

.wtl-card:hover::before{
    -webkit-box-shadow: 0 10px 90px 10px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 10px 90px 10px rgba(0,0,0,0.15);
    box-shadow: 0 10px 90px 10px rgba(0,0,0,0.15);
}

.wtl-card{
    text-decoration: none !important;
    color: #000 !important;
}

.card-body{
    padding: 1.85714286em;
}
footer{
    background-color: #f9f9f9;
}
.wtl-price-card{
    background-color: rgba(0,0,0,0.7);
    border-radius: 10rem;
}
.wtl-price-card, .wtl-price-card-promotion{
    width: 100%;
    padding: 7px 20px 7px 20px;
}

.wtl-price-box{
    top: -40px;
}

.wtl-price-card-promotion{
    background-color: rgba(255,0,0,0.7);
    margin-left: 5px;
}

.wtl-card-image-box img{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0 !important;
}

.wtl-card-image-box{
    position: relative;
    padding-bottom: 75%;
}

.wtl-card-image-box button{
    background-color: #ff7f45 !important;
    border: #ff7f45 !important;
}

.wtl-card-hidden{
    border: none;
    background-color: transparent;
}

.nav-pills .nav-link.active, .nav-pills .show&gt;.nav-link{
    background-color: #fff !important;
}

#tabOffertabOffer a.active{
    color: #000;
    font-weight: bold;
}

#tabOffertabOffer a{
    color: #6c757d;
}

.social-list h4{
    letter-spacing: 6px;
}

.wtl-button{
    border-radius: 100px;
    padding: 18px 70px;
    font-size: 18px;
    font-weight: 600;
    color: #000 !important;
}

.wtl-button-form{
    border-radius: 100px;
    padding: 18px 70px;
    font-size: 18px;
    font-weight: 600;
}

.wtl-card button, .wtl-card button:hover{
    background-color: #000;
    border-radius: 100rem;
    color: #fff;
}

.wtl-nav-link{
    border-radius: 100px !important;
}

.wtl-pagination .page-link{
    color: #000 !important;
}

.wtl-pagination .active&gt;a{
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

article p{
    font-size: 1.2em;
    line-height: 1.6em;
}

@media (min-width: 0) {
    .g-mr-15 {
        margin-right: 1.07143rem !important;
    }
}
@media (min-width: 0){
    .g-mt-3 {
        margin-top: 0.21429rem !important;
    }
}

.g-height-50 {
    height: 50px;
}

.g-width-50 {
    width: 50px !important;
}

@media (min-width: 0){
    .g-pa-30 {
        padding: 2.14286rem !important;
    }
}

.g-bg-secondary {
    background-color: #fafafa !important;
}

.u-shadow-v18 {
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
}

.g-color-gray-dark-v4 {
    color: #777 !important;
}

.g-font-size-12 {
    font-size: 0.85714rem !important;
}

.media-comment {
    margin-top:20px
}
.wtl-nav li&gt;a{
    color: #fff !important;
    font-weight: 300;
}

@media (min-width: 992px){
    #main-menu .nav-item&gt;a{
        padding-left: 35px;
    }
}
.active &gt; a{
    font-weight: bold !important;
}

.link-color {
    color: #6c757d !important;
}
</pre></body></html>