<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    src: url("../fonts/B Koodak Bold.ttf");
    font-family: koodak;
}

@font-face {
    src: url(../fonts/IranianSans.ttf);
    font-family: iraniansense;
}

@font-face {
    src: url('../fonts/B Yekan.ttf');
    font-family: yekan;
}

body {
    direction: rtl;
    font-family: koodak;
    text-align: right;
    padding:0px;
    margin:0px;
    overflow-x: hidden;
}

.header {
    display: flex;
    background-color: rgb(37, 42, 52);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 70px;
    line-height:70px;
    z-index: 15;
}

.logo-container {
    width: 100px;
    margin-right: 20px;
    box-sizing: border-box;
}

    .logo-container &gt; img {
        width: 85px;
        height: 68px;
        margin-top: 0px;
    }

.header-left-container {
    display: flex;
    width: calc(100% - 100px);
}

.nav-bar-container {
    width: calc(100% - 350px);
    margin-right: 30px;
    box-sizing: border-box;
    display:block;
}

.nav-bar
{
    list-style:none;
    padding:0px;
    margin:0px;
    display:flex;
    margin-left:5px;
}

    .nav-bar &gt; li {
        margin-right: 5px;
        padding: 0px 7px 0px 7px;
        border-radius: 5px;
        height: 30px;
        margin-top: 20px;
        line-height: 30px;
        font-size:14px;
        background-color:transparent;
        transition: all 0.3s ease-in-out;
    }

    .nav-bar &gt; li:hover{
        background-color: #28af63;
    }

    .nav-bar &gt; li.active {
        background-color: #28af63;
    }

    .nav-bar &gt; li &gt; a{
        color: #fff;
        text-decoration:none;
    }

        .nav-bar &gt; li &gt; a:active {
            color: #fff;
        }

.search-container
{
    overflow:hidden;
    top:0px;
    transition: top 0.3s ease-in-out;
}

.absolute-search {
    display: block !important;
    top: 60px !important;
}

.txtSearch {
    border: 1px solid #eee;
    border-radius: 7px;
    height: 30px;
    line-height: 25px;
    outline: none;
    width: 250px;
    background-color: transparent;
    padding-right: 5px;
    font-size:14px;
    color:#efefef;
}

.search-button-wrap {
    background-color: #28af63;
    position: relative;
    right: -33px;
    padding-top: 0px;
    top: 3px;
    /* line-height: 18px !important; */
    height: 28px;
    line-height: 34px;
    width: 28px;
    text-align: center;
    border-radius: 7px 0px 0px 7px;
    margin-left: -28px;
    color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-search {
}

.btn-mobile-search {
    color: #fff;
    height: 30px;
    line-height: 35px;
    margin-top: 20px;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 5px;
    display: none;
}

.btn-mobile-search:hover {
    background-color: #28a745;
    border: 1px solid #28a745;
}

.mobile-navbar {
    height: calc(100vh - 70px) !important;
}

.navbar-button {
    width: 40px;
    height: 30px;
    background-color: #333;
    border-radius: 5px;
    cursor: pointer;
    padding: 9px 8px;
    margin-top: 20px;
    margin-right: 10px;
    display: none;
}

    .navbar-button:hover {
        background-color: #555;
    }

        .navbar-button:hover &gt; .icon-bar {
            background-color: #fff;
        }

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #cfcfcf;
}

    .icon-bar + .icon-bar {
        margin-top: 3px;
    }

.Rectangle_6 {
    background-color: rgb(37, 42, 52);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1441px;
    height: 100px;
    z-index: 15;
}

.links{
    display:flex;
    width:100%;
    padding-top:30px;
    padding-bottom:23px;
}

.links &gt; div{
    width:100%;
}

.right-links {
    display: block;
    text-align: center;
    width: 100%;
    padding-right:calc(100% - 220px);
}

.left-links {
    display: block;
    text-align: center;
    width: 100%;
    padding-right:20px;
}

.middle-link {
    background-color: #3c7dc4;
    display: block;
    width: 200px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 7px;
    border-radius: 5px;
    text-decoration:none;
}

    .middle-link:hover, .middle-link:active {
        text-decoration:none;
        background-color:#0099ff;
        color:#fff;
    }

