/*-----------------
    @Typography
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
/*---------------------------
** Global Scss
---------------------------*/
.slicknav_menu {
    display: none;
}

.boxed-btn {
    display: inline-block;
    background-color: #ed1c24;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 45px;
    border-radius: 5px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .boxed-btn:hover {
        background-color: transparent;
        border-color: #ececec;
        color: #fff;
    }

    .boxed-btn.blank {
        background-color: transparent;
        border-color: #ececec;
    }

        .boxed-btn.blank:hover {
            background-color: #ed1c24;
            border: 2px solid transparent;
            color: #fff;
        }

.section-title {
    margin-bottom: 76px;
}

    .section-title h3 {
        margin-top: 20px;
        margin-bottom: 8px;
    }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ed1c24;
    color: #ed1c24;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
}

/*-----------------
    Preloader
-----------------*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(../img/bg/header-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

    .preloader .loader .image-1 {
        display: inline-block;
        padding-left: 0px;
        margin-bottom: 0px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        -webkit-animation-duration: 3s;
        -moz-animation-duration: 3s;
        -o-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: rotate;
        -moz-animation-name: rotate;
        -o-animation-name: rotate;
        animation-name: rotate;
        -webkit-animation-direction: linear;
        -moz-animation-direction: linear;
        -o-animation-direction: linear;
        animation-direction: linear;
    }

@-webkit-keyframes rotate {
    0% {
        -ms-transform: rotate(360deg);
        /* IE 9 */
        -webkit-transform: rotate(360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(360deg);
    }

    100% {
        -ms-transform: rotate(-360deg);
        /* IE 9 */
        -webkit-transform: rotate(-360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -ms-transform: rotate(360deg);
        /* IE 9 */
        -webkit-transform: rotate(360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(360deg);
    }

    100% {
        -ms-transform: rotate(-360deg);
        /* IE 9 */
        -webkit-transform: rotate(-360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -ms-transform: rotate(360deg);
        /* IE 9 */
        -webkit-transform: rotate(360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(360deg);
    }

    100% {
        -ms-transform: rotate(-360deg);
        /* IE 9 */
        -webkit-transform: rotate(-360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-360deg);
    }
}

@keyframes rotate {
    0% {
        -ms-transform: rotate(360deg);
        /* IE 9 */
        -webkit-transform: rotate(360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(360deg);
    }

    100% {
        -ms-transform: rotate(-360deg);
        /* IE 9 */
        -webkit-transform: rotate(-360deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-360deg);
    }
}

/*====================
** Normalize
====================*/
html {
    font-family: "Roboto", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    /*  base font size  15px= 1em*/
    margin: 0;
    color: #777777;
    background: #fff;
}

h1 {
    font-size: 72px;
    line-height: 1.0833333333333333;
}

h2 {
    font-size: 62px;
    line-height: 1.4444444444444444;
}

h3 {
    font-size: 52px;
    line-height: 1.0833333333333333;
}

h4 {
    font-size: 20px;
    line-height: 1.2380952380952381;
}

h1, h2, h3, h4, h5, h6 {
    color: #222222;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

p {
    font-size: 14px;
    color: #777777;
    line-height: 1.625;
    /*-webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; */
}

a {
    color: #777777;
    text-decoration: none;
}

    a, a:hover, a:focus, a:active {
        text-decoration: none;
        outline: none;
    }

        a i {
            padding: 0 2px;
        }

img {
    max-width: 100%;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*------------------------------
    Navbar Area
------------------------------*/
.navbar-area {
    position: relative;
    z-index: 999;
}

    .navbar-area ul {
        text-align: right;
    }

        .navbar-area ul li {
            display: inline-block;
            padding: 50px 18px;
            font-size: 16px;
            font-weight: 500;
            text-transform: capitalize;
            position: relative;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

            .navbar-area ul li a a {
                padding-left: 0px !important;
                padding-right: 0px !important;
            }

.slicknav_nav .slicknav_arrow {
    float: right;
}

.navbar-area ul li:hover ul {
    display: block;
}

.navbar-area ul li ul {
    position: absolute;
    text-align: left;
    background-color: #ed1c24;
    display: none;
    left: 0px;
    top: 120px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    min-width: 200px;
}

    .navbar-area ul li ul li {
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block;
        width: 100%;
    }

        .navbar-area ul li ul li:hover {
            background: #0593BF;
        }

        .navbar-area ul li ul li a {
            color: #fff;
            display: inline-block;
            width: 100%;
        }

            .navbar-area ul li ul li a:hover {
                color: #fff;
            }

.navbar-area ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .navbar-area ul li a:hover {
        color: #ed1c24;
    }

.navbar-area ul li a {
    position: relative;
}

    .navbar-area ul li a.active:after,
    .navbar-area ul li a.active:before {
        visibility: visible;
        opacity: 1;
    }

    .navbar-area ul li a:after {
        position: absolute;
        left: 0;
        bottom: -50px;
        background: #ed1c24;
        content: '';
        width: 100%;
        height: 4px;
        visibility: hidden;
        opacity: 0;
    }

    .navbar-area ul li a:before {
        position: absolute;
        left: 50%;
        bottom: -46px;
        content: '';
        width: 10px;
        height: 10px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #ed1c24;
        transform: translateX(-50%);
        visibility: hidden;
        opacity: 0;
    }

/*------------------------------
    Header Area
------------------------------*/
.header-area {
    position: relative;
    z-index: 9;
}

    .header-area.header-area-bg {
        background-color: #ddd;
        background-image: url(../img/bg/header-bg.jpg);
        background-size: cover;
        background-position: center;
    }

    .header-area:after {
        position: absolute;
        left: 0;
        content: '';
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: -1;
    }

    .header-area .single-slide-item {
        padding: 0px 0 50px 0;
    }

        .header-area .single-slide-item h1 {
            font-size: 55px;
            font-weight: 400;
            color: #fff;
            line-height: 70px;
        }

        .header-area .single-slide-item h2 {
            font-size: 45px;
        }

        .header-area .single-slide-item h3 {
            font-size: 45px;
        }

        .header-area .single-slide-item h1 span {
            font-weight: 600;
            font-size: 55px;
        }

        .header-area .single-slide-item .btn-wrapper {
            margin-top: 47px;
        }

            .header-area .single-slide-item .btn-wrapper .boxed-btn {
                margin: 0 19px;
            }

/*---------------------------
    Features
----------------------------*/
.feature-area {
    padding: 80px 0;
}

    .feature-area .our-feature-wrapper ul {
        font-size: 0;
    }

        .feature-area .our-feature-wrapper ul li {
            display: inline-block;
            width: 25%;
            margin: 0;
            padding: 0;
        }

            .feature-area .our-feature-wrapper ul li .single-feature-item {
                display: inline-block;
                padding: 40px 30px 25px 30px;
                padding-left: 40px;
                padding-right: 40px;
                border-collapse: collapse;
                border-top: 2px solid #f6f6f6;
                border-bottom: 2px solid #f6f6f6;
                -webkit-transition: all 0.3s ease-in;
                -moz-transition: all 0.3s ease-in;
                -o-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }

                .feature-area .our-feature-wrapper ul li .single-feature-item:hover {
                    border-color: #ed1c24;
                }

                .feature-area .our-feature-wrapper ul li .single-feature-item:first-child {
                    border-left: 2px solid #f6f6f6;
                }

                .feature-area .our-feature-wrapper ul li .single-feature-item.border-right {
                    border-right: 2px solid #f6f6f6;
                }

                .feature-area .our-feature-wrapper ul li .single-feature-item .icon {
                    margin-bottom: 17px;
                }

                    .feature-area .our-feature-wrapper ul li .single-feature-item .icon i {
                        font-size: 40px;
                        line-height: 40px;
                    }

                        .feature-area .our-feature-wrapper ul li .single-feature-item .icon i:before {
                            font-size: 60px;
                            line-height: 60px;
                            color: #ed1c24;
                            margin-left: 0;
                        }

                .feature-area .our-feature-wrapper ul li .single-feature-item .content {
                    padding-top: 20px;
                }

                    .feature-area .our-feature-wrapper ul li .single-feature-item .content h4 {
                        font-size: 20px;
                        margin-top: 0;
                        margin-bottom: 18px;
                    }

                    .feature-area .our-feature-wrapper ul li .single-feature-item .content p {
                        font-size: 14px;
                    }

/*------------------------
    Suitable Business
-------------------------*/
.suitable-business-area {
    position: relative;
    padding: 138px 0 120px 0;
    z-index: 1;
    overflow: hidden;
}

    .suitable-business-area.suitable-business-bg {
        background-image: url(../img/bg/suitable-business-bg.jpg);
        background-color: #fff;
        background-position: center;
        background-size: cover;
    }

    .suitable-business-area .left-content .section-title {
        position: relative;
        z-index: 1;
        margin-bottom: 35px;
    }

        .suitable-business-area .left-content .section-title .bg-text {
            position: absolute;
            left: -80px;
            top: -100px;
            font-size: 200px;
            font-weight: 700;
            color: #fff;
            z-index: -1;
        }

        .suitable-business-area .left-content .section-title h2 {
            padding-top: 30px;
            font-size: 62px;
            color: #ed1c24;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .suitable-business-area .left-content .section-title h4 {
            margin-top: 0;
            font-size: 32px;
            font-weight: 400;
        }

    .suitable-business-area .left-content .content .boxed-btn {
        margin-top: 28px;
        margin-bottom: 0;
    }

        .suitable-business-area .left-content .content .boxed-btn:hover {
            border-color: #ed1c24;
            color: #ed1c24;
        }

    .suitable-business-area .left-content .content p {
        line-height: 26px;
    }

/*---------------------------
    Our Service 
---------------------------*/
.our-service-area {
    padding: 120px 0 90px 0;
}

    .our-service-area .single-service-box {
        padding: 40px 20px 25px 20px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        border: 1px solid #f1f1f1;
        margin-bottom: 30px;
    }

        .our-service-area .single-service-box:hover {
            background-color: #fbfbfb;
        }

        .our-service-area .single-service-box .icon {
            display: block;
            margin-bottom: 30px;
        }

            .our-service-area .single-service-box .icon i {
                font-size: 60px;
                line-height: 60px;
                color: #ed1c24;
            }

                .our-service-area .single-service-box .icon i:before {
                    font-size: 60px;
                    line-height: 60px;
                    margin-left: 0;
                }

        .our-service-area .single-service-box .content h4 {
            margin-bottom: 25px;
            color: #222222;
            font-weight: 500;
            font-size: 28px;
        }

        .our-service-area .single-service-box .content p {
            font-size: 14px;
            color: #777777;
        }

/*-----------------------
    Portfolio Area
------------------------*/
.portfolio-area {
    padding: 120px 0 90px 0;
    background-color: #fbfbfb;
}

    .portfolio-area .portfolio-filter-menu {
        text-align: center;
        margin-bottom: 40px;
    }

        .portfolio-area .portfolio-filter-menu ul {
            font-size: 0;
        }

            .portfolio-area .portfolio-filter-menu ul li {
                display: inline-block;
                font-size: 16px;
                font-weight: 500;
                color: #222222;
                cursor: pointer;
                padding: 10px 30px;
                border-radius: 5px;
                margin: 0 5px;
                -webkit-transition: all 0.3s ease-in;
                -moz-transition: all 0.3s ease-in;
                -o-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }

                .portfolio-area .portfolio-filter-menu ul li:hover {
                    background-color: #ed1c24;
                    color: #fff;
                }

                .portfolio-area .portfolio-filter-menu ul li.active {
                    background-color: #ed1c24;
                    color: #fff;
                }

    .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item {
        margin-bottom: 30px;
    }

        .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb {
            position: relative;
            overflow: hidden;
        }

            .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb:hover .hover {
                visibility: visible;
                opacity: 1;
                top: 0;
            }

            .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover {
                position: absolute;
                left: 0;
                top: -100%;
                width: 100%;
                height: 100%;
                background-color: rgba(237, 28, 36, 0.8);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-flow: column;
                flex-flow: column;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                visibility: hidden;
                opacity: 0;
                -webkit-transition: all 0.3s ease-in;
                -moz-transition: all 0.3s ease-in;
                -o-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }

                .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover a {
                    display: inline-block;
                    width: 50px;
                    height: 50px;
                    text-align: center;
                    border: 2px solid #fff;
                    color: #fff;
                    line-height: 50px;
                    font-size: 20px;
                    border-radius: 50%;
                    -webkit-transition: all 0.3s ease-in;
                    -moz-transition: all 0.3s ease-in;
                    -o-transition: all 0.3s ease-in;
                    transition: all 0.3s ease-in;
                }

                    .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover a:hover {
                        -ms-transform: rotate(360deg);
                        /* IE 9 */
                        -webkit-transform: rotate(360deg);
                        /* Chrome, Safari, Opera */
                        transform: rotate(360deg);
                    }

/*-----------------------
    Our Mission
-----------------------*/
.progressbar {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 25px;
    position: relative;
    background-color: #f4f4f4;
}

.proggress {
    height: 8px;
    width: 10px;
    background-color: #ed1c24;
}

.percentCount {
    float: right;
    font-size: 18px;
    color: #ed1c24;
    margin-top: -42px;
    clear: both;
}

.our-mission-area {
    padding: 88px 0 85px 0;
    overflow: hidden;
}

    .our-mission-area .left-conter {
        position: relative;
        z-index: 1;
        padding-right: 50px;
    }

        .our-mission-area .left-conter .bg-text {
            position: absolute;
            font-size: 200px;
            top: -50px;
            left: -180px;
            font-weight: 700;
            z-index: -1;
            color: #f8f8f8;
        }

        .our-mission-area .left-conter h3 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
            margin-top: 17px;
        }

        .our-mission-area .left-conter .icon {
            display: block;
            color: #ed1c24;
        }

            .our-mission-area .left-conter .icon i {
                font-size: 60px;
                line-break: 60px;
            }

                .our-mission-area .left-conter .icon i:before {
                    font-size: 60px;
                    line-height: 60px;
                    margin-left: 0;
                }

        .our-mission-area .left-conter p {
            color: #777777;
            font-size: 14px;
            line-height: 26px;
        }

    .our-mission-area .right-content {
        padding-top: 50px;
    }

        .our-mission-area .right-content .studio-progressbar .progress-name {
            font-size: 18px;
            color: #222;
            display: block;
            margin-bottom: 8px;
        }

/*-------------------------------
    Counter Area
--------------------------------*/
.counter-area {
    position: relative;
    z-index: 2;
    padding: 120px 0 105px 0;
    overflow: hidden;
}

    .counter-area:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ed1c24;
        opacity: .90;
        z-index: -1;
    }

    .counter-area.counter-bg {
        background-image: url(../img/bg/counter-bg.jpg);
        background-size: cover;
        background-position: center;
    }

    .counter-area .bg-text {
        position: absolute;
        left: 10%;
        top: 10%;
        font-size: 200px;
        color: #fff;
        font-weight: 700;
        z-index: -1;
    }

    .counter-area .single-counter-box .icon {
        margin-bottom: 25px;
    }

        .counter-area .single-counter-box .icon i {
            font-size: 60px;
            line-height: 60px;
            color: #fff;
        }

            .counter-area .single-counter-box .icon i:before {
                font-size: 60px;
                line-height: 60px;
            }

    .counter-area .single-counter-box .content .counter-text {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        display: block;
        margin-bottom: 5px;
    }

    .counter-area .single-counter-box .content .counter-number {
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        display: block;
    }

/*-----------------------
    Team Member Area
-----------------------*/
.our-angels-area {
    padding: 120px 0 90px 0;
}

    .our-angels-area .single-team-member {
        margin-bottom: 80px;
    }

        .our-angels-area .single-team-member .image-box {
            position: relative;
        }

            .our-angels-area .single-team-member .image-box img {
                min-height: 290px;
                -webkit-transition: all 0.3s ease-in;
                -moz-transition: all 0.3s ease-in;
                -o-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }

                .our-angels-area .single-team-member .image-box img:hover {
                    opacity: .8;
                    -ms-transform: scale(1.02);
                    /* IE 9 */
                    -webkit-transform: scale(1.02);
                    /* Chrome, Safari, Opera */
                    transform: scale(1.02);
                }

            .our-angels-area .single-team-member .image-box .member-details {
                position: absolute;
                left: 0;
                bottom: -30px;
                width: 85%;
                background-color: #ed1c24;
                margin-left: 20px;
                margin-right: 20px;
                padding: 25px 30px 15px 30px;
                text-align: center;
                border-top-right-radius: 5px;
                border-top-left-radius: 5px;
            }

                .our-angels-area .single-team-member .image-box .member-details:after {
                    position: absolute;
                    left: 0;
                    bottom: -10px;
                    content: '';
                    width: 100%;
                    height: 20px;
                    border-radius: 5px;
                    background-color: #ed1c24;
                    -ms-transform: skewY(4deg);
                    /* IE 9 */
                    -webkit-transform: skewY(4deg);
                    /* Chrome, Safari, Opera */
                    transform: skewY(4deg);
                }

                .our-angels-area .single-team-member .image-box .member-details .member-name {
                    font-size: 18px;
                    font-weight: 500;
                    color: #fff;
                }

                .our-angels-area .single-team-member .image-box .member-details .post {
                    display: block;
                    font-size: 14px;
                    color: #fff;
                }

/*--------------------------
    Video Area
--------------------------*/
.minimal-video-area {
    position: relative;
    padding: 180px 0 167px 0;
    z-index: 1;
    overflow: hidden;
}

    .minimal-video-area .bg-text {
        position: absolute;
        left: 0;
        top: 150px;
        width: 100%;
        height: 100%;
        font-size: 200px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 700;
        text-align: center;
        z-index: -1;
    }

    .minimal-video-area.video-area-bg {
        background-image: url(../img/bg/video-bg.jpg);
        background-position: center;
        background-size: cover;
    }

    .minimal-video-area:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ed1c24;
        opacity: .90;
        content: '';
        z-index: -1;
    }

    .minimal-video-area .minimal-video-wrapper .icon {
        margin-bottom: 50px;
    }

        .minimal-video-area .minimal-video-wrapper .icon i {
            font-size: 80px;
            line-height: 80px;
            color: #fff;
        }

            .minimal-video-area .minimal-video-wrapper .icon i:before {
                font-size: 80px;
                line-height: 80px;
                margin-left: 0;
            }

    .minimal-video-area .minimal-video-wrapper .content h3 {
        font-size: 52px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 28px;
    }

    .minimal-video-area .minimal-video-wrapper .content p {
        color: #fff;
        font-size: 14px;
    }

/*------------------------
    News Area
-------------------------*/
.news-feeds-area {
    padding: 120px 0;
}

    .news-feeds-area .single-news-box-item .content {
        border: 2px solid #f1f1f1;
        border-top: none;
        padding: 38px 38px 28px 38px;
    }

        .news-feeds-area .single-news-box-item .content .date-meta {
            font-size: 14px;
            font-weight: 400;
            color: #ed1c24;
        }

        .news-feeds-area .single-news-box-item .content h4 {
            font-size: 24px;
            font-weight: 500;
        }

/*--------------------
    Subscribe Area
---------------------*/
.subscribe-area {
    padding: 65px 0 100px 0;
    position: relative;
    background-color: #ed1c24;
    z-index: 1;
    overflow: hidden;
}

    .subscribe-area .bg-text {
        position: absolute;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 200px;
        color: rgba(255, 255, 255, 0.05);
        font-weight: 700;
        z-index: -1;
        padding-top: 80px;
    }

    .subscribe-area .subscriber-wrapper h2 {
        font-size: 52px;
        color: #fff;
        font-weight: 500;
    }

    .subscribe-area .subscriber-wrapper .form-wrapper {
        margin-top: 50px;
        position: relative;
    }

        .subscribe-area .subscriber-wrapper .form-wrapper input[type=email] {
            background-color: transparent;
            padding: 13px 25px;
            border-radius: 25px;
            border: 4px solid rgba(255, 255, 255, 0.5);
            width: 100%;
            padding-right: 150px;
            color: #fff;
        }

            .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]::-webkit-input-placeholder {
                /* WebKit browsers */
                color: rgba(255, 255, 255, 0.5);
            }

            .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]:-moz-placeholder {
                /* Mozilla Firefox 4 to 18 */
                color: rgba(255, 255, 255, 0.5);
            }

            .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]::-moz-placeholder {
                /* Mozilla Firefox 19+ */
                color: rgba(255, 255, 255, 0.5);
            }

            .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]:-ms-input-placeholder {
                /* Internet Explorer 10+ */
                color: rgba(255, 255, 255, 0.5);
            }

        .subscribe-area .subscriber-wrapper .form-wrapper input[type=submit] {
            padding: 12px 25px;
            border-radius: 25px;
            border: none;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            background-color: #fff;
            color: #ed1c24;
            position: absolute;
            top: 4px;
            right: 3px;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
        }

            .subscribe-area .subscriber-wrapper .form-wrapper input[type=submit]:hover {
                opacity: .8;
            }

