﻿:root {
    --maincolor: #1565C0;
    --darkmaincolor: #0C3577;
    --dark: #393939;
    --darkgray: #707070;
    --coolgray: #B0BEC5;
    --bluemain: #0D47A1;
    --bluelight: #1E88E5;
    --shbluemain: #012B81;
    --shbluelight: #004ADF;
    --shgreenmain: #00A9AC;
    --tbzpurplemain: #3700B3;
    --tbzpurplelight: #6100ED;
    --tbzgreenmain: #00DAFF;
    --white: #ffffff;
    --light: #EEEEEE;
}

/*---------------------- Public Style ---------------------*/

body {
    background-color: var(--light);
    margin: 0;
    padding: 0;
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    font-family: IRANSans;
    outline: medium none !important;
    text-decoration: none !important;
}

.container {
    max-width: 100%;
    padding-right: 150px;
    padding-left: 150px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
}

.tooltip-inner {
    background-color: var(--dark);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
}

.tooltip .arrow::before {
    border-bottom-color: var(--dark);
    border-top-color: var(--dark);
}

/*---------------------- /Public Style ---------------------*/

/*---------------------- Header Main ---------------------*/

.header-main {
    position: relative;
    background-color: var(--maincolor);
    z-index: 9999;
}

    .header-main::before {
        content: "";
        background: url('../images/main/pattern.png') repeat center center / 600px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.08;
    }

    .header-main .header-logos {
        padding: 30px 0;
        width: 100%;
        text-align: center;
    }

        .header-main .header-logos .date-time {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background-color: var(--bluemain);
            font-size: 12px;
            font-weight: normal;
            color: var(--white);
            position: absolute;
            top: 20px;
            right: 0;
            border-radius: 50px 0 0 50px;
            z-index: 10;
        }

            .header-main .header-logos .date-time .time {
                background-color: var(--bluelight);
                padding: 8px 25px;
                font-size: 14px;
                font-weight: bold;
                color: var(--white);
                border-radius: 50px 0 0 50px;
                width: 100px;
            }

            .header-main .header-logos .date-time .date {
                padding: 8px 20px;
            }

        .header-main .header-logos .slogan > img {
            position: absolute;
            top: 80px;
            right: 20px;
            z-index: 10;
            width: 80px;
        }

        .header-main .header-logos .images-rahbar {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 10;
            height: 100%;
            overflow: hidden;
            width: 250px;
        }

            .header-main .header-logos .images-rahbar .flag {
                position: absolute;
                left: -20px;
                top: 0;
                z-index: 10;
                width: 250px;
            }

            .header-main .header-logos .images-rahbar .imam {
                position: absolute;
                left: 0;
                bottom: -15px;
                z-index: 20;
                width: 280px;
            }

        .header-main .header-logos .logo-main > img {
            position: relative;
            z-index: 10;
            width: 350px;
        }

    .header-main .header-menu {
        position: relative;
        z-index: 20;
    }

        .header-main .header-menu .box-row-menu {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

            .header-main .header-menu .box-row-menu .navbar-region {
                position: relative;
                background-color: var(--bluemain);
                width: 100%;
                padding: 15px 30px;
                border-radius: 25px 25px 0 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
                z-index: 20;
            }

                .header-main .header-menu .box-row-menu .navbar-region::before {
                    content: "";
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 0 0 44px 25px;
                    border-color: transparent transparent var(--bluemain) transparent;
                    position: absolute;
                    left: -20px;
                    top: 10px;
                }

        .header-main .header-menu .navbar-region .navbar-nav {
            padding: 0;
        }

            .header-main .header-menu .navbar-region .navbar-nav .nav-item::after {
                content: "";
                display: inline-block;
                width: 6px;
                height: 6px;
                border-radius: 10px;
                background-color: var(--white);
                opacity: 0.15;
                margin: 0 18px;
            }

            .header-main .header-menu .navbar-region .navbar-nav .nav-item:last-child:after {
                display: none;
            }

            .header-main .header-menu .navbar-region .navbar-nav .nav-link {
                display: inline-block;
                font-size: 14px;
                font-weight: normal;
                color: var(--white);
                padding: 0;
                transition: all 0.3s;
            }

        .header-main .header-menu .navbar-region .navbar-brand {
            padding: 0;
            margin-right: 30px;
            font-size: 14px;
            font-weight: bold;
            color: var(--white);
            transition: all 0.3s;
        }

            .header-main .header-menu .navbar-region .navbar-nav .nav-link:hover,
            .header-main .header-menu .navbar-region .navbar-brand:hover {
                color: var(--bluelight);
                font-weight: bold;
            }

        .header-main .header-menu .navbar-region .dropdown-toggle::after {
            content: "\e90f";
            font-family: 'icomoon';
            border: none;
            margin-left: 0;
            margin-right: 3px;
            vertical-align: 0;
            font-size: 8px;
            opacity: 0.7;
        }

        .header-main .header-menu .box-row-menu .other-icons {
            position: relative;
            height: 40px;
            background-color: var(--bluelight);
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            border-radius: 15px 0 0 0;
            flex-shrink: 0;
            direction: ltr;
        }

            .header-main .header-menu .box-row-menu .other-icons::after {
                content: "";
                background-color: var(--bluelight);
                width: 100px;
                height: 40px;
                position: absolute;
                right: -80px;
                top: 0;
            }

            .header-main .header-menu .box-row-menu .other-icons .item-oth {
                display: inline-block;
                font-size: 18px;
                color: var(--white);
                margin-right: 15px;
                transition: all 0.3s;
            }

                .header-main .header-menu .box-row-menu .other-icons .item-oth:hover {
                    opacity: 0.5;
                }

                .header-main .header-menu .box-row-menu .other-icons .item-oth > i {
                    display: block;
                }

        .header-main .header-menu .navbar-region .dropdown-menu {
            border-radius: 12px;
            left: auto;
            right: -20px;
            top: 50px;
            border: none;
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
            display: block;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }

        .header-main .header-menu .navbar-region .dropdown-toggle:hover + .dropdown-menu,
        .header-main .header-menu .navbar-region .dropdown-toggle + .dropdown-menu:hover {
            top: 30px;
            opacity: 1;
            visibility: visible;
        }

        .header-main .header-menu .navbar-region .dropdown-menu .dropdown-item {
            padding: 6px 20px;
            clear: both;
            color: var(--dark);
            font-size: 13px;
            font-weight: normal;
            text-align: right;
        }

            .header-main .header-menu .navbar-region .dropdown-menu .dropdown-item:hover {
                background-color: var(--bluelight);
                color: var(--white);
            }

/*---------------------- /Header Main ---------------------*/

/*---------------------- Content Main ---------------------*/

/*---------------------- Section Messages ---------------------*/

.sec-messages {
    margin-top: 40px;
}

     .box-messages {
        position: relative;
        background-color: var(--white);
        width: 100%;
        height: 50px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .box-messages .title-ticker {
            padding: 10px 30px;
            background-color: var(--bluelight);
            font-size: 16px;
            font-weight: bold;
            color: var(--white);
            height: 100%;
            border-radius: 100px 0 0 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
        }

        .box-messages .region-news-ticker {
            margin: 0;
            padding: 0;
        }

            .box-messages .region-news-ticker a {
                font-size: 14px;
                font-weight: normal;
                color: var(--dark);
            }

        .box-messages .acme-news-ticker-controls {
            position: absolute;
            left: 15px;
            top: 15px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .box-messages .acme-news-ticker-controls button {
                width: 20px;
                height: 20px;
                background-color: var(--light);
                border-radius: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: none;
                border: none;
                font-size: 9px;
                margin-right: 5px;
                color: var(--dark);
                transition: all 0.4s;
            }

                .box-messages .acme-news-ticker-controls button.active {
                    background-color: var(--coolgray);
                    color: var(--white);
                }

                .box-messages .acme-news-ticker-controls button:hover {
                    background-color: var(--bluelight);
                    color: var(--white);
                }

            .box-messages .acme-news-ticker-controls .acme-news-ticker-prev {
                transform: rotate(-90deg);
            }

            .box-messages .acme-news-ticker-controls .acme-news-ticker-next {
                transform: rotate(90deg);
            }

/*---------------------- /Section Messages ---------------------*/

/*---------------------- Section Slideshow ---------------------*/

.sec-slideshow {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0px 65px;
}

     .box-slideshow {
        position: relative;
        width: 100%;
        height: 400px;
        background-color: var(--white);
        border: 5px solid var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    }

         .box-slideshow .swiper-slider {
            height: 100%;
        }

        .box-slideshow .swiper-slide .image-slider {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

         .box-slideshow .text-slider {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            width: 100%;
            z-index: 10;
            text-align: center;
            padding: 30px;
        }

             .box-slideshow .text-slider::before {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                left: 0;
                width: 100%;
                height: 250px;
                background: rgb(57, 57, 57);
                background: -moz-linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                background: -webkit-linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                background: linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#393939", endColorstr="#393939", GradientType=1);
                z-index: 10;
            }

             .box-slideshow .text-slider .date {
                display: block;
                font-size: 14px;
                font-weight: normal;
                color: var(--white);
                opacity: 0.5;
                position: relative;
                z-index: 20;
                margin-bottom: 5px;
            }

             .box-slideshow .text-slider .title {
                font-size: 20px;
                font-weight: bold;
                color: var(--white);
                position: relative;
                z-index: 20;
                margin: 0;
            }

         .box-slideshow .swiper-button-arrow {
            width: 40px;
            height: 40px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.35);
            border: 2px solid var(--white);
            font-size: 11px;
            color: var(--white);
            transition: all 0.4s;
        }

             .box-slideshow .swiper-button-arrow:hover {
                background-color: var(--bluelight);
            }

         .box-slideshow .swiper-button-next {
            left: auto;
            right: 20px;
            transform: rotate(-90deg);
        }

         .box-slideshow .swiper-button-prev {
            right: auto;
            left: 20px;
            transform: rotate(90deg);
        }

         .box-slideshow .swiper-button-arrow::after {
            display: none;
        }

    .box-mayors {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    }

         .box-mayors::before {
            content: "";
            background: url('../images/main/pattern.png') repeat center center / 600px;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.08;
        }

         .box-mayors::after {
            content: "";
            background: rgb(255, 255, 255);
            background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

         .box-mayors .item-mayor {
            position: relative;
            width: 50%;
            height: 100%;
            padding: 30px;
            border-left: 1px solid var(--light);
            text-align: center;
            z-index: 20;
        }

             .box-mayors .item-mayor:last-child {
                border: none;
            }

             .box-mayors .item-mayor .image-mayor {
                width: 100%;
                height: 230px;
                border-radius: 15px;
                border: 1px solid var(--light);
                overflow: hidden;
            }

                .box-mayors .item-mayor .image-mayor > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all 1s;
                }

             .box-mayors .item-mayor:hover .image-mayor > img {
                transform: scale(1.1);
            }

             .box-mayors .item-mayor .name {
                font-size: 16px;
                font-weight: bold;
                color: var(--dark);
                margin: 15px 0 5px;
            }

             .box-mayors .item-mayor .post {
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--coolgray);
            }

             .box-mayors .item-mayor .btn-call {
                display: inline-block;
                background-color: var(--bluelight);
                border-radius: 8px;
                padding: 4px 20px 6px;
                font-size: 12px;
                font-weight: bold;
                color: var(--white);
                margin-top: 20px;
                transition: all 0.4s;
            }

            .box-mayors .item-mayor:nth-child(2) .btn-call {
                background-color: var(--bluemain);
            }

             .box-mayors .item-mayor .btn-call:hover {
                background-color: var(--coolgray);
            }

/*---------------------- /Section Slideshow ---------------------*/

/*---------------------- Section News ---------------------*/

.sec-news {
    margin-top: 40px;
}

    .sec-news .box-tenders,
    .sec-news .box-newsslide {
        position: relative;
        background-color: var(--white);
        width: 100%;
        height: 700px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    }

        .sec-news .box-tenders::after {
            content: "";
            background: rgb(255, 255, 255);
            background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 250px;
            z-index: 20;
        }

        .sec-news .box-tenders .head-box,
        .sec-news .box-newsslide .head-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
        }

            .sec-news .box-tenders .head-box .title-box,
            .sec-news .box-newsslide .head-box .title-box {
                padding: 12px 25px;
                background-color: var(--bluemain);
                border-radius: 100px 0 0 100px;
                border-right: 5px solid var(--bluelight);
                font-size: 16px;
                font-weight: bold;
                color: var(--white);
                margin: 0;
            }

            .sec-news .box-tenders .head-box .arrows-swiper,
            .sec-news .box-newsslide .swiper-mainnews .arrows-news {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin-left: 15px;
            }

                .sec-news .box-tenders .head-box .arrows-swiper .swiper-button-arrow,
                .sec-news .box-newsslide .swiper-mainnews .arrows-news .swiper-button-arrow {
                    position: relative;
                    top: auto;
                    left: auto;
                    right: auto;
                    width: 25px;
                    height: 25px;
                    border-radius: 100px;
                    background-color: var(--light);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 10px;
                    color: var(--dark);
                    margin-right: 5px;
                    transition: all 0.4s;
                }

                    .sec-news .box-tenders .head-box .arrows-swiper .swiper-button-arrow:hover,
                    .sec-news .box-newsslide .swiper-mainnews .arrows-news .swiper-button-arrow:hover {
                        background-color: var(--bluelight);
                        color: var(--white);
                    }

                    .sec-news .box-tenders .head-box .arrows-swiper .swiper-button-arrow::after,
                    .sec-news .box-newsslide .swiper-mainnews .arrows-news .swiper-button-arrow::after {
                        display: none;
                    }

                .sec-news .box-tenders .head-box .arrows-swiper .swiper-button-prev {
                    transform: scaleY(-1);
                }

        .sec-news .box-tenders .swiper-tenders {
            width: 100%;
            height: 90%;
            overflow: hidden;
            padding: 20px;
        }

            .sec-news .box-tenders .swiper-tenders .swiper-slide {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                height: 30px !important;
            }

                .sec-news .box-tenders .swiper-tenders .swiper-slide .bullet-box,
                .sec-shahryarnews .box-shahryar .list-shnews .link-shnews .bullet-box,
                .footer-main .footer-links .list-links .text-link .bullet-box {
                    width: 18px;
                    height: 18px;
                    border-radius: 100px;
                    background-color: var(--white);
                    border: 1px solid var(--light);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    margin-left: 10px;
                    transition: all 0.4s;
                }

                    .sec-news .box-tenders .swiper-tenders .swiper-slide .bullet-box::after,
                    .sec-shahryarnews .box-shahryar .list-shnews .link-shnews .bullet-box::after,
                    .footer-main .footer-links .list-links .text-link .bullet-box::after {
                        content: "";
                        width: 10px;
                        height: 10px;
                        background-color: var(--light);
                        border-radius: 100px;
                        transition: all 0.4s;
                    }

                .sec-news .box-tenders .swiper-tenders .swiper-slide .text-slide {
                    text-align: right;
                    font-size: 14px;
                    font-weight: normal;
                    color: var(--dark);
                    margin: 0;
                    opacity: 0.5;
                    transition: all 0.4s;
                }

                .sec-news .box-tenders .swiper-tenders .swiper-slide.swiper-slide-next .bullet-box {
                    background-color: rgba(30, 136, 229, 0.2);
                    border-color: transparent;
                }

                    .sec-news .box-tenders .swiper-tenders .swiper-slide.swiper-slide-next .bullet-box::after {
                        background-color: var(--bluelight);
                    }

                .sec-news .box-tenders .swiper-tenders .swiper-slide.swiper-slide-next .text-slide {
                    color: var(--dark);
                    font-weight: bold;
                    opacity: 1;
                }

        .sec-news .box-tenders .btn-archive,
        .sec-news .box-newsslide .head-box .btn-archive {
            display: inline-block;
            background-color: var(--dark);
            border-radius: 8px;
            padding: 4px 20px 6px;
            font-size: 12px;
            font-weight: bold;
            color: var(--white);
            position: absolute;
            bottom: 20px;
            left: 20px;
            transition: all 0.4s;
            z-index: 50;
        }

            .sec-news .box-tenders .btn-archive:hover,
            .sec-news .box-newsslide .head-box .btn-archive:hover {
                background-color: var(--bluelight);
            }

        .sec-news .box-newsslide .head-box .title-box {
            background-color: var(--bluelight);
            border-color: var(--bluemain);
        }

        .sec-news .box-newsslide .head-box .btn-archive {
            position: relative;
            left: auto;
            bottom: auto;
            margin-left: 20px;
        }

        .sec-news .box-newsslide .swiper-mainnews {
            position: relative;
            padding: 30px 15px;
        }

            .sec-news .box-newsslide .swiper-mainnews .box-image-news {
                display: block;
                width: 100%;
                height: 300px;
                overflow: hidden;
                border-radius: 15px;
            }

                .sec-news .box-newsslide .swiper-mainnews .box-image-news > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .sec-news .box-newsslide .swiper-mainnews .info-news {
                text-align: right;
                padding-top: 20px;
            }

            .sec-news .box-newsslide .swiper-mainnews .date {
                display: block;
                font-size: 16px;
                font-weight: 500;
                color: var(--dark);
            }

            .sec-news .box-newsslide .swiper-mainnews .title {
                font-size: 20px;
                font-weight: bold;
                margin: 30px 0 15px;
            }

                .sec-news .box-newsslide .swiper-mainnews .title > a {
                    color: var(--bluelight);
                }

            .sec-news .box-newsslide .swiper-mainnews .desc {
                font-size: 14px;
                font-weight: normal;
                color: var(--dark);
                margin: 0;
                line-height: 2;
            }

        .sec-news .box-newsslide .swiper-thumbnews {
            padding: 0 15px;
            border-top: 1px solid var(--light);
        }

            .sec-news .box-newsslide .swiper-thumbnews .swiper-slide {
                padding: 30px 10px;
                text-align: center;
                transition: all 0.4s;
            }

                .sec-news .box-newsslide .swiper-thumbnews .swiper-slide img {
                    width: 100%;
                    height: 185px;
                    object-fit: cover;
                    border-radius: 15px;
                }

                .sec-news .box-newsslide .swiper-thumbnews .swiper-slide .title {
                    font-size: 14px;
                    font-weight: bold;
                    color: var(--dark);
                    margin: 10px 0 0;
                    line-height: 1.5;
                    transition: all 0.4s;
                }

                .sec-news .box-newsslide .swiper-thumbnews .swiper-slide.swiper-slide-active {
                    background-color: var(--light);
                }

                    .sec-news .box-newsslide .swiper-thumbnews .swiper-slide.swiper-slide-active .title {
                        color: var(--bluemain);
                    }

        .sec-news .box-newsslide .swiper-mainnews .arrows-news {
            position: absolute;
            left: 10px;
            bottom: -13px;
            z-index: 20;
        }

            .sec-news .box-newsslide .swiper-mainnews .arrows-news .swiper-button-next {
                transform: rotate(-90deg);
            }

            .sec-news .box-newsslide .swiper-mainnews .arrows-news .swiper-button-prev {
                transform: rotate(90deg);
            }

/*---------------------- /Section News ---------------------*/

/*---------------------- Section ShahryarNews ---------------------*/

.sec-shahryarnews .box-shahryar {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    background-color: var(--shbluemain);
    border-radius: 20px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
}

    .sec-shahryarnews .box-shahryar .info-shahryar {
        position: relative;
        width: 100%;
        height: 300px;
        padding: 30px 30px 30px 0;
        background-color: var(--shbluelight);
        text-align: right;
        border-radius: 100px 20px 20px 0;
    }

        .sec-shahryarnews .box-shahryar .info-shahryar > * {
            position: relative;
            z-index: 20;
        }

        .sec-shahryarnews .box-shahryar .info-shahryar::after {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 250px 100px;
            border-color: transparent transparent var(--shbluelight) transparent;
            position: absolute;
            left: -87px;
            top: 50px;
        }

        .sec-shahryarnews .box-shahryar .info-shahryar .logo-shr {
            width: 200px;
        }

        .sec-shahryarnews .box-shahryar .info-shahryar .title {
            font-size: 18px;
            font-weight: bold;
            color: var(--white);
            margin: 30px 0 5px;
        }

        .sec-shahryarnews .box-shahryar .info-shahryar .desc {
            font-size: 14px;
            font-weight: 300;
            color: var(--white);
            margin: 0;
            padding-left: 30px;
            opacity: 0.7;
        }

        .sec-shahryarnews .box-shahryar .info-shahryar .btn-archive {
            display: block;
            background-color: var(--shgreenmain);
            border-radius: 8px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: bold;
            color: var(--white);
            margin-right: auto;
            text-align: center;
            width: 120px;
            margin-top: 30px;
            transition: all 0.4s;
        }

            .sec-shahryarnews .box-shahryar .info-shahryar .btn-archive:hover {
                background-color: var(--white);
                color: var(--shgreenmain);
            }

    .sec-shahryarnews .box-shahryar .list-shnews {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 30px;
        list-style: none;
        margin: 0;
    }

        .sec-shahryarnews .box-shahryar .list-shnews .item-shnews {
            width: 50%;
            margin-bottom: 30px;
            padding-left: 20px;
        }

            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(3),
            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(4) {
                padding-right: 25px;
            }

            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(5),
            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(6) {
                padding-right: 50px;
            }

            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(7),
            .sec-shahryarnews .box-shahryar .list-shnews .item-shnews:nth-child(8) {
                padding-right: 75px;
            }

        .sec-shahryarnews .box-shahryar .list-shnews .link-shnews {
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews .bullet-box,
            .footer-main .footer-links .list-links .item-link .bullet-box {
                border: none;
                background-color: rgba(238, 238, 238, 0.15);
            }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews:hover .bullet-box {
                background-color: rgba(0, 169, 172, 0.2);
            }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews .bullet-box::after {
                opacity: 0.5;
            }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews:hover .bullet-box::after {
                background-color: var(--shgreenmain);
                opacity: 1;
            }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews .desc {
                font-size: 14px;
                font-weight: normal;
                color: var(--white);
                opacity: 0.5;
                margin: 0;
                transition: all 0.4s;
            }

            .sec-shahryarnews .box-shahryar .list-shnews .link-shnews:hover .desc {
                font-weight: 500;
                opacity: 1;
            }

/*---------------------- /Section ShahryarNews ---------------------*/

/*---------------------- Section Multimedia ---------------------*/

.sec-multimedia {
    position: relative;
    margin: 40px 0;
    background-color: var(--dark);
}

    .sec-multimedia::before {
        content: "";
        background: url('../images/main/pattern-white.png') repeat center center / 600px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.02;
    }

    .sec-multimedia .head-box {
        position: relative;
        width: 100%;
        padding-top: 30px;
    }

        .sec-multimedia .head-box::before {
            content: "";
            width: 100%;
            height: 1px;
            background-color: var(--white);
            position: absolute;
            top: 53px;
            right: 0;
            left: 0;
            z-index: 5;
            opacity: 0.15;
        }

        .sec-multimedia .head-box .row {
            align-items: center;
            justify-content: space-between;
        }

        .sec-multimedia .head-box .title-box {
            position: relative;
            background-color: var(--bluelight);
            display: inline-block;
            padding: 10px 25px;
            border-radius: 100px;
            border-right: 5px solid var(--white);
            border-left: 5px solid var(--white);
            z-index: 20;
            font-size: 16px;
            font-weight: bold;
            color: var(--white);
        }

        .sec-multimedia .head-box .btn-archive {
            display: inline-block;
            background-color: var(--white);
            border-radius: 8px;
            padding: 4px 15px 6px;
            font-size: 12px;
            font-weight: bold;
            color: var(--dark);
            position: relative;
            transition: all 0.4s;
            z-index: 50;
        }

            .sec-multimedia .head-box .btn-archive:hover {
                background-color: var(--bluelight);
                color: var(--white);
            }

    .sec-multimedia .multimedia-box {
        padding: 40px 0;
    }

        .sec-multimedia .multimedia-box .media-main {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 20px;
            border: 3px solid var(--white);
            overflow: hidden;
        }

            .sec-multimedia .multimedia-box .media-main .image-media {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 1s;
            }

            .sec-multimedia .multimedia-box .media-main:hover .image-media {
                transform: scale(1.1);
            }

            .sec-multimedia .multimedia-box .media-main .type-media {
                width: 40px;
                height: 60px;
                background-color: var(--white);
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 0 0 100px 100px;
                font-size: 28px;
                color: var(--bluelight);
                position: absolute;
                top: 0;
                left: 15px;
                z-index: 20;
            }

            .sec-multimedia .multimedia-box .media-main .text-media {
                position: absolute;
                bottom: 0;
                right: 0;
                left: 0;
                width: 100%;
                z-index: 10;
                text-align: center;
                padding: 30px;
            }

                .sec-multimedia .multimedia-box .media-main .text-media::before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    left: 0;
                    width: 100%;
                    height: 250px;
                    background: rgb(57, 57, 57);
                    background: -moz-linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                    background: -webkit-linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                    background: linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(57, 57, 57, 0) 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#393939", endColorstr="#393939", GradientType=1);
                    z-index: 10;
                }

                .sec-multimedia .multimedia-box .media-main .text-media .date {
                    display: block;
                    font-size: 14px;
                    font-weight: normal;
                    color: var(--white);
                    opacity: 0.5;
                    position: relative;
                    z-index: 20;
                    margin-bottom: 5px;
                }

                .sec-multimedia .multimedia-box .media-main .text-media .title {
                    font-size: 20px;
                    font-weight: bold;
                    position: relative;
                    z-index: 20;
                    margin: 0;
                }

                    .sec-multimedia .multimedia-box .media-main .text-media .title > a {
                        color: var(--white);
                        transition: all 0.4s;
                    }

                        .sec-multimedia .multimedia-box .media-main .text-media .title > a:hover {
                            color: var(--bluelight);
                        }

        .sec-multimedia .multimedia-box .item-media {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 30px;
        }

            .sec-multimedia .multimedia-box .item-media:last-child {
                margin-bottom: 0;
            }

            .sec-multimedia .multimedia-box .item-media .image-media {
                position: relative;
                width: 280px;
                height: 180px;
                border: 1px solid var(--darkgray);
                border-radius: 20px;
                overflow: hidden;
                margin-left: 20px;
                flex-shrink: 0;
            }

                .sec-multimedia .multimedia-box .item-media .image-media > a {
                    display: block;
                    width: 100%;
                    height: 100%;
                }

                    .sec-multimedia .multimedia-box .item-media .image-media > a::before {
                        content: "";
                        background-color: var(--bluelight);
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        opacity: 0;
                        z-index: 10;
                        transition: all 0.4s;
                    }

            .sec-multimedia .multimedia-box .item-media:hover .image-media > a::before {
                opacity: 0.6;
            }

            .sec-multimedia .multimedia-box .item-media .image-media img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 1s;
            }

            .sec-multimedia .multimedia-box .item-media:hover .image-media img {
                transform: scale(1.1);
                filter: grayscale(1);
            }

            .sec-multimedia .multimedia-box .item-media .image-media .type-media {
                width: 35px;
                height: 50px;
                background-color: var(--white);
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 0 0 100px 100px;
                font-size: 24px;
                color: var(--dark);
                position: absolute;
                top: 0;
                left: 10px;
                z-index: 20;
                transition: all 0.4s;
            }

            .sec-multimedia .multimedia-box .item-media:hover .image-media .type-media {
                background-color: var(--bluemain);
                color: var(--white);
            }

            .sec-multimedia .multimedia-box .item-media .info-media {
                text-align: right;
                padding: 20px 0;
            }

                .sec-multimedia .multimedia-box .item-media .info-media .date {
                    display: block;
                    font-size: 14px;
                    font-weight: normal;
                    color: var(--white);
                    opacity: 0.5;
                }

                .sec-multimedia .multimedia-box .item-media .info-media .title {
                    font-size: 16px;
                    font-weight: bold;
                    margin: 10px 0 0;
                    line-height: 1.6;
                }

                    .sec-multimedia .multimedia-box .item-media .info-media .title > a {
                        color: var(--white);
                        transition: all 0.4s;
                    }

            .sec-multimedia .multimedia-box .item-media:hover .info-media .title > a {
                color: var(--bluelight);
            }

            .sec-multimedia .multimedia-box .item-media .visit {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin-top: 20px;
                font-size: 12px;
                font-weight: normal;
                color: var(--white);
            }

                .sec-multimedia .multimedia-box .item-media .visit > i {
                    font-size: 20px;
                    color: var(--bluelight);
                    margin-left: 10px;
                }

