﻿:root {
    --Color1: #ea5187;
}



.Dir {
    direction: ltr !important;
}


/*#region HtmlElement*/
    img {
        max-width: 100%;
        border-radius: 4px;
    }

   

    a.bold {
        font-size: larger;
        font-weight: bold !important;
    }

    a.white {
        color: #FFFFFF !important;
    }
    a.white:hover {
        color: yellow !important;
    }




    label {
        font-weight: bold !important;
    }
    

    h1 {
        font-family: F1 !important;
        font-size: 18pt !important;
        padding: 0px !important;
        margin: 0px !important;
        line-height: 175%;
        font-weight: bold;
    }

    h1.cap {
        display: inline-block;
        width: 100%;
        height: 16px;
        border-bottom: 1px solid var(--Color1);
        font-size: 14pt !important;
    }

    h1.cap span {
        padding: 5px;
        padding-left: 10px;
        line-height: 17px;
        background-color: #EFEFEF;
    }

    h2 {
        font-family: F1 !important;
        font-size: 13pt !important;
        padding: 0px !important;
        margin: 0px !important;
        line-height: 200%;
    }

    h3 {
        font-family: F1 !important;
        font-size: 10pt !important;
        padding: 0px !important;
        margin: 0px !important;
        line-height: 25px !important;
    }


    /*#region HtmlControl*/
    input[type=text],
    input[type=email],
    textarea {
        width: 100%;
        border: 1px solid #DDDDDD;
        border-radius: 4px;
        padding: 5px;
        outline: none;
        margin-bottom: 5px;
    }

    input[type=text]:focus,
    input[type=email]:focus,
    textarea:focus {
        border: 1px solid #AAAAAA;
        box-shadow: 0px 0px 5px #AAAAAA;
    }

    input[type=button],
    input[type=submit] {
        border-radius: 4px;
        background-color: #DDDDDD;
        padding: 5px 10px 5px 10px;
        border: none;
    }

    input[type=button]:hover,
    input[type=submit]:hover {
        background-color: #CCCCCC;
    }

    input[type=button].big,
    input[type=submit].big {
        background-color: #EF394E;
        border-radius: 6px;
        color: #FFFFFF !important;
        text-align: center;
        font-size: 14pt !important;
        font-weight: bold;
        padding: 5px !important;
        width: 100%;
        display: inline-block;
    }

    input[type=button]:hover.big,
    input[type=submit]:hover.big {
        color: yellow !important;
    }

    table {
        border-collapse: inherit !important;
        border-spacing: 2px !important;
        width: 100% !important;
    }

    table.list
    {
    }

    table.list tr:first-child td
    {
        text-align:center;
        border-bottom:1px solid var(--Color1);
    }


    table.list tr td {
        padding:5px;
    }

    table.list tr:nth-child(2n+2) td {
        background-color:#E7E7E7;
    }

    table.list tr:nth-child(n+2):hover td {
        background-color: #ffffa1;
    }


    /*#endregion HtmlControl*/


/*#endregion HtmlElement*/