.utility-section::after {
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.utility-container {
    margin: 5px;
    background-color: #f4f4f4;
    padding: 5px;
    border-radius:5px;
    box-shadow: -1px 1px 2px 1px #777;
}

.utility-banner {
    text-align: center;
    font-size: 90px;
}

.utility-container:hover &gt; .utility-banner &gt; .orbitEffect {
    animation: orbit 0.7s;
    animation-iteration-count: 1; /*infinite;*/
}

.utility-banner &gt; i {
    color: #28a745;
}

.utility-title {
    text-align: center;
    min-height: 30px;
}

    .utility-title &gt; h3 {
        font-size: 18px;
        font-weight: 600;
    }

.utility-description
{
    font-size:13px;
    text-align:justify;
    padding-bottom:10px;
}

.site-description-wrapper
{
    min-height:400px;
    width:100%;
    overflow:hidden;
}

.site-description-background {
    color: #fff;
    display: block;
    width: 100%;
    min-height: 300px;
    background: #3c7dc4;
    margin-right: -200px;
    margin-top: 50px;
    padding-left: 300px;
    box-sizing: content-box;
    border-radius: 5px;
    -moz-transform: scale(1) rotate(3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}

.site-description-container {
    -moz-transform: scale(1) rotate(-3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(-3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(-3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(-3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(-3deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    text-align:center;
    padding:20px;
    width:100%;
    margin:0px auto;
    margin-right:calc(0% + 200px);
}

.site-description-header
{
    padding:10px 0px 50px 0px;
}

.site-description
{

}



.latest-products-section {
    width: 100%;
    /*
    overflow-x:hidden;
    overflow-y:initial;
        */
}

.latest-products-title-container
{
    width:100%;
    padding:25px 0px 0px 0px;
}

.latest-products-title {
    width: 280px;
    background-color: #f7ad0a;
    color:#000;
    margin:0px auto;
    padding:5px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    text-align:center;
}

.latest-products-list
{

}

.product-wrapper {
    width: 33.33%;
    float: right;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    height: 485px;
}

.product-container {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 2px 2px #ddd;
    text-align: justify;
    width: 90%;
    margin: 0px auto;
    border-radius: 10px;
    height: 445px;
    transition: all 0.3s ease-in-out;
}

.product-container:hover
{
    margin-top:-25px;
}

.product-container:hover .product-top-background {
    background-color: #28af63 !important;
}

.product-container:hover .product-image {
    color: #fff !important;
}

.product-container:hover .product-title
{
    color:#fff !important;
}

.product-top-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.product-top-background {
    background-color: #e8f0ea;
    /* padding-top: 50px; */
    padding-left: 10px;
    box-sizing: content-box;
    margin-top: -50px;
    margin-right: -50px;
    margin-left: -10px;
    /* z-index: 10; */
    -moz-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}

.product-top-section {
    -moz-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    text-align: center;
    padding: 0px 30px;
    /* padding-top: 70px; */
    width: 100%;
    margin: 0px auto;
    margin-right: calc(0% + 25px);
}

.product-image {
    width: 100%;
    text-align: center;
    font-size: 70px;
    color: #3c7dc4;
    height: 180px;
    padding-top: 70px;
}

.title-anchor {
    text-decoration: none;
    color: #212529;
}

.title-anchor:hover {
    text-decoration: none;
}

.product-title {
    height: 100px;
}

.product-bottom-section {
    position: relative;
    top: -50px;
}

.product-short-description {
    padding: 10px;
    font-size: 14px;
    height: 140px;
    overflow: hidden;
}

.product-price {
    width: 100%;
    text-align: center;
    color: #cf3425;
    font-size: 20px;
}

.product-show-button-container{
    width:100%;
}

.product-show-button {
    background-color: #28af63;
    color:#fff;
    border-radius:0px 0px 5px 5px;
    display: block;
    width:100px;
    height:35px;
    line-height:35px;
    text-align:center;
    margin:0px auto;
    position:relative;
    bottom:-10px;
    text-decoration:none;
    margin-bottom: -10px;
}

.product-show-button:hover
{
    text-decoration:none;
    color:#fff;
}

.top-botton-container {
    clear: both;
    height: 40px;
}

.btn-top {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0px auto;
    border: none;
    outline: none;
    border-radius: 50%;
    position: relative;
    bottom: -25px;
    z-index: 10;
    cursor: pointer;
}

.footer {
    background-color: #4a3e53;
    height:330px;
    overflow:hidden;
}

.footer-circle {
    border-radius: 70%;
    background-color: #4a3c4b;
    display: block;
    position: relative;
    top: 30px;
    height: 700px;
    width: 90%;
    right: 5%;
}


.footer-content {
    display: flex;
    width: 100%;
    margin: 0px auto;
    padding-top: 30px;
    height: 220px;
    position: relative;
    top: -30px;
    display: flex;
    width: 100%;
    margin: 0px auto;
    padding-top: 30px;
    height: 220px;
}

.footer-links
{
    padding-right:20px;
    width:200px;
}

.footer-section-header {
    font-size:16px;
    color:#fff;
    height:40px;
}

.quick-links &gt; a {
    color:#fff;
    font-size:13px;
    text-decoration:none;
    display:block;
    line-height:25px;
    padding-right:0px;
    transition:all 0.3s ease-in-out;
}

    .quick-links &gt; a:hover {
        color: #fff;
        text-decoration: none;
        padding-right:10px;
    }

.footer-separator {
    width: 3px;
    height: 130px;
    margin-top: 40px;
    border-radius: 1px;
    background-color: #fff;
}

.main-footer-section
{
    width:calc(100% - 500px);
    text-align:center;
    color:#fff;
}

.footer-email {
    width: 240px;
    background-color: #28af63;
    color: #fff;
    margin: 0px auto;
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    display: block;
    letter-spacing: 1px;
    font-size: 18px;
}

.footer-email:hover
{
    text-decoration:none;
    background-color: #28a745;
    color:#fff;
}

.contact-us
{
    margin-top:10px;
    text-align:center;
}

.contact-us &gt; a{
    display:inline-block;
    width:25px;
    height:25px;
    border: 1px solid #fff;
    border-radius:50%;
    color:#fff;
    line-height:28px;
    font-size:13px;
}

.contact-us &gt; a:hover{
    background-color:#fff;
    color:#4a3e53;
    text-decoration:none;
}

.auth-section {
    text-align: center;
    width: 400px;
}

.auth-icon &gt; a {
    margin-left: 10px;
}

    .auth-icon &gt; a &gt; img {
        height: 110px;
        margin-bottom:10px;
    }

.auth-icon &gt; img {
    height: 120px;
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #f7ad0a;
    color: #4a3e53;
    border-top: 3px solid #fff;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0px 10px 0px 0px;
}

.page-container {
    width: 950px;
    margin: 0px auto;
    margin-top: 80px;
}

.product-page-top-section
{
    margin-top:10px;
    display:flex;
}

.services-links
{
    text-align:center;
}

.s-link-container {
    background-color: #f4f4f4;
    padding: 7px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.service-link-header
{
    line-height:40px;
    font-weight:600;
}

.services-link {
}

.product-page-banner {
    width: calc(100% - 210px);
    /*background-image: url(/Images/top-slider.png);*/
    height: 275px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: 100% 275px;
}

.product-page-banner &gt;img{
    width:100%;
    height:100%;
}

.show-product-container {
    margin-top: 20px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f4f4f4;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    display: flex;
}

.product-image-container {
    width: 270px;
    height: 350px;
    margin-left: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    border-radius:7px;
}

.atricle-show-img {
    width: 100%;
    height: 350px;
    border-radius: 7px;
}

.product-description-container {
    width: calc(100% - 270px);
}

.article-header {
    color: #d43f3f;
    font-weight: bold;
    padding-top: 10px;
}

    .article-header &gt; h4 {
        font-size: 17px;
    }

.article-info
{
    font-size:12px;
}

.article-info &gt; i{
    margin:3px;
    padding:3px;
    background-color:#fff;
    display:inline-block;
    border-radius:50%;
}

.article-description
{
    font-size:14px;
}

.btn-buying {
    width: 400px;
    background-color: #f7ad0a;
    margin: 0px auto;
    display: block;
    padding: 5px;
    text-align: center;
    color: #000;
    border-radius: 5px;
    text-decoration:none;
}

    .btn-buying:hover {
        text-decoration: none;
    }

.buying-info {
    width: 400px;
    margin: 0px auto;
}

.buying-info-row {
    display: flex;
    margin-top: 7px;
}

.buying-success-info {
    width: 100%;
    background-color: #00a550;
    text-align: center;
    padding: 3px;
    box-sizing: border-box;
    color:#fff;
}

.buying-warning-info {
    width: 100%;
    background-color: #d43f3f;
    text-align: center;
    padding: 3px;
    box-sizing: border-box;
    color: #fff;
}

.right-info {
    margin-left: 10px;
}

.single-product-bottom-section {
    margin-top: 20px;
    display: flex;
}

.right-product-bottom-section {
    width: calc(100% - 280px);
    padding-left: 15px;
    box-sizing: border-box;
}

.left-product-bottom-section {
    width: 280px;
}

.tab {
    overflow: hidden;
    border-bottom: none;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: #00a550;
        color:#fff;
        float: right;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 5px 7px;
        transition: 0.3s;
        min-width:80px;
        margin-right:2px;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #f7ad0a;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #f7ad0a;
        }

.tablinks &gt; i {
    font-size: 20px;
    margin-left: 5px;
    line-height: 30px;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    min-height: 400px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f4f4f4;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.tab-content-container {
    padding: 10px 5px;
    text-align: justify;
}




.slide-free-products-container {
    border-radius:5px;
    height:310px;
    width:calc(100% - 4px);
    margin-bottom:20px;
    background-color: #f4f4f4;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}


.article-list-container {
    width: 100%;
    display: inline-block;
    border-radius: 5px;
    clear: both;
}

.article-list {
    width: 100%;
    margin: 0px auto;
    background-color: #f0f0f0;
}

.list-header {
    padding: 10px;
    background-color: #3c7dc4;
}

    .list-header &gt; h6 {
        padding: 0px;
        margin: 0px;
        color: #fff;
    }

.list-body {
    padding: 5px;
    background-color: #eaeaea;
}

.list-button-container {
    margin-top: 20px;
}

    .list-button-container &gt; a {
        width: 80%;
        display: block;
        margin: 0px auto;
    }

.latest-product-list {
    margin: 0px;
    list-style: none;
    padding: 0px;
    clear: both;
}

    .latest-product-list &gt; li {
        height: 65px;
        overflow: hidden;
        margin-bottom: 3px;
        clear: both;
        transition: all 0.3s ease-out;
        padding: 3px;
        background-color: #fff;
        vertical-align: middle;
        border-radius: 5px;
    }

        .latest-product-list &gt; li:hover {
        }

        .latest-product-list &gt; li &gt; a {
            display: block;
            height:100%;
            text-decoration:none;
            color:#333;
        }

        .latest-product-list &gt; li &gt; a:hover {
            text-decoration: none;
            color:#0099ff;
        }

            .latest-product-list &gt; li &gt; a &gt; img {
                float: right;
                margin-left: 5px;
                margin-top: 5px;
            }

            .latest-product-list &gt; li &gt; a &gt; div {
                height: 75px;
                overflow: hidden;
                padding-top: 5px;
            }

                .latest-product-list &gt; li &gt; a &gt; div &gt; h3 {
                    font-size: 12px;
                    display: inline;
                    height: 75px;
                    line-height: 25px;
                    font-weight: bold;
                    padding: 0px;
                    margin: 0px;
                    overflow-y: scroll;
                    clear: both;
                }



.random-article-list-container {
    width: 100%;
    display: inline-block;
    border-radius: 5px;
    clear: both;
}

.random-article-list {
    width: 100%;
    margin: 0px auto;
    background-color: #f0f0f0;
}

.random-list-header {
    padding: 10px;
    background-color: #3c7dc4;
}

    .random-list-header &gt; h6 {
        padding: 0px;
        margin: 0px;
        color: #fff;
    }

.random-list-body {
    padding: 5px;
    background-color: #eaeaea;
}

.random-list-button-container {
    margin-top: 20px;
}

    .random-list-button-container &gt; a {
        width: 80%;
        display: block;
        margin: 0px auto;
    }

.random-product-list {
    margin: 0px;
    list-style: none;
    padding: 0px;
    clear: both;
}

    .random-product-list &gt; li {
        overflow: hidden;
        clear: both;
        transition: all 0.3s ease-out;
        padding: 3px;
        vertical-align: middle;
        line-height: 35px;
        border-bottom: 2px dashed #555;
    }
        .random-product-list &gt; li:last-child
        {
            border-bottom:none;
        }

        .random-product-list &gt; li:hover {
        }

        .random-product-list &gt; li &gt; a {
            display: block;
            height: 100%;
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }

            .random-product-list &gt; li &gt; a:hover {
                text-decoration: none;
                color: #0099ff;
            }

            .random-product-list &gt; li &gt; a &gt; img {
                float: right;
                margin-left: 5px;
                margin-top: 5px;
            }

            .random-product-list &gt; li &gt; a &gt; div {
                height: 75px;
                overflow: hidden;
                padding-top: 5px;
            }

                .random-product-list &gt; li &gt; a &gt; div &gt; h3 {
                    font-size: 12px;
                    display: inline;
                    height: 75px;
                    line-height: 25px;
                    font-weight: bold;
                    padding: 0px;
                    margin: 0px;
                    overflow-y: scroll;
                    clear: both;
                }




.user-buying-guide-container {
    display: flex;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.user-buying-guide
{
    width:100%;
}

.user-buying-guide &gt; div{
    text-align:justify;
}

.user-buying-guide-image
{
    width:100%;
}

    .user-buying-guide-image &gt; img {
        width: 100%;
    }

.item-top &gt; img{
    width:100%;
}


/*************************************** multi item slider ***************************************/
.MultiCarousel {
    overflow: hidden;
    padding: 10px;
    width: 95%;
    margin: 0px auto;
    position: relative;
    height: 240px;
}

    .MultiCarousel .MultiCarousel-inner {
        transition: 1s ease all;
        float: right;
    }

        .MultiCarousel .MultiCarousel-inner .item {
            padding: 0px;
            float: right;
        }

            .MultiCarousel .MultiCarousel-inner .item:hover {
                /*box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;*/
            }

            .MultiCarousel .MultiCarousel-inner .item &gt; div {
                text-align: center;
                padding: 10px;
                margin-bottom: 50px;
                color: #666;
            }

    .MultiCarousel .leftLst, .MultiCarousel .rightLst {
        position: absolute;
        border-radius: 50%;
        top: calc(50% - 20px);
        display:none;
    }

    .MultiCarousel .leftLst {
        left: 0;
    }

    .MultiCarousel .rightLst {
        right: 0;
    }

        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
            pointer-events: none;
            background: #ccc;
        }

    .MultiCarousel:hover .leftLst, .MultiCarousel:hover .rightLst {
        display: block;
    }

.item-inner {
    width: 100%;
    margin: 0px auto;
}

.item-top {
    height: 160px;
}

    .item-top img {
        max-width: 100%;
        height: 160px;
    }

.item-inner:hover .watch-product {
    opacity: 1;
}

.item-inner:hover .item-bottom {
    top: -100px;
}

.item-bottom {
    background-color: #f4f4f4;
    height: 60px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    top: -35px;
    z-index: 2;
    overflow:hidden;
}

    .item-bottom div {
        line-height: 30px;
    }

.product-name &gt; a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.free-product-link &gt; a {
    display: block;
    width: 200px;
    background-color: #00a550;
    text-decoration: none;
    color: #fff !important;
    padding: 5px;
    border-radius: 5px;
    margin: 0px auto;
    text-align: center;
}

.search-result-container {
    background-color: #f4f4f4;
    box-shadow: 0px 0px 5px #333;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    margin-bottom: 15px;
    display: flex;
    padding-bottom: 10px;
}

.search-result-right {
    width: calc(100% - 200px);
    padding: 5px;
}

.search-result-header {
    padding: 5px 20px 0px 0px;
}

.search-header-link {
    text-decoration: none;
    color: #00a550;
    font-size: 17px;
}

    .search-header-link:hover {
        text-decoration: none;
        color: #00a550;
    }

.sarch-result-description {
    padding: 20px 20px 10px 0px;
    font-size: 15px;
}

.detail-btn {
    background-color: #2b2b2b;
    width: 200px;
    display: block;
    padding: 3px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-right:20px;
}

    .detail-btn:hover {
        text-decoration: none;
        color: #ff9900;
    }

.search-file-type {
    padding: 10px 20px 0px 0px;
    font-size: 14px;
}

.search-result-left {
    width: 200px;
    padding: 5px;
}

.search-result-image
{
    width:100%;
    height:120px;
}

    .search-result-image &gt; img {
        width: 160px;
        height: 120px;
        display: block;
        margin: 0px auto;
        margin-top: 10px;
    }

.search-result-price {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    color: #00a550;
}

.search-result-release-time {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.search-result-buy {
    background-color: #00a550;
    width: 120px;
    display: block;
    padding: 3px;
    text-align: center;
    color: #fff;
    margin: 0px auto;
}

    .search-result-buy:hover {
        text-decoration: none;
        background-color: #ef5661;
        color: #fff;
    }

.error-message {
    width: 300px;
    margin: 0px auto;
    padding-top: 30px;
}

.my-alert-danger {
    color: #fff;
    background-color: #d43f3f;
    border-color: #f5c6cb;
    text-align: center;
}

.error-picture {
    width: 300px;
    margin: 0px auto;
}

    .error-picture &gt; img {
        display: block;
        width: 100%;
    }

.error-page-links {
    width: 300px;
    text-align: center;
    margin: 0px auto;
    margin-top: 30px;
}

.error-page-link {
    background-color: #00a550;
    display: block;
    width: 200px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    margin:0px auto;
    margin-bottom: 7px;
    border-radius: 5px;
    text-decoration: none;
}

    .error-page-link:hover {
        text-decoration: none;
        background-color: #00b550;
        color:#fff;
    }

.my-form {
    margin-top: 90px;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 3px;
    box-shadow: 0px 0px 3px #343a40;
    min-height: 400px;
    background-color: #fff;
}

    .my-form &gt; h3 {
        color: #333 !important;
        width: 100%;
        text-align: center;
        display: block;
        font-size: 20px;
    }

    .my-form &gt; hr {
        margin-bottom: 20px;
        border: 0;
        border-top: 1px solid #00a550;
    }

.base-form-row
{
    display:flex;
    padding:5px 0px;
}

.form-title
{
    width:70px;
}

.base-form-row &gt; .form-val {
    width: calc(100% - 70px);
    font-size:14px;
}

.ltr-base-form-row {
    direction: ltr;
    text-align:center;
}

.ltr-base-form-row &gt; .form-val
{
    width:100%;
}

.ltr-base-form-row &gt; .form-val &gt; span
{
    font-size: 13px;
    margin-right: 5px;
}

.ltr-base-form-row &gt; .form-val &gt; label
{
    position: relative;
    left: -250px;
}

.confirm-email {
    border-radius: 35px;
    outline: none;
    border: 1px solid #ccc;
    width: 250px;
    height: 35px;
    padding-left: 52px;
    font-size: 14px;
    border: 2px solid #d13328;
}

.confirm-mobile {
    border-radius: 35px;
    outline: none;
    border: 1px solid #ccc;
    width: 250px;
    height: 35px;
    padding-left: 52px;
    font-size: 14px;
    border: 2px solid #427bc0;
}

.lblEmail {
    background-color: #d13328;
    display: inline-block;
    border-radius: 35px 0px 0px 35px;
    width: 50px;
    text-align: center;
    height: 32px;
    line-height: 35px;
    top: 2px;
    color: #fff;
    margin-right: -50px;
}

.lblMobile {
    background-color: #427bc0;
    display: inline-block;
    border-radius: 35px 0px 0px 35px;
    width: 50px;
    text-align: center;
    height: 32px;
    line-height: 35px;
    top: 2px;
    color: #fff;
    margin-right: -50px;
}

.btn-confirm-success {
    background-color: #28af63;
    color: #000;
    display: block;
    width: 200px;
    margin: 0px auto;
}

.btn-confirm-success:hover{
    color:#fff;
}

.btn-cancel-warning {
    background-color: #ffd044;
    color: #000;
    padding: 3px;
    display: block;
    width: 150px;
    margin: 0px auto;
    margin-top: 15px;
}

.btn-cancel-warning:hover {
    color: #fff;
}

.login-container {
    width: 400px;
    margin: 0px auto;
    margin-top: 90px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 3px #777;
}

    .login-container &gt; .login-header {
        height: 70px;
        width: 400px;
        margin: 0px auto;
        background-color: #f9f9f9;
        padding: 10px;
        box-sizing: border-box;
    }

        .login-container &gt; .login-header &gt; i {
            transform: rotate(15deg);
            font-size: 40px;
        }

        .login-container &gt; .login-header &gt; h3{
            display: inline-block;
            line-height: 50px;
            margin-right: 10px;
        }

.login-body {
    width: 400px;
    margin: 0px auto;
    min-height: 250px;
    text-align: center;
    padding-top: 30px;
    background-color: rgba(255, 255, 255, 0.7);
}

    .login-body &gt; .wrap-input {
        position: relative;
        z-index: 1;
    }

        .login-body &gt; .wrap-input &gt; .login-text {
            padding: 10px;
            padding-right: 30px;
            width: 260px;
            margin: 0px auto;
            margin-right: 17px;
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 30px;
            font-size: 16px;
            box-shadow: #5cb85c;
            background-color: #3e4e56;
            color: #fff;
            outline: none;
            position: relative;
        }

        .login-body &gt; .wrap-input &gt; .txtCaptcha {
            margin-right: 9px !important;
        }

        .login-body &gt; .wrap-input &gt; .effect {
            display: block;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 255px;
            height: 45px;
            position: absolute;
            top: 0px;
            right: 70px;
            box-shadow: 0px 0px 0px 0px;
            color: #5cb85c;
            border-radius: 30px;
            z-index: -1;
        }

        .login-body &gt; .wrap-input &gt; login-text:focus {
            color: #fff;
        }

.login-text:focus + i.login-icon {
    color: #5cb85c;
}

    .login-text:focus + i.login-icon + span.effect {
        -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
        animation: anim-shadow 0.5s ease-in-out forwards;
    }

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 70px 25px;
        opacity: 0;
    }
}

.login-icon {
    padding: 5px;
    position: relative;
    right: -255px;
    color: #fff;
}

.sec-image {
    position: relative;
    width: 135px;
    right: 65px;
    height: 44px;
    top: -65px;
    z-index: 2;
    border-radius: 30px 0px 0px 30px;
}

.login-body &gt; div &gt; .btn-login {
    padding: 10px;
    width: 260px;
    border-radius: 30px;
}

.login-container &gt; .login-bottom {
    height: 100px;
    width: 400px;
    background-color: rgba(62,78,86,0.9);
    padding: 10px;
    margin: 0px auto;
}

.login-bottom &gt; ul {
    padding: 0px;
    margin: 0px;
    width: 100%;
}

    .login-bottom &gt; ul &gt; li {
        display: table-cell;
        width: 1%;
        text-align: center;
    }

        .login-bottom &gt; ul &gt; li &gt; a {
            color: #fff;
            text-decoration: none;
            height: 50px;
            margin-top: 20px;
            display: block;
        }

            .login-bottom &gt; ul &gt; li &gt; a:hover {
                color: #28a745;
            }

            .login-bottom &gt; ul &gt; li &gt; a &gt; i {
                display: block;
            }

.message-section
{
    width: 100%;
    padding:25px;
    box-sizing: border-box;
}

.bars-body {
    margin-top: 20px;
    display: block;
    min-height:340px;
}

.right-bar {
    width: 100%;
    padding-left: 15px;
    box-sizing: border-box;
}

.left-bar {
    width: 0px;
    overflow: hidden;
}


.posts-header {
    padding: 20px 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
    .posts-header&gt;div{
        font-size:14px;
    }

    .posts-header h1 {
        font-size: 35px;
        color: #d43f3f;
    }


.summary-post-container {
    width: 100%;
    display: flex;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    margin-top: 20px;
}


.summary-post-right {
    display: block;
    width: 100%;
    margin-left:20px;
}

    .summary-post-right &gt; img {
        width: 100%;
        height:100%;
    }

.summary-post-left {
    width: 100%;
}

.summary-post-data {
    display: flex;
    font-size: 12px;
    color:#888;
}

.summary-post-data div{
    width:100%;
}

.summary-post-data div &gt; i{
    margin-left:5px;
}

.summary-post-body
{

}

    .summary-post-body &gt; h3 {
        margin: 0px;
        font-size: 21px;
    }
    .summary-post-body &gt; h3 &gt; a {
        text-decoration: none;
        color: #121212;
    }

    .summary-post-body &gt; h3 &gt; a:hover {
        text-decoration: none;
        color: #d43f3f;
    }

    .summary-post-body &gt; div {
        padding: 10px 0px;
        color: #555;
        text-align:justify;
    }

.btn-full-post {
    width: 150px;
    background-color: #d43f3f;
    color: #fff;
    text-decoration:none;
}

    .btn-full-post:hover {
        background-color: #f43f3f;
        color: #fff;
        text-decoration: none;
    }

.post-header
{
    padding:20px 0px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.post-path
{

}

.post-title &gt; h1
{
    font-size:30px;
}

.post-info {
    font-size: 12px;
    color: #555;
    display:flex;
}

.post-info &gt; div{
    width:150px;
}

    .post-info div &gt; i {
        margin-left:5px;
    }

.post-body
{
    text-align: justify;
}

.post-body &gt; img
{
    width:100%;
    min-height: 300px;
    height:auto;
}

.post-description
{
    padding:20px 0px;
}

    .post-description img{
        max-width:100%;
        display:block;
        margin: 0px auto;
    }

.description {
    padding-top: 90px;
    min-height: 330px;
}

.category-container {
    float: right;
    width: 50%;
    padding: 10px;
    height: 200px;
}

.category{

}

    .category img {
        width: 100%;
        height: 150px;
    }

.category-title {
    width: 100%;
    color: #d43f3f;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
}



.justify {
    text-align: justify;
}

.max-width-100-percent {
    max-width: 100%;
}

.bg-gray {
    background-color: #eaeaea;
}

.pt-text {
    padding-top: 25px;
    padding-bottom: 10px;
}

.multi-line-seperator {
    width: 100px;
    height: 3px;
    background-color: #28af63;
    margin:0px auto;
    position:relative;
    margin-top:20px;
}

    .multi-line-seperator::before {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #28af63;
        margin: 0px auto;
        left: -25px;
        display: block;
        position: absolute;
        top: -6px;
    }

    .multi-line-seperator::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #28af63;
        margin: 0px auto;
        right: -25px;
        display: block;
        position: absolute;
        top: 6px;
    }

.max-width-70-percent {
    max-width:70%;
}

.centered{
    display:block;
    text-align:center;
    margin:0px auto;
}




header {
    position: relative;
    width: 100%;
}

.logo {
    position: relative;
    z-index: 123;
    padding: 10px;
    font: 18px verdana;
    color: #6DDB07;
    float: left;
    width: 15%
}

    .logo a {
        color: #6DDB07;
    }

nav {
    position: relative;
    width: 980px;
    margin: 0 auto;
}

#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0px;
    margin-top: 5px;
}

    #cssmenu:after, #cssmenu &gt; ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0
    }

    #cssmenu #head-mobile {
        display: none
    }

#cssmenu {
}

    #cssmenu &gt; ul &gt; li {
        float: right;
    }

        #cssmenu &gt; ul &gt; li &gt; a {
            padding: 17px;
            font-size: 12px;
            letter-spacing: 1px;
            text-decoration: none;
            color: #ddd;
            font-weight: 700;
        }

        #cssmenu &gt; ul &gt; li:hover &gt; a, #cssmenu ul li.active a {
            color: #fff
        }

        #cssmenu &gt; ul &gt; li:hover, #cssmenu ul li.active:hover, #cssmenu ul li.active, #cssmenu ul li.has-sub.active:hover {
            background: #28a745 !important;
            -webkit-transition: background .3s ease;
            -ms-transition: background .3s ease;
            transition: background .3s ease;
        }

        #cssmenu &gt; ul &gt; li.has-sub &gt; a {
            padding-right: 30px
        }

            #cssmenu &gt; ul &gt; li.has-sub &gt; a:after {
                position: absolute;
                top: 22px;
                right: 11px;
                width: 8px;
                height: 2px;
                display: block;
                background: #ddd;
                content: ''
            }

            #cssmenu &gt; ul &gt; li.has-sub &gt; a:before {
                position: absolute;
                top: 19px;
                right: 14px;
                display: block;
                width: 2px;
                height: 8px;
                background: #ddd;
                content: '';
                -webkit-transition: all .25s ease;
                -ms-transition: all .25s ease;
                transition: all .25s ease
            }

        #cssmenu &gt; ul &gt; li.has-sub:hover &gt; a:before {
            top: 23px;
            height: 0
        }

    #cssmenu ul ul {
        position: absolute;
        left: -9999px;
        background-color: rgb(37, 42, 52);
    }

        #cssmenu ul ul li {
            height: 0;
            -webkit-transition: all .25s ease;
            -ms-transition: all .25s ease;
            transition: all .25s ease
        }

            #cssmenu ul ul li:hover {
            }

    #cssmenu li:hover &gt; ul {
        left: auto;
        z-index: 20001;
        margin-top: 0px;
        padding: 0px;
    }

        #cssmenu li:hover &gt; ul &gt; li {
            height: 35px
        }

    #cssmenu ul ul ul {
        margin-left: 100%;
        top: 0
    }

    #cssmenu ul ul li a {
        border-bottom: 1px solid rgba(150,150,150,0.15);
        padding: 11px 15px;
        width: 170px;
        font-size: 12px;
        text-decoration: none;
        color: #ddd;
        font-weight: 400;
    }

    #cssmenu ul ul li:last-child &gt; a, #cssmenu ul ul li.last-item &gt; a {
        border-bottom: 0
    }

    #cssmenu ul ul li:hover &gt; a, #cssmenu ul ul li a:hover {
        color: #fff;
        background-color: #28a745;
    }

    #cssmenu ul ul li.has-sub &gt; a:after {
        position: absolute;
        top: 16px;
        right: 11px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: ''
    }

    #cssmenu ul ul li.has-sub &gt; a:before {
        position: absolute;
        top: 13px;
        right: 14px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: '';
        -webkit-transition: all .25s ease;
        -ms-transition: all .25s ease;
        transition: all .25s ease
    }

    #cssmenu ul ul &gt; li.has-sub:hover &gt; a:before {
        top: 17px;
        height: 0
    }

    #cssmenu ul ul li.has-sub:hover, #cssmenu ul li.has-sub ul li.has-sub ul li:hover {
        background: #363636;
    }

    #cssmenu ul ul ul li.active a {
        border-left: 1px solid #333
    }

    #cssmenu &gt; ul &gt; li.has-sub &gt; ul &gt; li.active &gt; a, #cssmenu &gt; ul ul &gt; li.has-sub &gt; ul &gt; li.active &gt; a {
        border-top: 1px solid #333
    }