/*---------------------- /Section Multimedia ---------------------*/

/*---------------------- Section Services ---------------------*/

.sec-services .head-box {
    position: relative;
    text-align: center;
}

    .sec-services .head-box::before {
        content: "";
        width: 100%;
        height: 1px;
        background-color: var(--dark);
        position: absolute;
        top: 22px;
        right: 0;
        left: 0;
        z-index: 5;
        opacity: 0.15;
    }

    .sec-services .head-box .title-box {
        position: relative;
        background-color: var(--bluemain);
        display: inline-block;
        padding: 10px 25px;
        border-radius: 100px;
        border-right: 5px solid var(--bluelight);
        border-left: 5px solid var(--bluelight);
        z-index: 20;
        font-size: 16px;
        font-weight: bold;
        color: var(--white);
    }

.sec-services .list-services {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

    .sec-services .list-services .swiper-services {
        width: 100%;
        overflow: hidden;
    }

    .sec-services .list-services .swiper-slide {
        padding: 10px;
    }

    .sec-services .list-services .box-service {
        background-color: var(--white);
        border-radius: 20px;
        padding: 30px 15px;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

        .sec-services .list-services .box-service .image-srv {
            width: 130px;
            height: 130px;
            padding: 4px;
            border-radius: 200px;
            border: 3px solid var(--bluelight);
            overflow: hidden;
            margin: 0 auto;
        }

            .sec-services .list-services .box-service .image-srv .box-image {
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
                overflow: hidden;
                border-radius: 100%;
            }

                .sec-services .list-services .box-service .image-srv .box-image::before {
                    content: "";
                    background-color: var(--bluelight);
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 10;
                    opacity: 0;
                    transition: all 0.4s;
                }

        .sec-services .list-services .box-service:hover .image-srv .box-image::before {
            opacity: 0.6;
        }

        .sec-services .list-services .box-service .image-srv .box-image::after {
            content: "\e900";
            font-family: 'icomoon';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--white);
            transform: scale(2);
            opacity: 0;
            visibility: hidden;
            z-index: 20;
            transition: all 0.4s;
        }

        .sec-services .list-services .box-service:hover .image-srv .box-image::after {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }

        .sec-services .list-services .box-service .image-srv .box-image > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 1s;
        }

        .sec-services .list-services .box-service:hover .image-srv .box-image > img {
            transform: scale(1.2);
            filter: grayscale(1);
        }

        .sec-services .list-services .box-service .title {
            font-size: 16px;
            font-weight: bold;
            margin: 20px 0 5px;
        }

            .sec-services .list-services .box-service .title > a {
                color: var(--dark);
                transition: all 0.4s;
            }

        .sec-services .list-services .box-service:hover .title > a {
            color: var(--bluelight);
        }

        .sec-services .list-services .box-service .desc {
            font-size: 12px;
            font-weight: normal;
            color: var(--dark);
            margin: 0;
        }

    .sec-services .list-services .arrows-services .swiper-button-arrow {
        width: 40px;
        height: 40px;
        background-color: var(--white);
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--bluelight);
        font-size: 12px;
        color: var(--bluelight);
        transition: all 0.4s;
    }

        .sec-services .list-services .arrows-services .swiper-button-arrow:hover {
            background-color: var(--bluelight);
            color: var(--white);
        }

        .sec-services .list-services .arrows-services .swiper-button-arrow::after {
            display: none;
        }

    .sec-services .list-services .arrows-services .swiper-button-next {
        right: -60px;
        transform: rotate(-90deg);
    }

    .sec-services .list-services .arrows-services .swiper-button-prev {
        left: -60px;
        transform: rotate(90deg);
    }