/*#region HtmlPack*/

   
    
    /*#region box*/
        .box,
        .box-close {
            border: 1px solid #DDDDDD;
            background-color: #FFFFFF;
            padding: 5px;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .box:hover,
        .box-close:hover {
            box-shadow: 0px 0px 5px #CCCCCC;
        }

        .box-dark {
            background-color: #DDDDDD;
            padding: 5px;
            border-radius: 4px;
        }

        .box .caption        {
            font-weight: bold;
            border-bottom: 1px solid var(--Color1);
            margin-bottom: 10px;
            padding: 10px;
        }

        .box-close .caption {
            cursor: pointer;
            font-weight: bold;
            padding: 10px;
        }

        .box-close .caption:after {
            font-family: 'FontAwesome';
            content: "\f077";
            float: left;
            color: var(--Color1);
        }

        .box-close .caption.up:after {
            content: "\f078";
        }


        .box-close .body {
            overflow: hidden;
            border-top: 1px solid var(--Color1);
            padding:10px;
        }


        



        .caption-v2 {
            padding:5px;
            padding-bottom:10px;
            margin-bottom: 10px;
            font-weight: bold;
            text-align: center;
            border-bottom: 1px solid var(--Color1);
        }



    /*#endregion box*/

    /*#region box-over*/
.box-over {
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .box-over .close-icon {
        color: white;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 201;
        padding: 50px;
        font-size: 50pt;
        line-height: 25px;
        cursor: pointer;
    }

    /*#endregion box-over*/

    /*#region Paging*/
    .Paging_Box {
        padding: 10px;
        text-align: center;
        direction: ltr;
        float: none;
        clear: both;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .Paging_Item {
        text-align: center;
        background-color: #EEEEEE !important;
        border: 1px solid #DDDDDD;
        border-right: none;
        width: 40px;
        line-height: 30px;
        padding-top: 3px;
        font-family: F1;
        font-size: 14pt;
        display: inline-block;
    }

    .Paging_Item:hover {
        box-shadow: 0px 0px 10px #BBBBBB;
        border: 1px solid #DDDDDD;
    }

    .Paging_Item_On {
        border: 1px solid #AAAAAA !important;
        background-color: #DDDDDD !important;
    }


    .Paging_Box a:first-child {
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    .Paging_Box a:last-child {
        border-right: 1px solid #DDDDDD;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }

    /*#endregion Paging*/

    /*#region share-links*/
    .share-links {
        display: inline-block;
        text-align: center;
        border: #DDDDDD 1px solid;
        border-radius: 4px;
        margin-top: 5px;
        margin-bottom: 5px;
        background-color: #FFFFFF;
        padding: 10px;
    }

    .share-links H2 {
        display: inline-block;
        color: #454545;
        font-size: 10pt !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
        margin-top: -5px !important;
    }
    /*#endregion share-links*/

    /*#region RadioSwitch*/
    .switch {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 18px;
        margin-top: 10px;
        margin-right: 10px;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 30px;
}

    .slider:before {
        position: absolute;
        content: "";
        width: 12px;
        height: 12px;
        left: 2px;
        bottom: 2px;
        background-color: #CCC;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    /*background-color: #2196F3;
    border: 1px solid #2196F3;*/
    background-color: var(--Color1);
    border: 1px solid var(--Color1);
}

input:focus + .slider {
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
    background-color: #FFFFFF;
}




    /*#endregion RadioSwitch*/

/*#endregion HtmlPack*/

/*#region Public*/
    .vLine::after {
        content: " | ";
        color: #DDDDDD;
        display: inline-block;
        margin-left: 5px;
        margin-right: 5px;
    }


    .text {
        text-align: justify;
        line-height: 175%;
        padding-left:10px;
        padding-right:10px;
        font-size:larger !important;
    }


    .right, ._Right {
        text-align: right !important;
    }

    .center, ._Center {
        text-align: center !important;
    }

    .left, ._Left {
        text-align: left !important;
    }


    a.link-btn {
        background-color: var(--Color1) !important;
        color: #FFFFFF !important;
        padding-right: 10px;
        padding-left: 10px;
        border-radius: 10px;
    }

        a.link-btn:hover {
            color: yellow !important;
        }





/*#endregion Public*/

/*#region Master*/
    .page-top-fixed {
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 200;
        margin-bottom: 10px;
        box-shadow: 0px 0px 5px #AAAAAA;
    }

   

    .page-top-container {
        width: 100%;
    }

    .page-top-container .mobile {
        display: none;
    }

    .page-top-container .desktop {
        display: flex;
    }


       





        .page-top-container .desktop .logo {
            width: 100px;
            text-align: center;
        }

        .page-top-container .desktop .main {
            width: calc(80% - 100px);
        }

            .page-top-container .desktop .main .menu {
                padding-right: 10px;
            }

                .page-top-container .desktop .main .menu a {
                    color: #454545 !important;
                    display: inline-block;
                    margin-left: 10px;
                }

                    .page-top-container .desktop .main .menu a:hover {
                        color: var(--Color1) !important;
                    }




        .page-top-container .desktop .left {
            width: 20%;
            display: flex;
            flex-direction: column;
            align-items: end;
            text-align: left;
            margin-right: 20px;
        }

            .page-top-container .desktop .left a {
                border: 1px solid #DDDDDD;
                padding: 10px;
                border-radius: 4px;
                margin: 5px;
                text-align: center;
                width: 200px;
                max-width: 100%;
            }

                .page-top-container .desktop .left a:hover {
                    color: #FFFFFF !important;
                    border: 1px solid cornflowerblue !important;
                    background-color: cornflowerblue;
                }

/*#region MenuCategory*/



.menu-category {
    background-color: rgba(0, 0, 0, 0.40);
    position: fixed;
    top: 114px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 190;
    display: none;
}



    .menu-category .menu-container {
        background-color: red;
        display: flex;
        background-color: #FFFFFF;
        margin-right: 115px;
        margin-left: 115px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 0px 0px 5px #AAAAAA;
    }


        .menu-category .menu-container .right {
            width: 300px;
            border-left: 1px solid #DDDDDD;
        }

            .menu-category .menu-container .right div {
                padding: 10px;
            }

                .menu-category .menu-container .right div:before {
                    content: " ✔ ";
                }

                .menu-category .menu-container .right div:hover,
                .menu-category .menu-container .right div.active {
                    background-color: #DDDDDD;
                }

        .menu-category .menu-container .left {
            width: calc(100% - 300px);
            text-align:right !important;
        }

            .menu-category .menu-container .left div {
                min-height: 300px;
                padding: 10px;
                background-position: left bottom;
                background-repeat: no-repeat;
                background-size: contain;
                line-height: 175%;
                display: none;
                border-bottom-left-radius: 10px;
            }

/*#endregion MenuCategory*/





.mobile-hidden {
    display: normal;
}

.mobile-show {
    display: none;
}

.mobile-close-icon {
    display: none;
}


/* محدود موبایلی */
@media (max-width:760px) {
    .menu-bg-height {
        height: 60px;
    }

    .page-top-container .desktop {
        display: none;
    }

    .page-top-container .mobile {
        display: flex;
        justify-content: space-between;
    }

    .page-top-container .mobile .menu-icon {
            width: calc(100% - 300px);
            line-height: 40px;
            cursor: pointer;
        }

    .page-top-container .mobile .logo {
            /*max-width: 300px;*/
        }

    .page-top-container .mobile .menu-box {
            display: none;
            position: fixed;
            top: 50px;
            right: 0px;
            bottom: 0px;
            left: 0px;
            background-color: rgba(0, 0, 0, 0.55);
        }

    .page-top-container .mobile .menu-box .menu-item {
                position: fixed;
                /*padding: 10px 25px 10px 25px;*/
                padding: 0px;
                top: 50px;
                right: 0px;
                bottom: 0px;
                width: 0px;
                border-top: 1px solid #DDDDDD;
                background-color: #FFFFFF;
                overflow: auto;
            }

    .page-top-container .mobile .main-link {
            display: flex;
        }

    .page-top-container .mobile .main-link a {
                border: 1px solid #DDDDDD;
                padding: 10px;
                border-radius: 4px;
                width: 50%;
                text-align: center;
            }

    .page-top-container .mobile .main-link a:first-child {
                    margin-left: 5px;
                }

    .page-top-container .mobile .main-link a:hover {
                    color: #FFFFFF !important;
                    border: 1px solid cornflowerblue !important;
                    background-color: cornflowerblue;
                }

    .mobile-show {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }

    .mobile-center {
        text-align:center !important;
    }

    .mobile-close-icon {
        position:fixed;
        top:10px;
        left:10px;
        background-color:#FFF;
        padding:10px;
        display: inline-block;
        cursor:pointer;
        width:30px;
        height:30px;
        line-height:15px;
        text-align:center;
        border-radius:4px;
    }

    .mobile-close-icon:before {
        content: " ✕ ";
        font-weight:bold;
    }

    .mobile-close-icon:hover {
        background-color:var(--Color1);
        color:#FFFFFF;
    }



}



.page-bottom {
    margin-top: 20px;
    border-top: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    padding-top: 30px;
}



/*#endregion Master*/

/*#region Page*/


    /*#region Content*/
        .Content_Desc {
            font-family: F1 !important;
            font-size: 14pt !important;
            line-height: 175% !important;
            text-align: justify;
            margin: 5px 0px 5px 0px;
            padding-bottom:10px;
            border-bottom:1px solid #DDDDDD;

        }

        .Content_MediaShow {
            background-color: #454545;
            padding: 5px;
            text-align: center;
            min-width: 400px;
            color: #FFFFFF;
        }

        .Content_MediaText {
            background-color: #222222;
            padding: 5px;
            text-align: center;
            min-width: 100px;
            color: #FFFFFF;
        }



    /*#endregion Content*/
/*#endregion Page*/

/*#region UserControl*/
    /*#region uc-search*/
        .uc-search {
            border: 1px solid #DDDDDD;
            border-radius: 4px;
            padding: 5px;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .uc-search input[type=text] {
            border: none;
            width: calc(100% - 21px);
            outline: none;
            margin-bottom: 0px;
        }

        .uc-search input[type=text]:focus {
            box-shadow: none;
        }

        .uc-search a {
            color: #DDDDDD !important;
        }

        .uc-search-result {
            position: relative;
            background-color: #FFF;
            padding: 10px;
            top: -10px;
            border: 1px solid #DDD;
            border-top: none;

            border-bottom-left-radius:4px;
            border-bottom-right-radius:4px;
            display:none;

        }


        .uc-search-result table {
            width:auto !important;
        }

        .uc-search-result img{
            max-width:50px;
            max-height:50px;
        }

        .uc-search .fa-close{
            cursor:pointer;
        }

        /*#endregion uc-search*/
        /*#region uc-gallery*/
        .uc-gallery-ver .item {
            margin-bottom: 15px;
        }

        .uc-gallery-ver .item:last-child {
            margin-bottom: 0px !important;
        }

        
    /*#endregion uc-gallery*/

    /*#region uc-photoGallery-Item*/
    .uc-photoGallery-Item {
        background-position: center center;
        background-size: cover;
        width: 100%;
        padding-top: 100%; /* 1:1 Aspect Ratio */
        position: relative;
        border-radius: 4px;
        cursor: pointer;
    }
    /*#endregion uc-photoGallery-Item*/

/*#endregion UserControl*/

/*#region Product*/

  

    

    /*#region ProductPage*/
    
    .product .main-data {
        border-radius: 6px;
        background-color: #EEEEEE;
        border: 1px solid #DDDDDD;
        font-family: F1;
        font-size: 10pt;
        padding: 10px;
        text-align: right;
    }


    .product h1 {
        color: #000000;
        font-weight: bold;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }


    a.product-addCart {
        background-color: #EF394E;
        border-radius: 6px;
        color: #FFFFFF !important;
        text-align: center;
        font-size: 16pt !important;
        padding: 5px !important;
        width: 100%;
        display: inline-block;
    }

    a.product-addCart:hover {
        color: yellow !important;
    }


    .product-addCartDisabled {
        background-color: #CCCCCC;
        border-radius: 6px;
        color: #FFFFFF !important;
        text-align: center;
        font-size: 16pt !important;
        padding: 5px !important;
        width: 100%;
        display: inline-block;
    }

    .product-addCartDisabled:hover {
        background-color: #DDDDDD;
    }


    .product-tblProperty {
        width: auto !important;
    }

    .product-tblProperty tr td:first-child {
        padding-right: 50px;
        padding-left: 10px;
    }

    .product-tblProperty tr td:first-child:after {
        content: " : ";
    }

    .product-tblProperty tr td:last-child {
        font-weight: bolder;
    }


    .product-tblProperty tr td[colspan="3"] {
        border-right: 1px solid var(--Color1);
        padding-right: 10px !important;
        padding-left: 0px;
    }

    .product-tblProperty tr td[colspan="3"]::after {
        content: "" !important;
    }

    /*#endregion ProductPage*/

    /*#region ProductList*/

    .product-list-cateory-box {
        border-radius: 4px;
        margin: 5px;
        display: inline-block;
        background-color: #DDDDDD;
        padding: 10px;
        text-align:center;
        vertical-align:middle;
    }

    .sort-box {
        padding-top:10px;
        padding-bottom:10px;
    }

    .sort-box a.Active {
        background-color: var(--Color1) !important;
        color:#FFFFFF !important;
        padding-right:5px;
        padding-left:5px;
        border-radius:10px;
    }


    .sort-btn, .search-btn {
        background-color: #DDDDDD;
        color: #454545;
        padding: 5px 10px 5px 10px;
        border-radius: 4px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left:5px;
        cursor: pointer;
        display: none;
    }



    .search-box
    {

    }


@media (max-width:760px) {
    .sort-box {
        background-color: #FFF;
        position: fixed;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 200;
        padding: 10px;
        padding-top: 45px;
        overflow:auto;
        display: none;
    }

    .sort-box a {
        display: inline-block;
        width:100%;
        padding:5px 10px 5px 10px !important;
        margin-bottom:5px;
    }

        .sort-box a:before {
            content: " ◉ ";
        }

    .sort-box .vLine{
        display:none;
    }


    .sort-btn, .search-btn {
        display: inline-block;
    }

}



    /*#endregion ProductList*/

    /*#region ShopCart*/
    .ShopCart .Total_Box {
        display: inline-block;
        width: 100px;
        border: 1px solid #DDDDDD;
        height: 30px;
        border-radius: 6px;
        padding: 3px;
    }

    .ShopCart .Total_Box .Increase, .ShopCart .Total_Box .Decrease {
        background-color: #DDDDDD;
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 6px;
        text-align: center;
        line-height: 20px;
        cursor: pointer;
    }

    .ShopCart .Total_Box .Value {
        display: inline-block;
        width: 42px;
        height: 20px;
        border-radius: 6px;
        text-align: center;
        line-height: 20px;
    }

    .ShopCart .RowTotal {
        font-size: 14pt;
    }

    .ShopCart .EndBtn {
        background-color: #EF394E;
        color: #FFFFFF !important;
        font-family: F1;
        font-size: 14pt;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 6px;
    }
/*#endregion ShopCart*/


/*#endregion Product*/