/*---------------------
    Logo Carousel
----------------------*/
.logo-carousel-area {
    padding: 100px 0;
}

    .logo-carousel-area .logo-carousel .single-logo-item {
        padding: 20px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .logo-carousel-area .logo-carousel .single-logo-item:hover {
            -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
        }

/*-----------------------
    Footer Area
------------------------*/
.footer-area {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

    .footer-area.footer-bg {
        background-image: url(../img/bg/footer-bg.jpg);
        background-size: cover;
        background-position: center;
    }

    .footer-area:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ed1c24;
        opacity: .90;
        z-index: -1;
    }

    .footer-area .copyright-area {
        padding-top: 50px;
    }

        .footer-area .copyright-area span {
            color: #fff;
            font-size: 22px;
            font-weight: 500;
        }

    .footer-area .footer-socials {
        padding-top: 30px;
        text-align: right;
    }

        .footer-area .footer-socials ul li {
            display: inline-block;
            margin: 0 10px;
        }

            .footer-area .footer-socials ul li:last-child {
                margin-right: 0;
            }

            .footer-area .footer-socials ul li a {
                display: inline-block;
                width: 60px;
                height: 60px;
                line-height: 60px;
                text-align: center;
                font-size: 20px;
                color: #fff;
                border: 2px solid rgba(255, 255, 255, 0.8);
                border-radius: 50%;
                -webkit-transition: all 0.3s ease-in;
                -moz-transition: all 0.3s ease-in;
                -o-transition: all 0.3s ease-in;
                transition: all 0.3s ease-in;
            }

                .footer-area .footer-socials ul li a:hover {
                    -ms-transform: rotate(360deg);
                    /* IE 9 */
                    -webkit-transform: rotate(360deg);
                    /* Chrome, Safari, Opera */
                    transform: rotate(360deg);
                }

    .footer-area .footer-logo {
        text-align: center;
    }

.text-shadow {
    text-shadow: 4px 4px 2px rgba(0, 0, 0, .3);
}

/* Our Upcoming Schedules */
.tabs-holder {
    border: 1px solid #ccc;
}

.schedules-tab-nav {
    text-align: center;
    margin: -45px 0 0;
}

    .schedules-tab-nav ul {
        display: inline-block;
        border: 1px solid #ccc;
    }

        .schedules-tab-nav ul li {
            float: left;
            border-right: 1px solid #ccc;
        }

            .schedules-tab-nav ul li:last-child {
                margin: 0;
                border: 0;
            }

            .schedules-tab-nav ul li a {
                position: relative;
                padding: 15px 30px;
                font-size: 24px;
                outline: none;
                background: #fff;
                display: block;
            }

                .schedules-tab-nav ul li a span {
                    display: block;
                    font-size: 16px;
                    font-weight: 400;
                    color: #444;
                    font-family: 'Open Sans', Arial, sans-serif;
                    text-transform: uppercase;
                }

            .schedules-tab-nav ul li.active a,
            .schedules-tab-nav ul li.active a span {
                color: #fff;
                display: block;
            }

            .schedules-tab-nav ul li:last-child a::before {
                display: none;
            }

            .schedules-tab-nav ul li.active a::after {
                content: "\e5c5";
                position: absolute;
                left: 0;
                font-family: 'icomoon' !important;
                height: 100%;
                width: 100%;
                top: 100%;
                margin: -26px 0 0;
                font-size: 40px;
                color: #ed1c24;
            }

.tab-content {
    padding: 30px 60px 30px 30px;
}

.schedules-widget {
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 30px;
}

    .schedules-widget:last-child {
        margin: 0;
        padding: 0;
    }

        .schedules-widget:last-child::before {
            display: none;
        }

    .schedules-widget .detail {
        margin-left: 134px;
        padding: 10px 0 10px 30px;
        position: relative;
        border-left: 1px solid #ccc;
    }

    .schedules-widget::before {
        content: "";
        position: absolute;
        right: 0;
        height: 100%;
        width: 84%;
        border-bottom: 1px dashed #ccc;
        bottom: 0;
        z-index: -1;
    }

    .schedules-widget h3 {
        margin: 0 0 15px;
        font-size: 24px;
    }

    .schedules-widget p {
        margin: 0;
    }

.time-location {
    overflow: hidden;
    margin: 0 0 10px;
}

    .time-location li {
        float: left;
        margin: 0 30px 0 0;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 700;
    }

        .time-location li:last-child {
            margin: 0;
        }

        .time-location li i {
            margin: 0 5px 0 0;
            color: #999;
            font-size: 12px;
        }

.speaker-name {
    overflow: hidden;
    padding: 15px 0 0;
}

    .speaker-name li {
        float: left;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 700;
        margin: 0 10px 0 0;
    }

        .speaker-name li:last-child {
            margin: 0;
        }

        .speaker-name li i {
            margin: 0 5px 0 0;
            color: #999;
            line-height: 0;
        }

        .speaker-name li span {
            font-family: 'Open Sans', sans-serif;
            font-weight: 100;
            font-style: italic;
            color: #999;
            margin: 0 0 0 5px;
        }

.speaker-imgs {
    position: absolute;
    top: 50%;
    margin: -67px 0 0;
}

    .speaker-imgs ul li {
        float: left;
        margin: 0 5px 5px 0;
    }

        .speaker-imgs ul li:last-child {
            margin: 0;
        }

        .speaker-imgs ul li a {
            position: relative;
        }

            .speaker-imgs ul li a img {
                border-radius: 100%;
            }

            .speaker-imgs ul li a::after {
                visibility: hidden;
                display: block;
                font-size: 0;
                content: " ";
                clear: both;
                height: 0;
            }

            .speaker-imgs ul li a .toltip {
                position: absolute;
                top: 130%;
                padding: 7px 10px;
                background: #000;
                color: #fff;
                font-size: 12px;
                min-width: 100px;
                z-index: 100;
                visibility: hidden;
                opacity: 0;
                text-align: center;
                left: 0;
                margin: -10px 0 0;
            }

                .speaker-imgs ul li a .toltip::before {
                    content: "\e5c7";
                    position: absolute;
                    left: 50%;
                    bottom: 100%;
                    color: #000;
                    font-family: icomoon;
                    font-size: 40px;
                    margin: 0 0 -27px -20px;
                }

            .speaker-imgs ul li a:hover .toltip {
                opacity: 1;
                visibility: visible;
                top: 118%;
            }

.break-widget {
    margin: 0 0 5px;
}

    .break-widget .title,
    .break-widget .time {
        padding: 30px 0;
        text-align: center;
    }

        .break-widget .title h2,
        .break-widget .time h2 {
            font-size: 36px;
            margin: 0;
            line-height: 20px;
            font-weight: 300;
            color: #fff;
            position: relative;
            z-index: 1;
            font-family: 'Open Sans', sans-serif;
        }

        .break-widget .title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: rgba(0,0,0,0.8);
        }

    .break-widget .title {
        background: url(../img/beack-bg.jpg) no-repeat;
        position: relative;
    }

.more-btn {
    text-align: center;
}

    .more-btn .btn {
        margin: 30px 0 0;
        min-width: 265px;
    }

        .more-btn .btn:hover {
            border-color: #ccc;
        }

.seprater-line {
    background: url(../img/heading-patern.png) repeat-x;
    height: 4px;
    width: 80%;
    margin: 50px auto 0;
}

.team.style-2 .seprater-line {
    width: 50%;
}

.time-location li {
    color: #ed1c24;
}

.schedules-tab-nav li a {
    color: #ed1c24;
}

.detail h3 a {
    color: #222;
}

.schedules-tab-nav li.active a {
    background: #ed1c24;
}

.kongre-programi .boxed-btn:hover {
    border-color: #ed1c24;
    color: #ed1c24;
}

.text-color1 {
    color: #ed1c24 !important;
}

.text-color2 {
    color: #0593BF !important;
}

.text-color3 {
    color: #222222 !important;
}

.text-color4 {
    color: #fff !important;
}

.bg-color1 {
    background-color: #f8f8f8;
}

.address-widget h3 {
    font-size: 24px;
}

.main-nav-scrolled #main-menu > li > a {
    color: #000;
}

.main-nav-scrolled .logo img {
    width: 95px;
}

.main-nav-scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255, .9);
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*==============================================
			Event Counter Style					
==============================================*/
.tg-counterarea {
    width: 100%;
    float: left;
}

.tg-eventinfo {
    width: 35%;
    float: left;
}

    .tg-eventinfo .tg-themepostimg:after {
        display: none;
    }

    .tg-eventinfo .tg-themepostimg figcaption {
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 100%;
        padding: 0 90px;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        align-content: center;
        z-index: 99;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }

.tg-timedate {
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.tg-eventinfo h2 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    padding: 0 0 22px;
    position: relative;
    text-transform: none;
}

    .tg-eventinfo h2:before {
        left: 0;
        bottom: 0;
        content: '';
        height: 4px;
        width: 100px;
        background: #fff;
        border-radius: 3px;
        position: absolute;
    }

    .tg-eventinfo h2 span {
        display: block;
    }

.tg-btnaddtocalendar {
    right: 20px;
    width: 60px;
    bottom: 20px;
    height: 60px;
    font-size: 24px;
    background: #fff;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
}







.tg-upcomingeventcounter {
    width: 65%;
    float: left;
    background: #fcfcfc;
}

.tg-eventcounter {
    width: 25%;
    float: left;
    padding: 73px 0;
    text-align: center;
}

    .tg-eventcounter:nth-child(even) {
        background: #f7f7f7;
    }

    .tg-eventcounter span:first-child {
        display: block;
        font-size: 60px;
        margin: 0 0 30px;
        line-height: 50px;
        padding: 0 0 30px;
        position: relative;
    }

        .tg-eventcounter span:first-child:before {
            left: 50%;
            bottom: 0;
            content: '';
            width: 70px;
            height: 4px;
            position: absolute;
            border-radius: 3px;
            margin: 0 0 0 -35px;
            background: #dbdbdb;
        }

    .tg-eventcounter span:last-child {
        color: #444349;
        display: block;
        font-size: 20px;
        line-height: 20px;
    }

.tg-bgtestimonials {
    position: relative;
    background: url(../images/testimonial-bg.jpg) no-repeat;
    background-size: cover;
}

    .tg-bgtestimonials:before {
        top: 0;
        left: 0;
        content: '';
        z-index: 1;
        width: 100%;
        height: 100%;
        position: absolute;
        background: -moz-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
        background: -webkit-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
        background: linear-gradient(135deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3f6730d', endColorstr='#b3d90845',GradientType=1 );
    }

.tg-testimonials {
    width: 100%;
    float: left;
    z-index: 3;
    padding: 0 20px;
    position: relative;
    text-align: center;
}

    .tg-testimonials:before,
    .tg-testimonials:after {
        left: 50%;
        z-index: 2;
        content: '';
        max-width: 460px;
        width: 100%;
        max-height: 115px;
        height: 100%;
        position: absolute;
        margin: 0 0 0 -230px;
        border-left: 14px solid #fff;
        border-right: 14px solid #fff;
    }

    .tg-testimonials:before {
        top: 0;
        border-bottom: 0;
        border-top: 14px solid #fff;
    }

    .tg-testimonials:after {
        bottom: 0;
        border-top: 0;
        border-bottom: 14px solid #fff;
    }

.tg-testimonial,
.tg-testimonial .item {
    width: 100%;
    float: left;
}

.tg-testimonialcontent {
    width: 100%;
    float: left;
    z-index: 3;
    padding: 100px 0 140px;
    position: relative;
}

.tg-clientname {
    color: #fff;
    display: block;
    font-size: 20px;
    margin: 0 0 20px;
    line-height: 20px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

blockquote {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.tg-testimonialcontent > img {
    left: 50%;
    bottom: 60px;
    position: absolute;
    margin: 0 0 0 -35px;
    width: auto !important;
}

.tg-appbg::before, .tg-hallimg::before, .tg-bgsignup::before, .tg-askquestions::after, .tg-bgcontactus::before, .tg-themepostimg::before, .tg-registerholder::before, .tg-bgtestimonials::before {
    background: -moz-linear-gradient(-45deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    background: linear-gradient(135deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3574586', endColorstr='#b3574586',GradientType=1 );
}

.tg-themepostimg::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    background: -moz-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    background: -webkit-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    background: linear-gradient(135deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3f6730d', endColorstr='#b3d90845',GradientType=1 );
}

.tg-themepostimg {
    margin: 0;
    width: 100%;
    float: left;
    position: relative;
}

    .tg-themepostimg > img {
        width: 100%;
        height: auto;
        display: block;
    }

/* -----------------------------------------------Form Control ---------------------------------------------------------------- */
.be-splash-screen {
    background-color: #eee
}

    .be-splash-screen .be-wrapper {
        padding-top: 0
    }

        .be-splash-screen .be-wrapper .be-content {
            margin: 0
        }

.splash-container {
    max-width: 401px;
    margin: 50px auto
}

    .splash-container .panel {
        margin-bottom: 30px
    }

.panel {
    background-color: #fff !important;
    margin-bottom: 25px !important;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .04) !important;
    border-width: 0 !important;
    border-radius: 3px !important;
}

.splash-container .panel .panel-heading {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 0;
    border-bottom: none !important;
}

.splash-container .panel .panel-body {
    padding: 20px 30px 15px
}

    .splash-container .panel .panel-body .be-checkbox {
        display: inline-block;
        padding: 0
    }

@media (max-width:767px) {
    .splash-container {
        margin-top: 50px
    }
}

.splash-title {
    text-align: center;
    display: block;
    font-size: 17px;
    font-weight: 300
}

.splash-description {
    text-align: center;
    display: block;
    line-height: 20px;
    font-size: 13px;
    color: #5a5a5a;
    margin-top: 11px;
    padding-bottom: 10px
}

.splash-footer {
    text-align: center
}

.main-content {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
}

.panel-border-color {
    border-top: 3px solid #c9c9c9 !important;
}

.panel-border-color-primary {
    border-top-color: #4285f4 !important;
}

.panel-default > .panel-heading {
    color: #333 !important;
    background-color: transparent !important;
    border-color: #ddd !important;
}

.form-control {
    border-width: 1px !important;
    border-top-color: #bdc0c7 !important;
    box-shadow: none !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    -webkit-transition: none !important;
    -o-transition: none;
    transition: none !important;
}

    .form-control:focus {
        box-shadow: none !important;
    }

    .form-control[multiple] {
        padding: 0 !important;
    }

        .form-control[multiple] option {
            padding: 8px 12px !important;
        }

label {
    font-weight: 400 !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    color: #666 !important;
}

.form-control {
    width: 100%;
    height: 48px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d5d8de;
    border-radius: 2px
}

    .form-control:focus {
        border-color: #4285f4 !important;
        outline: 0
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1
    }

    .form-control:-ms-input-placeholder {
        color: #999
    }

    .form-control::-webkit-input-placeholder {
        color: #999
    }

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .form-control-feedback, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: #37b358
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 20px !important;
}

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

    .checkbox label, .radio label {
        min-height: 18px
    }

    .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
        position: absolute;
        margin-left: -20px;
        margin-top: 4px\9
    }

    .checkbox + .checkbox, .radio + .radio {
        margin-top: -5px
    }

.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

    .checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
        margin-top: 0;
        margin-left: 10px
    }

    .checkbox-inline.disabled, .checkbox.disabled label, .radio-inline.disabled, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio label, fieldset[disabled] .radio-inline, fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
        cursor: not-allowed
    }

.login-tools {
    padding-top: 18px
}

.login-forgot-password {
    line-height: 22px;
    text-align: right
}

.login-submit {
    padding-top: 19px;
    margin-bottom: 18px
}

    .login-submit > div:first-child {
        padding-right: 10px
    }

    .login-submit > div:last-child {
        padding-left: 10px
    }

.be-checkbox input[type=checkbox], .be-checkbox input[type=radio], .be-radio input[type=checkbox], .be-radio input[type=radio] {
    margin: 0;
    display: none;
    width: 22px
}

.be-checkbox label, .be-radio label {
    margin-bottom: 0
}

    .be-checkbox label::-moz-selection, .be-radio label::-moz-selection {
        background-color: transparent
    }

    .be-checkbox label::selection, .be-radio label::selection {
        background-color: transparent
    }

.be-checkbox input[type=checkbox] + label, .be-checkbox input[type=radio] + label, .be-radio input[type=checkbox] + label, .be-radio input[type=radio] + label {
    padding-left: 0
}

    .be-checkbox input[type=checkbox] + label:before, .be-checkbox input[type=radio] + label:before, .be-radio input[type=checkbox] + label:before, .be-radio input[type=radio] + label:before {
        content: "";
        width: 22px;
        height: 22px;
        display: inline-block;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-right: 6px;
        font-size: 20px;
        font-family: 'Material Icons';
        font-weight: 400;
        line-height: 19px;
        vertical-align: bottom;
        text-align: center;
        background-color: #fff;
        cursor: pointer
    }

    .be-checkbox input[type=checkbox] + label:hover:before, .be-checkbox input[type=radio] + label:hover:before, .be-radio input[type=checkbox] + label:hover:before, .be-radio input[type=radio] + label:hover:before {
        border-color: #a2a8b6
    }

.be-checkbox input[type=checkbox]:hover + label:before, .be-checkbox input[type=radio]:hover + label:before, .be-radio input[type=checkbox]:hover + label:before, .be-radio input[type=radio]:hover + label:before {
    border-color: #b8bdc8
}

.be-checkbox input[type=checkbox]:checked + label:before, .be-checkbox input[type=radio]:checked + label:before, .be-radio input[type=checkbox]:checked + label:before, .be-radio input[type=radio]:checked + label:before {
    content: "\f26b";
    color: #4285f4;
    border-color: #4285f4
}

.be-checkbox input[type=checkbox]:disabled + label, .be-checkbox input[type=radio]:disabled + label, .be-radio input[type=checkbox]:disabled + label, .be-radio input[type=radio]:disabled + label {
    opacity: .5;
    pointer-events: none
}

    .be-checkbox input[type=checkbox]:disabled + label:before, .be-checkbox input[type=radio]:disabled + label:before, .be-radio input[type=checkbox]:disabled + label:before, .be-radio input[type=radio]:disabled + label:before {
        pointer-events: none;
        background-color: #fff
    }

.be-checkbox input[type=radio] + label:before, .be-radio input[type=radio] + label:before {
    border-radius: 50%;
    width: 23px;
    height: 23px;
    line-height: 21px;
    font-size: 13px
}

.be-checkbox input[type=radio]:checked + label:before, .be-radio input[type=radio]:checked + label:before {
    content: "\f26d"
}

.be-checkbox.inline, .be-radio.inline {
    display: inline-block
}

    .be-checkbox.inline + .be-checkbox.inline, .be-checkbox.inline + .be-radio.inline, .be-radio.inline + .be-checkbox.inline, .be-radio.inline + .be-radio.inline {
        margin-left: 18px
    }

.be-checkbox.has-success input[type=checkbox] + label:before, .be-checkbox.has-success input[type=radio] + label:before, .be-radio.has-success input[type=checkbox] + label:before, .be-radio.has-success input[type=radio] + label:before {
    color: #37b358;
    border-color: #37b358
}

.be-checkbox.has-warning input[type=checkbox] + label:before, .be-checkbox.has-warning input[type=radio] + label:before, .be-radio.has-warning input[type=checkbox] + label:before, .be-radio.has-warning input[type=radio] + label:before {
    color: #f6c163;
    border-color: #f6c163
}

.be-checkbox.has-danger input[type=checkbox] + label:before, .be-checkbox.has-danger input[type=radio] + label:before, .be-radio.has-danger input[type=checkbox] + label:before, .be-radio.has-danger input[type=radio] + label:before {
    color: #eb6357;
    border-color: #eb6357
}

.be-checkbox-color input[type=checkbox]:checked + label:before, .be-checkbox-color input[type=radio]:checked + label:before, .be-radio-color input[type=checkbox]:checked + label:before, .be-radio-color input[type=radio]:checked + label:before {
    color: #fff;
    border-color: #4285f4;
    background-color: #4285f4
}

.be-checkbox-color.has-success input[type=checkbox]:checked + label:before, .be-checkbox-color.has-success input[type=radio]:checked + label:before, .be-radio-color.has-success input[type=checkbox]:checked + label:before, .be-radio-color.has-success input[type=radio]:checked + label:before {
    color: #fff;
    border-color: #37b358;
    background-color: #37b358
}

.be-checkbox-color.has-warning input[type=checkbox]:checked + label:before, .be-checkbox-color.has-warning input[type=radio]:checked + label:before, .be-radio-color.has-warning input[type=checkbox]:checked + label:before, .be-radio-color.has-warning input[type=radio]:checked + label:before {
    color: #fff;
    border-color: #f6c163;
    background-color: #f6c163
}

.be-checkbox-color.has-danger input[type=checkbox]:checked + label:before, .be-checkbox-color.has-danger input[type=radio]:checked + label:before, .be-radio-color.has-danger input[type=checkbox]:checked + label:before, .be-radio-color.has-danger input[type=radio]:checked + label:before {
    color: #fff;
    border-color: #eb6357;
    background-color: #eb6357
}

.be-radio-icon {
    display: block;
    margin: 0;
    padding: 7px 0
}

    .be-radio-icon input[type=radio] {
        margin: 0;
        display: none;
        width: 52px
    }

    .be-radio-icon label {
        cursor: pointer;
        margin: 0;
        width: 52px;
        height: 52px;
        line-height: 52px;
        border: 1px solid #d5d8de;
        border-radius: 50%;
        text-align: center;
        font-size: 36px;
        vertical-align: middle;
        color: grey
    }

        .be-radio-icon label:hover {
            border-color: #b8bdc8
        }

    .be-radio-icon input[type=radio]:checked + label {
        border-color: #4285f4;
        color: #4285f4
    }

    .be-radio-icon.has-success input[type=radio]:checked + label {
        border-color: #37b358;
        color: #37b358
    }

    .be-radio-icon.has-warning input[type=radio] + label, .be-radio-icon.has-warning input[type=radio]:checked + label {
        border-color: #f6c163;
        color: #f6c163
    }

    .be-radio-icon.has-danger input[type=radio]:checked + label {
        border-color: #eb6357;
        color: #eb6357
    }

    .be-radio-icon.inline {
        display: inline-block
    }

        .be-radio-icon.inline + .be-radio-icon.inline {
            margin-left: 18px
        }

.be-checkbox-sm {
    line-height: 18px
}

    .be-checkbox-sm input[type=checkbox] + label:before {
        width: 18px;
        height: 18px;
        font-size: 17px;
        line-height: 15px
    }

.login-submit .btn, .signup-password .btn {
    width: 100%
}

.btn-primary.active, .btn-primary:active, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #1266f1;
    border-color: #0c57d3
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #4285f4;
    border-color: #4285f4;
    outline: 0
}

.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    box-shadow: inset 0 2px 0 #1266f1;
    background-color: #2572f2;
    border-color: #0c57d3 #2572f2 #2572f2;
    background-image: none
}

    .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
        color: #fff;
        background-color: #2572f2;
        border-color: #0c57d3 transparent transparent;
        box-shadow: inset 0 2px 0 #1266f1
    }

        .btn-primary.active.focus .icon, .btn-primary.active:focus .icon, .btn-primary.active:hover .icon, .btn-primary:active.focus .icon, .btn-primary:active:focus .icon, .btn-primary:active:hover .icon, .open > .dropdown-toggle.btn-primary.focus .icon, .open > .dropdown-toggle.btn-primary:focus .icon, .open > .dropdown-toggle.btn-primary:hover .icon {
            color: #fff
        }

.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    background-color: #4285f4;
    border-color: #4285f4
}

.btn-primary .badge {
    color: #4285f4;
    background-color: #fff
}

.login-submit {
    margin-bottom: 18px;
    padding-top: 19px;
}

.btn-xl {
    line-height: 43px;
    font-size: 20px;
}

.security-page #Email {
    margin-bottom: 20px;
}

.security-page #Password {
    margin-bottom: 20px;
}

.security-page #ForgotPassword {
    margin-top: 20px;
    text-align: center !important;
}

.security-page #Email label {
    display: none;
}

.security-page #Password label {
    display: none;
}

.security-page .panel-body .splash-description {
    color: red;
    font-weight: bold;
    display: none;
}

@media (max-width:767px) {
    .splash-container {
        margin-top: 15px;
    }
}

.schedule-box .hour-box .theme-btn {
    background: #009fe3;
    margin: 15px 5px 5px;
}

.home-program-v2 .btn-style-one {
    font-size: 13px;
    border: none;
}

.btn-style-one {
    position: relative;
    line-height: 34px;
    font-weight: 700;
    color: #ffffff;
    padding: 7px 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
    display: inline-block;
}

.home-program-v2 .btn-style-one:hover {
    border: none;
    background: #292929 !important;
}

.btn-style-one:hover {
    color: #fff;
    transition: all 500ms ease;
}

/* -----------------------------------------------Form Control ---------------------------------------------------------------- */

img.mapclass[usemap] {
    border: none;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body { /*position:relative;*/
}

#out-cont {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.conference-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    background-size: cover;
    height: 580px;
}

.conference-box-in {
    position: relative;
    display: inline-block;
    top: 50%;
    margin-top: -150px;
}