/*---------------------- /Section Services ---------------------*/

/*---------------------- Section Tabrizapp ---------------------*/

.sec-tabrizapp .box-tabrizapp {
    margin: 100px 0;
    width: 100%;
    height: 300px;
    background-color: var(--tbzpurplemain);
    border-radius: 20px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
}

    .sec-tabrizapp .box-tabrizapp .mockup-app {
        position: relative;
        width: 100%;
        height: 300px;
        padding: 30px;
        background-color: var(--tbzpurplelight);
        text-align: center;
        border-radius: 20px 100px 0 20px;
    }

        .sec-tabrizapp .box-tabrizapp .mockup-app::after {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 250px 100px;
            border-color: transparent transparent var(--tbzpurplelight) transparent;
            position: absolute;
            right: -87px;
            top: 50px;
            transform: scaleX(-1);
        }

        .sec-tabrizapp .box-tabrizapp .mockup-app .img-mockup {
            width: 340px;
            position: relative;
            margin-top: -100px;
        }

    .sec-tabrizapp .box-tabrizapp .info-tabrizapp {
        position: relative;
        border-radius: 0 0 20px 20px;
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: right;
        padding: 60px 0 60px 150px;
    }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp::before {
            content: "";
            background: url('../images/main/tabrizart.png') no-repeat center center / 500px;
            position: absolute;
            top: 0;
            right: -158px;
            width: 500px;
            height: 300px;
            z-index: 10;
            opacity: 0.3;
        }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp > div {
            position: relative;
            z-index: 20;
        }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .logo-tabrizapp {
            padding: 0 50px;
        }

            .sec-tabrizapp .box-tabrizapp .info-tabrizapp .logo-tabrizapp > img {
                width: 90px;
            }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .title {
            font-size: 24px;
            font-weight: bold;
            color: var(--white);
        }

            .sec-tabrizapp .box-tabrizapp .info-tabrizapp .title > strong {
                color: var(--tbzgreenmain);
            }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .desc {
            font-size: 16px;
            font-weight: 300;
            color: var(--white);
            opacity: 0.7;
        }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .more-info {
            direction: ltr;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 40px;
        }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .btn-archive {
            display: block;
            background-color: var(--tbzgreenmain);
            border-radius: 8px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: bold;
            color: var(--white);
            margin-right: 20px;
            transition: all 0.4s;
        }

            .sec-tabrizapp .box-tabrizapp .info-tabrizapp .btn-archive:hover {
                background-color: var(--white);
                color: var(--tbzgreenmain);
            }

        .sec-tabrizapp .box-tabrizapp .info-tabrizapp .platforms {
            font-size: 16px;
            font-weight: 500;
            color: var(--white);
            opacity: 0.2;
        }