@media screen and (max-width:1000px) {
    .logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
        text-align: center;
        padding: 10px 0 0 0;
        float: none
    }

    .logo2 {
        display: none
    }

    nav {
        width: 100%;
    }

    #cssmenu {
        width: 100%
    }

        #cssmenu ul {
            width: 100%;
            display: none
        }

            #cssmenu ul li {
                width: 100%;
                border-top: 1px solid #444
            }

                #cssmenu ul li:hover {
                    background: #363636;
                }

        #cssmenu li:hover &gt; ul {
            padding: 40px;
        }

            #cssmenu ul ul li, #cssmenu li:hover &gt; ul &gt; li {
                height: auto
            }

                #cssmenu ul li a, #cssmenu ul ul li a {
                    width: 100%;
                    border-bottom: 0
                }

        #cssmenu &gt; ul &gt; li {
            float: none
        }

        #cssmenu ul ul li a {
            padding-left: 25px
        }

        #cssmenu ul ul li {
        }

            #cssmenu ul ul li:hover {
                background: #363636 !important
            }

        #cssmenu ul ul ul li a {
            padding-left: 35px
        }

        #cssmenu ul ul li a {
            color: #ddd;
            background: none
        }

        #cssmenu ul ul li:hover &gt; a, #cssmenu ul ul li.active &gt; a {
            color: #fff
        }

        #cssmenu ul ul, #cssmenu ul ul ul {
            position: relative;
            left: 0;
            width: 100%;
            margin: 0;
        }

            #cssmenu &gt; ul &gt; li.has-sub &gt; a
            {
                padding-right: 50px;
            }

            #cssmenu &gt; ul &gt; li.has-sub &gt; a:after, #cssmenu &gt; ul &gt; li.has-sub &gt; a:before, #cssmenu ul ul &gt; li.has-sub &gt; a:after, #cssmenu ul ul &gt; li.has-sub &gt; a:before {
                display: none
            }

        #cssmenu #head-mobile {
            display: block;
            padding: 23px;
            color: #ddd;
            font-size: 12px;
            font-weight: 700
        }

    .button {
        width: 55px;
        height: 46px;
        /*position: absolute;*/
        right: 0;
        top: 13px;
        cursor: pointer;
        z-index: 12399994;
    }

        .button:after {
            /*position: absolute;*/
            top: 22px;
            right: 20px;
            display: block;
            height: 4px;
            width: 20px;
            border-top: 2px solid #dddddd;
            border-bottom: 2px solid #dddddd;
            content: '';
            padding-bottom: 4px;
        }

        .button:before {
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
            /*position: absolute;*/
            top: 16px;
            right: 20px;
            display: block;
            height: 2px;
            width: 20px;
            background: #ddd;
            content: '';
            margin-bottom: 4px;
        }

        .button.menu-opened:after {
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
            position: relative;
            top: 0px;
            right: -1px;
            border: 0;
            height: 2px;
            width: 25px;
            background: #fff;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .button.menu-opened:before {
            top: 7px;
            right: -4px;
            height: 3px;
            background: #fff;
            position: relative;
            width: 29px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        height: 46px;
        width: 46px;
        cursor: pointer
    }

        #cssmenu .submenu-button.submenu-opened {
        }

    #cssmenu ul ul .submenu-button {
        height: 34px;
        width: 34px
    }

    #cssmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: ''
    }

    #cssmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px
    }

    #cssmenu .submenu-button.submenu-opened:after {
        background: #fff
    }

    #cssmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: ''
    }

    #cssmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #cssmenu .submenu-button.submenu-opened:before {
        display: none
    }

    #cssmenu ul ul ul li.active a {
        border-left: none
    }

    #cssmenu &gt; ul &gt; li.has-sub &gt; ul &gt; li.active &gt; a, #cssmenu &gt; ul ul &gt; li.has-sub &gt; ul &gt; li.active &gt; a {
        border-top: none
    }
}