#fixed-bar {
    position: absolute;
    width: 100%;
}

    #fixed-bar ul li {
        display: inline-block;
        margin-left: 4px;
        margin-right: 4px;
    }

#enter-page:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

#enter-page .container {
    position: relative;
    z-index: 1;
}

#enter-page {
    background-image: url(../images/enter-img.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

#enter-page2:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

#enter-page2 .container {
    position: relative;
    z-index: 1;
}

#enter-page2 {
    background-image: url(../images/enter-img.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}



#enter-content-inner form {
    width: 90%;
    display: inline-block;
}

#ForgotPassword {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 15px;
}

    #ForgotPassword a {
        color: #3766b6;
        text-decoration: underline;
    }



#stand-page-in {
    background-image: url(../images/stand.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}


#in-header:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

#in-header h3 {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

#in-header img {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

#in-header {
    position: absolute;
    width: 100%;
    z-index: 4;
}

.btns {
    display: inline-block;
    width: 100px;
    height: 99px;
    background-image: url(../images/btn-a.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 99px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    transition: all 500ms ease;
}

    .btns:hover {
        background-image: url(../images/btn-a-hover.png);
        color: #fff;
    }

.hall-a {
    top: 60%;
    left: 11.5%;
    font-size: 14px;
    line-height: normal;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 30px
}

.hall-b {
    top: 60%;
    left: 22.5%;
    font-size: 14px;
    line-height: normal;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 30px
}

.hall-c {
    top: 60%;
    right: 22.5%;
    font-size: 14px;
    line-height: normal;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 30px
}

.hall-d {
    top: 60%;
    right: 11.5%;
    font-size: 14px;
    line-height: normal;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 30px
}

.exhibition-btn {
    top: 55%;
    left: 50.5%;
    font-size: 14px;
}

.lounge-btn {
    top: 72%;
    right: 17.5%;
    font-size: 14px;
}

.agenda-btn {
    bottom: 7%;
    left: 18.5%;
    font-size: 14px;
}

.eposter-btn {
    top: 55%;
    left: 43.5%;
    font-size: 14px;
}

.support-btn {
    bottom: 7%;
    right: 8.5%;
    font-size: 14px;
}



#header-menu {
    position: relative;
    z-index: 2;
}

    #header-menu > li {
        display: inline-block;
        position: relative;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    #header-menu li hover:after {
        content: " ";
        position: absolute;
        left: 0px;
        bottom: -19px;
        width: 100%;
        height: 5px;
        display: block;
    }

    #header-menu li.active a {
    }

    #header-menu li.active:after {
        content: " ";
        position: absolute;
        left: 0px;
        bottom: -19px;
        width: 100%;
        height: 5px;
        display: block;
    }

    #header-menu li a {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

        #header-menu li a:hover {
        }

.schedule-box {
    background: #fff;
}

    .schedule-box .hour-box .toggle-btn h3 span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        margin-top: 5px;
    }

.share-cont {
    background: #273958;
    color: #fff;
    padding: 20px;
}

    .share-cont li {
        display: inline-block;
        margin-right: 10px;
    }

        .share-cont li a {
            color: #fff;
        }

            .share-cont li a:hover {
                color: #fcee20;
            }

                .share-cont li a:hover i {
                    background-color: #fcee20;
                }

            .share-cont li a i {
                display: inline-block;
                width: 30px;
                height: 30px;
                text-align: center;
                background: #fff;
                border-radius: 50%;
                color: #273958;
                font-size: 16px;
                line-height: 30px;
                margin-right: 5px;
            }

.toggle-btn.active h3 {
    color: #009fe3 !important;
}

.hour-box.active-box .hour {
    color: #009fe3 !important;
}


.extra-hall .box1 {
    padding-top: 70px;
}

.extra-hall .box2 {
    padding-top: 70px;
}

#exhibition-select-cont {
    position: absolute;
    z-index: 2;
    width: auto;
    right: 100px;
}

.exhibition-select {
    width: 230px;
    float: right;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.bg-grey {
    background: #f2f2f2;
}

.company-popup {
}

    .company-popup .modal-content {
        border-radius: 0px !important;
    }

    .company-popup .close {
        position: absolute;
        right: 20px;
        top: 10px;
        color: red;
        font-size: 40px;
        opacity: 1;
        font-weight: 300;
    }

    .company-popup .modal-header {
        padding: 0px;
        border: none;
        height: 60px;
        background: #f2f2f2;
    }

.modal-backdrop {
    background: rgba(5,130,212, .8) !important;
}

.sponsor-big-logo {
    position: relative; /*bottom: -30px;*/
    border: solid 2px #f2f2f2;
}

.company-popup h3 {
    font-size: 26px;
    color: #3766b6;
    font-weight: 400;
    margin: 0px;
}

.company-popup h4 a {
    font-size: 20px;
    color: #a7a7a7;
    font-weight: 400;
}

.company-popup h5 {
    font-size: 20px;
    color: #3766b6;
    font-weight: 600;
}

.btn-view:hover {
    background: #f0dc00;
    color: #000 !important;
}

.btn-view {
    background: #0582d4;
    margin: 15px 5px 5px;
    font-size: 16px;
    border: none;
    position: relative;
    line-height: 34px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 7px 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
    display: inline-block;
}

.text-right {
    text-align: right;
}



.ps-r {
    position: relative;
}

.fullscreen-btn-cont {
    position: absolute;
    left: 0px;
    bottom: -50px;
    width: 100%;
}

.fullscreen-btn {
}

    .fullscreen-btn:hover {
        background: #f0dc00;
        color: #000 !important;
    }

.fullscreen-btn {
    background: #0582d4;
    margin: 15px 5px 5px;
    font-size: 16px;
    border: none;
    position: relative;
    line-height: 34px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 7px 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
    display: inline-block;
}

.fullsize {
    position: fixed !important;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    padding-top: 83px;
}

    .fullsize iframe {
        height: 100vh !important;
    }

    .fullsize .fulls-close-btn {
        display: block !important;
    }

.fulls-close-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 25px;
    background: #fff;
    color: #0582d4;
    z-index: 3;
    right: 30px;
    top: 121px;
    display: none;
}

.exhibition-search {
    background: rgba(5,130,212, .8);
    padding: 15px;
    border-top: solid 1px #fff;
}

    .exhibition-search .search-text {
        padding-left: 8px;
        font-size: 12px;
        line-height: 22px;
        width: 100%;
    }

#area2 {
    background: red;
}



.coco-cola {
    position: absolute;
    z-index: 3;
    left: 33%;
    top: 63.7%;
    width: 1.9%;
}

    .coco-cola img {
        width: 100%;
    }

#stand2-page-in {
    background-image: url(../images/stand2.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.stand2-1 {
    top: 58%;
    left: 19.5%;
}

.stand2-2 {
    top: 58%;
    left: 28.5%;
}

.stand2-3 {
    top: 38%;
    left: 26.7%;
}

.stand2-4 {
    top: 39.5%;
    left: 36.2%;
}

.stand2-5 {
    top: 36.5%;
    left: 49%;
}

.stand2-6 {
    top: 46.7%;
    right: 26.3%;
}

.stand2-7 {
    top: 39.4%;
    left: 46.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .stand2-7:hover {
        background: transparent;
    }

.stand2-8 {
    top: 56.4%;
    right: 20.1%;
    background: transparent;
    width: 3%;
    height: 7%;
}

    .stand2-8:hover {
        background: transparent;
    }

.stand2-9 {
    top: 39.4%;
    left: 24.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .stand2-9:hover {
        background: transparent;
    }

.stand2-10 {
    top: 41.4%;
    left: 35.1%;
    background: transparent;
    width: 5%;
    height: 7%;
}

    .stand2-10:hover {
        background: transparent;
    }

.hall-stand-btn {
    position: absolute;
}

    .hall-stand-btn img {
        width: 100%;
    }

    .hall-stand-btn:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: inline-block;
        left: 0px;
        top: 0px;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100%;
    }

.stand-area-1 {
    left: 17%;
    top: 64%;
    width: 6%;
    height: 20%;
}

.stand-area-2 {
    left: 26%;
    top: 64%;
    width: 6%;
    height: 20%;
}

.stand-area-3 {
    left: 24.8%;
    top: 40.6%;
    width: 6.6%;
    height: 78px;
}
/* .stand-area-3:after{background-image:url(../images/stand2-mask1.png);}*/

.stand-area-4 {
    left: 35.2%;
    top: 42.3%;
    width: 4.4%;
    height: 57px;
}
/* .stand-area-4:after{background-image:url(../images/stand2-mask2.png);}*/

.stand-area-5 {
    left: 45.8%;
    top: 38.5%;
    width: 8.8%;
    height: 118px;
}
/* .stand-area-5:after{background-image:url(../images/stand2-mask3.png);}*/

.stand-area-6 {
    top: 56.4%;
    left: 76.8%;
    width: 3.3%;
    height: 58px;
}
/* .stand-area-6:after{background-image:url(../images/stand2-mask4.png);}*/

iframe {
    border: none;
}

.hall-sponsors-btn {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .hall-sponsors-btn img {
        width: 100%;
    }

    .hall-sponsors-btn:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: inline-block;
        left: 0px;
        top: 0px;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100%;
    }

.sponsors-area-1 {
    left: 17%;
    top: 64%;
}

.sponsors-area-2 {
    left: 26%;
    top: 64%;
}

.sponsors-area-3 {
    left: 24.8%;
    top: 40.6%;
}

.sponsors-area-4 {
    left: 35.2%;
    top: 42.3%;
}

.sponsors-area-5 {
    left: 48.8%;
    top: 25.5%;
}

.sponsors-area-6 {
    top: 66.4%;
    left: 67.8%;
}

#sponsors-page-in {
    background-image: url(../images/sponsor-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.mapify-popOver-content img {
    width: 100px;
}

.mapify-popOver-content strong {
    font-size: 16px !important;
}

/* ----------------------------------------------------------------------------------------- Stand 3 Css ----------------------------------------------------------------------- */
#stand3-page-in {
    background-image: url(../images/stand3.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.stand3-1 {
    top: 58%;
    left: 19.5%;
}

.stand3-2 {
    top: 58%;
    left: 28.5%;
}

.stand3-3 {
    top: 38%;
    left: 26.7%;
}

.stand3-4 {
    top: 39.5%;
    left: 36.2%;
}

.stand3-5 {
    top: 36.5%;
    left: 49%;
}

.stand3-6 {
    top: 46.7%;
    right: 38.8%;
}

.stand3-7 {
    top: 39.4%;
    left: 46.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .stand3-7:hover {
        background: transparent;
    }

.stand3-8 {
    top: 56.4%;
    right: 20.1%;
    background: transparent;
    width: 3%;
    height: 7%;
}

    .stand3-8:hover {
        background: transparent;
    }

.stand3-9 {
    top: 39.4%;
    left: 24.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .stand3-9:hover {
        background: transparent;
    }

.stand3-10 {
    top: 41.4%;
    left: 35.1%;
    background: transparent;
    width: 5%;
    height: 7%;
}

    .stand3-10:hover {
        background: transparent;
    }

.hall-stand3-btn {
    position: absolute;
}

    .hall-stand3-btn img {
        width: 100%;
    }

    .hall-stand3-btn:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: inline-block;
        left: 0px;
        top: 0px;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100%;
    }

.stand3-area-1 {
    left: 24.5%;
    top: 68%;
}

.stand3-area-2 {
    left: 30%;
    top: 38%;
    width: 20%;
    height: 24%;
}

.stand3-area-3 {
    right: 19%;
    top: 25.6%;
    width: 7.6%;
    height: 27%;
}

.stand3-area-4 {
    left: 55.4%;
    top: 62.3%;
    width: 2.1%;
    height: 4.5%;
}

.stand3-area-5 {
    left: 45.8%;
    top: 38.5%;
    width: 8.8%;
    height: 118px;
}

.stand3-area-6 {
    left: 55.4%;
    top: 67.6%;
    width: 2.1%;
    height: 4.5%;
}

.stand3-area-7 {
    left: 55.4%;
    top: 74%;
    width: 2.1%;
    height: 4.5%;
}

.stand3-area-8 {
    left: 55.4%;
    top: 80.4%;
    width: 2.1%;
    height: 4.5%;
}

.video-gallery {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

    .video-gallery .gallery-item {
        position: relative;
        float: left;
        overflow: hidden;
        margin: 10px 1%;
        background: #000;
        cursor: pointer;
    }

        .video-gallery .gallery-item img {
            position: relative;
            display: block;
            opacity: .45;
            width: 100%;
            transition: opacity 0.35s, transform 0.35s;
            transform: translate3d(0px, 0, 0);
            backface-visibility: hidden;
        }

        .video-gallery .gallery-item .gallery-item-caption {
            padding: 2em;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.25em;
        }

            .video-gallery .gallery-item .gallery-item-caption,
            .video-gallery .gallery-item .gallery-item-caption > a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 99;
            }

        .video-gallery .gallery-item h2 {
            font-weight: 600;
            overflow: hidden;
            padding: 0.5em 0;
            font-size: 17px;
            color: #fff;
        }


        .video-gallery .gallery-item h2,
        .video-gallery .gallery-item p {
            position: relative;
            margin: 0;
            z-index: 10;
        }

        .video-gallery .gallery-item p {
            letter-spacing: 1px;
            font-size: 75%;
            color: #FFF;
            padding: 1em 0;
            opacity: 0;
            transition: opacity 0.35s, transform 0.35s;
            transform: translate3d(10%, 0, 0);
        }

        .video-gallery .gallery-item:hover img {
            opacity: .3;
            transform: translate3d(0, 0, 0);
        }

        .video-gallery .gallery-item .gallery-item-caption {
            text-align: left;
        }

        .video-gallery .gallery-item h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 15%;
            height: 1px;
            background: #fff;
            transition: transform 0.3s;
            transform: translate3d(-100%, 0, 0);
        }

        .video-gallery .gallery-item:hover h2::after {
            transform: translate3d(0, 0, 0);
        }

        .video-gallery .gallery-item:hover p {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

@media screen and (max-width: 50em) {
    .video-gallery .gallery-item {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}

.videoask-embed__button--1ONxk, .videoask-embed__button--1ONxk:active {
    z-index: 997 !important;
}
/* ----------------------------------------------------------------------------------------- Stand 3 Css ----------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------- Gold A Css ----------------------------------------------------------------------- */
#gold-a {
    background-image: url(../images/gold-a.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.gold-a-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .gold-a-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

    .gold-a-btns a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.gold-a-1 {
    top: 67%;
    left: 20%;
}

.gold-a-2 {
    top: 49%;
    left: 32%;
}

.gold-a-3 {
    top: 42%;
    left: 38%;
}

.gold-a-4 {
    top: 48%;
    left: 43.8%;
}

.gold-a-5 {
    top: 42%;
    left: 53.5%;
}

.gold-a-6 {
    top: 61%;
    right: 30.7%;
}

.gold-a-7 {
    top: 56%;
    right: 23.7%;
}

/* ----------------------------------------------------------------------------------------- Gold B Css ----------------------------------------------------------------------- */
#gold-b {
    background-image: url(../images/gold-b.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.gold-b-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .gold-b-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

    .gold-b-btns a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.gold-b-1 {
    top: 66%;
    left: 25.2%;
}

.gold-b-2 {
    top: 59%;
    left: 30.4%;
}

.gold-b-3 {
    top: 45%;
    left: 36.8%;
}

.gold-b-4 {
    top: 30%;
    left: 36.8%;
}

.gold-b-5 {
    top: 45%;
    left: 53.2%;
}

.gold-b-6 {
    top: 43%;
    left: 62.2%;
}


/* ----------------------------------------------------------------------------------------- Gold C Css ----------------------------------------------------------------------- */
#gold-c {
    background-image: url(../images/gold-c.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.gold-c-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .gold-c-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

    .gold-c-btns a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.gold-c-1 {
    top: 67%;
    left: 26%;
}

.gold-c-2 {
    top: 35%;
    left: 40%;
}

.gold-c-3 {
    top: 58%;
    left: 56.5%;
}

.gold-c-4 {
    top: 47%;
    right: 37.7%;
}

.gold-c-5 {
    top: 22%;
    right: 20.5%;
}

/* ----------------------------------------------------------------------------------------- Platinium A Css ----------------------------------------------------------------------- */
#platinium-a {
    background-image: url(../images/platinium-a.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.platinium-a-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .platinium-a-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

    .platinium-a-btns a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.platinium-a-1 {
    top: 62%;
    left: 6%;
}

.platinium-a-2 {
    top: 62%;
    left: 15%;
}

.platinium-a-3 {
    top: 62%;
    left: 22%;
}

.platinium-a-4 {
    top: 52%;
    left: 30.5%;
}

.platinium-a-5 {
    top: 52%;
    left: 36.1%;
}

.platinium-a-6 {
    top: 48%;
    left: 44.1%;
}

.platinium-a-7 {
    top: 51%;
    right: 35.3%;
}

.platinium-a-8 {
    top: 50%;
    right: 30.6%;
}

.platinium-a-9 {
    top: 53%;
    right: 19.2%;
}

.platinium-a-10 {
    top: 59%;
    right: 13.2%;
}

/* ----------------------------------------------------------------------------------------- Platinium B Css ----------------------------------------------------------------------- */

#platinium-b {
    background-image: url(../images/platinium-b.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.platinium-b-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .platinium-b-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

    .platinium-b-btns a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

.platinium-b-1 {
    top: 58%;
    left: 14%;
}

.platinium-b-2 {
    top: 64%;
    left: 17.9%;
}

.platinium-b-3 {
    top: 44%;
    left: 35.9%;
}

.platinium-b-4 {
    top: 47%;
    left: 51.6%;
}

.platinium-b-5 {
    top: 48%;
    right: 37.9%;
}

.platinium-b-6 {
    top: 48%;
    right: 29.5%;
}

.platinium-b-7 {
    top: 71%;
    right: 29.5%;
}

/* ----------------------------------------------------------------------------------------- Sales Person Css ----------------------------------------------------------------------- */
.sales-person {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

    .sales-person .gallery-item {
        position: relative;
        float: left;
        overflow: hidden;
        margin: 10px 1%;
        background: #000;
        cursor: pointer;
    }

        .sales-person .gallery-item img {
            position: relative;
            display: block;
            opacity: .45;
            width: 100%;
            transition: opacity 0.35s, transform 0.35s;
            transform: translate3d(0px, 0, 0);
            backface-visibility: hidden;
        }

        .sales-person .gallery-item .gallery-item-caption {
            padding: 2em;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.25em;
        }

            .sales-person .gallery-item .gallery-item-caption,
            .sales-person .gallery-item .gallery-item-caption > a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 99;
            }

        .sales-person .gallery-item h2 {
            font-weight: 600;
            overflow: hidden;
            padding: 0.5em 0;
            font-size: 17px;
            color: #fff;
        }


        .sales-person .gallery-item h2,
        .sales-person .gallery-item p {
            position: relative;
            margin: 0;
            z-index: 10;
        }

        .sales-person .gallery-item p {
            letter-spacing: 1px;
            font-size: 68%;
            padding: 1em 0;
            opacity: 0;
            transition: opacity 0.35s, transform 0.35s;
            transform: translate3d(10%, 0, 0);
        }

        .sales-person .gallery-item:hover img {
            opacity: .3;
            transform: translate3d(0, 0, 0);
        }

        .sales-person .gallery-item .gallery-item-caption {
            text-align: left;
        }

        .sales-person .gallery-item h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 15%;
            height: 1px;
            background: #fff;
            transition: transform 0.3s;
            transform: translate3d(-100%, 0, 0);
        }

        .sales-person .gallery-item:hover h2::after {
            transform: translate3d(0, 0, 0);
        }

        .sales-person .gallery-item:hover p {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

/* ----------------------------------------------------------------------------------------- New Sales Person Css ----------------------------------------------------------------------- */
a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.new-sales-cont {
}

.product__slider-main .slick-prev {
    display: none !important;
}

.product__slider-main .slick-next {
    display: none !important;
}

.slick-prev {
    border: none;
    background: none;
    position: fixed !important;
    left: 10px;
    top: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: relative;
    font-size: 0px;
    z-index: 99;
}

    .slick-prev:before {
        content: "\f106";
        display: inline-block;
        font-size: 20px;
        color: #000;
        font-family: 'FontAwesome';
    }

.slick-next {
    border: none;
    background: none;
    position: fixed !important;
    left: 10px;
    top: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: relative;
    font-size: 0px;
    z-index: 99;
}

    .slick-next:before {
        content: "\f107";
        display: inline-block;
        font-size: 20px;
        color: #000;
        font-family: 'FontAwesome';
    }

.salex-boxs {
    text-align: center;
    margin-bottom: 15px;
}

.new-sales-cont h2 {
    color: #4285f4;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
    margin-top: 4px;
}

.new-sales-cont p {
    color: #727d8e;
    font-size: 12px;
    margin-bottom: 10px;
}

.new-sales-cont img {
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, .3);
    border: solid 2px #fff;
}

.sales-contact-btn {
    padding: 7px 20px 7px 20px;
    border: solid 1px #6a9ef6;
    font-size: 16px;
    color: #4285f4;
    border-radius: 20px;
}

    .sales-contact-btn:hover {
        border: solid 1px #19e578;
        background: #19e578;
        font-size: 16px;
        color: #fff;
    }

.company-popup h3 {
    font-size: 31px;
    color: #3766b6;
    font-weight: 400;
    margin: 0px;
    text-align: center;
    line-height: 1.9;
}

.product__slider-main {
    margin-bottom: 15px;
}

    .product__slider-main img {
        margin: 0 auto;
    }

.product__slider-thmb .slick-slide {
    transition: all .3s ease;
}

    .product__slider-thmb .slick-slide.slick-active, .product__slider-thmb .slick-slide:hover {
        opacity: 1;
    }

.product__slider-main, .product__slider-thmb {
    display: none;
}

.product__slider-thmb {
    height: 470px;
    overflow-y: auto;
}

    .product__slider-thmb .slick-current.slick-active img {
        border: solid 2px #19e578;
    }


.salex-boxs-detail {
    padding: 40px;
    background: #fff;
    box-shadow: 8px 8px 0px 0 rgba(0, 0, 0, .1);
    border: solid 1px #d5d5d5;
    text-align: left !important;
}

    .salex-boxs-detail h2 {
        color: #4285f4;
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 400;
        margin-top: 0px;
    }

    .salex-boxs-detail p {
        color: #727d8e;
        font-size: 16px;
        margin-bottom: 10px;
    }

        .salex-boxs-detail p a {
            margin: 0px !important;
            min-width: auto;
        }

            .salex-boxs-detail p a:hover {
                color: #6a9ef6;
            }

    .salex-boxs-detail a {
        color: #727d8e;
        font-size: 16px;
        margin-bottom: 15px;
        display: inline-block;
        min-width: 130px;
        text-align: center;
    }

    .salex-boxs-detail img {
        border-radius: 50%;
        box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, .3);
        border: solid 2px #fff;
    }

/* ----------------------------------------------------------------------------------------- New Sales Person Css ----------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------- User Css ----------------------------------------------------------------------- */
.user-ent-cont {
}

    .user-ent-cont .dropdown-menu {
        min-width: 270px;
    }

.nav-user img {
    height: 36px;
    width: 36px;
    margin-top: 10px !important;
    margin-bottom: 0px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.up-icon {
    display: inline-block;
    margin-left: 5px;
    width: 16px !important;
    height: 9px !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.logout {
    color: red;
}

.profile-details {
    border-bottom: solid 1px #cecece;
}

    .profile-details img {
        width: 100% !important;
        height: auto !important;
        box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .4) !important;
    }

    .profile-details h3 {
        font-size: 16px !important;
        color: #363636 !important;
    }

    .profile-details a {
        font-size: 14px;
        color: rgba(5,130,212, 1);
    }

.notifications .topbar-icon {
    font-size: 25px;
    color: #fff;
}

.notifications {
    margin-top: 15px;
}

.notification-list .noti-icon-badge {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: -12px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    padding: 1px 3px 1px;
    font-size: 9px !important;
}

.badge {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 11px !important;
}

.badge {
    line-height: 10px;
}

.badge-danger {
    color: #363636;
    background-color: #fcee20;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto;
}

.dropdown-lg {
    width: 320px;
}

.dropdown-menu {
    -webkit-box-shadow: 0 3px 12px #d6e4f1;
    box-shadow: 0 3px 12px #d6e4f1;
    margin: 0;
}

.font-15 {
    font-size: 15px !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.m-0 {
    margin: 0 !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.border-bottom {
    border-bottom: 1px solid #eaf0f7 !important;
}

.dropdown-item-text {
    display: block;
    padding: 6px 24px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #1d2c48;
}

.badge {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 11px !important;
}

.badge {
    line-height: 10px;
}

.badge-primary {
    color: #363636;
    background-color: #fcee20;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    padding: .46em .6em;
    padding-right: 0.6em;
    padding-left: 0.6em;
    font-size: 75%;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}

.notification-list .notification-menu {
    margin-left: 0;
}

[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-height-auto-observer-wrapper {
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    direction: inherit;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    max-width: 100%;
    max-height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    padding-top: 6px;
    padding-bottom: 6px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.text-muted {
    color: #a4abc5 !important;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}

.float-right {
    float: right !important;
}

small, .small {
    font-size: 86%;
    font-weight: 400;
}

.media {
    font-family: "Roboto",sans-serif;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.text-dark {
    color: #1d2c48 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.text-primary {
    color: #1761fd !important;
}

.text-center {
    text-align: center !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
}
/* ----------------------------------------------------------------------------------------- User Css ----------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------------- Mobile Css ----------------------------------------------------------------------- */
.text-left {
    text-align: left !important;
}

.mb-show {
    display: none !important;
}

@media all and (min-width: 140px) and (max-width:960px) {
    .navbar-area ul li ul li a {
        padding: 0px !important;
    }

    .navbar-area ul li:hover ul a {
        color: #000 !important;
    }

    .schedules-tab-nav ul {
        width: 100%;
    }

        .schedules-tab-nav ul li {
            float: inherit;
            width: 100%;
            margin-bottom: 5px;
        }

    .tabs-holder {
        position: relative;
        z-index: 99;
    }

    .our-angels-area .single-team-member .image-box img {
        width: 100%;
    }

    .our-angels-area .single-team-member .image-box .member-details::after {
        bottom: -18px;
        height: 33px;
    }

    .suitable-business-area .left-content .section-title h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .section-title h3 {
        font-size: 30px !important;
    }

    .tg-eventcounter span:first-child {
        font-size: 30px;
    }

    .tg-eventcounter span:last-child {
        font-size: 14px;
    }

    .mb-show {
        display: inline-block !important;
    }

    .mb-hide {
        display: none !important;
    }

    .column {
        /* height: auto !important; */
    }

    #enter-content-cont {
        background: transparent;
    }

    #enter-page::after {
        background: #fff !important;
    }

    #enter-content-inner h3 {
        color: #fff !important;
    }

    #enter-content-cont #MemberLoginForm_LoginForm_Remember_Holder label {
        color: #fff !important;
    }

    #enter-content-cont #ForgotPassword a {
        color: #fff !important;
    }

    .prifile-pic-big img {
        position: inherit !important;
    }

    .mb-text-center {
        text-align: center !important;
    }

    .profile-btns li {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

        .profile-btns li a {
            padding: 10px 20px 10px 20px !important;
        }

    .personel-details-boxes a {
        text-align: center;
        width: 100%;
    }

    .prifile-pic-big {
        text-align: center;
    }

        .prifile-pic-big img {
            width: 150px;
            position: inherit !important;
            display: inline-block;
        }

    .profile-detail-bottom2 .nav-tabs > li {
        margin-bottom: 10px;
    }

    .my-schedule-selected h3 {
        font-size: 14px !important;
    }

    .mb-text-left {
        text-align: left !important;
    }
}



/* Our Upcoming Schedules */
.mb-tabs-holder {
    border: 1px solid #ccc;
}

.mb-mb-schedules-tab-nav {
    text-align: center;
    margin: -45px 0 0;
}

    .mb-mb-schedules-tab-nav ul {
        display: inline-block;
        border: 1px solid #ccc;
    }

        .mb-mb-schedules-tab-nav ul li {
            float: left;
            border-right: 1px solid #ccc;
        }

.mb-schedules-tab-nav ul li:last-child {
    margin: 0;
    border: 0;
}

.mb-schedules-tab-nav ul li a {
    position: relative;
    padding: 15px 30px;
    font-size: 24px;
    outline: none;
    background: #fff;
    display: block;
}

    .mb-schedules-tab-nav ul li a span {
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #444;
        font-family: 'Open Sans', Arial, sans-serif;
        text-transform: uppercase;
    }

.mb-schedules-tab-nav ul li.active a,
.mb-schedules-tab-nav ul li.active a span {
    color: #fff;
    display: block;
}

.mb-schedules-tab-nav ul li:last-child a::before {
    display: none;
}

.mb-schedules-tab-nav ul li.active a::after {
    content: "\e5c5";
    position: absolute;
    left: 0;
    font-family: 'icomoon' !important;
    height: 100%;
    width: 100%;
    top: 100%;
    margin: -26px 0 0;
    font-size: 40px;
    color: #ed1c24;
}

.mb-tab-content {
    padding: 30px 60px 30px 30px;
}

.mb-schedules-widget {
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 30px;
}

    .mb-schedules-widget:last-child {
        margin: 0;
        padding: 0;
    }

        .mb-schedules-widget:last-child::before {
            display: none;
        }

    .mb-schedules-widget .detail {
        margin-left: 134px;
        padding: 10px 0 10px 30px;
        position: relative;
        border-left: 1px solid #ccc;
    }

    .mb-schedules-widget::before {
        content: "";
        position: absolute;
        right: 0;
        height: 100%;
        width: 84%;
        border-bottom: 1px dashed #ccc;
        bottom: 0;
        z-index: -1;
    }

    .mb-schedules-widget h3 {
        margin: 0 0 15px;
        font-size: 24px;
    }

    .mb-schedules-widget p {
        margin: 0;
    }

.mb-time-location {
    overflow: hidden;
    margin: 0 0 10px;
}

    .mb-time-location li {
        float: left;
        margin: 0 30px 0 0;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 700;
    }

        .mb-time-location li:last-child {
            margin: 0;
        }

        .mb-time-location li i {
            margin: 0 5px 0 0;
            color: #999;
            font-size: 12px;
        }

.mb-speaker-name {
    overflow: hidden;
    padding: 15px 0 0;
}

    .mb-speaker-name li {
        float: left;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 700;
        margin: 0 10px 0 0;
    }

        .mb-speaker-name li:last-child {
            margin: 0;
        }

        .mb-speaker-name li i {
            margin: 0 5px 0 0;
            color: #999;
            line-height: 0;
        }

        .mb-speaker-name li span {
            font-family: 'Open Sans', sans-serif;
            font-weight: 100;
            font-style: italic;
            color: #999;
            margin: 0 0 0 5px;
        }

.mb-speaker-imgs {
    position: absolute;
    top: 50%;
    margin: -67px 0 0;
}

    .mb-speaker-imgs ul li {
        float: left;
        margin: 0 5px 5px 0;
    }

        .mb-speaker-imgs ul li:last-child {
            margin: 0;
        }

        .mb-speaker-imgs ul li a {
            position: relative;
        }

            .mb-speaker-imgs ul li a img {
                border-radius: 100%;
            }

            .mb-speaker-imgs ul li a::after {
                visibility: hidden;
                display: block;
                font-size: 0;
                content: " ";
                clear: both;
                height: 0;
            }

            .mb-speaker-imgs ul li a .toltip {
                position: absolute;
                top: 130%;
                padding: 7px 10px;
                background: #000;
                color: #fff;
                font-size: 12px;
                min-width: 100px;
                z-index: 100;
                visibility: hidden;
                opacity: 0;
                text-align: center;
                left: 0;
                margin: -10px 0 0;
            }

                .mb-speaker-imgs ul li a .toltip::before {
                    content: "\e5c7";
                    position: absolute;
                    left: 50%;
                    bottom: 100%;
                    color: #000;
                    font-family: icomoon;
                    font-size: 40px;
                    margin: 0 0 -27px -20px;
                }

            .mb-speaker-imgs ul li a:hover .toltip {
                opacity: 1;
                visibility: visible;
                top: 118%;
            }

.mb-break-widget {
    margin: 0 0 5px;
}

    .mb-break-widget .title,
    .mb-break-widget .time {
        padding: 30px 0;
        text-align: center;
    }

        .mb-break-widget .title h2,
        .mb-break-widget .time h2 {
            font-size: 36px;
            margin: 0;
            line-height: 20px;
            font-weight: 300;
            color: #fff;
            position: relative;
            z-index: 1;
            font-family: 'Open Sans', sans-serif;
        }

        .mb-break-widget .title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: rgba(0,0,0,0.8);
        }

    .mb-break-widget .title {
        background: url(../img/beack-bg.jpg) no-repeat;
        position: relative;
    }

.mb-more-btn {
    text-align: center;
}

    .mb-more-btn .btn {
        margin: 30px 0 0;
        min-width: 265px;
    }

        .mb-more-btn .btn:hover {
            border-color: #ccc;
        }

.mb-seprater-line {
    background: url(../img/heading-patern.png) repeat-x;
    height: 4px;
    width: 80%;
    margin: 50px auto 0;
}

.mb-team.style-2 .seprater-line {
    width: 50%;
}

.mb-time-location li {
    color: #ed1c24;
}

.mb-schedules-tab-nav li a {
    color: #ed1c24;
}

.mb-detail h3 a {
    color: #222;
}

.mb-schedules-tab-nav li.active a {
    background: #ed1c24;
}

.mb-kongre-programi .boxed-btn:hover {
    border-color: #ed1c24;
    color: #ed1c24;
}

.mb-text-color1 {
    color: #ed1c24 !important;
}

.mb-text-color2 {
    color: #0593BF !important;
}

.mb-text-color3 {
    color: #222222 !important;
}

.mb-text-color4 {
    color: #fff !important;
}

.mb-bg-color1 {
    background-color: #f8f8f8;
}

.mb-address-widget h3 {
    font-size: 24px;
}

.main-nav-scrolled #main-menu > li > a {
    color: #000;
}

.main-nav-scrolled .logo img {
    width: 95px;
}

.main-nav-scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255, .9);
}

.mb-container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


/* -----------------------------------------------Form Control ---------------------------------------------------------------- */

img.mapclass[usemap] {
    border: none;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

body { /*position:relative;*/
}

#mb-out-cont {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.mb-conference-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    background-size: cover;
    height: 580px;
}

.mb-conference-box-in {
    position: relative;
    display: inline-block;
    top: 50%;
    margin-top: -150px;
}

.mb-show {
    display: none;
}

#fixed-bar {
    position: absolute;
    width: 100%;
}

    #fixed-bar ul li {
        display: inline-block;
        margin-left: 4px;
        margin-right: 4px;
    }

#mb-enter-page:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background: rgba(5,130,212, .85);
    width: 100%;
    height: 100%;
}

#mb-enter-page .col-md-3 {
    position: relative;
    z-index: 1;
}

#mb-enter-page {
    background-image: url(../images/enter-img.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

#mb-halls-page-in {
    background-image: url(../images/halls-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    /* background-size:cover; */
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

#mb-enter-content-cont {
    text-align: center;
    display: table;
    height: 100%;
    width: 100%;
    margin: auto;
}

#mb-enter-content-inner {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
    padding: 1rem 3rem;
}

    #mb-enter-content-inner h3 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 30px;
        font-weight: 500;
    }

    #mb-enter-content-inner form {
        width: 90%;
        display: inline-block;
    }

#ForgotPassword {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 15px;
}

#mb-ForgotPassword a {
    color: #fff;
    text-decoration: underline;
}