/*---------------------- /Section Tabrizapp ---------------------*/

/*---------------------- Section Banners ---------------------*/

.sec-banners .item-banner {
    background-color: var(--white);
    width: 100%;
    height: 130px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    border: 3px solid var(--white);
}

    .sec-banners .item-banner .image-banner > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 1s;
    }

    .sec-banners .item-banner .image-banner:hover > img {
        transform: scale(1.1);
    }

    .sec-banners .item-banner.item-poster {
        position: relative;
        background-color: var(--bluelight);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: right;
        padding: 30px;
    }

        .sec-banners .item-banner.item-poster::before {
            content: "\e905";
            font-family: 'icomoon';
            font-size: 180px;
            color: var(--white);
            position: absolute;
            top: -70px;
            right: -35px;
            transform: rotate(-12deg);
            opacity: 0.05;
        }

.sec-banners .item-poster .boc-icon {
    font-size: 60px;
    color: var(--white);
    margin-left: 30px;
    flex-shrink: 0;
}

    .sec-banners .item-poster .boc-icon > i {
        display: block;
    }

.sec-banners .item-poster .info-poster {
    width: 100%;
}

.sec-banners .item-poster .title {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin: 0 0 5px;
}

.sec-banners .item-poster .desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
    opacity: 0.7;
}