@media (max-width:1098px) {
    .page-container{
        width:950px;
    }
}

@media (max-width:1000px) {
    .utility-container {
        height: 324px;
    }

    .footer-links
    {
        width:150px;
    }

    .main-footer-section {
        width: calc(100% - 400px);
    }

    .auth-section {
        width: 400px;
    }

    .page-container {
        width: 800px;
    }
}


@media (max-width:970px) {
    .nav-bar-container {
        display: block;
        position: absolute;
        top: 70px;
        background-color: rgb(37, 42, 52);
        height: 0px;
        overflow:hidden;
        width: 100vw;
        margin: 0px;
        right: 0px;
        z-index: 100;
        transition: height 0.3s ease-in-out;
    }

    .nav-bar {
        display: block;
        z-index: 160;
    }

        .nav-bar &gt; li {
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 8px 5px;
            line-height: 23px;
            height: 40px;
        }
    

            .nav-bar &gt; li &gt; a 
            {
                display:block;
            }

    .navbar-button {
        display: initial;
    }

    .search-container {
        width: calc(100% - 100px);
        text-align: left;
    }

    .site-description-wrapper
    {
        min-height:400px;
    }

    .footer-links
    {
        display:none;
    }

    .seperator1{
        display:none;
    }

    .main-footer-section {
        width: calc(100% - 300px);
    }

}