#mb-enter-page-in {
    background-image: url(../images/enter-img.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

#mb-stand-page-in {
    background-image: url(../images/stand.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}


#mb-in-header:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background: rgba(5,130,212, 1);
    width: 100%;
    height: 100%;
}

#mb-in-header h3 {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

#mb-in-header img {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
}

#mb-in-header {
    position: absolute;
    width: 100%;
    z-index: 3;
}

.mb-btns {
    display: inline-block;
    width: 100px;
    height: 99px;
    background-image: url(../images/btn-a.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 99px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    transition: all 500ms ease;
}

    .mb-btns:hover {
        background-image: url(../images/btn-a-hover.png);
        color: #fff;
    }

.mb-hall-a {
    top: 60%;
    left: 11.5%;
}

.mb-hall-b {
    top: 60%;
    left: 22.5%;
}

.mb-hall-c {
    top: 60%;
    right: 22.5%;
}

.mb-hall-d {
    top: 60%;
    right: 11.5%;
}

.mb-exhibition-btn {
    top: 55%;
    left: 50.5%;
    font-size: 14px;
}

.mb-lounge-btn {
    top: 72%;
    right: 17.5%;
    font-size: 14px;
}

.mb-agenda-btn {
    bottom: 7%;
    left: 18.5%;
    font-size: 14px;
}

.mb-eposter-btn {
    top: 55%;
    left: 43.5%;
    font-size: 14px;
}

.mb-support-btn {
    bottom: 7%;
    right: 8.5%;
    font-size: 14px;
}

.mb-halls-page-cont {
    text-align: center;
    display: table;
    height: 100%;
    width: 100%;
    margin: auto;
}

.mb-halls-page-inner {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.mb-contall {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    height: 304px;
}

.mb-allboxs {
    float: left;
}

.mb-box1 {
    width: 163px;
    display: inline-block;
    text-align: left;
    margin-left: 46px;
}

    .mb-box1 h4 {
        color: #3766b6;
        font-size: 20px;
        margin-bottom: 0px;
        margin-left: 15px;
        margin-top: 30px;
        font-weight: 400;
    }

    .mb-box1 h5 {
        color: #3766b6;
        font-size: 40px;
        margin-bottom: 0px;
        margin-left: 15px;
        margin-top: 0px;
    }

.mb-box2 {
    width: 293px;
    display: inline-block;
    margin-left: 28px;
    text-align: center;
}

    .mb-box2 h4 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 0px;
        margin-top: 30px;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .mb-box2 #agenda-ul li {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
        background: #fff;
        color: #3766b6;
        font-size: 14px;
        padding: 5px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }

    .mb-box2 .agenda-times {
        display: inline-block;
        font-size: 25px;
        float: left;
        line-height: 33px;
    }

    .mb-box2 .agenda-text {
        display: inline-block;
        font-size: 12px;
        color: #3766b6;
        float: left;
        margin-left: 10px;
    }

        .mb-box2 .agenda-text span {
            display: block;
            font-size: 11px;
            color: #4d4d4d;
        }

    .mb-box2 #sponsors-ul {
        text-align: center;
    }

        .mb-box2 #sponsors-ul li {
            display: inline-block;
            margin-left: 5px;
            margin-right: 5px;
        }

            .mb-box2 #sponsors-ul li img {
                border-radius: 50%;
            }

.mb-box3 {
    width: 589px;
    display: inline-block;
    margin-left: 39px;
}

#mb-header-menu {
    position: relative;
    z-index: 2;
    padding-top: 18px;
}

    #mb-header-menu li {
        display: inline-block;
        position: relative;
    }

        #mb-header-menu li hover:after {
            content: " ";
            position: absolute;
            left: 0px;
            bottom: -19px;
            width: 100%;
            height: 5px;
            background: #fcee20;
            display: block;
        }

        #mb-header-menu li.active a {
            color: #fcee20 !important;
        }

        #mb-header-menu li.active:after {
            content: " ";
            position: absolute;
            left: 0px;
            bottom: -19px;
            width: 100%;
            height: 5px;
            background: #fcee20;
            display: block;
        }

        #mb-header-menu li a {
            font-size: 18px;
            color: #fff;
            padding-left: 10px;
            padding-right: 10px;
        }

            #mb-header-menu li a:hover {
                color: #fcee20;
            }

.mb-schedule-box {
    background: #fff;
}

    .mb-schedule-box .hour-box .toggle-btn h3 span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        margin-top: 5px;
    }

.mb-share-cont {
    background: #273958;
    color: #fff;
    padding: 20px;
}

    .mb-share-cont li {
        display: inline-block;
        margin-right: 10px;
    }

        .mb-share-cont li a {
            color: #fff;
        }

            .mb-share-cont li a:hover {
                color: #fcee20;
            }

                .mb-share-cont li a:hover i {
                    background-color: #fcee20;
                }

            .mb-share-cont li a i {
                display: inline-block;
                width: 30px;
                height: 30px;
                text-align: center;
                background: #fff;
                border-radius: 50%;
                color: #273958;
                font-size: 16px;
                line-height: 30px;
                margin-right: 5px;
            }

.mb-toggle-btn.active h3 {
    color: #009fe3 !important;
}

.mb-hour-box.active-box .hour {
    color: #009fe3 !important;
}



.mb-extra-hall .box1 {
    padding-top: 70px;
}

.mb-extra-hall .box2 {
    padding-top: 70px;
}

#mb-exhibition-select-cont {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.mb-exhibition-select {
    width: 230px;
    float: right;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.bg-grey {
    background: #f2f2f2;
}

.mb-company-popup {
}

    .mb-company-popup .modal-content {
        border-radius: 0px !important;
    }

    .mb-company-popup .close {
        position: absolute;
        right: 20px;
        top: 10px;
        color: red;
        font-size: 40px;
        opacity: 1;
        font-weight: 300;
    }

    .mb-company-popup .modal-header {
        padding: 0px;
        border: none;
        height: 60px;
        background: #f2f2f2;
    }

.mb-modal-backdrop {
    background: rgba(5,130,212, .8) !important;
}

.mb-sponsor-big-logo {
    position: relative;
    bottom: -30px;
    border: solid 2px #f2f2f2;
}

.mb-company-popup h3 {
    font-size: 26px;
    color: #3766b6;
    font-weight: 400;
    margin: 0px;
}

.mb-company-popup h4 a {
    font-size: 20px;
    color: #a7a7a7;
    font-weight: 400;
}

.mb-company-popup h5 {
    font-size: 20px;
    color: #3766b6;
    font-weight: 600;
}

.mb-btn-view:hover {
    background: #f0dc00;
    color: #000 !important;
}

.mb-btn-view {
    background: #0582d4;
    margin: 15px 5px 5px;
    font-size: 16px;
    border: none;
    position: relative;
    line-height: 34px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 7px 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
    display: inline-block;
}

.text-right {
    text-align: right;
}


.mb-stand-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .mb-stand-btns:hover {
        background-image: url(../images/signal.gif);
        color: #fff;
    }

.mb-stand-1 {
    top: 77%;
    left: 20.5%;
}

.mb-stand-2 {
    top: 60%;
    left: 24.5%;
}

.mb-stand-3 {
    top: 41%;
    left: 38.5%;
}

.mb-stand-4 {
    top: 42.5%;
    right: 44.5%;
}

.mb-stand-5 {
    top: 58%;
    right: 24.5%;
}

.ps-r {
    position: relative;
}

.mb-fullscreen-btn-cont {
    position: absolute;
    left: 0px;
    bottom: -50px;
    width: 100%;
}

.mb-fullscreen-btn {
}

    .mb-fullscreen-btn:hover {
        background: #f0dc00;
        color: #000 !important;
    }

.mb-fullscreen-btn {
    background: #0582d4;
    margin: 15px 5px 5px;
    font-size: 16px;
    border: none;
    position: relative;
    line-height: 34px;
    font-weight: 700;
    color: #ffffff !important;
    padding: 7px 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
    display: inline-block;
}

.fullsize {
    position: fixed !important;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    padding-top: 83px;
}

    .fullsize iframe {
        height: 100vh !important;
    }

    .fullsize .mb-fulls-close-btn {
        display: block !important;
    }

.mb-fulls-close-btn {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 25px;
    background: #fff;
    color: #0582d4;
    z-index: 3;
    right: 30px;
    top: 121px;
    display: none;
}

.mb-exhibition-search {
    background: rgba(5,130,212, .8);
    padding: 15px;
    border-top: solid 1px #fff;
}

    .mb-exhibition-search .search-text {
        padding-left: 8px;
        font-size: 12px;
        line-height: 22px;
        width: 100%;
    }

#mb-area2 {
    background: red;
}

#mb-news-text { /* position: absolute; width: 100%; left: 0px; bottom: 0px; z-index: 99; */
}

#mb-news-text {
    color: #4285f4;
}

.mb-coco-cola {
    position: absolute;
    z-index: 3;
    left: 33%;
    top: 63.7%;
    width: 1.9%;
}

    .mb-coco-cola img {
        width: 100%;
    }

#mb-stand2-page-in {
    background-image: url(../images/stand2.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.mb-stand2-1 {
    top: 58%;
    left: 19.5%;
}

.mb-stand2-2 {
    top: 58%;
    left: 28.5%;
}

.mb-stand2-3 {
    top: 38%;
    left: 26.7%;
}

.mb-stand2-4 {
    top: 39.5%;
    left: 36.2%;
}

.mb-stand2-5 {
    top: 36.5%;
    left: 49%;
}

.mb-stand2-6 {
    top: 46.7%;
    right: 26.3%;
}

.mb-stand2-7 {
    top: 39.4%;
    left: 46.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .mb-stand2-7:hover {
        background: transparent;
    }

.mb-stand2-8 {
    top: 56.4%;
    right: 20.1%;
    background: transparent;
    width: 3%;
    height: 7%;
}

    .mb-stand2-8:hover {
        background: transparent;
    }

.mb-stand2-9 {
    top: 39.4%;
    left: 24.1%;
    background: transparent;
    width: 8%;
    height: 11%;
}

    .mb-stand2-9:hover {
        background: transparent;
    }

.mb-stand2-10 {
    top: 41.4%;
    left: 35.1%;
    background: transparent;
    width: 5%;
    height: 7%;
}

    .mb-stand2-10:hover {
        background: transparent;
    }

.mb-hall-stand-btn {
    position: absolute;
}

    .mb-hall-stand-btn img {
        width: 100%;
    }

    .mb-hall-stand-btn:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: inline-block;
        left: 0px;
        top: 0px;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100%;
    }

.mb-stand-area-1 {
    left: 17%;
    top: 64%;
    width: 6%;
    height: 20%;
}

.mb-stand-area-2 {
    left: 26%;
    top: 64%;
    width: 6%;
    height: 20%;
}

.mb-stand-area-3 {
    left: 24.8%;
    top: 40.6%;
    width: 6.6%;
    height: 78px;
}
/* .stand-area-3:after{background-image:url(../images/stand2-mask1.png);}*/

.mb-stand-area-4 {
    left: 35.2%;
    top: 42.3%;
    width: 4.4%;
    height: 57px;
}
/* .stand-area-4:after{background-image:url(../images/stand2-mask2.png);}*/

.mb-stand-area-5 {
    left: 45.8%;
    top: 38.5%;
    width: 8.8%;
    height: 118px;
}
/* .stand-area-5:after{background-image:url(../images/stand2-mask3.png);}*/

.mb-stand-area-6 {
    top: 56.4%;
    left: 76.8%;
    width: 3.3%;
    height: 58px;
}
/* .stand-area-6:after{background-image:url(../images/stand2-mask4.png);}*/

iframe {
    border: none;
}

.mb-hall-sponsors-btn {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-image: url(../images/signal.gif);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
    position: absolute;
    z-index: 2;
}

    .mb-hall-sponsors-btn img {
        width: 100%;
    }

    .mb-hall-sponsors-btn:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: inline-block;
        left: 0px;
        top: 0px;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 100%;
    }

