@font-face {
    font-family: iransns;
    src: url(font/iransns.ttf);
}

@font-face {
    font-family: colak;
    src: url(font/Colak.ttf);
}

* {
    font-family: iransns;
    margin: 0px;
    padding: 0px;
}






a {
    text-decoration: none;
}

::selection {
    color: rgb(255, 255, 255);
    background: rgb(177, 0, 0);
}


/* width */

::-webkit-scrollbar {
    width: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f100;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #b00000;
    transition: .2s ease;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #8e0000;
}

body {
    box-sizing: border-box;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    font-family: iransns;
    padding: 0px;
    direction: rtl;
    background-color: rgb(60, 8, 1);
}

header {
    /* border: 1px solid #fff; */
    height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header input[type=text] {
    width: 400px;
    height: 35px;
    border-radius: 8px;
    background-color: rgb(177 177 177 / 99%);
    outline: none;
    padding-right: 15px;
    color: #eaeaea;
    border: none;
    /* border: 1px solid #e7e7e7; */
}

.box .result_item .top_result .bi:hover {
    color: #ababab;
}

.box .result_item .tlte span {
    color: #FFFFFF;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    /* background: #333333; */
    text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px, #FF2D95 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
    color: #FFFFFF;
    /* background: #333333; */
}

.box .result_item .text_content span {
    font-size: 14px;
}

.box .result_item .text_content {
    width: 90%;
    overflow: auto;
    height: 100%;
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.box .result_item .tlte {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .result_item .top_result .bi {
    color: #fff;
    transition: .3s ease-in;
    font-size: 20px;
    cursor: pointer;
}

.box .result_item .top_result {
    width: 97%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.box .result_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #1d1d1da5;
    width: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 15px;
    height: 80%;
    border: 1px solid #ffffff6b;
}

.search .result_all{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 1px solid #000; */
}

.alert {
    position: fixed;
    top: 0px;
    z-index: 9999999999999999999999999999999999999999999999;
    right: -5000px;
    width: 260px;
    animation: showw 1s ease 1s 1 normal forwards;
    margin-top: 20px;
    border-radius: 10px;
    margin-right: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 80px;
    background-color: rgba(55, 55, 55, 0.871);
}

@keyframes showw {
    0% {
        right: -5000px;
    }
    20% {
        right: 30px;
    }
    40% {
        right: 0px;
    }
    60% {
        right: 30px;
    }
    100% {
        right: 0px;
    }
}

.alert .alert_top {
    width: 100%;
    color: rgb(176, 176, 176);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.alert .midell {
    width: 100%;
    display: flex;
    /* margin-top: 10px; */
    align-items: center;
    justify-content: center;
}

.alert .midell h4 {
    margin: 0px;
    margin-right: 5px;
    font-size: 13px;
    color: rgb(255, 0, 0);
}

.alert .midell .bi {
    margin: 0px;
    margin-right: 5px;
    font-size: 13px;
    color: rgb(255, 0, 0);
}

.alert .alert_top .bi {
    margin-left: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.alert .back {
    width: 99%;
    border-radius: 8px;
    height: 4px;
    position: relative;
    top: 25px;
    animation: back 4s ease 2s 1 normal forwards;
    background-color: rgb(255, 0, 0);
}

@keyframes back {
    0% {
        width: 99%;
    }
    100% {
        width: 0%;
    }
}

.box {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.502);
    top: 0%;
    z-index: 999999999;
    backdrop-filter: blur(8px);
    left: 0%;
    position: fixed;
}
header .menus .menu .buttom a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation_search_down {
    animation: search_down 1s ease normal forwards;
}

.animation_search {
    animation: search 1s ease 1s normal forwards;
}

.animation_search_phone {
    animation: search_phone 1s ease 1s normal forwards;
}

@keyframes search_down {
    0% {
        height: 250px;
    }
    100% {
        height: 0px;
    }
}

.los .log:hover {
    box-shadow: none;
}

.los .log {
    width: 100px;
    transition: .3s ease;
    cursor: pointer;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    height: 35px;
    border-radius: 8px;
    background-color: rgb(255, 42, 42);
    color: #fff;
}

@keyframes search_phone {
    0% {
        height: 0px;
    }
    100% {
        height: 100%;
    }
}

@keyframes search {
    0% {
        height: 0px;
    }
    100% {
        height: 250px;
    }
}

header .search .searchbox .result .right img {
    border-radius: 8px;
    width: 60px;
    object-fit:contain;
    height: 60px;
}

header .search .searchbox a{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .search .searchbox .result .left span span {
    color: #c8c8c8;
    font-size: 13px;
}

header .search .searchbox .result .left span {
    color: #c8c8c8;
    font-size: 13px;
}

header .search .searchbox .result .left .name {
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
}

header .search .searchbox .result .left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    text-align: right;
}

header .search .searchbox .result .right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .search .searchbox .result:hover {
    background-color: #3737378b;
}

header .search .searchbox .result {
    display: flex;
    background-color: #5353538b;
    align-items: center;
    padding: 5px;
    justify-content: space-around;
    width: 90%;
    transition: .2s ease;
    height: 65px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 6px;
    margin-bottom: 10px;
}

header .search .searchbox {
    overflow-y: auto;
    width: 414.5px;
    background-color: rgb(176, 176, 176);
    /* backdrop-filter: blur(5px); */
    position: absolute;
    z-index: 999999;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    height: 0px;
    transform: translateY(-6px);
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

header .support .bi {
    margin-left: 5px;
    position: relative;
    top: 2px;
    font-size: 15px;
}

header .support {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 12px;
    height: 40px;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    cursor: pointer;
    color: #fff;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    justify-content: center;
    background: #acacac00;
    border: 2.5px solid #acacac;
}

header .menus .menu .top img {
    width: 45px;
    height: 45px;
    margin-top: 10px;
    margin-left: 100px;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    border-radius: 8px;
}

header .menus .menu .middel a span {
    color: #fff;
}

header .menus .menu .middel a .bi {
    color: #fff;
}

header .menus .menu .buttom .notif_result .bi-caret-left-fill {
    position: absolute;
    left: -10px;
    color: #600000;
    top: 45%;
}
header .menus .menu .buttom .notif_result .not span {
    color: #fff;
    font-size: 13px;
    /* margin-right: 5px; */
}

header .menus .menu .buttom .notif_result .not .date span {
    font-size: 9px;
    color: #ffffff86;
}


 .not .date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .menus .menu .buttom .notif_result .not {
    width: 90%;
    /* height: 40px; */

    margin-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 5px;
    background-color: #af0000;
    border-radius: 5px;
    border-left: 3px solid red;
    border-right: 3px solid red;
    /* border: 1px solid #fff; */
}
header .menus .menu .buttom .notif_result {
    width: 250px;
    border-radius: 8px;
    left: 235px;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    background-color: #600000;
    position: absolute;

    border-bottom: 4px solid #af0000;
    height: 200px;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

header .menus .menu .buttom .notif .cur {
    position: absolute;
    width: 9px;
    border-radius: 50%;
    transform: translate(-40.5px, -10px);
    height: 9px;
    background-color: red;
}

header .menus .menu .buttom .user_info .bi {
    color: #fff;
    font-size: 19px;
}

header .menus .menu .buttom .user_info span {
    color: #fff;
}

header .menus .menu .buttom .notif .bi {
    color: #fff;
    font-size: 19px;
}

header .menus .menu .buttom .notif span {
    color: #fff;
}

header .menus .menu .buttom .notif {
    width: 90%;
    height: 40px;
    cursor: pointer;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    transition: .3s ease;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 8px;
    background-color: #000000b5;
}

header .menus .menu .buttom .notif:hover {
    background-color: #000000c4;
}

header .menus .menu .buttom .user_info:hover {
    background-color: #000000c4;
}

header .menus .menu .buttom .user_info {
    width: 90%;
    height: 40px;
    display: flex;
    cursor: pointer;
    transition: .3s ease;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 8px;
    background-color: #000000b5;
}

header .menus .menu .buttom {
    width: 90%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    /* border: 1px solid #fff; */
}

header .menus .menu .middel a {
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 90%;
    height: 40px;
    justify-content: space-evenly;
    transition: .3s ease;
}

header .menus .menu .middel a:hover {
    background-color: rgba(0, 0, 0, 0.637);
    width: 90%;
    /* margin: 5px; */
}

header .menus .menu .middel {
    margin-top: 50px;
    display: flex;
    width: 90%;
    height: 50%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

header .menus .menu .top {
    width: 90%;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header .menus .menu .settings {
    margin-top: 10px;
}

.closed {
    animation: closese 2s ease normal forwards;
}

.active {
    animation: myAnims 2s ease normal forwards;
}

@keyframes closese {
    0% {
        left: 0px;
    }
    100% {
        left: -250px;
    }
}

.active {
    animation: myAnims 2s ease normal forwards;
}

.closeop {
    animation: closees 1s ease 1 normal forwards;
    left: 0px;
}

.activeef {
    animation: activeef 1s ease 1 normal forwards;
    left: -5000px;
}

@keyframes activeef {
    0% {
        left: -250px;
    }
    100% {
        left: 0px;
    }
}

@keyframes closees {
    0% {
        left: 0px;
    }
    100% {
        left: -500px;
    }
}

@keyframes myAnims {
    0% {
        left: -250px;
    }
    100% {
        left: 0px;
    }
}

header .menus .menu {
    width: 250px;
    border-radius: 8px;
    background-color: rgb(177, 28, 5);
    height: 100%;
    position: fixed;
    left: -250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

header .menus {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 9999999;
    display: none;
    cursor: default;
    justify-content: flex-end;
    background-color: #00000079;
    top: 0px;
    left: 0px;
    position: absolute;
}

.animatio_notif {
    animation: notif 1s ease normal forwards;
}

@keyframes notif {
    0% {
        height: 0px;
    }
    100% {
        height: 200px;
    }
}

.animatio_notif_down {
    animation: notifd 1s ease normal forwards;
}

@keyframes notifd {
    0% {
        height: 200px;
    }
    100% {
        height: 0px;
    }
}

header .settings .notifs .results .top {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .settings .notifs .results .top .bi {
    color: #bc0000;
}

header .settings .notifs .results .top span {
    color: #af0000;
    margin-right: 5px;
    font-weight: bold;
    font-size: 14px;
}

header .settings .notifs .results .con span {
    color: #515151;
    font-size: 12px;
}

header .settings .notifs .results .con {
    max-width: 90%;
}

header .settings .notifs .results {
    width: 95%;
    margin-top: 5px;
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border-radius: 5px;
    margin-right: 8px;
    background-color: #c8c8c8;
    margin-bottom: 5px;
    height: auto;
    /* border: 1px solid #fff; */
}

header .settings .notifs {
    width: 250px;
    overflow: auto;
    /* display: flex; */
    z-index: 9999;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    /* border-bottom: 4px solid #c10000; */
    top: 80px;
    border-radius: 8px;
    background-color: #9e9e9e;
    height: 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    /* border: 1px solid #fff; */
}

header .settings {
    width: 40px;
    border-radius: 12px;
    height: 40px;
    display: flex;
    cursor: pointer;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    justify-content: center;
    background: #acacac00;
    border: 2.5px solid #acacac;
}

header .settings .bi {
    color: #fff;
    font-size: 15px;
    position: relative;
    top: 2px;
}

header .user .img .cur {
    width: 10px;
    border-radius: 50%;
    animation: myAnim 0.8s ease 0s infinite alternate forwards;
    height: 10px;
    border: 3px solid rgb(91, 81, 1);
    transform: translate(-15px, 20px);
    background-color: rgb(0, 219, 0);
}

header .settings .cur {
    width: 10px;
    border-radius: 50%;
    height: 10px;
    position: absolute;
    border: 3px solid rgb(91, 81, 1);
    transform: translate(9px, -9px);
    z-index: 999999;
    background-color: rgb(219, 0, 0);
}

a{
    text-decoration: none;
}
header .settings .bi-bag {
    font-size: 20px;
}

@keyframes myAnim {
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0.5;
    }
}

header .user .img {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .user img {
    width: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    height: 50px;
    transform: translate(10px, -5px);
    z-index: -1;
    /* border: 3px solid #e5e5e5; */
    /* border-radius: 50%; */
    object-fit: cover;
}

header .user {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* border: 2px  solid #fff; */
}

header .user .content {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: column;
    text-align: left;
}

header .user .content .level {
    font-size: 12px;
    color: rgb(201, 0, 0);
}


/* .message_info{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
} */

header .user .content .name {
    font-size: 13px;
    -webkit-text-stroke: thick;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    color: #fff;
}

.midell img {
    width: 580px;
    height: 530px;
    user-select: none;
    user-zoom: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.midell {
    object-fit: cover;
    /* background: url("img/bO7yqP3.png"),linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0)); */
    width: 90%;
    /* height: 500px; */
    opacity: 0.8;
    display: flex;
    align-items: center;
    direction: rtl;
    justify-content: flex-end;
}

.midell .inputs_menu {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 350px;
}

.midell .inputs_menu span {
    font-family: colak;
    font-size: 35px;
    color: #ffffff;
}

.midell .inputs_menu .content {
    color: #dcdcdc;
    text-align: center;
    width: 75%;
    height: auto;
}

.midell .inputs_menu .inputs_all {
    width: 50%;
    /* margin-top: 10px; */
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.midell .inputs_menu .inputs_all button .bi {
    font-size: 15px;
    position: relative;
    transition: .3s ease;
    top: 3px;
    margin-right: 5px;
}

.midell .inputs_menu .inputs_all button:hover {
    box-shadow: none;
    animation: myAssnim 1s ease normal forwards;
}

@keyframes myAssnim {
    0% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(-10px, 0px);
    }
}

.midell .inputs_menu .inputs_all button {
    transition: .1s ease;
    width: 150px;
    animation: myAssnims 1s ease normal forwards;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    height: 45px;
    background: rgb(255, 42, 42);
    color: #fff;
    cursor: pointer;
    position: absolute;
    border: none;
    border-radius: 8px;
}

@keyframes myAssnims {
    0% {
        transform: translate(-10px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.arrow {
    position: relative;
    user-select: none;
    user-zoom: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(0%, -50%); */
    transform: rotate(360deg);
    /* cursor: pointer; */
}

.arrow span {
    display: block;
    width: 1.5vw;
    user-select: none;
    user-zoom: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    height: 1.5vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.banner {
    width: 90%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgs {
    position: absolute;
    z-index: -1;
    top: 640px;
    right: 150px;
    margin-top: 80px;
    object-fit: cover;
    width: 320px;
    opacity: 0.3;
    height: 250px;
    background: url(img/main-qimg-a0f361b51bb7447bbc6623c33b72a2f1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.middel_banner .cats .img_cur img{
    width: 100%;
    height: 100%;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    object-fit: cover;
    border-radius: 10px;
}
.middel_banner .cats .img_cur{
    width: 95%;
    height: 95%;
    transition: .3s ease;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border: 1px solid #fff; */
    border-radius: 10px;
}
.middel_banner .cats a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.middel_banner .cats span{
    color: #f1f1f1;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.middel_banner .cats:hover .img_cur{
    transform: translateY(-10px);
    transition: .3s ease;
}
.middel_banner .cats{
    width: 120px;
    display: flex;
    transition: .3s ease;
    align-items: center;
    flex-direction: column;
    background-color: #c20000;
    justify-content: space-around;
    height: 160px;
    /* border: 1px solid #fff; */
    border-radius: 10px;
}
.middel_banner {
    width: 90%;
    /* margin-top: 50px; */
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    /* border: 1px solid #fff; */
}

.middel_banner .ban img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.middel_banner .ban {
    width: 300px;
    height: 160px;
    margin-top: 10px;
    box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
    margin-bottom: 10px;
    border-radius: 12px;
    object-fit: cover;
    transition: .2s ease;
    cursor: pointer;
    /* border: 1px solid #fff; */
}

.middel_banner .ban:hover {
    box-shadow: none;
}

.shop_title select{
    background-color: red;
    color: #fff;
    width: 100px;
    height: 30px;
    border: none;
    border-radius: 5px;
    outline: none;
}
.shop_title {
    width: 90%;
    height: 50px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop_title .title .bi {
    margin-left: 5px;
}

.shop_title .title:hover .bi {
    color: #ff0000;
}

.shop_title .title {
    color: #fff;
    cursor: pointer;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    font-weight: bold;
    font-size: 22px;
}

.shop_title .category .active {
    color: #ff0000;
}

.shop_title .category .deactive:hover {
    color: #aeaeae;
}

.shop_title .category span {
    cursor: pointer;
    font-weight: bold;
}

.shop_title .category {
    width: 25%;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: space-around;
}

.shop_title .category span {
    color: #ffffff;
    position: relative;
    transition: .3s ease;
    text-decoration: none;
}

.shop_title .category span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.shop_title .category .active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #f2f2f2;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.shop_title .category span:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.cards img {
    position: absolute;
    width: 30%;
    object-fit: cover;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    opacity: 0.3;
    height: auto;
}

.cards {
    margin-top: 90px;
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.cards .card:hover {
    border: 1px solid rgba(255, 255, 255, 0.54);
}

.cards .card {
    width: 200px;
    /* cursor: pointer; */
    margin: 50px;
    transition: .3s ease;
    border-radius: 8px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.7px);
    -webkit-backdrop-filter: blur(5.7px);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.cards #premium .imgse {
    user-select: none;
    user-zoom: none;
    opacity: 1;
    width: 150px;
    height: 150px;
    top: -89px;
    right: auto;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    position: absolute;
}
.cards .card .top a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cards .card .top {
    width: 90%;
    height: 50%;
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
}

.cards .card .top img {
    opacity: 1;
    position: relative;
    width: 140px;
    object-fit: contain;
    height: 150px;
}

.cards .card .con div {
    color: #8e0000;
    font-weight: bold;
}

.cards .card .con {
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
    justify-content: center;
    height: auto;
}

.cards .card .con span {
    color: #fff;
    font-size: 13px;
}

.cards .card .btn {
    width: 95%;
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: space-evenly;
}

.cards .card button[type=submit] .bi {
    position: relative;
    top: 2px;
}

.cards .card button[type=submit] {
    width: 40%;
    height: 30px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    cursor: pointer;
    border-radius: 5px;
}

.cards .card .shop {
    width: 35px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    height: 35px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 7px;
    border: none;
    color: #fff;
    background-color: rgb(128, 23, 0);
}


.cards .card .button {
    width: 90%;
    margin-top: 20px;
    height: 2px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    background-color: #8e0000;
    /* border: 1px solid #fff; */
}

.footer img {
    width: 25%;
    opacity: 0.2;
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    height: 90%;
}

.footer {
    width: 90%;
    margin-top: 80px;
    border-radius: 18px;
    margin-bottom: 50px;
    height: 450px;
    background-color: #2e0101;
    border: 1px solid #68686876;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.footer .content {
    width: 40%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.footer .content h1 .ok {
    color: #b00000;
    font-weight: bold;
}

.footer .content h1 {
    color: #ffff;
}

.footer .content .con {
    color: #878787;
    margin-top: 20px;
    font-size: 15px;
}

footer {
    width: 100%;
    margin-top: 50px;
    height: 100px;
    /* border: 1px solid #fff; */
    display: flex;
    background-color: #48000071;
    align-items: center;
    justify-content: space-between;
}

footer .right .logo img {
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

footer .right .logo span span {
    margin-left: 3px;
    margin-right: 3px;
}

footer .right .logo span span .bi {
    margin-left: 5px;
}

footer .right .logo span {
    color: #fff;
    font-size: 13px;
}

footer .right .logo {
    width: 50%;
    height: 100%;
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer .right .social .special .bi {
    font-size: 25px;
    top: 3px;
    color: #dadada;
    position: relative;
}

footer .right .social .special:hover {
    background-color: #dadada;
}

footer .right .social .special:hover .bi {
    color: #690000;
}

footer .right .social .special {
    transition: .3s ease;
    border-radius: 8px;
    width: 45px;
    cursor: pointer;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #690000;
    border: 1px solid #96969667;
}

footer .right .social {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* border: 1px solid #fff; */
}

footer .right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    /* border: 1px solid #fff; */
}

footer .left {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    /* border: 1px solid #fff; */
}

footer .left .text span {
    color: #bababa;
}

footer .left .text span .bi {
    position: relative;
    top: 2px;
    font-size: 20px;
}
footer .left .logo_special a{
     display: flex;
    align-items: center;
    justify-content: center;
}
footer .left .logo_special {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

footer .left .logo_special img {
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

footer .left .logo_special .enemad {
    filter: drop-shadow(5px 5px 5px #0048ff86);
    width:45px;
}

footer .left .logo_special .samandehi {
    filter: drop-shadow(5px 5px 5px #ffe10086);
}

footer .left .logo_special .zarin {
    filter: drop-shadow(5px 5px 5px #ffe1009a);
}

.middel_banner {
    width: 90%;
    /* margin-top: 50px; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    /* border: 1px solid #fff; */
}

.search_phone .bi {
    font-size: 19px;
    color: #fff;
    position: relative;
    top: 3px;
}

.search_phone {
    cursor: pointer;
    /* box-shadow: rgba(150, 150, 150, 0.4) 0px 2px 4px, rgba(122, 122, 122, 0.3) 0px 7px 13px -3px, rgba(134, 134, 134, 0.2) 0px -3px 0px inset; */
    width: 45px;
    border: 2px solid #ffffffb5;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #9c9c9c00;
    height: 45px;
    border-radius: 50%;
}

.search .close {
    display: none;
}

.search_s {
    display: none;
}

.annucements .annucement .close .border {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffffab;
}

.annucements .annucement .close .bi {
    color: #fff;
    cursor: pointer;
    position: relative;
    top: 2.3px;
    font-size: 20px;
}

.annucements .annucement .close {
    width: 95%;
    display: flex;
    margin-top: 5px;
    height: 40px;
    align-items: center;
    justify-content: flex-start;
}

.annucements .annucement img {
    user-select: none;
    user-zoom: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.annucements .annucement {
    width: 50%;
    /* border: 1px solid #fff; */
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    /* border-bottom: 4px solid #fff; */
    background-color: #27272700;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border-radius: 18px;
}

.annucements {
    width: 100%;
    position: fixed;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0%;
    left: 0%;
    backdrop-filter: blur(5px);
    z-index: 9999999999999999;
    background-color: #24010100;
}

@media screen and (max-width:1100px) {
    .shop_title .category {
        width: 50%;
        display: flex;
        color: #fff;
        align-items: center;
        justify-content: space-around;
    }
}

.cards .card .shop {
    transition: .3s ease;
}

.cards .card .shop:hover {
    background-color: rgb(209, 0, 0);
}

@media screen and (max-width:993px) {
    footer .left {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 100%;
        /* border: 1px solid #fff; */
    }
    footer .right {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 100%;
        /* border: 1px solid #fff; */
    }
    .footer .content {
        width: 90%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }
    .footer {
        flex-direction: column-reverse;
        height: auto;
        align-items: center;
        justify-content: space-around;
    }
    .midell {
        height: auto;
        flex-direction: column-reverse;
    }
    .banner {
        margin-top: 100px;
    }
}

@media screen and (max-width:840px) {
    header #dis {
        display: none;
    }
    .midell .inputs_menu {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 350px;
    }
}

@media screen and (max-width:740px) {
    footer {
        height: auto;
        flex-direction: column-reverse;
    }
    header input[type=text] {
        width: 250px;
    }
    header .search .searchbox {
        width: 265px;
    }
    footer .left {
        margin-bottom: 30px;
        width: 60%;
    }
    footer .right {
        width: 40%;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: space-around;
        height: 100%;
        /* border: 1px solid #fff; */
    }
    footer .right .logo {
        margin-top: 20px;
    }
    footer .right .social .special {
        margin-left: 5px;
        margin-right: 5px;
    }
    footer .right .social {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    footer .right .logo {
        margin-top: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .midell img {
        width: 300px;
        height: 300px;
        user-select: none;
        user-zoom: none;
        -webkit-user-drag: none;
        -webkit-user-select: none;
    }
}

@media screen and (max-width:536px) {
    .search .close .bi {
        cursor: pointer;
    }
    .search .close {
        width: 100%;
        display: flex;
        margin-top: 10px;
        /* margin-bottom: 50px; */
        align-items: center;
        flex-direction: row;
        justify-content: space-around;
        color: #fff;
    }
    .search_phone {
        display: flex;
    }
    .search {
        background-color: #2e0101;
        width: 100%;
        height: 100%;
        top: 0%;
        left: 0%;
        z-index: 999999999;
        display: none;
        align-items: flex-start;
        justify-content: center;
        position: fixed;
    }
    .imgs {
        display: none;
    }
    .banner {
        margin-top: 10px;
    }
    .shop_title .category {
        width: 70%;
    }
    header .search #search_input {
        display: none;
    }
    .search .close .search_s {
        width: 350px;
        display: flex;
    }
    header .search .searchbox {
        /* margin-top: 45px; */
        width: 100%;
        height: 100%;
        display: flex;
    }
}
@media screen and (max-width:470px) {

    header .menus .menu .buttom .notif_result {
        width: 200px;
        left: 188px;
    }
}