@media (max-width:845px) {
    .page-container {
        width: 720px;
    }

    .bars-body
    {
        display:block;
    }

    .right-bar {
        width: 100%;
        padding-left: 0px;
    }

    .left-bar {
        width: 100%;
        margin-top:20px;
    }

    .slide-free-products-container {
        width: 280px;
        margin: 0px auto;
    }

    .article-list-container
    {
        margin-top:10px;
    }

    .single-product-bottom-section
    {
        display:block;
    }

    .right-product-bottom-section {
        width: 100%;
        padding-left: 0px;
    }

    .left-product-bottom-section {
        width: 100%;
        margin-top:20px;
    }


}

@media (max-width:768px)
{
    .product-wrapper
    {
        width:50%;
    }

    .footer {
        height: auto;
    }

    .footer-circle {
        background-color: transparent;
        height:auto;
    }

    .footer-content {
        display: block;
        height:auto;
        padding-bottom:20px;
    }

    .footer-links {
        display: none;
    }

    .footer-separator {
        display: none;
    }

    .main-footer-section {
        width: 100%;
    }

    .footer-email {
        max-width: 95%;
        margin: 0px auto;
    }

    .auth-section {
        width: 100%;
        margin-top: 20px;
    }

    .footer-bottom {
        height: auto;
    }
}