.mb-sponsors-area-1 {
    left: 17%;
    top: 64%;
}

.mb-sponsors-area-2 {
    left: 26%;
    top: 64%;
}

.mb-sponsors-area-3 {
    left: 24.8%;
    top: 40.6%;
}

.mb-sponsors-area-4 {
    left: 35.2%;
    top: 42.3%;
}

.mb-sponsors-area-5 {
    left: 48.8%;
    top: 25.5%;
}

.mb-sponsors-area-6 {
    top: 66.4%;
    left: 67.8%;
}

#mb-sponsors-page-in {
    background-image: url(../images/sponsor-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
}

.mb-navbar {
    min-height: auto !important;
}

/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */
/* 2 Navigation */
/* 2.1 Navbar Top / .navbar-top */
.navbar {
    min-height: auto !important;
}

.navbar-top {
    position: relative;
    z-index: 10;
    padding: 0px;
    margin-bottom: 0px;
}

.menu-visible .bar3 {
    display: none !important;
}

.menu-visible .mb-icon-menu-a .bar1, .menu-visible .mb-icon-menu-a .bar2 {
    background: #fff !important;
}

@media screen and (min-width: 992px) {
    .navbar-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 32px 40px;
        padding-bottom: 0;
    }
}

.navbar-top .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

    .navbar-top .navbar-brand img {
        height: 40px;
    }

@media screen and (min-width: 992px) {
    .navbar-top .navbar-brand img {
        height: 48px;
    }
}

.navbar-top .navbar-brand .logo {
    margin-right: 16px;
}

.navbar-top .navbar-brand .text {
    font-size: 1rem;
}

@media screen and (min-width: 992px) {
    .navbar-top .navbar-brand .text {
        font-size: 1.25rem;
    }
}

.navbar-top .navbar-brand .text .line {
    display: block;
    line-height: 1;
}

.navbar-top .menu-toggler {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* 2.2 Sidebar navigation / .navbar-sidebar */
.navbar-sidebar {
    position: absolute;
    z-index: 10;
    display: none;
    -webkit-transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
    transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

    .navbar-sidebar .navbar-group {
        transition: 0.6s;
        transition-delay: 0.6s;
    }

    .navbar-sidebar:after {
        position: absolute;
        content: "";
        width: 40px;
        height: 2px;
        top: 50%;
        right: 0;
        background: currentColor;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0.25;
    }

@media screen and (min-width: 768px) {
    .navbar-sidebar {
        position: absolute;
    }
}

@media screen and (min-width: 992px) {
    .navbar-sidebar {
        position: absolute;
        top: 32px;
        left: 40px;
        padding: 0;
        display: inline-block;
        padding-right: 40px;
        margin-top: 64px;
    }
}

@media screen and (min-width: 1200px) {
    .navbar-sidebar {
        position: fixed;
    }
}

.navbar-sidebar .navbar-nav {
    display: flex;
    flex-direction: row;
}

.navbar-sidebar .nav-item,
.navbar-sidebar a {
    color: currentColor;
    padding: 0 8px;
    line-height: 1;
    position: relative;
    transition: 0.3s;
}

    .navbar-sidebar .nav-item:before,
    .navbar-sidebar a:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 0%;
        border-bottom: 2px solid currentColor;
        transition: 0.3s;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .navbar-sidebar .nav-item:hover,
    .navbar-sidebar a:hover {
        opacity: 0.5;
        text-decoration: none;
    }

        .navbar-sidebar .nav-item:hover::before,
        .navbar-sidebar a:hover::before {
            width: 100%;
        }

.loading-anim .navbar-sidebar .navbar-group {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-64px);
    transform: translateX(-64px);
}

/* 2.3 Fullscreen navigation menu / .navfull-menu */
.navfull-menu {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,130,212, .85);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 0.6s;
}

    .navfull-menu.menu-visible {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        visibility: visible;
    }

    .navfull-menu .nav-menu {
        /* font-size: 3rem; */
    }

@media screen and (min-width: 992px) {
    .navfull-menu .nav-menu {
        font-size: 2rem;
        line-height: 1.4;
    }
}

.navfull-menu .nav-menu a:hover {
    color: #000 !important;
}

.navfull-menu .nav-menu a {
    /* color: currentColor;
      -webkit-text-stroke: 1px #ffffff; */
    color: #fff;
    transition: 0.3s;
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 1.6;
}

    .navfull-menu .nav-menu a:hover {
        text-decoration: none;
        color: #ffffff;
    }

.mb-btn {
    font-size: 1.2rem;
}

.mb-btn-line-a {
    color: currentColor;
    border: none;
    background: none;
    padding: 0.75em 0;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

    .mb-btn-line-a .icon {
        display: inline-flex;
    }

        .mb-btn-line-a .icon ~ .text {
            margin-left: 1em;
        }

    .mb-btn-line-a .text ~ .icon {
        margin-left: 1em;
    }

    .mb-btn-line-a:active, .mb-btn-line-a:hover {
        color: currentColor;
        background: none;
        box-shadow: none;
        opacity: 0.7;
    }

        .mb-btn-line-a:active::before, .mb-btn-line-a:hover::before {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

        .mb-btn-line-a:active::after, .mb-btn-line-a:hover::after {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

    .mb-btn-line-a.btn-primary {
        color: #0094D8;
    }

    .mb-btn-line-a.btn-secondary {
        color: #3f4b62;
    }

    .mb-btn-line-a.btn-white {
        color: #ffffff;
    }

    .mb-btn-line-a.btn-black {
        color: #1d1d1d;
    }

    .mb-btn-line-a.btn-gray {
        color: #8b8b8b;
    }

    .mb-btn-line-a.btn-blue {
        color: #0896e6;
    }

.mb-btn-line-b {
    border: none;
    background: none;
    padding: 0.75em 0;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

    .mb-btn-line-b .icon {
        display: inline-flex;
    }

        .mb-btn-line-b .icon ~ .text {
            margin-left: 1em;
        }

    .mb-btn-line-b .text ~ .icon {
        margin-left: 1em;
    }

    .mb-btn-line-b:active, .btn-line-b:hover {
        color: #0094D8;
        background: none;
        box-shadow: none;
        opacity: 0.7;
    }

        .mb-btn-line-b:active::before, .btn-line-b:hover::before {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

        .mb-btn-line-b:active::after, .btn-line-b:hover::after {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

    .mb-btn-line-b.btn-primary {
        color: #0094D8;
    }

    .mb-btn-line-b.btn-secondary {
        color: #3f4b62;
    }

    .mb-btn-line-b.btn-white {
        color: #ffffff;
    }

    .mb-btn-line-b.btn-black {
        color: #1d1d1d;
    }

    .mb-btn-line-b.btn-gray {
        color: #8b8b8b;
    }

    .mb-btn-line-b.btn-blue {
        color: #0896e6;
    }
/* Menu icon */
.mb-icon-menu-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .mb-icon-menu-a .bars {
        width: 38px;
        display: flex;
        flex-direction: column;
        position: relative;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

        .mb-icon-menu-a .bars.align-right {
            align-items: flex-end;
        }

    .mb-icon-menu-a .bar1,
    .mb-icon-menu-a .bar2,
    .mb-icon-menu-a .bar3 {
        display: flex;
        height: 2px;
        background: #4285f4;
        transition: 0.3s;
        position: absolute;
        top: 50%;
    }

    .mb-icon-menu-a .bar1 {
        width: 100%;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .mb-icon-menu-a .bar2 {
        width: 100%;
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    .mb-icon-menu-a .bar3 {
        width: 100%;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    .mb-menu-visible .icon-menu-a .bar1,
    .mb-icon-menu-a.menu-close .bar1 {
        width: 100%;
        -webkit-transform: rotate(45deg) scaleX(0.8);
        transform: rotate(45deg) scaleX(0.8);
        -webkit-transform-origin: center;
        transform-origin: center;
    }

    .mb-menu-visible .icon-menu-a .bar2,
    .mb-icon-menu-a.menu-close .bar2 {
        width: 100%;
        -webkit-transform: rotate(-45deg) scaleX(0.8);
        transform: rotate(-45deg) scaleX(0.8);
        -webkit-transform-origin: center;
        transform-origin: center;
    }

.mb-live-btn {
    color: #19e678 !important;
    background: #fff;
    padding-left: 80px;
    padding-right: 80px;
    font-size: 16px !important;
    border-radius: 30px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    display: inline-block;
}

    .mb-live-btn:hover {
        border: none !important;
        background: #19e678 !important;
        color: #fff !important;
    }
/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */

#mb-icons-cont h3 {
    color: #4285f4;
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
    line-height: 1.2;
}

#mb-inner-headers {
    background: #4285f4;
}

    #mb-inner-headers h3 {
        color: #fff;
        font-size: 22px;
        margin: 0px;
        font-weight: 400;
        line-height: 1.4;
    }

.mb-main-logo {
    width: 170px;
}

.mb-boxes-icon {
    color: #727d8e;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .mb-boxes-icon h4 {
        color: #727d8e;
        font-weight: 400;
        font-size: 16px;
        margin-top: 5px !important;
    }

    .mb-boxes-icon:hover h4 {
        color: #4285f4;
    }

    .mb-boxes-icon img {
        width: 70px;
    }

.mb-icon-box1 {
    border-right: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box2 {
    border-right: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box3 {
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box4 {
    border-right: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box5 {
    border-right: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box6 {
    border-bottom: solid 1px #d5d5d5;
}

.mb-icon-box7 {
    border-right: solid 1px #d5d5d5;
}

.mb-icon-box8 {
    border-right: solid 1px #d5d5d5;
}

.mb-icon-box9 {
}

.mb-live-btn2 {
    color: #fff !important;
    background: #3ce043;
    font-size: 16px !important;
    border-radius: 30px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    display: inline-block;
    width: 80%;
}

    .mb-live-btn2:hover {
        border: none !important;
        background: #727d8e !important;
        color: #fff !important;
    }

.mb-bs-chatbot-fab__nJAOV {
    opacity: 0;
    position: relative;
    right: -100px;
}

    .mb-bs-chatbot-fab__nJAOV:hover {
        opacity: 0;
    }

.mb-hall-boxes-icon {
    color: #727d8e;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .mb-hall-boxes-icon h4 {
        color: #727d8e;
        font-weight: 400;
        font-size: 16px;
        margin-top: 5px !important;
    }

    .mb-hall-boxes-icon:hover h4 {
        color: #4285f4;
    }

    .mb-hall-boxes-icon img {
        width: 80px;
    }

#mb-header {
    border-bottom: solid 10px #4285f4;
}
/* ------------------------------------------------------------------------ Exhibition Css ------------------------------------------------------------ */
.mb-search-categry-select .inputGroup {
    background-color: #fff;
    display: inline-block;
    margin: 0px;
    position: relative;
    margin-left: 2px;
    margin-right: 2px;
}

    .mb-search-categry-select .inputGroup label {
        padding: 7px 20px;
        width: 100%;
        display: block;
        text-align: left;
        color: #3c454c;
        cursor: pointer;
        position: relative;
        z-index: 2;
        -webkit-transition: color 200ms ease-in;
        transition: color 200ms ease-in;
        overflow: hidden;
        border-radius: 30px;
        font-size: 16px !important;
        font-weight: 600 !important;
        border: solid 1px #727d8e;
    }

        .mb-search-categry-select .inputGroup label:before {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            content: "";
            background-color: #4285f4;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

        .mb-search-categry-select .inputGroup label:after {
            width: 32px;
            height: 32px;
            content: "";
            border: 2px solid #d1d7dc;
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
            background-repeat: no-repeat;
            background-position: 2px 3px;
            border-radius: 50%;
            z-index: 2;
            position: absolute;
            right: 30px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            cursor: pointer;
            -webkit-transition: all 200ms ease-in;
            transition: all 200ms ease-in;
            opacity: 0;
        }

    .mb-search-categry-select .inputGroup input:checked ~ label {
        color: #fff;
        border: solid 1px #4285f4;
    }

        .mb-search-categry-select .inputGroup input:checked ~ label:before {
            -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
            transform: translate(-50%, -50%) scale3d(56, 56, 1);
            opacity: 1;
        }

        .mb-search-categry-select .inputGroup input:checked ~ label:after {
            background-color: #54e0c7;
            border-color: #54e0c7;
            opacity: 0
        }

    .mb-search-categry-select .inputGroup input {
        width: 32px;
        height: 32px;
        -webkit-box-ordinal-group: 2;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }

.mb-search-categry-select label {
    color: #4285f4;
}

.mb-search-categry-select .form {
    font-weight: 600;
}

/* --------------------------------------------------------------------------------------------------------------------------- */

.mb-search-input-cont form {
    overflow: hidden;
}

    .mb-search-input-cont form input {
        width: 100%;
        float: left;
        padding: 15px 20px;
        text-align: left;
        font-family: inherit;
        font-size: 16px;
        outline: 0;
    }

        .mb-search-input-cont form input[type=text] {
            margin-bottom: 15px;
            border: 1px solid #bec1c5;
            -webkit-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

        .mb-search-input-cont form input[type=text] {
            margin-bottom: 0px;
            width: 65%;
            border-right-width: 0px;
        }

            .mb-search-input-cont form input[type=text]:focus {
                border-color: #3e4146;
            }

        .mb-search-input-cont form input[type=submit] {
            background-color: #4285f4;
            color: #ffffff;
            border: 1px solid #4285f4;
            -webkit-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            text-align: center;
            border-radius: 6px;
        }

        .mb-search-input-cont form input[type=submit] {
            width: 35%;
        }

            .mb-search-input-cont form input[type=submit]:hover {
                cursor: pointer;
                background-color: #727d8e;
                border-color: #727d8e;
            }

.mb-search-input-cont label {
    display: block;
    color: #4285f4;
    font-size: 14px;
}

.mb-search-list {
    padding: 30px 10px 30px 10px;
    border: solid 1px #bec1c5;
    border-radius: 6px;
}

    .mb-search-list h3 {
        font-size: 16px;
        color: #4285f4;
        margin: 0px;
    }

    .mb-search-list li {
        margin-bottom: 5px;
    }

        .mb-search-list li a {
            font-size: 12px;
            color: #727d8e;
        }

            .mb-search-list li a:hover {
                color: #4285f4;
                font-weight: 600;
            }

            .mb-search-list li a.active {
                color: #4285f4 !important;
                font-weight: 600;
            }


/* ------------------------------------------------------------------------ Speakers Css ------------------------------------------------------------ */
.mb-speakers-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.mb-speakers-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.mb-speakers-list h4 {
    font-size: 14px;
    color: #858585;
    margin: 0px;
}

#mb-speakers-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    background: #d9d9d9;
    padding: 20px;
    font-weight: 400;
}

    #mb-speakers-cont h2 img {
        float: right;
    }

.mb-speakers-lis-btn {
    border-bottom: solid 1px #d4dad8;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .mb-speakers-lis-btn:hover {
        background: #f2f2f2;
    }

.bk-1 {
    border-left: solid 6px #fea500;
}

.bk-2 {
    border-left: solid 6px #0000fe;
}

.bk-3 {
    border-left: solid 6px #d4dad8;
}

/* ------------------------------------------------------------------------ agenda Css ------------------------------------------------------------ */
.mb-agenda-list a {
    position: relative;
}

    .mb-agenda-list a:after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.mb-agenda-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.mb-agenda-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.mb-agenda-list h4 {
    font-size: 13px;
    color: #858585;
    margin: 0px;
}

    .mb-agenda-list h4 span {
        width: 49%;
        display: inline-block;
    }

#mb-agenda-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    padding: 20px;
    font-weight: 400;
}

.mb-agenda-dates {
    background: #17b5e4;
    color: #fff !important;
}

#mb-agenda-cont h2 img {
    float: right;
}

.mb-agenda-lis-btn {
    border-bottom: solid 1px #d4dad8;
    border-top: solid 1px #d4dad8;
    display: inline-block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .mb-agenda-lis-btn:hover {
        background: #f2f2f2;
    }

.mb-agenda-clock {
    background: #f0f0f0;
    margin: 0px;
    font-size: 16px;
    color: #545454;
    padding: 8px 20px 8px 20px;
}

.mb-agenda-list a {
    display: flex;
    width: 100%;
}

.mb-color1 {
    color: #17b5e4 !important;
}

.mb-agenda-buttons a {
    border: solid 1px #16b5e6;
    padding: 10px 0px 10px 0px;
    text-align: center;
    color: #16b5e6;
    font-size: 14px;
    display: block;
    width: 100%;
}

    .mb-agenda-buttons a i {
        font-size: 17px;
    }

    .mb-agenda-buttons a.active {
        color: #fff !important;
        background: #16b5e6;
    }

.mb-agenda-carousel ul li {
    display: inline-block;
    width: 100px;
    margin-right: 5px;
}

    .mb-agenda-carousel ul li a {
        display: block;
        width: 100%;
    }

    .mb-agenda-carousel ul li > span {
        display: inline-block;
        text-align: center;
        width: 50%;
        float: left;
    }

.mb-agenda-carousel-date1 {
    background: #6a9ff7;
    color: #fff;
    font-size: 20px;
    padding: 7px 0px 7px 0px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.mb-agenda-carousel-date2 .month {
    color: #bebebe;
}

.mb-agenda-carousel-date2 {
    background: #f1f1f1;
    color: #717c8e;
    font-size: 13px;
    padding: 3px 0px 2px 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    font-weight: 400;
}

    .mb-agenda-carousel-date2 > span {
        display: block;
    }

/* ------------------------------------------------------------------------ agenda details Css ------------------------------------------------------------ */
.mb-agenda-details-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.mb-agenda-details-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.mb-space-title {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.mb-agenda-details-rate p {
    font-size: 16px;
    color: #000;
    margin: 0px;
}

.mb-agenda-details-list h4 {
    font-size: 14px;
    color: #858585;
    margin: 0px;
}

#mb-agenda-details-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    background: #d9d9d9;
    padding: 20px;
    font-weight: 400;
}

    #mb-agenda-details-cont h2 img {
        float: right;
    }

.mb-agenda-details-lis-btn {
    border-bottom: solid 1px #d4dad8;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background: #fff;
}

    .mb-agenda-details-lis-btn:hover {
        background: #f2f2f2;
    }

    .mb-agenda-details-lis-btn::after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.mb-svg-icon-cont a {
    display: inline-block;
    margin-right: 15px;
}

.mb-svg-icon1 img {
    width: 28px;
}

.mb-svg-icon2 img {
    height: 28px;
}

.mb-agenda-details-clock a {
    font-size: 16px;
    color: #000;
}

    .mb-agenda-details-clock a i {
        color: #505050;
        font-size: 22px;
    }

.rate .star {
    font-family: Wingdings;
    font-size: 50px;
    color: #ccc;
    display: inline-block;
}

    .rate .star:first-child:before {
        color: transparent;
        display: none;
    }

    .rate .star::before {
        font-family: Wingdings;
        font-size: 50px;
        content: "\2605";
    }

.result {
    margin-top: 30px;
    font-size: 30px;
}

.mb-agenda-details-rate {
    background: #f2f2f2;
    border-top: solid 1px #d4dad8;
}

    .mb-agenda-details-rate h3 {
        font-size: 16px;
        color: #000;
    }

.mb-agenda-details-all {
    background: #f2f2f2;
}

.mb-tags li {
    display: inline-block;
    margin-left: 10px;
}

    .mb-tags li a {
        display: inline-block;
        padding: 10px 30px 10px 30px;
        background: #17b5e4;
        color: #fff;
        border-radius: 8px;
    }

        .mb-tags li a:hover {
            background: #000;
        }

/* ------------------------------------------------------------------------ speaker details Css ------------------------------------------------------------ */
.mb-speakers-imgs {
    background: #17b5e4;
}

    .mb-speakers-imgs img {
        border-radius: 50%;
    }

    .mb-speakers-imgs h3 {
        font-size: 16px;
        color: #fff;
    }

    .mb-speakers-imgs h4 {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
    }

.mb-speakers-mail {
    padding: 10px;
    background: #d9d9d9;
}

    .mb-speakers-mail a {
        font-size: 23px;
        color: #4c4c4c;
    }

        .mb-speakers-mail a:hover {
            color: #17b5e4;
        }

.mb-speakers-details-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.mb-speakers-details-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
    font-weight: 400;
}

.mb-speakers-details-rate p {
    font-size: 16px;
    color: #000;
    margin: 0px;
}

.mb-speakers-details-list h4 {
    font-size: 14px;
    color: #858585;
    margin: 0px;
}

    .mb-speakers-details-list h4 span.color1 {
        width: 25%;
    }

    .mb-speakers-details-list h4 span {
        width: 73%;
        display: inline-block;
        font-size: 12px;
    }

#mb-speakers-details-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    background: #d9d9d9;
    padding: 20px;
    font-weight: 400;
}

    #mb-speakers-details-cont h2 img {
        float: right;
    }

.mb-speakers-details-lis-btn {
    border-bottom: solid 1px #d4dad8;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background: #fff;
}

    .mb-speakers-details-lis-btn:hover {
        background: #f2f2f2;
    }

    .mb-speakers-details-lis-btn::after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.mb-speakers-details-clock a {
    font-size: 16px;
    color: #000;
}

    .mb-speakers-details-clock a i {
        color: #505050;
        font-size: 22px;
    }


.mb-speakers-details-rate {
    background: #f2f2f2;
    border-top: solid 1px #d4dad8;
}

    .mb-speakers-details-rate h3 {
        font-size: 16px;
        color: #000;
    }

.mb-speakers-details-all {
    background: #f2f2f2;
}

.mb-speakers-details-dates {
    background: #d9d9d9;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px;
    font-weight: 800;
    color: #494949;
}

/* ------------------------------------------------------------------------ sponsors Css ------------------------------------------------------------ */
#mb-sponsors-cont img {
    border: solid 1px #d4d4d4;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1) !important;
    width: 100%;
}

/* ------------------------------------------------------------------------ sponsors details Css ------------------------------------------------------------ */

.mb-sponsors-details-header h2 {
    font-size: 20px;
    font-weight: 400;
    color: #4285f4;
}

.mb-sponsors-details-header img {
    width: 100%;
}

.mb-sponsors-details-header a {
    font-weight: 600;
    font-size: 16px;
}

.mb-sponsors-details-btn {
    font-size: 14px;
    background: #19e678;
    padding: 10px 40px 10px 40px;
    color: #fff;
    border-radius: 50px;
}

.mb-sponsors-details-about {
    font-size: 14px;
    color: #2a2a2a;
}

    .mb-sponsors-details-about h2 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
    }

.mb-sponsors-details-tags a {
    font-size: 14px;
    background: #fff;
    padding: 8px 25px 8px 25px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: block;
}

    .mb-sponsors-details-tags a:hover {
        background: #19e678;
        color: #fff;
        border-color: #19e678;
    }

.mb-sponsors-details-tags li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

/* ------------------------------------------------------------------------ Sales Team Css ------------------------------------------------------------ */
#mb-sales-cont {
}

    #mb-sales-cont h3 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #mb-sales-cont h4 {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
        font-weight: normal;
    }

    #mb-sales-cont img {
        border-radius: 50%;
        box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .2) !important;
    }

.mb-sales-contact {
    font-size: 14px;
    background: #fff;
    padding: 7px 40px 7px 40px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: inline-block;
}

    .mb-sales-contact:hover {
        background: #19e678;
        color: #fff !important;
        border-color: #19e678;
    }

/* ------------------------------------------------------------------------ Sales Team Detail Css ------------------------------------------------------------ */
#mb-sales-details-cont {
}

    #mb-sales-details-cont h3 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #mb-sales-details-cont h4 {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
        font-weight: normal;
    }

    #mb-sales-details-cont p {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
    }

        #mb-sales-details-cont p a {
            font-size: 16px;
            color: #727d8e;
            margin: 0px;
        }

            #mb-sales-details-cont p a:hover {
                color: #4285f4;
            }

    #mb-sales-details-cont .sales-contact {
        min-width: 160px;
        text-align: center;
    }

    #mb-sales-details-cont img {
        border-radius: 50%;
        box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .2) !important;
    }