.sec-banners .item-poster .view-poster {
    display: block;
    background-color: var(--bluemain);
    border-radius: 8px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    margin-right: auto;
    text-align: center;
    width: 120px;
    margin-top: 10px;
    transition: all 0.4s;
}

    .sec-banners .item-poster .view-poster:hover {
        background-color: var(--white);
        color: var(--bluemain);
    }

/*---------------------- /Section Banners ---------------------*/

/*---------------------- Section Statistics ---------------------*/

.sec-statistics {
    margin-top: 40px;
}

    .sec-statistics .box-statistics {
        width: 100%;
        height: 130px;
        background-color: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    }

        .sec-statistics .box-statistics .item-stat {
            border-left: 1px solid var(--light);
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: right;
        }

            .sec-statistics .box-statistics .item-stat:last-child {
                border: none;
            }

            .sec-statistics .box-statistics .item-stat i {
                font-size: 60px;
                color: var(--bluelight);
                margin-left: 20px;
                flex-shrink: 0;
            }

            .sec-statistics .box-statistics .item-stat .title {
                font-size: 18px;
                font-weight: bold;
                color: var(--dark);
                margin: 0;
            }

            .sec-statistics .box-statistics .item-stat .stat-count {
                display: flex;
                align-items: baseline;
                justify-content: flex-start;
                line-height: 1.1;
                color: var(--bluelight);
            }

            .sec-statistics .box-statistics .item-stat .count {
                font-size: 30px;
                font-weight: bold;
                margin-left: 3px;
            }

            .sec-statistics .box-statistics .item-stat .unit {
                font-size: 16px;
                font-weight: 500;
            }

/*---------------------- /Section Statistics ---------------------*/

/*---------------------- /Content Main ---------------------*/

/*---------------------- Footer Main ---------------------*/