@media (max-width:740px)
{
    .show-product-container {
        display: block;
        width: 95%;
        margin: 0px auto;
        margin-top: 20px;
        padding-bottom: 50px;
    }

    .product-image-container
    {
        width:0px;
        display:none;
    }

    .product-description-container
    {
        width:100%;
    }
}


@media (max-width:730px)
{
    .page-container {
        width: 95%;
    }
}


@media (max-width:633px) {
    .page-container {
        width: 95%;
    }

    .user-buying-guide-container
    {
        display:block;
    }
}

@media (max-width:600px)
{
    .utility-container {
        width: 200px;
        margin: 0px auto;
        margin-bottom: 10px;
        height:auto;
    }

    #carouselExampleIndicators
    {
        display:none !important;
    }

    .links {
        padding-top: 100px;
    }

    .product-page-top-section
    {
        display:block;
    }

    .middle-link {
        margin: 0px auto;
        margin-bottom: 7px;
    }

    .product-page-banner {
        width: 100%;
        margin-top: 10px;
        margin-right:0px;
    }

}

@media (max-width:580px)
{
    .summary-post-container
    {
        display:block;
        height:410px;
    }

    .summary-post-right
    {
        height:200px;
    }

    .summary-post-left {
        padding: 10px 0px;
    }

}