/* ------------------------------------------------------------------------ Company Css ------------------------------------------------------------ */
#mb-company-header img {
    width: 100%;
}

/* ------------------------------------------------------------------------ news Css ------------------------------------------------------------ */
#mb-news-cont img {
    width: 100%;
}

#mb-news-cont h3 {
    font-size: 16px;
    color: #4285f4;
    line-height: 1.4;
}

#mb-news-cont p {
    font-size: 13px;
    color: #727d8e;
}

/* ------------------------------------------------------------------------ auditorium Css ------------------------------------------------------------ */
#mb-auditorium-cont ul {
    text-align: center;
}

    #mb-auditorium-cont ul li {
        display: inline-block;
        margin-left: 5px;
        margin-right: 5px;
    }

        #mb-auditorium-cont ul li a {
            font-size: 14px;
            background: #fff;
            padding: 7px 40px 7px 40px;
            color: #4285f4;
            border-radius: 50px;
            border: solid 1px #4285f4;
            display: inline-block;
        }

            #mb-auditorium-cont ul li a:hover {
                background: #4285f4;
                color: #fff !important;
                border-color: #4285f4;
            }

/* ------------------------------------------------------------------------ presentation Css ------------------------------------------------------------ */
.mb-presentation-box a {
    display: inline-block;
    width: 100%;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2) !important;
    padding: 15px 30px 15px 30px;
    min-height: 250px;
}

.mb-presentation-box h3 {
    font-weight: normal;
    font-size: 20px;
    color: #4285f4
}

.mb-presentation-box h4 {
    font-weight: normal;
    font-size: 50px;
    color: #4285f4
}

.mb-box-extra {
    background: #c0d7fc;
    color: #fff;
}

    .mb-box-extra h3, .box-extra h4 {
        background: #c0d7fc;
        color: #fff;
    }

/* ------------------------------------------------------------------------ videos Css ------------------------------------------------------------ */

.mb-videos-box {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2) !important;
}

    .mb-videos-box p {
        padding: 15px 30px 15px 30px;
        font-size: 13px;
        color: #4285f4;
        line-height: 1.4;
    }


/* ------------------------------------------------------------------------ IBM Css ------------------------------------------------------------ */
.mb-ibm-details-tags a {
    font-size: 14px;
    background: #fff;
    padding: 8px 25px 8px 25px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: block;
}

    .mb-ibm-details-tags a:hover {
        background: #19e678;
        color: #fff;
        border-color: #19e678;
    }

.mb-ibm-details-tags li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    min-width: 200px;
    text-align: center;
}

.mb-home-back-btn {
    position: absolute;
    bottom: -44px;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .3) !important;
    border-radius: 50%;
}

/* ------------------------------------------------------------------------ Notification Css ------------------------------------------------------------ */
#mb-notification-cont h3 {
    font-weight: normal;
    font-size: 20px;
    color: #4285f4
}

#mb-notification-cont li {
    margin-bottom: 10px;
}

    #mb-notification-cont li a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        width: 100%;
        padding: 10px;
    }

        #mb-notification-cont li a:hover {
            background: #4285f4;
        }

    #mb-notification-cont li:nth-child(odd) a {
        background: #bfbfbf !important;
    }

    #mb-notification-cont li:nth-child(even) a {
        background: #d5d5d5 !important;
    }

.mb-line-bottom {
    padding-bottom: 20px;
    border-bottom: solid 1px #eee;
}
/* ----------------------------------------------------------------------------------------- Mobile Css ----------------------------------------------------------------------- */
/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */
/* 2 Navigation */
/* 2.1 Navbar Top / .navbar-top */
.navbar-top {
    position: relative;
    z-index: 10;
    padding: 0px;
    margin-bottom: 0px;
}

.menu-visible .bar3 {
    display: none !important;
}

.menu-visible .icon-menu-a .bar1, .menu-visible .icon-menu-a .bar2 {
    background: #fff !important;
}

@media screen and (min-width: 992px) {
    .navbar-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 32px 40px;
        padding-bottom: 0;
    }
}

.navbar-top .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

    .navbar-top .navbar-brand img {
        height: 40px;
    }

@media screen and (min-width: 992px) {
    .navbar-top .navbar-brand img {
        height: 48px;
    }
}

.navbar-top .navbar-brand .logo {
    margin-right: 16px;
}

.navbar-top .navbar-brand .text {
    font-size: 1rem;
}

@media screen and (min-width: 992px) {
    .navbar-top .navbar-brand .text {
        font-size: 1.25rem;
    }
}

.navbar-top .navbar-brand .text .line {
    display: block;
    line-height: 1;
}

.navbar-top .menu-toggler {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* 2.2 Sidebar navigation / .navbar-sidebar */
.navbar-sidebar {
    position: absolute;
    z-index: 10;
    display: none;
    -webkit-transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
    transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

    .navbar-sidebar .navbar-group {
        transition: 0.6s;
        transition-delay: 0.6s;
    }

    .navbar-sidebar:after {
        position: absolute;
        content: "";
        width: 40px;
        height: 2px;
        top: 50%;
        right: 0;
        background: currentColor;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0.25;
    }

@media screen and (min-width: 768px) {
    .navbar-sidebar {
        position: absolute;
    }
}

@media screen and (min-width: 992px) {
    .navbar-sidebar {
        position: absolute;
        top: 32px;
        left: 40px;
        padding: 0;
        display: inline-block;
        padding-right: 40px;
        margin-top: 64px;
    }
}

@media screen and (min-width: 1200px) {
    .navbar-sidebar {
        position: fixed;
    }
}

.navbar-sidebar .navbar-nav {
    display: flex;
    flex-direction: row;
}

.navbar-sidebar .nav-item,
.navbar-sidebar a {
    color: currentColor;
    padding: 0 8px;
    line-height: 1;
    position: relative;
    transition: 0.3s;
}

    .navbar-sidebar .nav-item:before,
    .navbar-sidebar a:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 0%;
        border-bottom: 2px solid currentColor;
        transition: 0.3s;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .navbar-sidebar .nav-item:hover,
    .navbar-sidebar a:hover {
        opacity: 0.5;
        text-decoration: none;
    }

        .navbar-sidebar .nav-item:hover::before,
        .navbar-sidebar a:hover::before {
            width: 100%;
        }

.loading-anim .navbar-sidebar .navbar-group {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-64px);
    transform: translateX(-64px);
}

/* 2.3 Fullscreen navigation menu / .navfull-menu */
.navfull-menu {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5,130,212, .85);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 0.6s;
}

    .navfull-menu.menu-visible {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        visibility: visible;
    }

    .navfull-menu .nav-menu {
        /* font-size: 3rem; */
    }

@media screen and (min-width: 992px) {
    .navfull-menu .nav-menu {
        font-size: 2rem;
        line-height: 1.4;
    }
}

.navfull-menu .nav-menu a:hover {
    color: #000 !important;
}

.navfull-menu .nav-menu a {
    /* color: currentColor;
      -webkit-text-stroke: 1px #ffffff; */
    color: #fff;
    transition: 0.3s;
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 1.6;
}

    .navfull-menu .nav-menu a:hover {
        text-decoration: none;
        color: #ffffff;
    }

.btn {
    font-size: 1.2rem;
}