.footer-main {
    margin-top: 40px;
}

    .footer-main .footer-info {
        background-color: var(--bluemain);
        padding: 30px;
    }

        .footer-main .footer-info .item-inf {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .footer-main .footer-info .item-inf > i {
                font-size: 30px;
                color: var(--white);
                margin-left: 15px;
            }

            .footer-main .footer-info .item-inf .text {
                font-size: 16px;
                font-weight: normal;
                color: var(--white);
                opacity: 0.5;
            }

        .footer-main .footer-info .contact-info {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .footer-main .footer-info .contact-info .item-inf.fax {
                margin-right: 30px;
            }

    .footer-main .footer-links {
        position: relative;
        padding: 30px;
        background-color: var(--darkmaincolor);
        border-top: 2px solid var(--bluelight);
        border-bottom: 4px solid var(--bluelight);
    }

        .footer-main .footer-links::before {
            content: "";
            background: url('../images/main/pattern-white.png') repeat center center / 600px;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.02;
        }

        .footer-main .footer-links .list-links {
            padding: 0;
            margin: 0 0 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

            .footer-main .footer-links .list-links .item-link {
                list-style: none;
                margin-left: 50px;
                margin-bottom: 20px;
            }

            .footer-main .footer-links .list-links .text-link {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                margin: 0;
            }

                .footer-main .footer-links .list-links .text-link .text {
                    font-size: 14px;
                    font-weight: normal;
                    color: var(--white);
                    opacity: 0.5;
                    transition: all 0.3s;
                }

                .footer-main .footer-links .list-links .text-link:hover .text {
                    opacity: 1;
                    font-weight: bold;
                }

                .footer-main .footer-links .list-links .text-link:hover .bullet-box {
                    background-color: rgba(30, 136, 229, 0.4);
                }

                    .footer-main .footer-links .list-links .text-link:hover .bullet-box::after {
                        background-color: var(--bluelight);
                    }

        .footer-main .footer-links .row-footer-bottom {
            align-items: center;
        }

        .footer-main .footer-links .copyright {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

            .footer-main .footer-links .copyright .region {
                width: 80px;
                margin-left: 20px;
            }

            .footer-main .footer-links .copyright .text-cpt {
                font-size: 14px;
                font-weight: normal;
                color: var(--white);
                text-align: right;
            }

                .footer-main .footer-links .copyright .text-cpt > span {
                    display: block;
                    font-size: 12px;
                }

        .footer-main .footer-links .special-links {
            padding: 0 60px;
        }

        .footer-main .footer-links .swiper-special {
            overflow: hidden;
        }

            .footer-main .footer-links .swiper-special .swiper-slide {
                text-align: center;
            }

            .footer-main .footer-links .swiper-special .image-link {
                display: block;
                width: 110px;
                height: 110px;
                border-radius: 200px;
                border: 2px solid var(--white);
                overflow: hidden;
                margin: 0 auto;
            }

                .footer-main .footer-links .swiper-special .image-link > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all 1s;
                }

                .footer-main .footer-links .swiper-special .image-link:hover > img {
                    transform: scale(1.1);
                }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-arrow::after {
            display: none;
        }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-arrow {
            font-size: 20px;
            color: var(--white);
            opacity: 0.35;
            transition: all 0.4s;
        }

            .footer-main .footer-links .special-links .arrows-special .swiper-button-arrow:hover {
                opacity: 1;
            }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-next {
            transform: rotate(-90deg);
            right: 30px;
        }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-prev {
            transform: rotate(90deg);
            left: 30px;
        }

        .footer-main .footer-links .socials-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .footer-main .footer-links .social-list {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            direction: ltr;
        }

            .footer-main .footer-links .social-list .item-sc {
                width: 45px;
                height: 45px;
                border-radius: 12px;
                background-color: rgba(255, 255, 255, 0.2);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                color: var(--white);
                margin-right: 10px;
                transition: all 0.4s;
            }

                .footer-main .footer-links .social-list .item-sc:hover {
                    background-color: var(--bluelight);
                }

                .footer-main .footer-links .social-list .item-sc:last-child {
                    margin-right: 0;
                }

        .footer-main .footer-links .updated-site {
            display: block;
            font-size: 11px;
            font-weight: normal;
            color: var(--white);
            margin-top: 10px;
            padding-left: 2px;
        }

/*---------------------- /Footer Main ---------------------*/

/*---------------------- About Page ---------------------*/

 .box-inner-page {
    position: relative;
    background-color: var(--white);
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    padding: 0px 0px 50px 0px;
}

 .box-inner-page .head-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

 .box-inner-page .head-box .title-box {
            padding: 12px 25px;
            background-color: var(--bluelight);
            border-radius: 100px 0 0 100px;
            border-right: 5px solid var(--bluemain);
            font-size: 16px;
            font-weight: bold;
            color: var(--white);
            margin: 0;
        }

 .box-inner-page .about-details {
        margin-top: 20px;
        padding: 0 30px;
    }

  .box-inner-page .about-history p {
        font-size: 15px;
        font-weight: normal;
        color: var(--dark);
        margin: 0 0 15px;
        line-height: 2.5;
        text-align: justify;
    }

   .box-inner-page .about-images .big-image {
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 100%;
        border: 4px solid var(--light);
        overflow: hidden;
        margin-top: -30px;
        margin-right: auto;
    }

 .box-inner-page .about-images .big-image > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

 .box-inner-page .about-images .small-image {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 100%;
        border: 4px solid var(--light);
        overflow: hidden;
        margin-right: auto;
        z-index: 9999;
        bottom: 50px;
        right: 100px;
    }

 .box-inner-page .about-images .small-image > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

 .sec-services {
    margin: 50px 0 30px;
}

 .sec-services .container {
        padding: 0 90px;
    }

 .sec-services .head-box {
        position: relative;
        text-align: center;
    }

.sec-services .head-box .title-box {
            position: relative;
            background-color: var(--bluemain);
            display: inline-block;
            padding: 10px 25px;
            border-radius: 100px;
            border-right: 5px solid var(--bluelight);
            border-left: 5px solid var(--bluelight);
            z-index: 20;
            font-size: 16px;
            font-weight: bold;
            color: var(--white);
            margin: 0 auto;
        }

 .sec-services .swiper-services-page {
        width: 100%;
        overflow: hidden;
    }

.list-services .box-service {
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
}

 .list-services .swiper-slide {
    padding: 15px;
}
.sec-about-tab .nav-tabs {
    margin: 50px 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border: 0;
    padding: 0 20px;
    width: 100%;
}

 .sec-about-tab .nav-tabs .nav-item {
        width: 100%;
        padding: 0 10px;
    }

 .sec-about-tab .nav-tabs .nav-link {
        background-color: var(--light);
        border: none;
        border-right: 1px solid var(--light);
        border-left: 1px solid var(--light);
        width: 100%;
        border-radius: 12px;
        font-size: 16px;
        padding: 10px;
        text-align: center;
        color: var(--dark);
        font-weight: 500;
        transition: all 0.3s;
    }

 .sec-about-tab .nav-tabs .nav-link.active {
            background-color: var(--bluemain);
            border-right: 5px solid var(--bluelight);
            border-left: 5px solid var(--bluelight);
            color: var(--white);
            font-weight: bold;
        }

 .sec-about-tab .tab-content {
    padding: 10px 30px;
}

 .sec-about-tab .tab-pane {
    background-color: #fafafa;
    padding: 20px;
    border: 1px solid var(--light);
    border-radius: 15px;
    text-align: right;
}

 .sec-about-tab .tab-pane p {
        font-size: 14px;
        font-weight: normal;
        color: var(--dark);
        margin: 0 0 15px;
        line-height: 2;
        text-align: justify;
    }

 .sec-about-tab .tab-pane .list-items {
        padding: 0;
        margin: 30px 0 0;
        list-style: none;
    }

 .sec-about-tab .tab-pane .list-items > li {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 15px;
            font-size: 13px;
            font-weight: 500;
            color: var(--darkgray);
        }

 .sec-about-tab .tab-pane .list-items .bullet-box {
            width: 18px;
            height: 18px;
            border-radius: 100px;
            background-color: rgba(30, 136, 229, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 10px;
        }

  .sec-about-tab .tab-pane .list-items .bullet-box::after {
                content: "";
                width: 10px;
                height: 10px;
                background-color: var(--bluelight);
                border-radius: 100px;
                transition: all 0.4s;
            }

/*---------------------- /About Page ---------------------*/

/*---------------------- Contact Page ---------------------*/

 .big-image > iframe {
    width: 100%;
    height: 100%;
}

 .box-inner-page .about-images .small-image {
    width: 100px;
    height: 100px;
    background-color: var(--bluemain);
    display: flex;
    align-items: center;
    justify-content: center;
    right: 150px;
}

 .box-inner-page .about-images .small-image > svg {
        width: 35px;
    }

.sec-about-tab {
    padding: 0 30px !important;
    margin-top: 50px;
}

 .sec-about-tab .box-contact {
        width: 100%;
        background-color: var(--white);
        padding: 30px 15px;
        border-radius: 20px;
        text-align: center;
        height: 100%;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    }

 .sec-about-tab .box-contact .box-icon {
            background-color: var(--bluelight);
            width: 100px;
            height: 100px;
            padding: 4px;
            border-radius: 200px;
            border: 3px solid var(--light);
            overflow: hidden;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.sec-about-tab .box-contact .box-icon svg {
                width: 35px;
            }

.sec-about-tab .box-contact .box-icon svg path,
 .sec-about-tab .box-contact .box-icon svg circle {
                    fill: var(--white);
                }

     .sec-about-tab .box-contact .title-contact {
            font-size: 18px;
            font-weight: bold;
            color: var(--dark);
            margin-top: 20px;
        }

 .sec-about-tab .box-contact .desc-contact {
            font-size: 14px;
            font-weight: normal;
            color: var(--dark);
            margin-top: 5px;
            margin-bottom: 0;
        }

.form-contact-section {
    padding: 30px 30px 0;
}

 .form-contact-section .form-select {
        padding: 10px 15px;
    }

 .form-contact-section .lbl-input {
        font-size: 14px;
        font-weight: bold;
        color: var(--dark);
        display: block;
        margin-bottom: 6px;
        text-align: right;
    }

 .form-contact-section .input-control {
        background-color: var(--white);
        border: 1px solid #ddd;
        border-radius: 12px;
        height: 45px;
        width: 100%;
        padding: 12px;
        font-size: 14px;
        font-weight: 500;
    }

 .form-contact-section .input-control::placeholder {
            font-size: 12px;
            font-weight: 500;
            color: var(--darkgray);
        }

 .form-contact-section textarea.input-control {
        min-height: 120px;
    }

 .form-contact-section .select2-container {
        width: 100% !important;
    }

 .form-contact-section .select2-container--default .select2-selection {
        background-color: var(--white);
        border: 1px solid rgba(30, 30, 30, 0.15);
        border-radius: 12px !important;
        height: 45px;
        transition: all 0.3s;
    }

.form-contact-section .select2-container--default .select2-selection .select2-selection__rendered {
            line-height: 42px;
            padding-left: 15px;
            padding-right: 15px;
            text-align: right;
            font-size: 12px;
            font-weight: 500;
            color: var(--dark);
            direction: rtl;
            transition: all 0.3s;
        }

.form-contact-section .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 45px;
        position: absolute;
        top: 1px;
        left: 1px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--dark);
        opacity: 0.15;
        transition: all 0.3s;
    }

 .form-contact-section .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
        transform: rotate(180deg);
    }

 .form-contact-section .select2-container--default .select2-selection--single .select2-selection__arrow::before {
        content: "\e90f";
        font-family: 'icomoon';
        font-size: 10px;
        color: var(--dark);
    }

.form-contact-section .select2-container--default .select2-selection--single .select2-selection__arrow b {
        display: none;
    }

.select2-container--open .select2-dropdown {
    border-radius: 12px;
    text-align: right;
    overflow: hidden;
    top: 5px;
    border: 1px solid rgba(176, 190, 197, 0.6);
    z-index: 999999;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-results__option {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--darkgray);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bluelight);
    color: var(--white);
    font-weight: bold;
}

 .form-contact-section .form-security-code .input-control {
    font-size: 18px;
    width: 250px;
    text-align: center;
}

.form-contact-section .form-security-code .image-code {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

 .form-contact-section .form-security-code .image-security {
    height: 35px;
}

 .form-contact-section .form-security-code .image-refresh {
    cursor: pointer;
    width: 20px;
    margin-left: 10px;
}

 .form-contact-section .form-security-code .btn-send-form {
    height: 45px;
    width: auto;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--bluemain);
    font-size: 14px;
    font-weight: bold;
    border: none;
    color: var(--white);
    margin-right: 15px;
    transition: all 0.4s;
}

.form-contact-section .form-security-code .btn-send-form:hover {
        background-color: var(--bluelight);
    }

/*---------------------- /Contact Page ---------------------*/

/*---------------------- Mayor Page ---------------------*/

 .box-inner-page .about-images .big-image {
    width: 100%;
    border-radius: 30px;
    margin: 0;
}

 .box-inner-page .name-mayor {
    font-size: 24px;
    font-weight: bold;
    color: var(--bluemain);
    text-align: right;
    margin-top: 20px;
}

 .box-inner-page .post-mayor {
    font-size: 18px;
    font-weight: 500;
    color: var(--bluelight);
    text-align: right;
    margin: 0 0 20px;
}

 .box-inner-page .about-images .small-image {
    width: 80px;
    height: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -40px;
}

 .box-inner-page .about-images .small-image > svg {
        width: 30px;
    }

/*---------------------- /Mayor Page ---------------------*/

 .box-inner-page .about-images .big-image {
    width: 100%;
    border-radius: 30px;
    margin: 0;
}

 .box-inner-page .name-mayor {
    font-size: 24px;
    font-weight: bold;
    color: var(--bluemain);
    text-align: right;
    margin-top: 20px;
}

.box-inner-page .post-mayor {
    font-size: 18px;
    font-weight: 500;
    color: var(--bluelight);
    text-align: right;
    margin: 0 0 20px;
}

 .box-inner-page .about-images .small-image {
    width: 80px;
    height: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -40px;
}

 .box-inner-page .about-images .small-image > svg {
        width: 30px;
    }

/*---------------------- Responsives ---------------------*/

@media only screen and (min-width:1200px) and (max-width: 1650px) {
    .container {
        padding-right: 50px;
        padding-left: 50px;
    }

    .sec-slideshow .box-slideshow,
    .sec-slideshow .box-mayors {
        height: 350px;
    }

        .sec-slideshow .box-mayors .item-mayor {
            padding: 20px;
        }

            .sec-slideshow .box-mayors .item-mayor .image-mayor {
                height: 200px;
            }

    .sec-news .box-tenders,
    .sec-news .box-newsslide {
        height: 640px;
    }

        .sec-news .box-newsslide .swiper-mainnews .box-image-news {
            height: 250px;
        }

        .sec-news .box-newsslide .swiper-thumbnews .swiper-slide img {
            height: 130px;
        }

    .sec-shahryarnews .box-shahryar .list-shnews .item-shnews {
        margin-bottom: 25px;
    }

    .sec-multimedia .multimedia-box .media-main {
        height: 500px;
    }

    .sec-multimedia .multimedia-box .item-media {
        margin-bottom: 25px;
    }

        .sec-multimedia .multimedia-box .item-media .image-media {
            width: 230px;
            height: 150px;
        }

        .sec-multimedia .multimedia-box .item-media .info-media {
            padding: 10px 0;
        }

    .sec-services .list-services .arrows-services .swiper-button-next {
        right: -40px;
    }

    .sec-services .list-services .arrows-services .swiper-button-prev {
        left: -40px;
    }

    .sec-tabrizapp .box-tabrizapp .info-tabrizapp {
        padding-left: 100px;
    }

    .footer-main .footer-links .special-links {
        padding: 0 10px;
    }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-next {
            right: -15px;
        }

        .footer-main .footer-links .special-links .arrows-special .swiper-button-prev {
            left: -15px;
        }
}

/*---------------------- /Responsives ---------------------*/

/*---------------------- Show Content ---------------------*/

.MP * {
    text-align: right;
}

.moduletable.MP,
.MP {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    margin: 5px 0;
    border: solid 1px #eee;
    width: 100%;
    float: right;
    margin-top: 40px;
}

    .MP .PSearch {
        width: 100%;
    }

    .MP .module-header,
    .MP .panelhead {
        background-color: #1e88e5 !important;
        width: 100% !important;
        font-size: 14px;
        height: 60px !important;
        text-align: right;
        position: relative;
        right: 0;
        left: 0;
        top: 0;
        color: #fff;
        margin-top: 0 !important;
        border-radius: 20px 20px 0 0;
    }

    .MP .module-body {
        background-color: #fff;
        padding: 30px;
        font-size: 13px;
        color: #666;
        min-height: 300px;
        direction: rtl;
        line-height: 2;
        border-radius: 0 0 30px 30px;
    }

    .MP .module-header h3 {
        margin: 0;
        font-size: 16px;
        padding: 10px;
    }

    .MP .module-header div {
        line-height: 38px;
        font-size: 13px;
        color: #fff;
        padding: 11px 20px 11px 10px;
        float: right;
    }

    .MP .module-header .subject-code {
        float: right;
        background-color: #0d47a1;
        line-height: 1;
        margin: 17px 0;
        border-radius: 20px;
        padding: 8px 15px;
    }

    .MP .module-header .Short_Link {
        float: left;
        padding-left: 20px;
    }

        .MP .module-header .Short_Link .shortlink {
            direction: ltr;
            text-align: left;
            height: 30px;
            font-size: 13px;
            color: #000;
            border: none;
            border-radius: 30px;
            padding: 0 10px;
            margin-right: 10px;
            width: 200px;
        }

    .MP .highslide {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

.subject-body-header {
    display: flex;
    gap: 15px;
    flex-direction: row-reverse;
    width: 100%;
}

.module-body-header-text {
    width: 60%;
}

.opinion-border {
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ddd;
    min-height: 250px;
}

.opinion-div-intro {
    background-color: #f2f2f2;
    color: #999;
    direction: rtl;
    display: inline-block;
    font-size: 14px;
    line-height: 2;
    margin: 15px 0 0;
    padding: 10px;
    width: 100%;
}

.subject-body .News_STitr h3 {
    font-size: 16px;
    color: #1565c0;
    font-weight: 500;
    margin: 0;
    text-align: right;
}

.opinion-div-fulltext-news {
    width: 100%;
    text-align: right !important;
    color: #393939;
    direction: rtl;
    display: inline-block;
    font-size: 14px !important;
    line-height: 2 !important;
    padding: 2px 0;
    text-align: justify;
    white-space: normal;
    margin-top: 15px;
}

.subject-body .content-toolbox ul {
    display: flex;
    justify-content: center;
}

.content-detailsbox-body {
    position: relative;
}

.subject-body .content-toolbox ul > li {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    background-color: #fff;
    position: relative;
    z-index: 55;
}

    .subject-body .content-toolbox ul > li a {
        font-size: 18px;
        color: #1e88e5;
        display: block;
    }

.line-through {
    border: 1px solid #ddd;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 0px;
}


/*----------------------- RSS TABLE ----------------------*/

.table {
    display: flex;
    flex-direction: column;
    outline: 1px solid #ddd;
    width: 100%;
    background-color: #fff;
}

.table-row {
    display: flex;
    min-height: 35px;
    border: 1px solid #ddd;
}

    .table-row:hover > .table-data {
        background-color: #f5f5f5;
    }

.table-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    align-items:center;
}

    .table-data a {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .table-data:nth-child(2) {
        border-right: 1px solid #ddd;
        width: 65%;
    }
    .table-data:nth-child(1) {
        border-right: 1px solid #ddd;
        width: 35%;
    }

.table-head {
    font-weight: bold;
    background-color: #f5f5f5;
}
.table-row .table {
    margin: 15px;
}

.gap-5 {
    gap: 15px;
}

.input-control-btn {
    background: var(--bluemain) !important;
    color: aliceblue;
    transition: 0.5s background;
}


.input-control-btn:hover {
    background: var(--bluelight) !important;
}

.input-message {
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 100%;
}

.add-comment-btn {
    font-size: 14px;
    font-weight: bold;
    background: #eee;
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
}

ITShams.MIS.Web\wwwroot\Template\Default\Css\global.css
@@ -1, 1030 +0, 0 @@
﻿body {
    overflow-x: hidden;
}

.approval-container {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.red-border {
    border: 1px solid red;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.p-4 {
    padding: 15px;
}

w-100 {
    width: 100%;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-15 {
    gap: 15px;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.hide {
    display: none;
    visibility: hidden;
    height: 0;
}

.pagination\:container {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

    .pagination\:container * {
        font-family: nastalig !important;
    }

.arrow\:text {
    display: block;
    vertical-align: middle;
    font-size: 13px;
    vertical-align: middle;
}

.pagination\:number {
    --size: 32px;
    --margin: 6px;
    margin: 0 var(--margin);
    border-radius: 6px;
    background: #202020;
    max-width: auto;
    min-width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 6px;
    color: white;
}

@media (hover: hover) {
    &:hover {
        background: lighten(#202020, 3%);
    }
}

&:active {
    background: lighten(#202020, 3%);
}

}

.pagination\:active {
    background: lighten(#202020, 3%);
    position: relative;
}

.approval-list-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 50px;
}

.approval-list-container-pagination {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.px-15 {
    padding: 0px 15px;
}

.open-approval-modal {
    cursor: pointer;
}


.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999;
    display: none;
    overflow: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
    -webkit-overflow-scrolling: touch;
    padding: 50px 100px;
}

.modal-container {
    background: #fff;
    border-radius: 10px 0px 10px 10px;
    min-height: 500px;
    padding: 25px;
    position: relative;
}


.modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    color: red;
}

.direction-rtl {
    direction: rtl !important;
}

.nav-item {
    float: right !important;
}

.approval-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .approval-detail > * {
        padding: 15px;
    }

.approval-detail-description {
    padding: 0px;
}

.approval-detail-agenda-container {
    padding: 0;
}

.approval-detail-header {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    border: 1px solid #ddd;
}


.approval-detail-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.approval-detail-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 40px 20px;
    border-bottom: 1px solid #ddd;
}

.approval-detail-description {
    border-bottom: 1px solid #ddd;
    padding: 10px 40px 20px;
}

.approval-details-votes {
    padding: 10px 20px 20px;
}

.approval-detail-body > div {
    display: flex;
    justify-content: space-between;
}

a {
    color: #1e88e5;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #006a97;
    }


@media (min-width: 48em) {
    .container {
        margin: 2%;
    }
}

@media (min-width: 75em) {
    .container {
        margin: 2em auto;
        max-width: 75em;
    }
}

.responsive-table {
    width: 100%;
    margin-bottom: 1.5em;
    border-spacing: 0;
}

@media (min-width: 48em) {
    .responsive-table {
        font-size: 0.9em;
    }
}

@media (min-width: 62em) {
    .responsive-table {
        font-size: 1em;
    }
}

.responsive-table thead {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (min-width: 48em) {
    .responsive-table thead {
        position: relative;
        clip: auto;
        height: auto;
        width: auto;
        overflow: auto;
    }
}

.responsive-table thead th {
    background-color: #00acc1;
    border: 1px solid #00acc1;
    font-weight: normal;
    text-align: center;
    color: white;
}

    .responsive-table thead th:first-of-type {
        text-align: center;
    }

.responsive-table tbody, .responsive-table tr, .responsive-table th, .responsive-table td {
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
}

@media (min-width: 48em) {
    .responsive-table tr {
        display: table-row;
    }
}

.responsive-table th, .responsive-table td {
    padding: 0.5em;
    vertical-align: middle;
}

@media (min-width: 30em) {
    .responsive-table th, .responsive-table td {
        padding: 0.75em 0.5em;
    }
}

@media (min-width: 48em) {
    .responsive-table th, .responsive-table td {
        display: table-cell;
        padding: 0.5em;
    }
}

@media (min-width: 62em) {
    .responsive-table th, .responsive-table td {
        padding: 0.75em 0.5em;
    }
}

@media (min-width: 75em) {
    .responsive-table th, .responsive-table td {
        padding: 0.75em;
    }
}

.responsive-table caption {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 48em) {
    .responsive-table caption {
        font-size: 1.5em;
    }
}

.responsive-table tfoot {
    font-size: 0.8em;
    font-style: italic;
}

@media (min-width: 62em) {
    .responsive-table tfoot {
        font-size: 0.9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody {
        display: table-row-group;
    }
}

.responsive-table tbody tr {
    margin-bottom: 1em;
}

@media (min-width: 48em) {
    .responsive-table tbody tr {
        display: table-row;
        border-width: 1px;
    }
}

.responsive-table tbody tr:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 48em) {
    .responsive-table tbody tr:nth-of-type(even) {
        background-color: rgba(0, 0, 0, .12);
    }
}

.responsive-table tbody th[scope="row"] {
    background-color: rgba(38, 137, 13, 1);
    color: black;
    display: flex;
    justify-content: center;
}

@media (min-width: 30em) {
    .responsive-table tbody th[scope="row"] {
        border: 1px solid #00acc1;
        border-top: none;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody th[scope="row"] {
        background-color: transparent;
        color: rgba(0, 0, 1, );
        text-align: left;
    }
}

.responsive-table tbody td {
    text-align: right;
}

@media (min-width: 48em) {
    .responsive-table tbody td {
        border-left: 1px solid #00acc1;
        border-bottom: 1px solid #00acc1;
        text-align: center;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td:last-of-type {
        border: 1px solid #00acc1;
    }
}

.responsive-table tbody td[data-type=currency] {
    text-align: right;
}

.responsive-table tbody td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: 0.8em;
    color: rgba(0, 0, 0, .54);
}

@media (min-width: 30em) {
    .responsive-table tbody td[data-title]:before {
        font-size: 0.9em;
    }
}

@media (min-width: 48em) {
    .responsive-table tbody td[data-title]:before {
        content: none;
    }
}

.nav > li > a.active {
    text-decoration: none;
    background-color: #eee;
}

.file-zone {
    width: 100%;
    min-height: 350px;
    display: flex;
    border-radius: 10px;
    gap: 20px;
    padding: 25px;
}

.file-zone-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 350px;
}

.file-box {
    box-shadow: 0px 0px 8px #ddd;
    width: 140px;
    height: 120px;
    border-radius: 8px;
    position: relative;
    padding: 5px;
}

.file-box-items {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.file-download {
    position: absolute;
    display: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.file-icon, .file-title {
    transition: filter 0.2s;
}

.file-title {
    font-size: 12px;
}

.file-box-items:hover .file-icon,
.file-box-items:hover .file-title,
.file-box-items:hover .file-image {
    filter: blur(12px);
}

.file-box-items:hover .file-download {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
}

.file-image {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.file-icon {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mb-2 {
    margin-bottom: 16px;
}

.modal-header {
    border-bottom: none !important;
}


.vote-box {
    box-shadow: 0px 0px 2px black;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-radius: 8px;
    font-size: 13px;
}

    .vote-box.pos {
        box-shadow: 0px 0px 0px #fff;
        background: #d9f99d;
    }

    .vote-box.neg {
        box-shadow: 0px 0px 0px #fff;
        background: #fca5a5;
    }

    .vote-box.other {
        box-shadow: 0px 0px 0px #fff;
        background: #fef3c7;
    }

.approval-details-votes {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 25px;
    align-items: center;
}

.center-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}

.vote-box div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.vote-box > span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.approval-detail-description-container {
    padding: 0 !important;
}

.modal-header .nav.nav-tabs {
    width: 100%;
}

.paginationjs-go-input {
    margin-left: 0px !important;
}

.paginationjs {
    gap: 5px;
}

.paginationjs-prev {
    border-radius: 0 3px 3px 0 !important;
    border: 1px solid #aaa !important;
    border-right: none;
}

.paginationjs-next {
    border-radius: 3px 0 0 3px !important;
    border: 1px solid #aaa !important;
    border-right: none !important;
}

.paginationjs .paginationjs-pages li {
    float: right !important;
}

.modal-header-date-mob {
    display: none;
}

.modal-header-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    position: absolute;
    left: 0;
    margin-top: 15px;
}

.aproval-detail-text {
    margin-right: 15px;
    text-align: right;
}

.approval-details-votes-container {
    padding: 10px 40px 20px;
}

.meeting-agendas-table, th, td, tr {
    border: 1px solid #ddd;
    padding: 5px;
}

.meeting-agendas-table {
    width: 100%;
}

    .meeting-agendas-table th:nth-of-type(1) {
        width: 30%;
        text-align: center;
    }

    .meeting-agendas-table th {
        background-color: #00acc1;
        color: #fff;
        text-align: center;
    }


.filter-header-icon {
    display: none;
}

.close-modal {
    display: none;
}

.refresh-button {
    border: none;
    border-radius: 50%;
    background: none;
}

#token-image {
    width: 80px !important;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


@media only screen and (max-width: 1200px) {
    .approval-details-votes {
        grid-template-columns: 48% 48%;
    }
}

@media only screen and (max-width: 767px) {
    .modal {
        padding: 50px 25px;
    }

    .modal-header-date-mob {
        display: block;
    }

    .modal-header-date {
        display: none;
    }

    .approval-details-votes {
        grid-template-columns: 100%;
    }

    .approval-list-container {
        padding: 0px 20px;
    }

    .approval-filters {
        padding: 0px 20px;
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .approval-filters .accordion-body {
        display: none;
    }

    .filter-header-icon {
        display: block;
        position: fixed;
        bottom: 30px;
        left: 50px;
        padding: 10px;
        background: #00acc1;
        border-radius: 50%;
        z-index: 999999;
        border: 1px solid #fff;
    }

    .approval-detail-description {
        padding: 10px 10px 20px;
    }

    .approval-details-votes {
        padding: 10px 10px 20px;
    }
}

.comment-main-level {
    display: flex;
    gap: 25px;
}

.comments-container h1 {
    font-size: 36px;
    color: #283035;
    font-weight: 400;
}

    .comments-container h1 a {
        font-size: 18px;
        font-weight: 700;
    }

.comments-list {
    margin-top: 30px;
    position: relative;
}

    /**
* Lineas / Detalles
-----------------------*/
    .comments-list:before {
        content: '';
        width: 2px;
        height: 100%;
        background: #c7cacb;
        position: absolute;
        right: 32px;
        top: 0;
    }

    .comments-list:after {
        content: '';
        position: absolute;
        background: #c7cacb;
        bottom: 0;
        right: 30px;
        width: 7px;
        height: 7px;
        border: 3px solid #dee1e3;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }

.reply-list:before, .reply-list:after {
    display: none;
}

.reply-list li:before {
    content: '';
    width: 60px;
    height: 2px;
    background: #c7cacb;
    position: absolute;
    top: 25px;
    right: -55px;
}


.comments-list li {
    margin-bottom: 15px;
    display: block;
    position: relative;
}

    .comments-list li:after {
        content: '';
        display: block;
        clear: both;
        height: 0;
        width: 0;
    }

.reply-list {
    padding-right: 48px;
    clear: both;
    padding-top: 15px;
}
/**
* Avatar
---------------------------*/
.comments-list .comment-avatar {
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 99;
    border: 3px solid #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    overflow: hidden;
    border-radius: 50%;
}

    .comments-list .comment-avatar img {
        width: 100%;
        height: 100%;
    }

.reply-list .comment-avatar {
    width: 50px;
    height: 50px;
}


/**
* Caja del Comentario
---------------------------*/
.comments-list .comment-box {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15);
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

    .comments-list .comment-box:before, .comments-list .comment-box:after {
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        display: block;
        border-width: 10px 12px 10px 0;
        border-style: solid;
        border-color: transparent #FCFCFC;
        top: 8px;
        right: -11px;
        transform: rotate(178deg);
    }

    .comments-list .comment-box:before {
        border-width: 11px 13px 11px 0;
        border-color: transparent rgba(0,0,0,0.05);
        right: -12px;
    }

.reply-list .comment-box {
    width: 100%;
}

.comment-box .comment-head {
    background: #FCFCFC;
    padding: 10px 12px;
    border-bottom: 1px solid #E5E5E5;
    overflow: hidden;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    display: flex;
    gap: 5px;
}

    .comment-box .comment-head i {
        margin-right: 14px;
        position: relative;
        top: 2px;
        color: #A6A6A6;
        cursor: pointer;
        -webkit-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

        .comment-box .comment-head i:hover {
            color: #03658c;
        }

.comment-box .comment-name {
    color: #283035;
    font-size: 14px;
    font-weight: 700;
}

    .comment-box .comment-name a {
        color: #283035;
    }

.comment-box .comment-head span {
    color: #999;
    font-size: 13px;
    position: relative;
    top: 1px;
}

.comment-box .comment-content {
    background: #FFF;
    padding: 12px;
    font-size: 15px;
    color: #595959;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.comment-box .comment-name.by-author, .comment-box .comment-name.by-author a {
    color: #03658c;
}

    .comment-box .comment-name.by-author:after {
        content: 'autor';
        background: #03658c;
        color: #FFF;
        font-size: 12px;
        padding: 3px 5px;
        font-weight: 700;
        margin-left: 10px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

.main-comment-avatar {
    margin-right: -40px;
}
/** =====================
* Responsive
========================*/
@media only screen and (max-width: 766px) {
    .comments-container {
        width: 480px;
    }

    .comments-list .comment-box {
        width: 390px;
    }

    .reply-list .comment-box {
        width: 320px;
    }
}

.reaction-icon {
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-top: -4px;
}

    .reaction-icon input[type="radio"] {
        display: none; /* Hide the default radio button */
    }

    .reaction-icon input[type="button"] {
        display: none;
    }

    .reaction-icon i {
        color: gray;
        transition: color 0.3s ease;
    }

    .reaction-icon input[type="radio"]:checked + i {
        color: #007bff; /* Highlighted color when selected */
    }

.like-count,
.dislike-count {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    margin-top: -1px;
}

.white-space-nowrap {
    white-space: nowrap;
}

.t-bold {
    font-weight: bold;
}

button.approval-modal, button.meeting-modal {
    border: 2px solid #1e88e5;
    border-radius: 10px 0px 10px 0px;
    padding: 5px 15px;
    margin: 0px 5px;
}

.text-right {
    text-align: right !important;
}