@media(max-width:550px)
{
    .btn-mobile-search {
        display: block;
    }

    .search-container
    {
        display:none;
    }

    .logo-container {
        margin-left: calc(100% - 220px);
    }

    .search-container {
        position: absolute;
        top: 0px;
        display: block;
        right: 0px;
        background-color: rgb(37, 42, 52);
        width: 100%;
        text-align: center;
        display:none;
    }

    .site-description-background
    {
        margin-top:20px;
    }

    .site-description-wrapper {
        min-height: 400px;
    }

}


@media (max-width:520px)
{
    .links
    {
        display:block;
    }

    .right-links
    {
        padding:0px;
        margin-bottom:5px;
    }

    .right-links &gt; a{
        margin:0px auto;
    }

    .left-links
    {
        padding:0px;
        margin-bottom:5px;
    }

    .left-links &gt; a{
        margin:0px auto;
    }

    .site-description-wrapper {
        min-height: 450px;
    }

    .product-wrapper
    {
        width:100%;
    }

    .product-container
    {
        width:60%;
    }

    .btn-buying
    {
        width:100%;
    }

    .buying-info
    {
        width:100%;
    }


    .buying-info-row {
        display: block;
    }

    .right-info buying-success-info {
        width: 200px;
        margin: 0px auto;
        margin-bottom: 10px;
    }

    .buying-warning-info {
        width: 200px;
        margin: 0px auto;
        margin-bottom: 10px;
    }

    .right-info buying-success-info {
        width: 200px;
        margin: 0px auto;
        margin-bottom: 10px;
    }

    .buying-success-info {
        width: 200px;
        margin:0px auto;
        margin-bottom:10px;
    }

}


