﻿* {
    text-decoration: none !important;
}

* {
    scrollbar-width: 2px;
    scrollbar-color: #D4AA70 #e4e4e4;
}

    /* Works on Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 5px;
    }

    *::-webkit-scrollbar-track {
        background: #e4e4e4;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #D4AA70;
        border-radius: 20px;
        border: 2px solid #D4AA70;
    }

header {
    height: 55px;
    background-color: #012148;
    width: 100%;
    transition: .3s;
    z-index: 1000;
    top: 0px;
    box-shadow: rgba(0,0,0,.1) 1px 0 3px 4px
}

.top-header {
    background: #243c53;
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
}



.mainmenu-lilayer {
    background: linear-gradient(0deg, rgba(20,17,3,0.8), rgba(20,17,3,0.9)), url('');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 1;
    width: 100%;
    height: 0;
    transition: all 0.3s;
    position: fixed;
    top: 54px;
    z-index: 999
}




.logomenu {
    position: absolute;
    z-index: 5000;
    left: 0px;
    margin-left: 3px;
    height: 80px;
    padding: 0.7143em;
    background: #243c53;
    border-radius: 20%;
    bottom: -50px;
}

.highname {
    float: left;
    margin-left: 70px;
    color: #fff
}

@media(max-width:600px) {
    .highname {
        font-size: 10pt;
    }
}

.logomenumain {
    position: absolute;
    z-index: 4000;
    left: 8px;
    margin-left: 3px;
    background: #42576c;
    top: -2px;
    height: 90%;
    padding: 0.3143em;
    border-radius: 4px;
    visibility: hidden;
}



a:hover {
    text-decoration: none;
}

.main-menu {
    direction: inherit;
    padding-left: 80px;
}


    .main-menu ul li div ul li a {
        border: none !important;
        color: #fff !important;
        font-size: 14px;
        display: inline-block;
        transition: .3s;
        text-shadow: #211b00 0px 0px 5px;
        background-color: rgba(0,0,0,0.051);
        padding: 3px;
    }

        .main-menu ul li div ul li a:before {
            font-family: 'Font Awesome 6 Pro';
            content: "\f105";
            width: 15px;
            text-align: center;
            display: inline-block;
        }

        .main-menu ul li div ul li a:hover:before {
            font-family: 'Font Awesome 6 Pro';
            content: "\f343"
        }


  
@media(min-width:992px) {
    .logomenumain {
        right: 20px;
        top: 2px;
    }

    .main-menu {
        display: flex;
    }

        .main-menu ul {
            display: flex;
        }

    .main-menu {
        transition: .3s;
        white-space: nowrap;
        align-items: center !important;
        width: 100%;
    }

        .main-menu ul li {
            height: 100%;
            padding: .5rem 0;
            position: relative;
            margin-left: 5px;
            margin-right: 5px;
            color: rgba(0, 0, 0, 0.65) !important;
            transition: .3s
        }

        .main-menu > ul > li > a {
            color: #fff !important;
            cursor: pointer;
            padding: 0 6px;
            border-right: 1px solid rgb(118, 137, 155);
            transition: .3s
        }

            .main-menu > ul > li > a:hover {
                border-right: 1px solid rgb(223, 202, 5);
            }

            .main-menu > ul > li > a::before {
                content: '';
                position: absolute;
                width: 100%;
                height: 4px;
                border-radius: 4px;
                background-color: #f54e21;
                bottom: 0;
                left: 0;
                transform-origin: left;
                transform: scaleX(0);
                transition: transform .3s ease-in-out;
            }

            .main-menu > ul > li > a:hover::before {
                transform-origin: left;
                transform: scaleX(1);
            }


        .main-menu ul li:hover a {
            color: #ffb81c
        }

        .main-menu ul li:last-child a {
            border: none
        }


        .main-menu ul li div {
            z-index: 1000;
            justify-content: center;
            position: absolute;
            top: 33px;
            align-items: flex-start;
            display:none;
            height: 0px;
            opacity: 0;
            transition: all 0.3s cubic-bezier(.38,.31,.9,-0.06);
            padding: 7px 0 0 0
        }

        .main-menu ul li:hover div {
            visibility: visible;
            display: unset;
            height: unset;
            opacity: 1;
        }

        .main-menu ul li div ul {
            display: inline-grid;
            grid-template-rows: repeat(10, auto);
            grid-auto-flow: column;
            list-style: none;
            padding: 0;
            margin: 0 10px;
            padding-top: 10px;
        }

        .main-menu ul li div .all {
            grid-template-rows: repeat(20, auto);
            vertical-align: top;
        }

        .main-menu ul li div ul h6 {
            padding-left: 15px;
            color: #f3e10f;
        }
            .main-menu ul li div ul h6::before {
                font-family: 'Font Awesome 6 Pro';
                content: "\f5fd";
                margin: 4px;
            }

        .main-menu ul li div ul .nobefor::before {
            font-family: unset;
            content: unset;
            margin: unset;
            display: none;
        }
            .main-menu ul li div ul li {
                border: none;
                white-space: nowrap;
                text-align: left;
                padding: 3px 0px 0px 10px;
            }

                .main-menu ul li div ul li:hover a {
                    color: #9b8320 !important;
                }
}

@media(max-width:992px) {


    .top-header {
        padding: 4px;
    }

    .main-menu ul {
        padding-right: 0px;
        display: block;
    }

        .main-menu ul li {
            padding: .5rem 0;
            position: relative;
            margin-left: 5px;
            margin-right: 5px;
            transition: all .3s;
        }

            .main-menu ul li div {
                padding: .5rem 0;
                position: relative;
                margin-left: 5px;
                margin-right: 5px;
                display: none;
                transition: all .3s;
            }
                .main-menu ul li div ul h6 {
                    padding-right: 15px;
                    color: #c1b207;
                }
                .main-menu ul li div .all {
                    grid-template-rows: repeat(20, auto);
                    vertical-align: top;
                }
                    .main-menu ul li div ul h6::before {
                        font-family: 'Font Awesome 6 Pro';
                        content: "\f5fd";
                        margin: 4px;
                    }

                .main-menu ul li div ul .nobefor::before {
                    font-family: unset;
                    content: unset;
                    margin: unset;
                    display: none;
                }

    .main-menu > ul > li > a:after {
        font-family: 'Font Awesome 6 Pro';
        content: "\f160";
        position: absolute;
        transition: all .3s;
    }

    .lidispvisit a::after {
        transform: rotate(-180deg);
    }

    .dispvisit {
        display: block !important;
    }

    .main-menu ul li a {
        cursor: pointer;
        color: #c9c6a2 !important;
        font-size: 14pt;
    }

    .main-menu ul li div ul {
        list-style: none;
    }

        .main-menu ul li div ul li a {
            color: #fff !important;
            cursor: pointer;
        }

    .main-menu ul {
        display: inline-block !important;
    }

    .main-menu {
        display: none;
        flex-wrap: wrap;
        color: red !important;
        background-color: rgba(1, 33, 72,.9);
        position: absolute;
        top: 46px;
        padding-left: 30px;
        right: 0px;
        width: 100%;
        overflow-y: auto;
        max-height: 80vh;
        width: 100%;
    }

    .closed-sidebar {
        display: flex;
    }

    .hamburger {
        display: inline-block !important;
    }

    .mainmenu-lilayer {
        display: none;
    }
}





.menusearchbox {
    z-index: 4;
    --background: #4b6378;
    --text-color: #414856;
    --primary-color: #5d758d;
    --border-radius: 10px;
    --width: 200px;
    --height: 40px;
    background: var(--background);
    width: auto;
    height: var(--height);
    position: absolute;
    right: 10px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .menusearchbox input[type=text] {
        background-color: transparent;
        position: relative;
        width: var(--height);
        height: var(--height);
        color: var(--text-color);
        border: 0;
        box-sizing: border-box;
        outline: none;
        padding: 0 3px 0 40px;
        transition: width 0.6s ease;
        z-index: 10;
        opacity: 0;
        cursor: pointer;
        color: #fff !important;
        direction: inherit;
    }

        .menusearchbox input[type=text]:focus {
            z-index: 0;
            opacity: 1;
            width: var(--width);
        }

            .menusearchbox input[type=text]:focus ~ .symbol::before {
                width: 0%;
            }

            .menusearchbox input[type=text]:focus ~ .symbol:after {
                -webkit-clip-path: inset(0% 0% 0% 100%);
                clip-path: inset(0% 0% 0% 100%);
                transition: -webkit-clip-path 0.04s linear 0.105s;
                transition: clip-path 0.04s linear 0.105s;
                transition: clip-path 0.04s linear 0.105s, -webkit-clip-path 0.04s linear 0.105s;
            }

            .menusearchbox input[type=text]:focus ~ .symbol .cloud {
                top: -30px;
                left: -30px;
                transform: translate(0, 0);
                transition: all 0.6s ease;
            }

        .menusearchbox input[type=text]::placeholder {
            color: #f5e1e1;
            font-size: 1em;
        }

        .menusearchbox input[type=text]:focus ~ .symbol .lens {
            top: 12px;
            left: 5px;
            transform: translate(0, 0);
            fill: var(--primary-color);
            transition: top 0.5s ease 0.1s, left 0.5s ease 0.1s, fill 0.3s ease;
        }

    .menusearchbox .symbol {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .menusearchbox .symbol:before {
            content: "";
            position: absolute;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            z-index: -1;
            transition: width 0.6s ease;
        }

        .menusearchbox .symbol:after {
            content: "";
            position: absolute;
            top: 21px;
            left: 21px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            z-index: 1;
            -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
            transition: -webkit-clip-path 0.04s linear 0.225s;
            transition: clip-path 0.04s linear 0.225s;
            transition: clip-path 0.04s linear 0.225s, -webkit-clip-path 0.04s linear 0.225s;
        }

        .menusearchbox .symbol .cloud,
        .menusearchbox .symbol .lens {
            position: absolute;
            fill: #fff;
            stroke: none;
            top: 50%;
            left: 50%;
        }

        .menusearchbox .symbol .cloud {
            width: 35px;
            height: 32px;
            transform: translate(-50%, -60%);
            transition: all 0.6s ease;
        }

        .menusearchbox .symbol .lens {
            fill: #fff;
            width: 16px;
            height: 16px;
            z-index: 2;
            top: 12px;
            left: 12px;
            transition: top 0.3s ease, left 0.3s ease, fill 0.2s ease 0.2s;
        }



.hamburger {
    position: absolute;
    left: 90px;
    padding: 0px 0px;
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

    .hamburger:hover {
        opacity: .7
    }

    .hamburger.is-active:hover {
        opacity: .7
    }

    .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
        background-color: #fff;
    }

.hamburger-box {
    width: 30px;
    height: 16px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px
}

    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 26px;
        height: 3px;
        background-color: #fff;
        border-radius: 10px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease
    }

        .hamburger-inner::before, .hamburger-inner::after {
            content: "";
            display: block
        }

        .hamburger-inner::before {
            top: -6px
        }

        .hamburger-inner::after {
            bottom: -6px
        }

.hamburger--elastic .hamburger-inner {
    top: 1px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

    .hamburger--elastic .hamburger-inner::before {
        top: 6px;
        transition: opacity 0.125s 0.275s ease
    }

    .hamburger--elastic .hamburger-inner::after {
        top: 12px;
        transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55)
    }

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 6px, 0) rotate(135deg);
    transition-delay: 0.075s
}

    .hamburger--elastic.is-active .hamburger-inner::before {
        transition-delay: 0s;
        opacity: 0
    }

    .hamburger--elastic.is-active .hamburger-inner::after {
        transform: translate3d(0, -12px, 0) rotate(-270deg);
        transition-delay: 0.075s
    }






.linboxf {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 110px auto 100px;
    align-items: center;
    margin: 0px 10px 10px 5px;
    width: 100%;
}

.linboxe {
    display: grid;
    grid-template-columns: 195px auto 100px;
    align-items: center;
    margin: 0px 10px 10px 5px;
    width: 100%;
}

.linboxf .linbox1:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f1ea";
    width: 20px;
    margin: 10px;
    font-size: 14pt;
    text-align: center;
}

.linboxe .linbox1:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f4a6";
    width: 20px;
    margin: 10px;
    font-size: 14pt;
    text-align: center;
}

.linbox2 {
    height: 1px;
    background-color: #f54e21;
    padding: 1.3px;
}

.linbox3 {
    width: 100%;
    text-align: center;
    border: 1px solid #595f65;
    padding: 2px;
    border-radius: 20px;
}

.newsboxcss {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    direction: inherit;
    margin-top: 30px;
}

.newsboxcssdisp {
    display: grid;
    grid-column: 1/3;
    align-items: start;
    grid-template-columns: 1fr 1fr;
}

.boxnews1 {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: all .4s;
}

    .boxnews1:hover {
        transform: scale(1.02);
        box-shadow: rgba(0,0,0,.4) 3px 7px 20px 4px;
    }

    .boxnews1 .box1show {
        display: grid;
        grid-template-columns: auto auto;
        cursor: pointer;
        background-color: #514bd5;
    }

    .boxnews1 .showimag {
        width: 100%;
        text-align: center;
        opacity: 1;
    }

    .boxnews1 .box1show p {
        padding: 5px;
        background-color: #514bd5;
        color: #fff;
        font-size: 12pt;
        text-align: center;
        position: relative;
        top: -35px;
        max-width: 80px;
        display: flex;
        flex-wrap: wrap;
        padding-top: 20px;
        align-items: start;
    }

    .boxnews1:hover .box1show h3 {
        color: #f70505;
    }

    .boxnews1 .box1show h3 {
        background-color: rgb(252,177,23);
        padding: 10px;
        color: #001652;
        text-overflow: ellipsis;
        height: 100%;
	overflow: hidden;
    }

.boxnews2 {
    width: 100%;
    min-height: 500px;
    padding-left: 5px;
    padding-right: 2px;
}

    .boxnews2 .shownews {
        display: grid;
        grid-template-columns: 80px 80px auto;
        width: 100%;
        align-items: center;
        margin-top: 5px;
        border-bottom: 2px solid #f17f60;
        padding-bottom: 5px;
        cursor: pointer;
        position: relative;
        transition: all .3s;
        background-color: #fff;
    }

        .boxnews2 .shownews:hover {
            transform: translateY(-8px);
            box-shadow: rgba(0,0,0,.4) 3px 4px 30px 4px;
        }

        .boxnews2 .shownews .imgs {
            max-height: 80px;
            overflow: hidden;
            width: 100%;
        }

            .boxnews2 .shownews .imgs img {
                width: 100%;
            }

        .boxnews2 .shownews span {
            padding: 5px;
            background-color: #0d325f;
            color: #fff;
            font-size: 11pt;
            text-align: center;
            position: relative;
            min-width: 80px;
    	    min-height: 82px;
            display: flex;
            flex-wrap: wrap;
            border-bottom-left-radius: 5px;
            border-top-left-radius: 5px;
            align-items: center;
            height: 100%;
        }

        .boxnews2 .shownews:hover span {
            background-color: red;
        }

        .boxnews2 .shownews p {
            margin: unset;
            text-overflow: ellipsis;
            color: #183e71;
            margin-left: 5px;
        }

.boxnews3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-content: flex-start;
    padding-right: 10px;
    padding-left: 10px;
}

    .boxnews3 a {
        display: inline-block;
        /*color: #3f6ad8;*/
        cursor: pointer;
        position: relative;
        overflow: hidden;
        vertical-align: middle;
        height: 30px;
        width: 100%;
        padding: 0;
        overflow: hidden;
        position: relative;
        display: inline-block;
        margin: 0 5px 0 5px;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        position: relative;
        transition: all .2s;
    }

        .boxnews3 a:hover {
            /*color: #651717;*/
            transform: translateY(-3px);
            box-shadow: rgba(0,0,0,.4) 3px 7px 20px 4px;
        }

        .boxnews3 a:before {
            font-family: 'Font Awesome 6 Pro';
            content: "\f105";
            width: 15px;
            text-align: center;
            display: inline-block;
        }

        .boxnews3 a:hover:before {
            font-family: 'Font Awesome 6 Pro';
            content: "\f343"
        }

        .boxnews3 a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 4px;
            background-color: #3f6ad8;
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transition: transform .4s ease-in-out;
        }

        .boxnews3 a:hover::after {
            transform-origin: left;
            transform: scaleX(1);
        }

    .boxnews3 .showet {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

.mainnewsback {
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0px;
    right: 0px;
    background-blend-mode: exclusion;
}

.mainnewsbackdet {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}



@media(max-width:992px) {
    .newsboxcss {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media(max-width:800px) {
    .newsboxcssdisp {
        grid-column: 1/1;
        display: grid;
        grid-template-columns: 1fr;
    }

    .linboxf {
        grid-column: 1/1;
    }
}


.slidshowweb {
    box-shadow: rgba(30,26,9,.4) 1px 3px 15px 4px;
    position:relative;
}

.nexslidheader {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    direction: rtl;
    padding-left: 20px;
    padding-top: 4px;
}

.previousbutton, .nextbutton {
    font-size: 28px;
    margin-left: 10px;
    color: #3aace1;
    font-weight: bold;
}

.previousbutton1, .nextbutton1 {
    font-size: 28px;
    margin-left: 10px;
    color: #3aace1;
    font-weight: bold;
}

.boxslid {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 230px;
    height: 270px;
    position: relative;
    border-radius: 4px;
    transition: all .3s;
}

    .boxslid:hover {
        transform: scale(1.1);
    }

    .boxslid span {
        border-radius: 5px;
        margin: 6px;
        align-items: center;
        display: flex;
        vertical-align: middle;
        position: absolute;
        justify-content: center;
        top: 164px;
        left: 0px;
        width: 160px;
        text-align:center;
        font-weight: bold;
        color: red;
        height: 60px;
        padding: 10px;
        background-color: #FFDADA !important;
        background: none;
        transform-origin: 0 0;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
        font-size: larger;
    }

    .boxslid div {
        display: flex;
        z-index: 3;
        align-items: flex-end;
        position: absolute;
        top: -30px;
        left: 75px;
        width: 180px;
        height: 200px;
        position: absolute;
        border-radius: 3px;
        overflow: hidden;
    }

        .boxslid div img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 3px;
        }

    .boxslid h5 {
        z-index: 3;
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 90px;
        color: #084b7e;
        width: 100%;
        padding: 4px;
        text-align: left;
        direction: inherit;
        position: absolute;
        font-weight: bold;
        border-radius: 3px;
        text-decoration: none;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.lintitleamar {
    display: grid;
    grid-template-columns: 20px 190px auto;
    align-items: center;
    margin: 20px 10px 0px 5px;
    width: 100%;
}

    .lintitleamar .linbox1 {
        margin-left: 30px;
    }
.amarsamanehha {
    font-family: 'Font Awesome 6 Pro';
    content: "\e470";
    width: 20px;
    margin: 10px;
    font-size: 19pt;
    text-align: center;
    color: #0d6efd;
}
.lintitleamar .roidad:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\e470";
    width: 20px;
    margin: 10px;
    font-size: 19pt;
    text-align: center;
    color: #0d6efd;
}

    .lintitleamar .amarbtn:before {
        font-family: 'Font Awesome 6 Pro';
        content: "\f681";
        width: 20px;
        margin: 10px;
        font-size: 19pt;
        text-align: center;
        color: #dfe7f4;
    }

.lintitle {
    display: grid;
    grid-template-columns: 20px 280px auto;
    align-items: center;
    margin: 20px 10px 32px 5px;
    width: 100%;
}

.linbox1 {
    font-size: 14pt;
    font-weight: bold;
    color: #2a6cbf;
}

.lintitle .linbox1 {
    margin-left: 30px;
}

.lintitle .roidad:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\e470";
    width: 20px;
    margin: 10px;
    font-size: 19pt;
    text-align: center;
    color: #0d6efd;
}

.lintitle .amarbtn:before {
    font-family: 'Font Awesome 6 Pro';
    content: "\f681";
    width: 20px;
    margin: 10px;
    font-size: 19pt;
    text-align: center;
    color: #0d6efd;
}

.counter {
    text-align: center;
    margin: 20px;
    display: flex;
    margin: 20px;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
    transition: all .4s;
}

    .counter:hover {
        transform: scale(1.1);
    }

    .counter .counter-icon {
        color: #fbd229;
        background-color: #1171bb;
        font-size: 40px;
        line-height: 90px;
        height: 100px;
        width: 100px;
        margin: 0 auto;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .counter .counter-value {
        color: #0e095c;
        background-color: #f1e3e3;
        font-size: 35px;
        font-weight: 400;
        letter-spacing: 0.5px;
        padding: 15px;
        margin: -25px 0 0;
        width: 170px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        display: block;
    }

    .counter h3 {
        color: #fbd229;
        background-color: #1171bb;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: capitalize;
        padding: 8px 12px;
        margin: 0;
        width: 150px;
        height: 60px;
        text-align: center;
        overflow: hidden;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 5px rgba(0,0,0,0.2) inset;
        display: inline-block;
    }

    .counter.green .counter-icon,
    .counter.green h3 {
        background-color: #3BB44A;
    }

    .counter.green .counter-value {
        color: #3BB44A;
    }

    .counter.red .counter-icon,
    .counter.red h3 {
        background-color: #F2474F;
    }

    .counter.red .counter-value {
        color: #F2474F;
    }

    .counter.orange .counter-icon,
    .counter.orange h3 {
        background-color: #F89128;
    }

    .counter.orange .counter-value {
        color: #F89128;
    }

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

.main-menu ul {
    list-style: none;
}

.footer ul {
    list-style: none;
}

footer {
    margin-top: 30px;
    padding-top: 15px;
    direction: inherit;
    width: 100%;
    background-color: #012148;
    color: #fff;
    box-shadow: rgba(0,0,0,.3) 0px -3px 15px 6px;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


.contact-info {
    padding-right: 10px;
    padding-left: 10px;
}
.contact-info li {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .footer div {
        margin: 1px;
    }

        .footer div h4 {
            color: #f9e605;
        }

    .footer i {
        margin: 4px;
        color: #f9e605;
    }

    .footer div ul li a {
        color: #e4e7ed;
    }

.adress iframe {
    width: 100%;
    min-height: 250px;
    border-radius: 4px;
}

@media screen and (max-width:992px) {

    .linboxe {
        margin: 15px 5px 10px 10px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }

    .adress {
        width: 100%;
       /* grid-column-start: 1;*/
        grid-column-end: 3;
    }
}

@media screen and (max-width:700px) {
    .boxnews2 {
        padding-right: 0px;
        min-height:unset;
        padding-left: 0px;
    }

    .boxnews3 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .adress {
        grid-column-start: 1;
        grid-column-end: 1;
    }
}

.showformmanperson {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow: auto;
}

    .showformmanperson::-webkit-scrollbar {
        display: none;
    }

    .showformmanperson h6 {
        margin: 20px;
        line-height: unset;
        display: block;
        color: #128fe3;
        font-weight: bold;
    }

    .showformmanperson p {
        margin: 30px;
        text-align:justify;

    }

.showformmanpersontit {
    background-color: #38648f;
    color: #fff;
    padding-top: 20px;
}

    .showformmanpersontit h3 {
        color: #f7ca13;
        width: 100%;
        text-align: center;
        font-weight: bold;
    }

.formmanperson {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}


    .formmanperson h5 {
        color: #5af50b;
        font-weight: bold;
    }

    .formmanperson > img {
        box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
        margin: 10px;
    }

    .formmanperson > div {
        margin: 10px;
        margin-top: 30px;
    }

.swiper-containeramar {
    direction: ltr
}

.buttonaset {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    background: #4479BA;
    color: #FFF;
    padding: 8px 8px;
    margin: 2px;
    text-decoration: none !important;
    cursor: pointer;
    min-width: 20px;
    display: inline-block;
}


.selectbt {
    background-color: #92a0b2;
}


.buttonaset:hover {
    background-color: #e7f538;
    color: blue;
}


.logoonslid {
    display: flex;
    position: absolute;
    /* left: 50%; */
    right: 40%;
    top: 40%;
    /* bottom: 50%; */
    width: 10%;
    max-width: 200px;
    opacity: 0.4;
    visibility: hidden;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.menushow
{
    margin-right:10px;
}

.verticalsitemenu {
    width: 100%;
    min-width: 250px;
    max-width: 360px;
    margin: 30px auto 20px;
    background: #FFF;
    padding: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    list-style: none !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

    .verticalsitemenu .link {
        cursor: pointer;
        display: block;
        padding: 15px 15px 15px 42px;
        color: #4D4D4D;
        font-size: 14px;
        border-bottom: 1px solid #CCC;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .verticalsitemenu li:last-child .link {
        border-bottom: 0;
    }

    .verticalsitemenu li i {
        position: absolute;
        top: 16px;
        right: 5px;
        font-size: 18px;
        color: #595959;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .verticalsitemenu li i.fa-chevron-down {
            font-size: 16px;
        }

    .verticalsitemenu li.open .link {
        color: #b63b4d;
    }

    .verticalsitemenu li.open i {
        color: #b63b4d;
    }

        .verticalsitemenu li.open i.fa-chevron-down {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .verticalsitemenu li.default .mysitevermenu {
        display: block;
    }
/**
 * mysitevermenu
 -----------------------------*/
.mysitevermenu {
    display: none;
    background: #fbf9f9;
    font-size: 14px;
    list-style: none;
}

    .mysitevermenu li {
        border-bottom: 1px solid #f0f0f1;
    }

    .mysitevermenu a {
        display: block;
        text-decoration: none;
        color: #4d4d4d;
        padding: 12px;
        padding-left: 42px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
        .mysitevermenu a:before {
            content: '\f15c';
            font-family: 'Font Awesome 6 Pro';
            margin: 3px;
            text-align: center;
        }

        .mysitevermenu a:hover {
            background: #dae2eb;
        }

    .mysitevermenu h6 {
        color: #b77878;
    }

    .mysitevermenu h6:before {
        font-family: 'Font Awesome 6 Pro';
        content: "\f5fd";
        margin: 4px;
    }

.slidebox {
    position: relative;
    width: 100%;
}

.onslidebox {
    position: absolute;
    top: -220px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    align-content: center;
    align-items: center;
    width: 100%;
}
    /* Hide scrollbar for Chrome, Safari and Opera */
    .onslidebox::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.onslidebox {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
    .onslidebox img {
        max-height: 200px;
        margin: 5px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: all .1s;
        position: relative;
        border: 10px solid rgba(255,255,255,.3);
        background: linear-gradient(145deg, #ffffff, #e6e6e6);
        box-shadow: 3px 3px 7px #bdbdbd, -3px -3px 7px rgba(255,255,255,.5);
        background: transparent;
    }


        .onslidebox img:hover {
            transform: scale(1.05);
        }

.oldwebsite {
    position: absolute;
    top: 150px;
    left: 0px;
    padding-left: 10px;
}

    .oldwebsite a {
        color: #fff;
        background-color: rgba(13, 110, 253, 0.8);
        border-color: rgba(13, 110, 253, 0.8);
    }

        .oldwebsite a:hover {
            color: #fff;
            background-color: rgba(13, 110, 253, 1);
            border-color: rgba(13, 110, 253, 1);
        }

@media (min-width: 993px) and (max-width: 1200px) {
    .onslidebox {
        position: absolute;
        top: -180px;
        display: flex;
        overflow-x: auto;
    }

        .onslidebox img {
            max-height: 150px;
            border: 5px solid rgba(255,255,255,.3);
            box-shadow: 2px 2px 5px #bdbdbd, -2px -2px 5px rgba(255,255,255,.5);
            margin: 5px;
        }
}

@media (min-width: 440px) and (max-width: 992px) {
    .onslidebox {
        position: absolute;
        top: -120px;
        display: flex;
        overflow-x: auto;
    }

        .onslidebox img {
            max-height: 100px;
            border: 5px solid rgba(255,255,255,.3);
            box-shadow: 2px 2px 5px #bdbdbd, -2px -2px 5px rgba(255,255,255,.5);
            margin: 5px;
        }
    .oldwebsite span {
        display: none;
    }

    .oldwebsite {
        position: absolute;
        top: 120px;
        left: 0px;
        padding-left: 10px
    }

        .oldwebsite a {
            padding: .04rem .25rem;
        }
}

@media (max-width: 440px) {
    .onslidebox {
        position: absolute;
        top: -70px;
        display: flex;
        overflow-x: auto;
    }

        .onslidebox img {
            max-height: 50px;
            border: 5px solid rgba(255,255,255,.3);
            box-shadow: 2px 2px 5px #bdbdbd, -2px -2px 5px rgba(255,255,255,.5);
            margin: 5px;
        }
    .oldwebsite span {
        display: none;
    }

    .oldwebsite {
        position: absolute;
        top: 120px;
        left: 0px;
        padding-left: 10px
    }

        .oldwebsite a {
            padding: .04rem .25rem;
        }
}


.payam {
    border-radius: 5px;
    padding: 15px;
    font-size: 10pt;
    margin: 10px;
    position: relative;
    transition: all .3s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}


    .payam .payam {
        background-color: #f1eaea;
    }

    .payam .head {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

        .payam .head a {
            font-weight: bold;
        }

        .payam .head span {
            color: #b96c6c;
        }

    .payam .matn {
        color: #012148;
        margin: 5px 8px 5px 8px;
        text-align: justify;
        width: 100%;
    }

    .payam .foot {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

        .payam .foot > a {
            color: #6c757d;
        }

        .payam .foot a {
            cursor: pointer;
        }


::-webkit-input-placeholder { /* Edge */
    font-size: 9pt;
    color: #fbe0e0;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 9pt;
    color: #fbe0e0;
}

::placeholder {
    font-size: 9pt;
    color: #fbe0e0;
}

.divinput {
    display: inline-flex;
    align-content: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 30%;
}

    .divinput i {
        font-size: 15pt;
        position: relative;
        width: 18px;
        left: 23px;
        color: #7f858d;
    }

    .divinput input {
        padding-left: 28px;
        display: inline-block;
        background-color: #f5f0f0;
        margin-top: 5px;
    }

@media(max-width:600px) {
    .divinput {
        width: 100%;
    }
}


.loginform {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    direction: ltr;
}

    .loginform input[type=button] {
        margin: 2px;
    }

    .loginform .logininput {
        display: inline-flex;
        align-content: center;
        justify-content: center;
        align-items: stretch;
        max-width: 400px;
        width: 100%;
        margin: 2px;
    }

        .loginform .logininput span {
            display: flex;
            margin-right: -1px;
        }

            .loginform .logininput span i {
                padding: .5rem 1rem;
                font-size: 1.25rem;
                line-height: 1.5;
                border-radius: .3rem;
                background-color: #f1f3f4;
                border: 1px solid #ced4da;
                color: #2c363a;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

        .loginform .logininput input {
            border-color: #ced4da;
            padding: .5rem 1rem;
            font-size: 1.25rem;
            line-height: 1.5;
            border: 1px solid #ced4da;
            border-radius: .3rem;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

.maskprofile {
    max-height: 300px;
    -webkit-mask-image: radial-gradient(circle, black 50%, rgba(44, 43, 84, 0.3) 60%);
    mask-image: radial-gradient(circle, black 50%, rgba(44, 43, 84, 0.30) 60%);
}

.maskinprofile {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cddc39;
    /* filter: drop-shadow(0 0 8px #ff5722);*/
}

.boxprofile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: rgb(44, 43, 84);
    color: #fff;
}

.showinmain {
    display: inline-table;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    margin-right: 3px;
    color: #d5c938 !important;
    cursor: pointer;
    direction:ltr;
}

    .showinmain i {
        margin: 3px;
    }

    .showinmain:hover {
        color: #d58538 !important;
    }

        .showinmain:hover .maskinprofile {
            border: 2px solid #d58538;
            filter: drop-shadow(0 0 8px #d58538);
        }

.forgetpasslabel {
    color: #e0f80a !important;
    cursor: pointer;
    transition: all .3s;
}

    .forgetpasslabel:hover {
        color: #e9410a !important;
    }
.show_password_icon
{
    display:none!important;
}

.starpage {
    color: #cdf117 !important;
    display: inline;
    width: auto;
    justify-content: center;
}

    .starpage a {
        color: #f9f103;
        border-right: 1px solid #737171;
        margin-right: 6px;
        padding-right: 6px;
        line-height: 1;
        transition: .3s;
    }

        .starpage a i {
            margin-right: 3px;
        }



.top-header a:hover {
    color: #ffb81c
}

.starpage a:last-child {
    border: none !important;
}

.linkpage {
    direction: rtl;
    display: inline;
}


    .linkpage a {
        color: #f1f1f1;
        margin-left: 6px;
        padding-left: 6px;
        line-height: 1;
        transition: .3s;
        border-left: 1px solid #737171;
    }

        .linkpage a:last-child {
            border: none !important;
        }

@media(max-width:1200px) {
    .starpage a span {
        display: none;
    }
}

@media(max-width:700px) {
    .highname {
        position: absolute;
        left: 5px;
        margin-left:unset;
    }

    .top-header {
        direction: rtl;
        display: block;
    }

    .starpage {
        direction: ltr;
        text-align: right;
        display: block;
    }

        .starpage a span {
            display: none;
        }
}



.newspiconly {
    width: 350px;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin: 10px;
    background-size: cover;
    background-image: url('https://hormozgan.ac.ir/fileupload/1_1/N12264409846470729.jpg');
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .newspiconly .spinner {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 100%;
    }

        .newspiconly .spinner img {
            width: 100%;
        }

    .newspiconly a {
        position: absolute;
        bottom: 0px;
        width: 100%;
        min-height: 100px;
        height: 100%;
        text-align: justify;
        padding: 10px;
        padding-top: 50px;
        background-color: rgba(2, 2, 12, 0.70);
        opacity: 0;
        transition: all ease-in .1s;
        font-size: 14pt;
        color: rgb(255,192,0);
    }

    .newspiconly:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    }

        .newspiconly:hover a {
            opacity: 1;
        }

    .newspiconly a:hover {
        color: rgb(252,177,23);
    }

    .newspiconly .dateover {
        position: absolute;
        transform: rotate(90deg);
        left: -100px;
        color: #f3e2e2;
        padding: 4px;
        top: 110px;
        /* bottom: 0px; */
        width: 250px;
        height: 30px;
        vertical-align: middle;
        text-align: center;
        background-color: rgba(43, 196, 55,0.6);
    }

.prevbt, .nextbt {
    font-size: 28px;
    margin-right: 10px;
    color: #3aace1;
    font-weight: bold;
}


.contentstore {
    display: flex;
    flex-wrap: wrap;
    padding: 3px;
    width: 100%;
}

.storebox {
    /*box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;*/
    border: 1px solid #f0f0f1;
    height: 500px !important;
    max-width: 300px;
    padding: 10px;
    transition: all .3s;
    display: block !important;
    background-color: #fff;
}

    .storebox:hover {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

    .storebox h4 {
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 12pt;
        color: #424750;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.storelabel {
    color: #e6123d;
    font-weight: bold;
}

.storeimg {
    width: 100%;
    height: 300px;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center;
}

.darkset .storeimg {
    opacity: .75;
    transition: opacity .5s ease-in-out;
}

.darkset:hover .storeimg {
    opacity: 1;
}

.darksetbox {
    opacity: 0.3;
    cursor: no-drop;
}

.storedet {
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.storeprice {
    color: #424750;
    display: flex;
    justify-content: space-between;
}

.mojod {
    font-size: 10pt;
    font-weight: 400;
    line-height: 1;
    color: #62666d;
}

.mahdod {
    font-size: 8pt;
    font-weight: 400;
    line-height: 1;
    color: #ef394e;
}

.namojod {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: #a1a3a8;
}

.offinp {
    background-color: #ef394e;
    padding: 7px;
    border-radius: 15px;
    height: 30px;
    display: inline-flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 10pt;
}

.noprice {
    color: #c0c2c5;
    font-size: 8pt;
    font-weight: 400;
    line-height: 1;
    text-decoration: line-through !important;
}

.filterset {
    top: 0px;
    width: 310px;
    padding: 5px;
    margin: 5px;
    height: auto;
    position: sticky;
    color: #012148;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
   overflow:auto;
}

    .filterset h5 {
        padding-top: 10px;
    }

    .filterset .mysitevermenu a:before {
        content: '\f187';
        font-family: 'Font Awesome 6 Pro';
        margin: 3px;
        text-align: center;
    }

    .filterset .verticalsitemenu {
        margin: 0px;
    }

.closefilter {
    display: none;
    position: absolute;
    top: -7px;
    right: -7px;
    width: 30px;
    height: 30px;
    font-size: 20pt;
    border-radius: 50%;
    background: #e5dada;
    color: #fff;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0px !important;
}

    .closefilter:hover {
        background: #dec9c9;
        color: #fff;
    }


.filtershow {
    padding: 5px;
}

.sortcss {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    font-size: 10pt;
}

    .sortcss a {
        color: #81858b;
        padding-left: 10px;
        cursor: pointer;
    }

.sortset {
    display: flex;
}

.sortsetmobile {
    display: none;
}

@media(max-width:600px) {
    .sortsetmobile {
        display: flex;
    }

    .closefilter {
        display: flex;
    }

    .filterset {
        position: absolute;
        top: 50px;
        left: 10px;
        display: none;
        background-color: #fff;
        z-index: 6000;
        overflow:unset;
    }

    .sortset {
        position: absolute;
        top: 50px;
        left: 10px;
        width: 80%;
        padding: 5px;
        display: none;
        background-color: #fff;
        z-index: 6000;
    }

        .sortset a:not(:first-of-type) {
            display: inline-block;
            width: 100%;
            padding: 5px;
            text-align: center;
            border-bottom: 1px solid #f0f0f1;
        }

    .filterset .menushow {
        display: none;
    }

    .filterset .filtershow {
        display: none;
    }

    .dispshow {
        display: inline !important;
    }

    .storebox {
        max-width: unset;
    }
}

.selectedsort {
    color: #ef394e !important;
}

.mysiteberandmenu {
    font-size: 14px;
    list-style: none;
    margin-bottom: 3px;
}

    .mysiteberandmenu li {
        border-bottom: 1px solid #f0f0f1;
    }

    .mysiteberandmenu a {
        display: block;
        text-decoration: none;
        font-weight: bold;
        color: #4d4d4d;
        padding: 12px 0px 12px 0px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }



        .mysiteberandmenu a:hover {
            background-color: #e1e3eb;
        }

    .mysiteberandmenu input[type=checkbox] {
        margin: 3px;
        cursor: pointer;
    }

.berandfloat {
    float: right;
}

.filterprice {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
}

    .filterprice input {
        max-width: 45%;
        margin: 3px;
    }


.search-form {
    position: relative;
    margin-top: 20px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 700px;
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    background: #f9f3f3;
    transition: all 0.3s ease;
}

.search-input {
    font-size: 14px;
    background: none;
    color: #5a6674;
    width: 100%;
    height: 30px;
    border: none;
    appearance: none;
    outline: none;
}

    .search-input::placeholder {
        color: #a1a3a8;
    }

    .search-input:-ms-input-placeholder {
        color: #a1a3a8;
    }

    .search-input::-webkit-input-placeholder {
        color: #a1a3a8;
    }

.search-button {
    position: absolute;
    font-size: 15pt;
    color: #a1a3a8;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none !important;
    cursor: pointer;
}

.shopimg {
    padding: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-content: center;
}

    .shopimg img {
        max-width: 300px;
        max-height: 300px;
    }

.imggallery {
    width: 60px;
    border-radius: 20%;
    transform: rotate(-12deg);
    box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    -moz-box-shadow: 0 1px 2px rgba(34,25,25,0.4);
    -webkit-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    transition: all .3s;
    cursor: pointer;
}

    .imggallery:hover {
        transform: rotate(0deg) scale(1.1);
    }

.vtitle {
    color: #5d5d5d;
    padding-left: 4px;
    margin-right: 5px;
    white-space: normal;
    list-style: none;
    font-size: 13px;
    line-height: 1.833;
    display: block;
}

    .vtitle:before {
        content: " ";
        width: 5px;
        height: 5px;
        background: #a1a1af;
        vertical-align: middle;
        margin-right: 5px;
        display: inline-block;
        border-radius: 50%;
    }

.basketshow {
    background: linear-gradient(0deg,hsla(240,3%,94%,.5),hsla(240,3%,94%,.5)),#fff;
    max-width: 333px;
    border-radius: 20px;
    padding: 10px
}

@media(max-width:900px) {
    .basketshow {
        position: fixed;
        bottom: 0px;
        width: 100%;
        left: 0px;
        max-width: unset;
        border-radius: 0px;
        z-index: 7000;
        background-color: rgba(256,256,256,0.9);
    }

    .dispnone {
        display: none !important;
    }
}

.basketshop {
    position: relative;
    border-radius: 5px;
    display: inline-flex;
    width: 95px;
    padding: 3px;
    margin: 3px;
    flex-wrap: nowrap;
    box-shadow: 0 6px 8px rgba(0,0,0,.15);
    background: #f8f3f3;
    transition: all 0.3s ease;
    justify-content: center;
    align-content: center;
    align-items: center;
}

    .basketshop a {
        cursor: pointer;
    }

    .basketshop input {
        font-size: 25px;
        text-align: center;
        background: none;
        color: #5a6674;
        width: 50px;
        border: none;
        appearance: none;
        outline: none;
    }

.tit1 {
    font-weight: bold;
    display: inline-block;
}

.naghdvabarrasi .tit1 {
    width: 300px;
    padding-right: 5px;
}

.naghdvabarrasi .vtitle {
    border-bottom: 1px solid #f7f5f5;
    padding-bottom: 5px
}

@media(max-width:600px) {
    .naghdvabarrasi .tit1 {
        width: 120px;
    }
}

.titlepiam {
    color: #898d92;
    font-weight: 400;
    margin-top: 8px;
}

.mainurl {
    width: 100%;
    padding: 15px;
    display: flex;
    overflow: auto;
}
    /* Hide scrollbar for Chrome, Safari and Opera */
    .mainurl::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.mainurl {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .mainurl a {
        color: #898d92;
        font-size: 10pt;
        margin-top: 8px;
        white-space: nowrap;
    }

        .mainurl a:not(:last-of-type)::after {
            content: '/';
            width: 15px;
            display: inline-block;
            text-align: center;
        }

.detailtit {
    position: sticky;
    background-color: #f5f5f5;
    width: 100%;
    top: 0px;
    left: 0px;
}

    .detailtit a {
        color: #81858b;
        padding: 10px;
        display: inline-block;
    }

        .detailtit a:active {
            background-color: #fff;
        }

.naghdvabarrasi {
    width: 100%;
    padding: 15px;
}
    /* Hide scrollbar for Chrome, Safari and Opera */
    .naghdvabarrasi::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.naghdvabarrasi {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

@media(min-width:600px) {
    .marginlno {
        margin-right: 0px !important;
    }
}

.basketmain {
    color: #fff;
    display: inline-flex;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .basketmain i {
        color: #fff;
        font-size: 15pt;
        font-weight: 500;
    }

    .basketmain span {
        color: #fff;
        position: absolute;
        top: 0px;
        left: -3px;
        min-width: 20px;
        height: 20px;
        border: 2px solid rgba(250,250,250,.7);
        border: 2px solid rgba(249,241,3,.7);
        display: flex;
        border-radius: 6px;
        background-color: rgba(239,64,86,.7);
        align-content: center;
        justify-content: center;
        align-items: center;
    }

.basketshopbtn {
    height: 40px;
    width: 159px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12pt;
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    -webkit-animation: dot-flashing 1s infinite linear alternate;
    animation: dot-flashing 1s infinite linear alternate;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

    .dot-flashing::before, .dot-flashing::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
    }

    .dot-flashing::before {
        right: -15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: #fff;
        color: #fff;
        -webkit-animation: dot-flashing 1s infinite alternate;
        animation: dot-flashing 1s infinite alternate;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .dot-flashing::after {
        right: 15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: #fff;
        color: #fff;
        -webkit-animation: dot-flashing 1s infinite alternate;
        animation: dot-flashing 1s infinite alternate;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

@-webkit-keyframes dot-flashing {
    0% {
        background-color: #fff;
    }

    50%, 100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}

@keyframes dot-flashing {
    0% {
        background-color: #fff;
    }

    50%, 100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}


.alert {
    width: 50%;
    margin: 20px auto;
    padding: 30px;
    position: fixed;
    bottom: 5px;
    z-index: 7000;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px #ccc;
    animation: fadedis 3s ease-in;
    z-index: -3;
    opacity: 0;
}

.closealert {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    left: 15px;
    top: 25px;
    text-align: center;
    font-size: 1.3em;
    cursor: pointer;
}

.simple-alert {
    background-color: #ebebeb;
}

.success-alert {
    background-color: #a8f0c6;
}

.danger-alert {
    background-color: #f7a7a3;
}

.warning-alert {
    background-color: #ffd48a;
}

@keyframes fadedis {

    0% {
        opacity: 1;
        z-index: 7000;
    }

    99% {
        opacity: 0;
        z-index: 7000;
    }

    100% {
        opacity: 0;
        z-index: -3;
    }
}

.modal-dialog {
    direction: rtl;
}

.storeprice span {
    text-align: center;
}

.storesabad {
    background-color: rgba(255,255,255,0.99);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    transition: all .3s;
    /* border-radius: 10px; */
    border-bottom: 1px solid #d7d0d0;
    direction: rtl;
}

    .storesabad .basketshop a {
        border: unset;
        margin-left: unset;
        padding-left: unset;
        line-height: unset;
    }

    .storesabad .storeimg {
        height: unset;
        min-height: 100px;
    }

    .storesabad .onvanset {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .storesabad .basketshopbtn {
        font-size: 8pt;
        height: 34px;
        width: 110px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3px;
    }

    .storesabad .storeprice {
        color: #424750;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-direction: column;
    }

        .storesabad .storeprice .offinp {
            background-color: #43b51e;
            padding: 10px;
            border-radius: 15px;
            height: unset;
            color: #fff;
            display: flex;
            justify-content: center;
            align-content: center;
            align-items: center;
            flex-direction: column;
            font-size: 8pt;
        }



.jprice {
    cursor: pointer;
    font-size: 9pt;
    text-align: center;
    background-color: #fdf2f2;
    color: #7f837f;
}

    .jprice #jpriceshow {
        transition: all ease-in 0.3s;
        height: 0px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

        .jprice #jpriceshow span {
            width: 100%;
            padding: 5px;
            background-color: #ebe0e0;
            display: inline-block;
            border-bottom: solid 1px #fbf1f1;
        }

jdp-container {
    z-index: 9000 !important;
}


.onlypicp .storeimg {
    height: 270px !important;
}

.onlypicp {
    height: 350px !important;
}

.onlypicstore .storeimg {
    height: 240px !important;
}

.onlypicstore {
    width: 240px;
    height: 250px !important;
}

.onlypiconvanstore .setgridstore {
    display: grid;
    grid-template-columns: 100px 40px auto;
}

.onlypiconvanstore {
    height: 100px !important;
    width: 100%;
}

    .onlypiconvanstore .storeimg {
        height: 100px !important;
    }

    .onlypiconvanstore span {
        color: #19bfd3;
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 2.1;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .onlypiconvanstore h4 {
        width: 100%;
        display: flex;
        height: 100%;
        align-items: center;
        flex-wrap: wrap;
        white-space: normal;
        color: #424750;
        font-size: 10pt;
        font-weight: 400;
        line-height: 2.10;
        padding: 1px;
    }

.onlypictakhfifstore {
    height: 110px !important;
    width: 110px;
    position: relative;
    padding: 10px;
}

    .onlypictakhfifstore .storeimg {
        height: 100px !important;
        width: 100px;
        border-radius: 50%;
    }

    .onlypictakhfifstore .offinp {
        position: absolute;
        bottom: 0px;
    }



@media(max-width:760px) {
    .onmobile {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .storebox {
        height: unset !important;
    }

    .storeimg {
        height: 150px;
    }

    .storebox h4 {
        font-size: 10pt;
        white-space: normal;
    }

    .storelabel {
        font-size: 8pt;
    }

    .onlypicstore {
        width: 150px;
        height: 150px !important;
    }

        .onlypicstore .storeimg {
            width: 130px;
            height: 130px !important;
        }
}



.mainnewsk {
    display: flex;
    flex-flow: row wrap;
    /* background-color: #f3f4f4;*/
    padding-top: 12px;
    position: relative;
    z-index: 2;
    --heightfixma: 500px;
}

    .mainnewsk > a {
        width: 100%;
    }

@media (max-width: 767px) {
    .mainnewsk > a {
        width: 100%;
        margin: 12px 0;
    }
}

@media (min-width: 768px) {
    .mainnewsk > a {
        width: calc(50% - 48px);
        margin: 24px;
    }
}

@media (min-width: 1200px) {
    .mainnewsk > a {
        width: calc(33.3333% - 48px);
        margin: 24px;
    }
}

.mainnewsk .bodynews {
    display: flex;
    flex-flow: column nowrap;
    background-color: #f4f5f5;
    transition: all .15s ease-in-out;
    height: var(--heightfixma);
    overflow: hidden;
}

    .mainnewsk .bodynews:hover {
        background-color: #fff;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

        .mainnewsk .bodynews:hover .bgp img {
            width: 110%;
        }

    .mainnewsk .bodynews .bgp {
        width: 100%;
        height: 100ch;
        overflow: hidden;
    }

        .mainnewsk .bodynews .bgp img {
            width: 100%;
            transition: all .85s ease-in-out;
        }


    .mainnewsk .bodynews .content {
        margin: 0 0 auto;
        padding-left: 32px;
        padding-right: 32px;
        padding-top: 48px;
        height: 50ch;
        overflow: hidden;
        color: #0e095c;
        position: relative;
    }

        .mainnewsk .bodynews .content .rotitr {
            position: absolute;
            top: 30px;
        }

        .mainnewsk .bodynews .content h4 {
            font-size: calc(1rem + .3vw);
        }

        .mainnewsk .bodynews .content p {
            white-space: nowrap;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mainnewsk .bodynews .content h4:before {
            font-family: 'Font Awesome 6 Pro';
            content: "\f762";
            margin: 3px;
            padding: 5px;
            text-align: center;
            display: inline-block;
            color: #f8f303;
            text-shadow: 1px 2px 9px #021101cc;
        }

@media (max-width: 767px) {
    .mainnewsk .bodynews .content {
        height: unset;
    }

    .mainnewsk .bodynews {
        height: unset;
    }

        .mainnewsk .bodynews .bgp {
            height: unset;
        }
}


.rotitr {
    width: 100% !important;
    opacity: 0.5 !important;
    margin: 0px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    font-size: 9pt !important;
    display: block !important;
}

@keyframes rotaterainbow {
	100% {
		transform: rotate(1turn);
	}
}

.rainbow {
  box-sizing: border-box;
	position: relative;
	z-index: 0;
	border-radius: 10px;
	overflow: hidden;
	display: inline-table;


	

}
	.rainbow::before {
		opacity: 0.5;
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
		animation: rotaterainbow 4s linear infinite;
	}
	.rainbow::after {
		opacity: 0;
    		content: '';
    		position: absolute;
    		/* z-index: -1; */
    		left: 6px;
    		top: 6px;
    		width: calc(100% - 12px);
    		height: calc(100% - 12px);
    		/* background: white; */
    		border-radius: 5px;
    		animation: opacityChange 3s infinite alternate;
	}

@keyframes opacityChange {
	50% {
		opacity:1;
	}
	100% {
		opacity: .5;
	}
}



.newspiconlyet {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 135px;
    overflow: hidden;
    position: relative;
    margin: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all ease-in .2s;
opacity: 0.89;
background-position: center;
}

    .newspiconlyet:hover {
        font-size: 16pt;
opacity: 1;
    }

    .newspiconlyet a {
        position: absolute;
        bottom: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
        padding: 10px;
        background-color: rgba(2, 10, 3, 0.50);
        opacity: 1;
        transition: all ease-in .2s;
        font-size: 15pt;
        color: rgb(255, 192, 0);
        margin: 0px;
        font-weight: bold;
        white-space: normal !important;
    }
        .newspiconlyet a:before {
            font-family: unset;
            content: "";
            width: 0px;
            display: none;
        }

.newspiconlyet2:hover{
    color: rgba(232,186,45,1)!important;
}
.newspiconlyet2 {
    color: rgb(234 204 111) !important;
    font-size: 13pt!important;
}

.newspiconlyet1 {
    color: rgba(216,216,208,0.9) !important;
}

@media (max-width: 900px) {
    .boxnews3 {
        padding-right: 10px;
    padding-left: 10px;
    }
}

@media (max-width: 700px) {
   .newspiconlyet {
    margin: 5px;
    margin-right: 0px;
}
.boxnews3 {
    padding-right: 0px;
     padding-left: 0px; 
}
}

.counter .counter-value1 {
    color: #8b7103;
    background-color: #f1e3e3;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 15px;
    margin: -25px 0 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(251 244 244 / 50%);
    display: block;
    transform: rotate(-45deg);
    display: flex;
}

.counter .counter-icon1 {
    color: #ddcf95e0;
    background-color: #f4f5e84d;
    font-size: 50px;
    line-height: 90px;
    height: 110px;
    width: 110px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.counter h4 {
    color: #d7cb9b;
    background-color: #adcb891a;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 8px 12px;
    margin: 0;
    width: 180px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2) inset;
    /* display: inline-block; */
}

.counter-valuem {
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 14px;
    left: -20px;
    font-size: 25pt;
}

.amarfull {
    width: 100%;
    background: linear-gradient(0deg, rgba(16,32,57,0.66), rgba(59,30,42,0.84)), url(/fileupload/1_1/tempfile/P15944782761_7887912134963895.jpg) repeat;
    padding: 20px;
background-position: center;
margin-top: 10px;
}
.setprivacy {
    font-size: 9pt;
    color: #edbcbcc7;
    /* text-shadow: -1px -1px 0px #ffffff29, 3px 3px 0px #ffffff1f, 6px 6px 0px #00000055; */

}
.lasteditstyle {
    color: #6e7b8b;
    font-size: 9pt;
    width: 100%;
    margin-left: 30px;
    margin-right: 30px;
}
.findmore {
    color: #d9f7a8;
    font-size: 8pt;
}
    .findmore:hover {
        color: #dddf54;
    }

#suggestions {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    width:97%;
}
.divinput {
    position: relative;
}
.dropdown-item
{
    cursor:pointer;
}