.btn-line-a {
    color: currentColor;
    border: none;
    background: none;
    padding: 0.75em 0;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

    .btn-line-a .icon {
        display: inline-flex;
    }

        .btn-line-a .icon ~ .text {
            margin-left: 1em;
        }

    .btn-line-a .text ~ .icon {
        margin-left: 1em;
    }

    .btn-line-a:active, .btn-line-a:hover {
        color: currentColor;
        background: none;
        box-shadow: none;
        opacity: 0.7;
    }

        .btn-line-a:active::before, .btn-line-a:hover::before {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

        .btn-line-a:active::after, .btn-line-a:hover::after {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

    .btn-line-a.btn-primary {
        color: #0094D8;
    }

    .btn-line-a.btn-secondary {
        color: #3f4b62;
    }

    .btn-line-a.btn-white {
        color: #ffffff;
    }

    .btn-line-a.btn-black {
        color: #1d1d1d;
    }

    .btn-line-a.btn-gray {
        color: #8b8b8b;
    }

    .btn-line-a.btn-blue {
        color: #0896e6;
    }

.btn-line-b {
    border: none;
    background: none;
    padding: 0.75em 0;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

    .btn-line-b .icon {
        display: inline-flex;
    }

        .btn-line-b .icon ~ .text {
            margin-left: 1em;
        }

    .btn-line-b .text ~ .icon {
        margin-left: 1em;
    }

    .btn-line-b:active, .btn-line-b:hover {
        color: #0094D8;
        background: none;
        box-shadow: none;
        opacity: 0.7;
    }

        .btn-line-b:active::before, .btn-line-b:hover::before {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

        .btn-line-b:active::after, .btn-line-b:hover::after {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            width: 1rem;
        }

    .btn-line-b.btn-primary {
        color: #0094D8;
    }

    .btn-line-b.btn-secondary {
        color: #3f4b62;
    }

    .btn-line-b.btn-white {
        color: #ffffff;
    }

    .btn-line-b.btn-black {
        color: #1d1d1d;
    }

    .btn-line-b.btn-gray {
        color: #8b8b8b;
    }

    .btn-line-b.btn-blue {
        color: #0896e6;
    }
/* Menu icon */
.icon-menu-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .icon-menu-a .bars {
        width: 38px;
        display: flex;
        flex-direction: column;
        position: relative;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }

        .icon-menu-a .bars.align-right {
            align-items: flex-end;
        }

    .icon-menu-a .bar1,
    .icon-menu-a .bar2,
    .icon-menu-a .bar3 {
        display: flex;
        height: 2px;
        background: #fff;
        transition: 0.3s;
        position: absolute;
        top: 50%;
    }

    .icon-menu-a .bar1 {
        width: 100%;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .icon-menu-a .bar2 {
        width: 100%;
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    .icon-menu-a .bar3 {
        width: 100%;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    .menu-visible .icon-menu-a .bar1,
    .icon-menu-a.menu-close .bar1 {
        width: 100%;
        -webkit-transform: rotate(45deg) scaleX(0.8);
        transform: rotate(45deg) scaleX(0.8);
        -webkit-transform-origin: center;
        transform-origin: center;
    }

    .menu-visible .icon-menu-a .bar2,
    .icon-menu-a.menu-close .bar2 {
        width: 100%;
        -webkit-transform: rotate(-45deg) scaleX(0.8);
        transform: rotate(-45deg) scaleX(0.8);
        -webkit-transform-origin: center;
        transform-origin: center;
    }

.live-btn {
    color: #19e678 !important;
    background: #fff;
    padding-left: 80px;
    padding-right: 80px;
    font-size: 16px !important;
    border-radius: 30px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    display: inline-block;
}

    .live-btn:hover {
        border: none !important;
        background: #19e678 !important;
        color: #fff !important;
    }
/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */


.boxes-icon {
    color: #727d8e;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .boxes-icon h4 {
        color: #727d8e;
        font-weight: 400;
        font-size: 16px;
        margin-top: 5px !important;
    }

    .boxes-icon:hover h4 {
        color: #4285f4;
    }

    .boxes-icon img {
        width: 70px;
    }

.icon-boxes {
    border-right: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
}

    .icon-boxes:nth-child(3) {
        border-right: none !important;
    }

    .icon-boxes:nth-child(6) {
        border-right: none !important;
    }

    .icon-boxes:nth-child(9) {
        border-right: none !important;
    }

    .icon-boxes:nth-child(12) {
        border-right: none !important;
    }


.live-btn2 {
    color: #fff !important;
    background: #3ce043;
    font-size: 16px !important;
    border-radius: 30px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    display: inline-block;
    width: 80%;
}

    .live-btn2:hover {
        border: none !important;
        background: #727d8e !important;
        color: #fff !important;
    }

.bs-chatbot-fab__nJAOV {
    opacity: 0;
    position: relative;
    right: -100px;
}

    .bs-chatbot-fab__nJAOV:hover {
        opacity: 0;
    }

.hall-boxes-icon {
    color: #727d8e;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .hall-boxes-icon h4 {
        color: #727d8e;
        font-weight: 400;
        font-size: 16px;
        margin-top: 5px !important;
    }

    .hall-boxes-icon:hover h4 {
        color: #4285f4;
    }

    .hall-boxes-icon img {
        width: 80px;
    }

#header {
    border-bottom: solid 10px #4285f4;
}

#icons-cont h3 {
    color: #4285f4;
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
    line-height: 1.2;
}

#icons-cont h3 {
    color: #4285f4;
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
    line-height: 1.2;
}

#inner-headers {
    background: #4285f4;
}

    #inner-headers h3 {
        color: #fff;
        font-size: 22px;
        margin: 0px;
        font-weight: 400;
        line-height: 1.4;
    }

.home-back-btn {
    position: absolute;
    bottom: -44px;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .3) !important;
    border-radius: 50%;
}

/* ------------------------------------------------------------------------ Exhibition Css ------------------------------------------------------------ */
.search-categry-select .inputGroup {
    background-color: #fff;
    display: inline-block;
    margin: 0px;
    position: relative;
    margin-left: 2px;
    margin-right: 2px;
}

    .search-categry-select .inputGroup label {
        padding: 7px 20px;
        width: 100%;
        display: block;
        text-align: left;
        color: #3c454c;
        cursor: pointer;
        position: relative;
        z-index: 2;
        -webkit-transition: color 200ms ease-in;
        transition: color 200ms ease-in;
        overflow: hidden;
        border-radius: 30px;
        font-size: 16px !important;
        font-weight: 600 !important;
        border: solid 1px #727d8e;
    }

        .search-categry-select .inputGroup label:before {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            content: "";
            background-color: #4285f4;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

        .search-categry-select .inputGroup label:after {
            width: 32px;
            height: 32px;
            content: "";
            border: 2px solid #d1d7dc;
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
            background-repeat: no-repeat;
            background-position: 2px 3px;
            border-radius: 50%;
            z-index: 2;
            position: absolute;
            right: 30px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            cursor: pointer;
            -webkit-transition: all 200ms ease-in;
            transition: all 200ms ease-in;
            opacity: 0;
        }

    .search-categry-select .inputGroup input:checked ~ label {
        color: #fff;
        border: solid 1px #4285f4;
    }

        .search-categry-select .inputGroup input:checked ~ label:before {
            -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
            transform: translate(-50%, -50%) scale3d(56, 56, 1);
            opacity: 1;
        }

        .search-categry-select .inputGroup input:checked ~ label:after {
            background-color: #54e0c7;
            border-color: #54e0c7;
            opacity: 0
        }

    .search-categry-select .inputGroup input {
        width: 32px;
        height: 32px;
        -webkit-box-ordinal-group: 2;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }

.search-categry-select label {
    color: #4285f4;
}

.search-categry-select .form {
    font-weight: 600;
}

/* --------------------------------------------------------------------------------------------------------------------------- */

.search-input-cont form {
    overflow: hidden;
}

    .search-input-cont form input {
        width: 100%;
        float: left;
        padding: 15px 20px;
        text-align: left;
        font-family: inherit;
        font-size: 16px;
        outline: 0;
    }

        .search-input-cont form input[type=text] {
            margin-bottom: 15px;
            border: 1px solid #bec1c5;
            -webkit-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

        .search-input-cont form input[type=text] {
            margin-bottom: 0px;
            width: 65%;
            border-right-width: 0px;
        }

            .search-input-cont form input[type=text]:focus {
                border-color: #3e4146;
            }

        .search-input-cont form input[type=submit] {
            background-color: #4285f4;
            color: #ffffff;
            border: 1px solid #4285f4;
            -webkit-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
            text-align: center;
            border-radius: 6px;
        }

        .search-input-cont form input[type=submit] {
            width: 35%;
        }

            .search-input-cont form input[type=submit]:hover {
                cursor: pointer;
                background-color: #727d8e;
                border-color: #727d8e;
            }

.search-input-cont label {
    display: block;
    color: #4285f4;
    font-size: 14px;
}

.search-list {
    padding: 30px 10px 30px 10px;
    border: solid 1px #bec1c5;
    border-radius: 6px;
}

    .search-list h3 {
        font-size: 16px;
        color: #4285f4;
        margin: 0px;
    }

    .search-list li {
        margin-bottom: 5px;
    }

        .search-list li a {
            font-size: 12px;
            color: #727d8e;
        }

            .search-list li a:hover {
                color: #4285f4;
                font-weight: 600;
            }

            .search-list li a.active {
                color: #4285f4 !important;
                font-weight: 600;
            }

.search-categry-select .inputGroup input:checked ~ label {
    color: #fff;
    border: solid 1px #4285f4;
}

.search-input-cont label {
    display: block;
    color: #4285f4;
    font-size: 14px;
}

/* ------------------------------------------------------------------------ agenda Css ------------------------------------------------------------ */
.agenda-list a {
    position: relative;
}

    .agenda-list a:after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.agenda-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.agenda-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.agenda-list h4 {
    font-size: 13px;
    color: #858585;
    margin: 0px;
}

    .agenda-list h4 span {
        width: 49%;
        display: inline-block;
    }

#agenda-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    padding: 20px;
    font-weight: 400;
}

.agenda-dates {
    background: #17b5e4;
    color: #fff !important;
}

#agenda-cont h2 img {
    float: right;
}

.agenda-lis-btn {
    border-bottom: solid 1px #d4dad8;
    border-top: solid 1px #d4dad8;
    display: inline-block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .agenda-lis-btn:hover {
        background: #f2f2f2;
    }

.agenda-clock {
    background: #f0f0f0;
    margin: 0px;
    font-size: 16px;
    color: #545454;
    padding: 8px 20px 8px 20px;
}

.agenda-list a {
    display: flex;
    width: 100%;
}

.color1 {
    color: #17b5e4 !important;
}

.agenda-buttons a {
    border: solid 1px #16b5e6;
    padding: 10px 0px 10px 0px;
    text-align: center;
    color: #16b5e6;
    font-size: 14px;
    display: block;
    width: 100%;
}

    .agenda-buttons a i {
        font-size: 17px;
    }

    .agenda-buttons a.active {
        color: #fff !important;
        background: #16b5e6;
    }

.agenda-carousel ul li {
    display: inline-block;
    width: 100px;
    margin-right: 5px;
}

    .agenda-carousel ul li a {
        display: block;
        width: 100%;
    }

    .agenda-carousel ul li > span {
        display: inline-block;
        text-align: center;
        width: 50%;
        float: left;
    }

.agenda-carousel-date1 {
    background: #6a9ff7;
    color: #fff;
    font-size: 20px;
    padding: 7px 0px 7px 0px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.agenda-carousel-date2 .month {
    color: #bebebe;
}

.agenda-carousel-date2 {
    background: #f1f1f1;
    color: #717c8e;
    font-size: 13px;
    padding: 3px 0px 2px 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    font-weight: 400;
}

    .agenda-carousel-date2 > span {
        display: block;
    }

/* ------------------------------------------------------------------------ agenda details Css ------------------------------------------------------------ */
.agenda-details-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.agenda-details-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.space-title {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
}

.agenda-details-rate p {
    font-size: 16px;
    color: #000;
    margin: 0px;
}

.agenda-details-list h4 {
    font-size: 14px;
    color: #858585;
    margin: 0px;
}

#agenda-details-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    background: #d9d9d9;
    padding: 20px;
    font-weight: 400;
}

    #agenda-details-cont h2 img {
        float: right;
    }

.agenda-details-lis-btn {
    border-bottom: solid 1px #d4dad8;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background: #fff;
}

    .agenda-details-lis-btn:hover {
        background: #f2f2f2;
    }

    .agenda-details-lis-btn::after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.svg-icon-cont a {
    display: inline-block;
    margin-right: 15px;
}

.svg-icon1 img {
    width: 28px;
}

.svg-icon2 img {
    height: 28px;
}

.agenda-details-clock a {
    font-size: 16px;
    color: #000;
}

    .agenda-details-clock a i {
        color: #505050;
        font-size: 22px;
    }

.rate .star {
    font-family: Wingdings;
    font-size: 50px;
    color: #ccc;
    display: inline-block;
}

    .rate .star:first-child:before {
        color: transparent;
        display: none;
    }

    .rate .star::before {
        font-family: Wingdings;
        font-size: 50px;
        content: "\2605";
    }

.result {
    margin-top: 30px;
    font-size: 30px;
}

.agenda-details-rate {
    background: #f2f2f2;
    border-top: solid 1px #d4dad8;
}

    .agenda-details-rate h3 {
        font-size: 16px;
        color: #000;
    }

.agenda-details-all {
    background: #f2f2f2;
}

.tags li {
    display: inline-block;
    margin-left: 10px;
}

    .tags li a {
        display: inline-block;
        padding: 10px 30px 10px 30px;
        background: #17b5e4;
        color: #fff;
        border-radius: 8px;
    }

        .tags li a:hover {
            background: #000;
        }


/* ----------------------------------------------------------------------------------------- User Css ----------------------------------------------------------------------- */
.user-ent-cont {
}

    .user-ent-cont .dropdown-menu {
        min-width: 270px;
    }

.nav-user img {
    height: 36px;
    width: 36px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.up-icon {
    display: inline-block;
    margin-left: 5px;
    width: 16px !important;
    height: 9px !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.logout {
    color: red;
}

.profile-details {
    border-bottom: solid 1px #cecece;
}

    .profile-details img {
        width: 80% !important;
        height: auto !important;
        box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .4) !important;
        margin: 10px 0;
    }

    .profile-details h3 {
        font-size: 16px !important;
        color: #363636 !important;
    }

    .profile-details a {
        font-size: 14px;
        color: rgba(5,130,212, 1);
    }

.notifications .topbar-icon {
    font-size: 25px;
    color: #fff;
}

.notifications {
    margin-top: 15px;
}

.notification-list .noti-icon-badge {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: -12px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    padding: 1px 3px 1px;
    font-size: 9px !important;
}

.badge {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 11px !important;
}

.badge {
    line-height: 10px;
}

.badge-danger {
    color: #363636;
    background-color: #fcee20;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto;
}

.dropdown-lg {
    width: 320px;
}

.dropdown-menu {
    -webkit-box-shadow: 0 3px 12px #d6e4f1;
    box-shadow: 0 3px 12px #d6e4f1;
    margin: 0;
}

.font-15 {
    font-size: 15px !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.m-0 {
    margin: 0 !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.border-bottom {
    border-bottom: 1px solid #eaf0f7 !important;
}

.dropdown-item-text {
    display: block;
    padding: 6px 24px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #1d2c48;
}

.badge {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 11px !important;
}

.badge {
    line-height: 10px;
}

.badge-primary {
    color: #363636;
    background-color: #fcee20;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    padding: .46em .6em;
    padding-right: 0.6em;
    padding-left: 0.6em;
    font-size: 75%;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}

.notification-list .notification-menu {
    margin-left: 0;
}

[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-height-auto-observer-wrapper {
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    direction: inherit;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    max-width: 100%;
    max-height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    padding-top: 6px;
    padding-bottom: 6px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.text-muted {
    color: #a4abc5 !important;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}

.float-right {
    float: right !important;
}

small, .small {
    font-size: 86%;
    font-weight: 400;
}

.media {
    font-family: "Roboto",sans-serif;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.text-dark {
    color: #1d2c48 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.text-primary {
    color: #1761fd !important;
}

.text-center {
    text-align: center;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 24px;
    clear: both;
    font-weight: 400;
    color: #1d2c48;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
}

.profile-detail-top {
    background: #f2f2f2;
    padding: 30px;
}

    .profile-detail-top h1 {
        font-size: 25px;
        color: #000;
        font-weight: 500;
    }

.prifile-pic-big img {
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .4) !important;
    border-radius: 50%;
    position: absolute;
}


.profile-detail-bottom {
    background: #fff;
}

    .profile-detail-bottom .nav-tabs {
        background: #cbcccd;
    }

        .profile-detail-bottom .nav-tabs > li {
            float: none;
            display: inline-block;
        }

            .profile-detail-bottom .nav-tabs > li > a {
                font-size: 16px;
                color: #347fd4;
                font-weight: 500;
            }

            .profile-detail-bottom .nav-tabs > li.active > a {
                background: transparent;
                border: none;
                border-bottom: solid 3px #347fd4;
            }

    .profile-detail-bottom .nav > li > a {
        padding: 10px;
    }

    .profile-detail-bottom .tab-content h3 {
        font-size: 25px;
        color: #000;
        font-weight: 500;
    }

.profile-btns {
    text-align: center;
    margin-top: 20px;
}

    .profile-btns li {
        display: inline-block;
        margin-left: 7px;
        margin-right: 7px;
    }

        .profile-btns li a:hover {
            background: #347fd4;
            color: #fff;
        }

        .profile-btns li a {
            display: inline-block;
            font-size: 16px;
            border: solid 1px #347fd4;
            border-radius: 30px;
            color: #347fd4;
            padding: 10px 50px 10px 50px;
        }

.personel-details-text {
}

    .personel-details-text li {
        font-size: 18px;
        color: #000;
        padding: 20px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .personel-details-text li a {
            color: #b6b6b6;
            text-decoration: underline;
            float: right;
        }

        .personel-details-text li:hover {
            color: #317cc9;
        }

            .personel-details-text li:hover a {
                color: #317cc9;
            }

        .personel-details-text li.odd {
            background: #f6f6f6;
        }

.inbox-boxs {
    display: inline-block;
    width: 100%;
}

    .inbox-boxs a {
        font-size: 90px;
        color: #317cc9;
        background: #f6f6f6;
        text-align: center;
        display: block;
    }

        .inbox-boxs a:hover {
            color: #f6f6f6;
            background: #317cc9;
        }

.filter-btn {
    padding: 10px 30px 10px 30px;
    color: #317cc9;
    border: solid 2px #b6b6b6;
    border-radius: 40px;
    font-size: 17px;
}

.filter-box .dropdown-menu li {
    margin-bottom: 0px;
}

.filter-box h4 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.participants-search {
    background: #cbcccd;
    padding: 20px;
}

    .participants-search input {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

.search-btn {
    font-size: 18px;
    background: #367ed2;
    text-align: center;
    color: #fff;
    line-height: 48px;
    display: inline-block;
    width: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.participants-boxes-cont {
    padding: 15px;
    border: solid 2px #e9ebeb;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .participants-boxes-cont:hover {
        border-color: #347fd4;
    }

.participants-boxes-img img {
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .4) !important;
    border-radius: 50%;
}

.participants-boxes-cont h3 {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 8px;
    height: 30px;
    overflow: hidden;
}

.participants-boxes-cont p {
    font-size: 12px;
    color: #337dd0;
    margin: 0px;
    line-height: 1.2;
    height: 50px;
    overflow: hidden;
}

.participants-boxes-cont a:hover {
    background: #fff;
    color: #347fd4;
}

.participants-boxes-cont a {
    display: inline-block;
    font-size: 16px;
    border: solid 1px #347fd4;
    border-radius: 30px;
    color: #fff;
    padding: 5px 40px 5px 40px;
    background: #347fd4;
}

.see-more-btn:hover {
    background: #fff;
    color: #347fd4;
}

.see-more-btn {
    display: inline-block;
    font-size: 16px;
    border: solid 1px #347fd4;
    border-radius: 30px;
    color: #fff;
    padding: 15px 80px 15px 80px;
    background: #347fd4;
}

.flags img {
    width: auto;
    height: auto;
}

.participants-details-back a {
    font-size: 25px;
    color: #347fd4;
    font-weight: 400;
}

.participants-details {
    background: #f2f2f2;
}

.profile-detail-top h2 {
    font-size: 25px;
    color: #347fd4;
    font-weight: 400;
}

.profile-detail-top p {
    font-size: 25px;
    font-weight: 400;
}

.profile-detail-all-btn a:hover {
    background: #347fd4;
    color: #fff;
    font-size: 20px;
}

.profile-detail-all-btn a {
    display: inline-block;
    font-size: 20px;
    border: solid 1px #347fd4 !important;
    border-radius: 30px;
    color: #347fd4;
    padding: 15px 0px 15px 0px;
    background: #fff;
    width: 100%;
    text-align: center;
}

.profile-detail-bottom h4 {
    font-size: 20px;
    color: #777777;
    font-weight: 400;
    margin-top: 0px;
}

.meeting-form {
}

    .meeting-form .field.text, .meeting-form .field.dropdown {
        margin-bottom: 10px;
    }

    .meeting-form fieldset input, .meeting-form fieldset textarea {
        background: #f2f2f2 !important;
        color: #347fd4 !important;
    }

    .meeting-form fieldset label {
        font-size: 14px !important;
        color: #323232 !important;
        font-weight: 500 !important;
    }

.Actions input:hover {
    background: #fff;
    color: #347fd4;
    font-size: 20px;
}

.Actions input {
    display: inline-block;
    font-size: 20px;
    border: solid 1px #347fd4 !important;
    border-radius: 30px;
    color: #fff;
    padding: 15px 70px 15px 70px;
    background: #347fd4;
    text-align: center;
}

.profile2 {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.personel-details-accourdion {
}

    .personel-details-accourdion ul .inner {
        padding-left: 1em;
        overflow: hidden;
        display: none;
    }

        .personel-details-accourdion ul .inner.show {
            /*display: block;*/
        }

    .personel-details-accourdion ul li i {
        position: absolute;
        right: 25px;
        top: 20px;
    }

    .personel-details-accourdion ul li:hover span {
        background: #fff;
        color: #337fd4;
    }

    .personel-details-accourdion ul li span {
        position: absolute;
        top: 13px;
        right: 15px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        font-size: 18px;
        color: #fff;
        border-radius: 50%;
        background: #337fd4;
    }

    .personel-details-accourdion ul li {
        margin: 0.5em 0;
        position: relative;
    }

        .personel-details-accourdion ul li a {
            width: 100%;
            display: block;
            background: #f2f2f2;
            color: #337fd4;
            padding: 15px;
            font-size: 16px;
            transition: background 0.3s ease;
        }

            .personel-details-accourdion ul li a:hover {
                background: #337fd4;
                color: #fff;
            }

.personel-details-boxes {
}

.personel-details-boxes {
    padding: 15px;
    border: solid 2px #e9ebeb;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .personel-details-boxes:hover {
        border-color: #347fd4;
    }

.personel-details-boxes-img img {
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .4) !important;
    border-radius: 50%;
}

.personel-details-boxes h3 {
    font-size: 20px !important;
    color: #000;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 8px;
}

.personel-details-boxes p {
    font-size: 16px;
    color: #337dd0;
    margin: 0px;
    line-height: 1.2;
}

.personel-details-boxes a:hover {
    background: #347fd4;
    color: #fff;
}

.personel-details-boxes a {
    display: inline-block;
    font-size: 14px;
    border: solid 1px #347fd4;
    border-radius: 30px;
    color: #347fd4;
    padding: 5px 25px 5px 25px;
    background: #fff;
}

.profile-detail-bottom2 {
    background: #fff;
}

    .profile-detail-bottom2 .nav-tabs {
        border: none !important;
    }

        .profile-detail-bottom2 .nav-tabs > li {
            float: none !important;
        }

            .profile-detail-bottom2 .nav-tabs > li.active > a {
                border: 1px solid #347fd4 !important;
                color: #fff;
                font-weight: 600;
                background: #347fd4;
            }

.my-schedule-selected {
}

    .my-schedule-selected h3 {
        font-size: 20px;
        margin: 0px;
        background: #54626f;
        color: #fff;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

.my-schedule-selected-boxs {
    position: relative;
}

    .my-schedule-selected-boxs .profile-btns li a {
        padding: 10px 25px 10px 25px !important;
    }

    .my-schedule-selected-boxs .profile-btns {
        display: none;
    }

    .my-schedule-selected-boxs:hover .profile-btns {
        display: block;
    }

    .my-schedule-selected-boxs input[type="radio"]:checked + label {
        font-weight: bold;
    }

    .my-schedule-selected-boxs label {
        font-size: 16px !important;
        color: #347fd4 !important;
        line-height: 1.2;
        padding: 15px;
        background: #f6f6f6;
        display: inline-block;
        width: 100%;
        min-height: 76px;
    }

    .my-schedule-selected-boxs.odd label {
        background: #eeeeee !important;
    }

    .my-schedule-selected-boxs input {
        position: absolute;
        left: -10px;
        top: 27px;
    }

    .my-schedule-selected-boxs .liner label {
        line-height: 76px;
        padding: 0px !important
    }

.window {
    position: relative;
    display: block;
    box-shadow: 0 0 65px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: rgba(5,130,212, 1);
}

    .window .header {
        position: absolute;
        display: block;
        top: 61px;
        left: 0;
        height: 50px;
        width: 100%;
        background: rgba(5,130,212, 1);
        overflow: hidden;
        -webkit-transition: all 0.5s ease-out, background 1s ease-out;
        transition: all 0.5s ease-out, background 1s ease-out;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        z-index: 1;
    }

        .window .header .burger-container {
            position: relative;
            display: inline-block;
            height: 50px;
            width: 50px;
            cursor: pointer;
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
            transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

            .window .header .burger-container #burger {
                width: 18px;
                height: 8px;
                position: relative;
                display: block;
                margin: -4px auto 0;
                top: 50%;
            }

                .window .header .burger-container #burger .bar {
                    width: 100%;
                    height: 2px;
                    display: block;
                    position: relative;
                    background: #FFF;
                    -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                    -webkit-transition-delay: 0s;
                    transition-delay: 0s;
                }

                    .window .header .burger-container #burger .bar.topBar {
                        -webkit-transform: translateY(0px) rotate(0deg);
                        transform: translateY(0px) rotate(0deg);
                    }

                    .window .header .burger-container #burger .bar.btmBar {
                        -webkit-transform: translateY(6px) rotate(0deg);
                        transform: translateY(6px) rotate(0deg);
                    }

        .window .header .icon {
            display: inline-block;
            position: absolute;
            height: 100%;
            line-height: 50px;
            width: 50px;
            height: 50px;
            text-align: center;
            color: #FFF;
            font-size: 22px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

            .window .header .icon.icon-bag {
                right: 0;
                top: 0;
                left: auto;
                -webkit-transform: translateX(0px);
                transform: translateX(0px);
                -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                -webkit-transition-delay: 0.65s;
                transition-delay: 0.65s;
            }

        .window .header ul.menu {
            position: relative;
            display: block;
            padding: 0px 70px 0;
            list-style: none;
        }

            .window .header ul.menu li.menu-item {
                border-bottom: 1px solid #333;
                margin-top: 5px;
                -webkit-transform: scale(1.15) translateY(-30px);
                transform: scale(1.15) translateY(-30px);
                opacity: 0;
                -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
            }

                .window .header ul.menu li.menu-item:nth-child(1) {
                    -webkit-transition-delay: 0.49s;
                    transition-delay: 0.49s;
                }

                .window .header ul.menu li.menu-item:nth-child(2) {
                    -webkit-transition-delay: 0.42s;
                    transition-delay: 0.42s;
                }

                .window .header ul.menu li.menu-item:nth-child(3) {
                    -webkit-transition-delay: 0.35s;
                    transition-delay: 0.35s;
                }

                .window .header ul.menu li.menu-item:nth-child(4) {
                    -webkit-transition-delay: 0.28s;
                    transition-delay: 0.28s;
                }

                .window .header ul.menu li.menu-item:nth-child(5) {
                    -webkit-transition-delay: 0.21s;
                    transition-delay: 0.21s;
                }

                .window .header ul.menu li.menu-item:nth-child(6) {
                    -webkit-transition-delay: 0.14s;
                    transition-delay: 0.14s;
                }

                .window .header ul.menu li.menu-item:nth-child(7) {
                    -webkit-transition-delay: 0.07s;
                    transition-delay: 0.07s;
                }

                .window .header ul.menu li.menu-item a {
                    display: block;
                    position: relative;
                    color: #FFF;
                    font-family: "Ek Mukta", sans-serif;
                    font-weight: 100;
                    text-decoration: none;
                    font-size: 22px;
                    line-height: 2.35;
                    font-weight: 200;
                    width: 100%;
                }

        .window .header.menu-opened {
            height: 100%;
            background-color: #000;
            -webkit-transition: all 0.3s ease-in, background 0.5s ease-in;
            transition: all 0.3s ease-in, background 0.5s ease-in;
            -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
        }

            .window .header.menu-opened .burger-container {
                -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
            }

                .window .header.menu-opened .burger-container #burger .bar {
                    -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
                    -webkit-transition-delay: 0.2s;
                    transition-delay: 0.2s;
                }

                    .window .header.menu-opened .burger-container #burger .bar.topBar {
                        -webkit-transform: translateY(4px) rotate(45deg);
                        transform: translateY(4px) rotate(45deg);
                    }

                    .window .header.menu-opened .burger-container #burger .bar.btmBar {
                        -webkit-transform: translateY(3px) rotate(-45deg);
                        transform: translateY(3px) rotate(-45deg);
                    }

            .window .header.menu-opened ul.menu li.menu-item {
                -webkit-transform: scale(1) translateY(0px);
                transform: scale(1) translateY(0px);
                opacity: 1;
            }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(1) {
                    -webkit-transition-delay: 0.27s;
                    transition-delay: 0.27s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(2) {
                    -webkit-transition-delay: 0.34s;
                    transition-delay: 0.34s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(3) {
                    -webkit-transition-delay: 0.41s;
                    transition-delay: 0.41s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(4) {
                    -webkit-transition-delay: 0.48s;
                    transition-delay: 0.48s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(5) {
                    -webkit-transition-delay: 0.55s;
                    transition-delay: 0.55s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(6) {
                    -webkit-transition-delay: 0.62s;
                    transition-delay: 0.62s;
                }

                .window .header.menu-opened ul.menu li.menu-item:nth-child(7) {
                    -webkit-transition-delay: 0.69s;
                    transition-delay: 0.69s;
                }

            .window .header.menu-opened .icon.icon-bag {
                -webkit-transform: translateX(75px);
                transform: translateX(75px);
                -webkit-transition-delay: 0.3s;
                transition-delay: 0.3s;
            }

    .window .content {
        font-family: "Ek Mukta", sans-serif;
        padding: 67px 4% 0;
        text-align: justify;
        overflow: scroll;
        max-height: 100%;
    }

        .window .content::-webkit-scrollbar {
            display: none;
        }

        .window .content h2 {
            margin-bottom: 0px;
            letter-spacing: 1px;
        }

        .window .content img {
            width: 95%;
            position: relative;
            display: block;
            margin: 75px auto 75px;
        }

            .window .content img:nth-of-type(2) {
                margin: 75px auto;
            }

.user-ent-cont {
    position: relative;
    z-index: 9999;
}

    .user-ent-cont ul {
        display: inline-block;
    }

@media (max-width: 600px) {
    .window {
        margin: 0;
        border-radius: 0px;
    }

        .window .header {
            position: fixed;
            z-index: 9999;
        }
}
/* ----------------------------------------------------------------------------------------- User Css ----------------------------------------------------------------------- */

/* ------------------------------------------------------------------------ Notification Css ------------------------------------------------------------ */
#notification-cont h3 {
    font-weight: normal;
    font-size: 20px;
    color: #4285f4
}

#notification-cont li {
    margin-bottom: 10px;
}

    #notification-cont li a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        width: 100%;
        padding: 10px;
    }

        #notification-cont li a:hover {
            background: #4285f4;
        }

    #notification-cont li:nth-child(odd) a {
        background: #bfbfbf !important;
    }

    #notification-cont li:nth-child(even) a {
        background: #d5d5d5 !important;
    }

.line-bottom {
    padding-bottom: 20px;
    border-bottom: solid 1px #eee;
}


/* ----------------------------------------------------------------------------------------- news speakers Css ----------------------------------------------------------------------- */
.spkr-box {
}

.spkr-box {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, .3);
}

    .spkr-box .spkr-text {
        position: relative;
        bottom: 20px;
        background: #fff;
        border-radius: 8px;
        margin-left: 15px;
        margin-right: 15px;
        text-align: center;
        padding: 5px 10px 5px 10px;
        border: solid 1px #fff;
        overflow: hidden;
        height: 65px;
    }

        .spkr-box .spkr-text h3 {
            margin: 0px;
            font-size: 12px;
            color: #000000;
        }

.spkr-box {
    position: relative;
}

    .spkr-box a {
        position: relative;
        display: inline-block;
        width: 100%;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .spkr-box:hover .spkr-text {
        border-color: #347ED2;
    }

    .spkr-box:hover a:after {
        content: "+";
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 30px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        left: 50%;
        margin-left: -25px;
        top: 50%;
        margin-top: -50px;
        border: solid 2px #fff;
        border-radius: 50%;
        position: absolute;
    }

    .spkr-box:hover a:before {
        content: " ";
        display: inline-block;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        background-color: rgba(5,130,212, .5);
        position: absolute;
    }

.spkr-alphabet {
    font-size: 16px;
    color: #347ED2;
    text-align: center;
}

    .spkr-alphabet a {
        font-size: 16px;
        color: #347ED2;
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

        .spkr-alphabet a:hover {
            color: #000;
        }

.spkr-search {
    background-color: #F2F2F2;
}

    .spkr-search h3 {
        font-size: 24px;
        font-weight: 600;
        color: #000;
        margin: 0px;
    }

    .spkr-search h4 {
        font-size: 15px;
        font-weight: 600;
        color: #347ED2;
        margin: 0px;
    }

        .spkr-search h4 a {
            font-size: 15px;
            font-weight: 600;
            color: #347ED2;
            margin: 0px;
        }

button.button {
    float: left;
    width: 100%;
    padding: 11px;
    background: #2196F3;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left-color: grey;
    border-left-style: solid;
    border-left-width: 1px;
    border-left: none;
    cursor: pointer;
}

#search-form button {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: #0582d4 !important;
}

#search-form input {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.spkr-user h2 {
    margin: 0px;
    font-size: 14px;
    color: #347ED2;
}

    .spkr-user h2 button {
        margin: 0px;
        font-size: 16px;
        font-weight: 600;
        color: #347ED2;
        width: 100%;
        text-align: center;
        line-height: 45px;
        border-radius: 50px;
        background: #fff;
    }

        .spkr-user h2 button:active, .spkr-user h2 button:focus {
            margin: 0px;
            font-size: 16px;
            font-weight: 600;
            color: #347ED2;
            width: 100%;
            text-align: center;
            line-height: 45px;
            border-radius: 50px;
            background: #fff;
        }

        .spkr-user h2 button:hover {
            margin: 0px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            width: 100%;
            text-align: center;
            line-height: 45px;
            border-radius: 50px;
            background: #000;
        }

.spkr-user .row {
    background: #347ED2;
    color: #fff;
}

.spkr-user img.spkr-imgs {
    border-radius: 50%;
    width: 100%;
}

.spkr-user h4 {
    margin: 0px;
    color: #fff;
    font-size: 22px;
    margin-top: 5px;
}

.spkr-user h5 {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.spkr-user h6 {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}

.spkr-user p {
    color: #000;
    font-size: 18px;
}

.secion-area h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0px;
}

.secion-user h2 {
    margin: 0px;
    font-size: 14px;
    color: #347ED2;
}

    .secion-user h2 button {
        margin: 0px;
        border: none;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        width: 100%;
        text-align: center;
        line-height: 45px;
        border-radius: 50px;
        background: #347ED2;
    }

        .secion-user h2 button.collapsed {
            margin: 0px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #347ED2;
            width: 100%;
            text-align: center;
            line-height: 45px;
            border-radius: 50px;
            background: #fff;
        }

        .secion-user h2 button:active, .spkr-user h2 button:focus {
            margin: 0px;
            font-size: 16px;
            font-weight: 600;
            color: #347ED2;
            width: 100%;
            text-align: center;
            line-height: 45px;
            border-radius: 50px;
            background: #fff;
        }

        .secion-user h2 button:hover {
            margin: 0px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            width: 100%;
            text-align: center;
            line-height: 45px;
            border-radius: 50px;
            background: #347ED2;
        }

.secion-user .row {
    background: #F2F2F2;
    color: #fff;
}

.secion-user img.spkr-imgs {
    border-radius: 50%;
    width: 100%;
}

.secion-user h4 {
    margin: 0px;
    color: #000;
    font-size: 20px;
    margin-top: 10px;
}

.secion-user h5 {
    margin: 0px;
    color: #347ED2;
    font-size: 19px;
    font-weight: normal;
    margin-top: 7px;
}

.secion-user h6 {
    margin: 0px;
    color: #347ED2;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 7px;
}

    .secion-user h6 a {
        margin: 0px;
        color: #347ED2;
        font-size: 19px;
        font-weight: 600;
    }

        .secion-user h6 a:hover {
            color: #000;
        }

.secion-user p {
    color: #000;
    font-size: 18px;
}

.no-bg {
    background: transparent !important;
}

.spkr-date-boxs {
    background: #E4E3E4;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}

.spkr-overflow-conts {
    height: 744px;
    overflow-y: auto;
}
/* ----------------------------------------------------------------------------------------- news speakers Css ----------------------------------------------------------------------- */

/* ------------------------------------------------------------------------ sponsors details Css ------------------------------------------------------------ */

.sponsors-details-header h2 {
    font-size: 20px;
    font-weight: 400;
    color: #4285f4;
}

.sponsors-details-header img {
    width: 100%;
}

.sponsors-details-header a {
    font-weight: 600;
    font-size: 16px;
}

.sponsors-details-btn {
    font-size: 14px;
    background: #19e678;
    padding: 10px 40px 10px 40px;
    color: #fff;
    border-radius: 50px;
}

.sponsors-details-about {
    font-size: 14px;
    color: #2a2a2a;
}

    .sponsors-details-about h2 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
    }

.sponsors-details-tags a {
    font-size: 14px;
    background: #fff;
    padding: 8px 25px 8px 25px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: block;
}

    .sponsors-details-tags a:hover {
        background: #19e678;
        color: #fff;
        border-color: #19e678;
    }

.sponsors-details-tags li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

/* ------------------------------------------------------------------------ news Css ------------------------------------------------------------ */
.news-cont img {
    width: 100%;
}

.news-cont h3 {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}

.news-cont p {
    font-size: 13px;
    color: #fff;
}

.news-cont a {
    color: #fff;
}

/* ------------------------------------------------------------------------ speaker details Css ------------------------------------------------------------ */
.speakers-imgs {
    background: #17b5e4;
}

    .speakers-imgs img {
        border-radius: 50%;
    }

    .speakers-imgs h3 {
        font-size: 16px;
        color: #fff;
    }

    .speakers-imgs h4 {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
    }

.speakers-mail {
    padding: 10px;
    background: #d9d9d9;
}

    .speakers-mail a {
        font-size: 23px;
        color: #4c4c4c;
    }

        .speakers-mail a:hover {
            color: #17b5e4;
        }

.speakers-details-list img {
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
}

.speakers-details-list h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
    margin-bottom: 10px;
    font-weight: 400;
}

.speakers-details-rate p {
    font-size: 16px;
    color: #000;
    margin: 0px;
}

.speakers-details-list h4 {
    font-size: 14px;
    color: #858585;
    margin: 0px;
}

    .speakers-details-list h4 span.color1 {
        width: 25%;
    }

    .speakers-details-list h4 span {
        width: 73%;
        display: inline-block;
        font-size: 12px;
    }

#speakers-details-cont h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin: 0px;
    background: #d9d9d9;
    padding: 20px;
    font-weight: 400;
}

    #speakers-details-cont h2 img {
        float: right;
    }

.speakers-details-lis-btn {
    border-bottom: solid 1px #d4dad8;
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background: #fff;
}

    .speakers-details-lis-btn:hover {
        background: #f2f2f2;
    }

    .speakers-details-lis-btn::after {
        font-family: 'FontAwesome';
        content: "\f105";
        display: block;
        position: absolute;
        right: 30px;
        top: 50%;
        font-size: 20px;
        color: #17b5e4;
        margin-top: -10px;
    }

.speakers-details-clock a {
    font-size: 16px;
    color: #000;
}

    .speakers-details-clock a i {
        color: #505050;
        font-size: 22px;
    }


.speakers-details-rate {
    background: #f2f2f2;
    border-top: solid 1px #d4dad8;
}

    .speakers-details-rate h3 {
        font-size: 16px;
        color: #000;
    }

.speakers-details-all {
    background: #f2f2f2;
}

.speakers-details-dates {
    background: #d9d9d9;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px;
    font-weight: 800;
    color: #494949;
}

.speakers-details-cont {
    position: inherit !important;
}

#speakers-container {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------------ IBM Css ------------------------------------------------------------ */
.ibm-details-tags a {
    font-size: 14px;
    background: #fff;
    padding: 8px 25px 8px 25px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: block;
}

    .ibm-details-tags a:hover {
        background: #19e678;
        color: #fff;
        border-color: #19e678;
    }

.ibm-details-tags li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    min-width: 200px;
    text-align: center;
}