@media (max-width:500px)
{
    .search-result-right
    {
        display:block;
    }

    .search-result-right 
    {
        width:100%;
    }

    .search-result-left
    {
        display:none;
    }
}


@media (max-width: 450px)
{
    .site-description-wrapper {
        min-height: 510px;
    }

    .product-container {
        width: 70%;
    }

    .ltr-base-form-row &gt; .form-val &gt; label {
        position: relative;
        left: -170px;
    }

    .confirm-email {
        width: 170px;
    }

    .confirm-mobile {
        width: 170px;
    }
}


@media (max-width:400px)
{
    .category-container {
        float: none;
        width: 100%;
    }
}


@media (max-width: 350px)
{
    .site-description-wrapper {
        min-height: 570px;
    }

    .product-container {
        width: 90%;
    }

    .latest-products-title
    {
        width:95%;
    }

    .error-message {
        width: 99%;
        margin: 0px auto;
    }

    .error-picture {
        width: 98%;
        margin: 0px auto;
    }

    .error-page-links {
        width: 100%;
    }

    .ltr-base-form-row &gt; .form-val &gt; span {
        display:none;
    }
}

@media (max-width: 300px)
{
    .error-message
    {
        width:99%;
        margin:0px auto;
    }

    .error-picture
    {
        width:98%;
        margin:0px auto;
    }

    .error-page-links
    {
        width:100%;
    }

    .my-form
    {
        padding:10px;
    }

    .confirm-email {
        padding-left: 37px;
    }

    .confirm-mobile {
        padding-left: 37px;
    }

    .ltr-base-form-row &gt; .form-val &gt; label {
        width: 35px;
        margin-right: -35px;
    }

    .slide-free-products-container
    {
        width:98%;
        margin:0px auto;
    }

    .pad15
    {
        padding:5px;
    }
}

.justify-section{
    text-align: justify;
}

.centered-content
{
    text-align: center;
}




.blog_carousel {
    height: 330px !important;
}

    .blog_carousel .item-inner
    {
        border-radius: 10px;
        box-shadow: 0px 0px 2px #aaa;
    }

    .blog_carousel .item-inner &gt; .item-top &gt; img
    {
        border-radius: 10px 10px 0px 0px;
    }

    .blog_carousel .product-name &gt; a {
        color: #0099ff !important;
    }

    .blog_carousel .item-bottom {
        height: 150px !important;
    }


</pre></body></html>