.home-back-btn {
    position: absolute;
    bottom: -44px;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .3) !important;
    border-radius: 50%;
}

#presentation-cont {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------------ presentation Css ------------------------------------------------------------ */
.presentation-box a {
    display: inline-block;
    width: 100%;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2) !important;
    padding: 15px 30px 15px 30px;
    min-height: 250px;
}

.presentation-box h3 {
    font-weight: normal;
    font-size: 20px;
    color: #4285f4
}

.presentation-box h4 {
    font-weight: normal;
    font-size: 50px;
    color: #4285f4
}

.box-extra {
    background: #c0d7fc;
    color: #fff;
}

    .box-extra h3, .box-extra h4 {
        background: #c0d7fc;
        color: #fff;
    }
/* ------------------------------------------------------------------------ Sales Team Css ------------------------------------------------------------ */
#sales-cont {
}

    #sales-cont h3 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #sales-cont h4 {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
        font-weight: normal;
    }

    #sales-cont img {
        border-radius: 50%;
        box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .2) !important;
    }

.sales-contact {
    font-size: 14px;
    background: #fff;
    padding: 7px 40px 7px 40px;
    color: #4285f4;
    border-radius: 50px;
    border: solid 1px #4285f4;
    display: inline-block;
}

    .sales-contact:hover {
        background: #19e678;
        color: #fff !important;
        border-color: #19e678;
    }

#sales-cont {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------------ Sales Team Detail Css ------------------------------------------------------------ */
#sales-details-cont {
}

    #sales-details-cont h3 {
        font-size: 20px;
        color: #4285f4;
        margin: 0px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #sales-details-cont h4 {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
        font-weight: normal;
    }

    #sales-details-cont p {
        font-size: 16px;
        color: #727d8e;
        margin: 0px;
    }

        #sales-details-cont p a {
            font-size: 16px;
            color: #727d8e;
            margin: 0px;
        }

            #sales-details-cont p a:hover {
                color: #4285f4;
            }

    #sales-details-cont .sales-contact {
        min-width: 160px;
        text-align: center;
    }

    #sales-details-cont img {
        border-radius: 50%;
        box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, .2) !important;
    }

/* ------------------------------------------------------------------------ videos Css ------------------------------------------------------------ */

.videos-box {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .2) !important;
}

    .videos-box p {
        padding: 15px 30px 15px 30px;
        font-size: 13px;
        color: #4285f4;
        line-height: 1.4;
    }

#header-menu > li {
    position: relative;
}

    #header-menu > li > ul > li {
        display: block;
        z-index: 1;
        position: relative;
    }

        #header-menu > li > ul > li > a {
            line-height: 1.6;
            display: block;
        }

    #header-menu > li > ul:before {
        content: " ";
        display: inline-block;
        position: absolute;
        left: -15px;
        top: 0px;
        width: 230px;
        height: 100%;
        background: rgba(5,130,212, 1);
    }

    #header-menu > li > ul {
        position: absolute;
        top: -9999px;
        width: 200px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #header-menu > li:hover > ul {
        top: 53px;
    }

/* ----------------------------------------------------------------------------------------- Icons Css ----------------------------------------------------------------------- */
.icon-about {
    background-image: url(../images/icon-about.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-video {
    background-image: url(../images/icon-videos.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-broshures {
    background-image: url(../images/icon-broshures.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-live-chat {
    background-image: url(../images/icon-live-chat.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-presentation {
    background-image: url(../images/icon-presentation.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-participants {
    background-image: url(../images/icon-participants.png) !important;
    width: 64px !important;
    height: 64px !important;
}

.icon-sales-person {
    background-image: url(../images/icon-sales-person.png) !important;
    width: 64px !important;
    height: 64px !important;
}
.icon-businessCardApply {
    background-image: url(../images/resume.png) !important;
    width: 64px !important;
    height: 64px !important;
}

/* ----------------------------------------------------------------------------------------- Icons Css ----------------------------------------------------------------------- */

.full-width {
    width: 100% !important;
}

.overflow-cont {
    width: 100%;
    height: 625px;
    overflow-y: auto;
}

@media all and (min-width: 961px) and (max-width: 5000px) {

    #enter-page::after {
        background: rgba(5,130,212, .5);
    }

    #enter-page-in {
        background-image: url(../images/enter-img.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        position: relative;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100vh;
    }

    #footer-text {
        position: absolute;
        width: 100%;
        left: 0px;
        bottom: 0px;
        z-index: 99;
    }

    #in-header::after {
        content: " ";
        position: absolute;
        left: 0px;
        top: 0px;
        display: block;
        background: rgba(5,130,212, 1);
        width: 100%;
        height: 100%;
    }

    #header-menu li a {
        font-size: 16px;
        color: #fff;
        padding-left: 10px;
        padding-right: 10px;
    }

    #header-menu li.active a {
        color: #fcee20 !important;
    }

    #header-menu li.active:after {
        content: " ";
        position: absolute;
        left: 0px;
        bottom: -4px;
        width: 100%;
        height: 5px;
        background: #fcee20;
        display: block;
    }

    .halls-page-cont {
        text-align: center;
        display: table;
        height: 100%;
        width: 100%;
        margin: auto;
    }

    .halls-page-inner {
        vertical-align: middle;
        text-align: center;
        display: table-cell;
    }

    .contall {
        width: 62%;
        margin-left: auto;
        margin-right: auto;
        height: 304px;
    }

    .allboxs {
        float: left;
    }

    .box1 {
        width: 163px;
        display: inline-block;
        text-align: left;
        margin-left: 46px;
    }

        .box1 h4 {
            color: #3766b6;
            font-size: 20px;
            margin-bottom: 0px;
            margin-left: 15px;
            margin-top: 30px;
            font-weight: 400;
        }

        .box1 h5 {
            color: #3766b6;
            font-size: 40px;
            margin-bottom: 0px;
            margin-left: 15px;
            margin-top: 0px;
        }

    .box2 {
        width: 293px;
        display: inline-block;
        margin-left: 28px;
        text-align: center;
    }

        .box2 h4 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 0px;
            margin-top: 30px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .box2 #agenda-ul li {
            display: flex;
            width: 100%;
            margin-bottom: 10px;
            background: #fff;
            color: #3766b6;
            font-size: 14px;
            padding: 5px;
            padding-left: 15px;
            padding-right: 15px;
            text-align: left;
        }

        .box2 .agenda-times {
            display: inline-block;
            font-size: 25px;
            float: left;
            line-height: 33px;
        }

        .box2 .agenda-text {
            display: inline-block;
            font-size: 12px;
            color: #3766b6;
            float: left;
            margin-left: 10px;
        }

            .box2 .agenda-text span {
                display: block;
                font-size: 11px;
                color: #4d4d4d;
            }

        .box2 #sponsors-ul {
            text-align: center;
        }

            .box2 #sponsors-ul li {
                display: inline-block;
                margin-left: 5px;
                margin-right: 5px;
            }

                .box2 #sponsors-ul li img {
                    border-radius: 50%;
                }


    #embedWidget {
        position: relative;
        top: -20px;
    }

    #halls-page-in {
        background-image: url(../images/halls-bg.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100%;
        position: relative;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100vh;
    }

    #enter-content-cont {
        background: #fff;
        text-align: center;
        display: table;
        height: 100%;
        width: 100%;
        margin: auto;
    }

    #enter-content-inner {
        vertical-align: middle;
        text-align: center;
        display: table-cell;
        padding: 1rem 3rem;
    }

    #eposter-cont {
        background-image: url(../images/enter-img.jpg);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
    }

    .box3 {
        width: 589px;
        display: inline-block;
        /* margin-left:39px; */
    }

    /* .hallb{width: 926px !important;}
	.hallb .box3{width: 926px !important; margin:0px !important;} */

    .stand-btns {
        position: absolute;
        z-index: 2;
    }

    .extra-stand-conts .stand-1 {
        top: 43%;
        left: 71.5%;
    }

    .extra-stand-conts .stand-2 {
        top: 34%;
        left: 25.5%;
    }

    .extra-stand-conts .stand-3 {
        top: 36%;
        left: 34.5%;
    }

    .extra-stand-conts .stand-4 {
        top: 41.2%;
        right: 48.3%;
    }

    .extra-stand-conts .stand-5 {
        top: 76%;
        right: 93.5%;
    }

    .extra-stand-conts .stand-6 {
        top: 56%;
        right: 17.5%;
    }

    .stand-1 {
        top: 58%;
        left: 24.5%;
    }

    .stand-2 {
        top: 42%;
        left: 32.5%;
    }

    .stand-3 {
        top: 39%;
        left: 36.5%;
    }

    .stand-4 {
        top: 39.5%;
        right: 44.5%;
    }

    .stand-5 {
        top: 58%;
        right: 24.5%;
    }

    .stand-6 {
        top: 56%;
        right: 31.5%;
    }


    .stand-btns a {
        position: absolute;
        text-indent: -9999px;
    }

    #videoModal .modal-dialog {
        width: 850px;
    }

    #SalesPersonPopup .modal-dialog {
        width: 850px;
    }

    #PresentationPopup .modal-dialog {
        width: 850px;
    }

    #BrochurePopup .modal-dialog {
        width: 850px;
    }
}

.stand-btns a {
    display: block;
    width: 100%;
    height: 100%;
}

.stand-btns {
    display: inline-block;
    width: 44px;
    height: 55px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left top;
    line-height: 119px;
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 600;
}

#enter-page2::after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

/*.prifile-pic-big{text-align:center;}*/
.prifile-pic-big:hover .btn-photo {
    opacity: 1;
}

.btn-photo {
    /*top: 50%;
    left: 60%;
    margin-left: -22px;
    margin-top: -14px;*/
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.profile-detail-bottom .inbox-boxs {
    position: relative;
}

    .profile-detail-bottom .inbox-boxs:hover span {
        background: #fff;
        color: #317cc9;
    }

    .profile-detail-bottom .inbox-boxs span {
        font-size: 14px;
        color: #fff;
        background: #317cc9;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        position: absolute;
        right: 10px;
        top: 10px;
        border-radius: 50%;
    }

@media all and (min-width: 120px) and (max-width: 960px) {
    .stand-btns a span {
        line-height: 1.3 !important;
        display: inline-block;
        position: relative;
        top: 13px;
    }

    /* ------------------------------------------------------------------------ Speakers Css ------------------------------------------------------------ */
    .speakers-list img {
        border-radius: 50%;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4) !important;
    }

    .speakers-list h3 {
        font-size: 16px;
        color: #000;
        margin: 0px;
        margin-bottom: 10px;
    }

    .speakers-list h4 {
        font-size: 14px;
        color: #858585;
        margin: 0px;
    }

    #speakers-cont h2 {
        font-size: 20px;
        color: #4a4a4a;
        margin: 0px;
        background: #d9d9d9;
        padding: 20px;
        font-weight: 400;
    }

        #speakers-cont h2 img {
            float: right;
        }

    .speakers-lis-btn {
        border-bottom: solid 1px #d4dad8;
        display: block;
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

        .speakers-lis-btn:hover {
            background: #f2f2f2;
        }

    .bk-1 {
        border-left: solid 6px #fea500;
    }

    .bk-2 {
        border-left: solid 6px #0000fe;
    }

    .bk-3 {
        border-left: solid 6px #d4dad8;
    }

    /* ------------------------------------------------------------------------ sponsors Css ------------------------------------------------------------ */
    #sponsors-cont img {
        border: solid 1px #d4d4d4;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1) !important;
        width: 100%;
    }

    section {
        width: 100%;
    }

    #header {
        border: none !important;
        width: 100%;
        display: block !important;
        background: #4285f4;
        position: relative;
        z-index: 999;
    }

    .eocjs-newsticker-one {
        color: #4285f4 !important;
    }

    .main-logo {
        width: 170px;
    }

    #footer-text {
        width: 100%;
        position: relative;
        z-index: 99;
    }

    .full-size {
        width: 100%;
    }

    #inner-headers {
        display: block !important;
        position: relative;
        z-index: 9;
    }
    /*.btn-primary {
		color: #fff;
		background-color: #3ce043 !important;
		border-color: #3ce043 !important;
	}*/
    iframe {
        width: 100% !important;
    }

    .mb-height-300 {
        height: 300px;
    }

    #enter-page {
        background: #fff !important;
    }

        #enter-page::after {
            background: #fff;
        }

    .my-schedule-selected-boxs .liner label {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .my-schedule-selected-boxs label {
        min-height: 68px !important;
    }

    .my-schedule-selected h3 {
        line-height: 27px !important;
    }

    .my-schedule-selected-boxs .liner label {
        line-height: 68px !important;
    }

    .mb-text-right {
        text-align: right !important;
    }

    .profile-detail-top h1 {
        font-size: 21px !important;
    }

    .news-cont h3 {
        color: #4285f4;
    }

    .news-cont p {
        color: #727d8e;
    }

    .news-cont a {
        color: #777777;
    }

    .wall-cont iframe {
        height: 100vh !important;
    }

    .hallb {
        width: 100% !important;
    }

        .hallb .box3 {
            width: 100% !important;
            margin: 0px !important;
        }

    #enter-page2::after {
        background: rgba(5,130,212, .85);
    }

    #enter-content-inner {
        vertical-align: middle;
        text-align: center;
        display: table-cell;
        padding: 1rem 3rem;
    }

    #enter-content-cont {
        text-align: center;
        display: table;
        width: 100%;
        margin: auto;
    }

    .mb-no-bg {
        background: none !important;
    }

    #stand-page-in {
        height: auto !important;
        background: none !important;
    }

    #stand2-page-in {
        height: auto !important;
        background: none !important;
    }

    .stand-btns a {
        font-size: 16px !important;
        line-height: 150px;
    }

    .stand-btns {
        /*position:inherit !important;*/
        width: 32.333% !important;
        height: 120px !important;
        background-size: 64px;
        background-position: center top !important;
        text-align: center;
    }

    .icon-sales-person {
        margin-top: -20px;
        position: relative;
        left: 0px !important;
    }

    .icon-about {
        /*background-position: 22px top !important;*/
    }

    #videoModal .modal-dialog {
        width: 100%;
    }

    #SalesPersonPopup .modal-dialog {
        width: 100%;
    }

    #PresentationPopup .modal-dialog {
        width: 100%;
    }

    .product__slider-thmb {
        height: 182px !important;
    }

    .modal:before {
        display: none;
    }

    .user-ent-cont .dropdown-menu {
        width: 348px;
        position: fixed;
        top: 52px;
        left: 50%;
        margin-left: -176px;
    }
}

@media screen and (max-width: 50em) {
    .sales-person .gallery-item {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}





.inbox_people {
    background: #fff;
    float: left;
    overflow: hidden;
    width: 30%;
    border-right: 1px solid #ddd;
}

.inbox_msg {
    border: 1px solid #ddd;
    clear: both;
    overflow: hidden;
}

.top_spac {
    margin: 20px 0 0;
}

.recent_heading {
    float: left;
    width: 40%;
}

.srch_bar {
    display: inline-block;
    text-align: right;
    width: 60%;
    padding:
}

.headind_srch {
    padding: 10px 29px 10px 20px;
    overflow: hidden;
    border-bottom: 1px solid #c4c4c4;
}

.recent_heading h4 {
    color: #0465ac;
    font-size: 16px;
    margin: auto;
    line-height: 29px;
}

.srch_bar input {
    outline: none;
    border: 1px solid #cdcdcd;
    border-width: 0 0 1px 0;
    width: 80%;
    padding: 2px 0 4px 6px;
    background: none;
}

.srch_bar .input-group-addon button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    padding: 0;
    color: #707070;
    font-size: 18px;
}

.srch_bar .input-group-addon {
    margin: 0 0 0 -27px;
}

.chat_ib h5 {
    font-size: 15px;
    color: #464646;
    margin: 0 0 8px 0;
}

    .chat_ib h5 span {
        font-size: 13px;
        float: right;
    }

.chat_ib p {
    font-size: 12px;
    color: #989898;
    margin: auto;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat_img {
    float: left;
    width: 11%;
}

    .chat_img img {
        width: 100%
    }

.chat_ib {
    float: left;
    padding: 0 0 0 15px;
    width: 88%;
}

.chat_people {
    overflow: hidden;
    clear: both;
}

.chat_list {
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 18px 16px 10px;
}

.inbox_chat {
    height: 550px;
    overflow-y: scroll;
}

.active_chat {
    background: #e8f6ff;
}

.incoming_msg_img {
    display: inline-block;
    width: 6%;
}

    .incoming_msg_img img {
        width: 100%;
    }

.received_msg {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: top;
    width: 92%;
}

.received_withd_msg p {
    background: #ebebeb none repeat scroll 0 0;
    border-radius: 0 15px 15px 15px;
    color: #646464;
    font-size: 14px;
    margin: 0;
    padding: 5px 10px 5px 12px;
    width: 100%;
}

.time_date {
    color: #747474;
    display: block;
    font-size: 12px;
    margin: 8px 0 0;
}

.received_withd_msg {
    width: 57%;
}

.mesgs {
    float: left;
    padding: 30px 15px 0 25px;
    width: 70%;
}

.sent_msg p {
    background: #0465ac;
    border-radius: 12px 15px 15px 0;
    font-size: 14px;
    margin: 0;
    color: #fff;
    padding: 5px 10px 5px 12px;
    width: 100%;
}

.outgoing_msg {
    overflow: hidden;
    margin: 26px 0 26px;
}

.sent_msg {
    float: right;
    width: 46%;
}

.input_msg_write input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    color: #4c4c4c;
    font-size: 15px;
    min-height: 48px;
    width: 100%;
    outline: none;
}

.type_msg {
    border-top: 1px solid #c4c4c4;
    position: relative;
}

.msg_send_btn {
    background: #05728f none repeat scroll 0 0;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    height: 33px;
    position: absolute;
    right: 0;
    top: 11px;
    width: 33px;
}

.messaging {
    padding: 0 0 50px 0;
}

.msg_history {
    height: 516px;
    overflow-y: auto;
}
